107 lines
4.1 KiB
C
107 lines
4.1 KiB
C
|
|
/*
|
|
* 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_
|
|
|
|
#include "os.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum { CFG_TYPE_NONE, CFG_TYPE_TAOS_CFG, CFG_TYPE_DOT_ENV, CFG_TYPE_ENV_VAR, CFG_TYPE_APOLLO_URL } ECfgType;
|
|
|
|
typedef enum {
|
|
CFG_DYPE_NONE,
|
|
CFG_DYPE_BOOL,
|
|
CFG_DTYPE_INT8,
|
|
CFG_DTYPE_UINT8,
|
|
CFG_DTYPE_INT16,
|
|
CFG_DTYPE_UINT16,
|
|
CFG_DTYPE_INT32,
|
|
CFG_DTYPE_UINT32,
|
|
CFG_DTYPE_INT64,
|
|
CFG_DTYPE_UINT64,
|
|
CFG_DTYPE_FLOAT,
|
|
CFG_DTYPE_DOUBLE,
|
|
CFG_DTYPE_STRING,
|
|
CFG_DTYPE_FQDN,
|
|
CFG_DTYPE_IPSTR,
|
|
CFG_DTYPE_DIR,
|
|
CFG_DTYPE_FILE
|
|
} ECfgDataType;
|
|
|
|
typedef enum {
|
|
CFG_UTYPE_NONE,
|
|
CFG_UTYPE_PERCENT,
|
|
CFG_UTYPE_GB,
|
|
CFG_UTYPE_MB,
|
|
CFG_UTYPE_BYTE,
|
|
CFG_UTYPE_SECOND,
|
|
CFG_UTYPE_MS
|
|
} ECfgUnitType;
|
|
|
|
typedef struct SConfig SConfig;
|
|
|
|
SConfig *cfgInit();
|
|
int32_t cfgLoad(SConfig *pConfig, ECfgType cfgType, const char *sourceStr);
|
|
void cfgCleanup(SConfig *pConfig);
|
|
|
|
int32_t cfgGetSize(SConfig *pConfig);
|
|
void *cfgIterate(SConfig *pConfig, void *p);
|
|
void cfgCancelIterate(SConfig *pConfig, void *p);
|
|
|
|
void cfgAddBool(SConfig *pConfig, const char *name, bool defaultVal, ECfgUnitType utype);
|
|
void cfgAddInt8(SConfig *pConfig, const char *name, int8_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddUInt8(SConfig *pConfig, const char *name, uint8_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddInt16(SConfig *pConfig, const char *name, int16_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddUInt16(SConfig *pConfig, const char *name, uint16_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddInt32(SConfig *pConfig, const char *name, int32_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddUInt32(SConfig *pConfig, const char *name, uint32_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddInt64(SConfig *pConfig, const char *name, int64_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddUInt64(SConfig *pConfig, const char *name, uint64_t defaultVal, ECfgUnitType utype);
|
|
void cfgAddFloat(SConfig *pConfig, const char *name, float defaultVal, ECfgUnitType utype);
|
|
void cfgAddDouble(SConfig *pConfig, const char *name, double defaultVal, ECfgUnitType utype);
|
|
void cfgAddString(SConfig *pConfig, const char *name, const char *defaultVal, ECfgUnitType utype);
|
|
void cfgAddFqdn(SConfig *pConfig, const char *name, const char *defaultVal, ECfgUnitType utype);
|
|
void cfgAddIpStr(SConfig *pConfig, const char *name, const char *defaultVal, ECfgUnitType utype);
|
|
void cfgAddDir(SConfig *pConfig, const char *name, const char *defaultVal, ECfgUnitType utype);
|
|
void cfgAddFile(SConfig *pConfig, const char *name, const char *defaultVal, ECfgUnitType utype);
|
|
|
|
bool cfgGetBool(SConfig *pConfig, const char *name);
|
|
int8_t cfgGetInt8(SConfig *pConfig, const char *name);
|
|
uint8_t cfgGetUInt8(SConfig *pConfig, const char *name);
|
|
int16_t cfgGetInt16(SConfig *pConfig, const char *name);
|
|
uint16_t cfgGetUInt16(SConfig *pConfig, const char *name);
|
|
int32_t cfgGetInt32(SConfig *pConfig, const char *name);
|
|
uint32_t cfgGetUInt32(SConfig *pConfig, const char *name);
|
|
int64_t cfgGetInt64(SConfig *pConfig, const char *name);
|
|
uint64_t cfgGetUInt64(SConfig *pConfig, const char *name);
|
|
float cfgGetFloat(SConfig *pConfig, const char *name);
|
|
double cfgGetDouble(SConfig *pConfig, const char *name);
|
|
const char *cfgGetString(SConfig *pConfig, const char *name);
|
|
const char *cfgGetFqdn(SConfig *pConfig, const char *name);
|
|
const char *cfgGetIpStr(SConfig *pConfig, const char *name);
|
|
const char *cfgGetDir(SConfig *pConfig, const char *name);
|
|
const char *cfgGetFile(SConfig *pConfig, const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*_TD_CONFIG_H_*/
|