cfgInt.h 1.3 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 20

/*
 * 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_CFG_INT_H_
#define _TD_CFG_INT_H_

#include "config.h"
S
Shengliang Guan 已提交
21
#include "taoserror.h"
S
Shengliang Guan 已提交
22
#include "thash.h"
S
config  
Shengliang Guan 已提交
23
#include "tutil.h"
S
Shengliang Guan 已提交
24
#include "ulog.h"
S
Shengliang Guan 已提交
25
#include "tglobal.h"
S
Shengliang Guan 已提交
26 27 28 29 30 31

#ifdef __cplusplus
extern "C" {
#endif

typedef struct SConfig {
S
config  
Shengliang Guan 已提交
32 33
  ECfgSrcType stype;
  SHashObj   *hash;
S
Shengliang Guan 已提交
34 35
} SConfig;

S
Shengliang Guan 已提交
36
int32_t cfgLoadFromCfgFile(SConfig *pConfig, const char *filepath);
S
Shengliang Guan 已提交
37 38
int32_t cfgLoadFromEnvFile(SConfig *pConfig, const char *filepath);
int32_t cfgLoadFromEnvVar(SConfig *pConfig);
S
Shengliang Guan 已提交
39 40
int32_t cfgLoadFromApollUrl(SConfig *pConfig, const char *url);

S
config  
Shengliang Guan 已提交
41 42
int32_t cfgSetItem(SConfig *pConfig, const char *name, const char *value, ECfgSrcType stype);

S
Shengliang Guan 已提交
43 44 45 46 47
#ifdef __cplusplus
}
#endif

#endif /*_TD_CFG_INT_H_*/