tconfig.h 3.0 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _TD_CONFIG_H_
#define _TD_CONFIG_H_

S
Shengliang Guan 已提交
20
#include "tarray.h"
S
Shengliang Guan 已提交
21 22 23 24 25

#ifdef __cplusplus
extern "C" {
#endif

S
config  
Shengliang Guan 已提交
26 27
#define CFG_NAME_MAX_LEN 128

S
Shengliang Guan 已提交
28
typedef enum {
S
config  
Shengliang Guan 已提交
29 30 31 32 33 34
  CFG_STYPE_DEFAULT,
  CFG_STYPE_CFG_FILE,
  CFG_STYPE_ENV_FILE,
  CFG_STYPE_ENV_VAR,
  CFG_STYPE_APOLLO_URL,
  CFG_STYPE_ARG_LIST,
S
Shengliang Guan 已提交
35
} ECfgSrcType;
S
Shengliang Guan 已提交
36 37

typedef enum {
S
Shengliang Guan 已提交
38 39
  CFG_DTYPE_NONE,
  CFG_DTYPE_BOOL,
S
Shengliang Guan 已提交
40 41 42 43 44
  CFG_DTYPE_INT32,
  CFG_DTYPE_INT64,
  CFG_DTYPE_FLOAT,
  CFG_DTYPE_STRING,
  CFG_DTYPE_DIR,
S
config  
Shengliang Guan 已提交
45 46 47
  CFG_DTYPE_LOCALE,
  CFG_DTYPE_CHARSET,
  CFG_DTYPE_TIMEZONE
S
Shengliang Guan 已提交
48 49
} ECfgDataType;

S
Shengliang Guan 已提交
50
typedef struct SConfigItem {
S
config  
Shengliang Guan 已提交
51
  ECfgSrcType  stype;
S
Shengliang Guan 已提交
52
  ECfgDataType dtype;
S
Shengliang Guan 已提交
53
  bool         tsc;
S
cfgtest  
Shengliang Guan 已提交
54
  char        *name;
S
Shengliang Guan 已提交
55
  union {
S
Shengliang Guan 已提交
56 57 58 59 60
    bool    bval;
    float   fval;
    int32_t i32;
    int64_t i64;
    char   *str;
S
Shengliang Guan 已提交
61
  };
S
config  
Shengliang Guan 已提交
62
  union {
S
Shengliang Guan 已提交
63 64
    int64_t imin;
    double  fmin;
S
config  
Shengliang Guan 已提交
65 66
  };
  union {
S
Shengliang Guan 已提交
67 68
    int64_t imax;
    double  fmax;
S
config  
Shengliang Guan 已提交
69
  };
S
tfs cfg  
Shengliang Guan 已提交
70
  SArray *array;  // SDiskCfg
S
Shengliang Guan 已提交
71 72
} SConfigItem;

S
Shengliang Guan 已提交
73
typedef struct {
S
Shengliang Guan 已提交
74 75
  const char *name;
  const char *value;
S
Shengliang Guan 已提交
76 77
} SConfigPair;

S
Shengliang Guan 已提交
78 79 80 81
typedef struct SConfig {
  ECfgSrcType stype;
  SArray     *array;
} SConfig;
S
Shengliang Guan 已提交
82 83

SConfig *cfgInit();
S
Shengliang Guan 已提交
84
int32_t  cfgLoad(SConfig *pCfg, ECfgSrcType cfgType, const char *sourceStr);
S
Shengliang Guan 已提交
85
int32_t  cfgLoadArray(SConfig *pCfg, SArray *pArgs);  // SConfigPair
S
Shengliang Guan 已提交
86 87 88 89
void     cfgCleanup(SConfig *pCfg);

int32_t      cfgGetSize(SConfig *pCfg);
SConfigItem *cfgGetItem(SConfig *pCfg, const char *name);
S
Shengliang Guan 已提交
90
int32_t      cfgSetItem(SConfig *pCfg, const char *name, const char *value, ECfgSrcType stype);
S
Shengliang Guan 已提交
91

S
Shengliang Guan 已提交
92 93 94 95 96 97
int32_t cfgAddBool(SConfig *pCfg, const char *name, bool defaultVal, bool tsc);
int32_t cfgAddInt32(SConfig *pCfg, const char *name, int32_t defaultVal, int64_t minval, int64_t maxval, bool tsc);
int32_t cfgAddInt64(SConfig *pCfg, const char *name, int64_t defaultVal, int64_t minval, int64_t maxval, bool tsc);
int32_t cfgAddFloat(SConfig *pCfg, const char *name, float defaultVal, double minval, double maxval, bool tsc);
int32_t cfgAddString(SConfig *pCfg, const char *name, const char *defaultVal, bool tsc);
int32_t cfgAddDir(SConfig *pCfg, const char *name, const char *defaultVal, bool tsc);
S
Shengliang Guan 已提交
98 99 100
int32_t cfgAddLocale(SConfig *pCfg, const char *name, const char *defaultVal);
int32_t cfgAddCharset(SConfig *pCfg, const char *name, const char *defaultVal);
int32_t cfgAddTimezone(SConfig *pCfg, const char *name, const char *defaultVal);
S
Shengliang Guan 已提交
101

S
Shengliang Guan 已提交
102 103 104
const char *cfgStypeStr(ECfgSrcType type);
const char *cfgDtypeStr(ECfgDataType type);

S
Shengliang Guan 已提交
105
void cfgDumpCfg(SConfig *pCfg, bool tsc, bool dump);
S
Shengliang Guan 已提交
106

S
Shengliang Guan 已提交
107 108 109 110 111
#ifdef __cplusplus
}
#endif

#endif /*_TD_CONFIG_H_*/