init_param.h 4.8 KB
Newer Older
Z
zhong_ning 已提交
1
/*
Z
zhong_ning 已提交
2
 * Copyright (c) 2021 Huawei Device Co., Ltd.
Z
zhong_ning 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef BASE_STARTUP_INIT_PARAM_H
#define BASE_STARTUP_INIT_PARAM_H
S
sun_fan 已提交
18
#include <stdint.h>
Z
zhong_ning 已提交
19
#include <stdio.h>
M
Mupceet 已提交
20
#ifdef PARAM_SUPPORT_TRIGGER
S
sun_fan 已提交
21
#include "cJSON.h"
M
Mupceet 已提交
22
#endif
A
an_xinwei 已提交
23
#include "sys_param.h"
Z
zhong_ning 已提交
24 25 26 27 28
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif
M
Mupceet 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50

#define DEFAULT_PARAM_WAIT_TIMEOUT 30 // 30s
#define DEFAULT_PARAM_SET_TIMEOUT 10 // 10s

#ifndef PARAM_NAME_LEN_MAX
#define PARAM_CONST_VALUE_LEN_MAX 4096
#define PARAM_VALUE_LEN_MAX  96
#define PARAM_NAME_LEN_MAX  96
#endif

typedef enum {
    PARAM_CODE_ERROR = -1,
    PARAM_CODE_SUCCESS = 0,
    PARAM_CODE_INVALID_PARAM = 100,
    PARAM_CODE_INVALID_NAME,
    PARAM_CODE_INVALID_VALUE,
    PARAM_CODE_REACHED_MAX,
    PARAM_CODE_NOT_SUPPORT,
    PARAM_CODE_TIMEOUT,
    PARAM_CODE_NOT_FOUND,
    PARAM_CODE_READ_ONLY,
    PARAM_CODE_FAIL_CONNECT,
M
Mupceet 已提交
51
    PARAM_CODE_NODE_EXIST, // 9
C
cheng_jinsong 已提交
52
    PARAM_CODE_INVALID_SOCKET,
M
Mupceet 已提交
53 54
    DAC_RESULT_INVALID_PARAM = 1000,
    DAC_RESULT_FORBIDED,
M
Mupceet 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67
    PARAM_CODE_MAX
} PARAM_CODE;

typedef enum {
    EVENT_TRIGGER_PARAM,
    EVENT_TRIGGER_BOOT,
    EVENT_TRIGGER_PARAM_WAIT,
    EVENT_TRIGGER_PARAM_WATCH
} EventType;

#define LOAD_PARAM_NORMAL 0x00
#define LOAD_PARAM_ONLY_ADD 0x01

Z
zhong_ning 已提交
68 69 70 71 72
/**
 * Init 接口
 * 初始化参数服务
 *
 */
S
sun_fan 已提交
73
void InitParamService(void);
M
Mupceet 已提交
74
void LoadSpecialParam(void);
Z
zhong_ning 已提交
75 76 77 78 79 80

/**
 * Init 接口
 * 启动参数服务,在main启动的最后调用,阻赛当前线程
 *
 */
S
sun_fan 已提交
81
int StartParamService(void);
Z
zhong_ning 已提交
82 83 84 85 86 87

/**
 * Init 接口
 * 停止参数服务
 *
 */
S
sun_fan 已提交
88
void StopParamService(void);
Z
zhong_ning 已提交
89 90 91 92 93 94

/**
 * Init 接口
 * 加载默认的参数值
 *
 */
M
Mupceet 已提交
95
int LoadDefaultParams(const char *fileName, uint32_t mode);
Z
zhong_ning 已提交
96 97 98

/**
 * Init 接口
M
Mupceet 已提交
99
 * 加载持久化参数。
Z
zhong_ning 已提交
100 101
 *
 */
S
sun_fan 已提交
102
int LoadPersistParams(void);
Z
zhong_ning 已提交
103 104 105 106 107 108 109 110

/**
 * Init 接口
 * 设置参数,主要用于其他进程使用,通过管道修改参数
 *
 */
int SystemWriteParam(const char *name, const char *value);

M
Mupceet 已提交
111
#ifdef PARAM_SUPPORT_TRIGGER
Z
zhong_ning 已提交
112
/**
M
Mupceet 已提交
113
 * 对外接口
Z
zhong_ning 已提交
114 115 116
 * 触发一个trigger操作。
 *
 */
S
sun_fan 已提交
117
void PostTrigger(EventType type, const char *content, uint32_t contentLen);
Z
zhong_ning 已提交
118 119

/**
M
Mupceet 已提交
120
 * 对外接口
Z
zhong_ning 已提交
121 122 123
 * 解析trigger文件。
 *
 */
X
xionglei6 已提交
124
int ParseTriggerConfig(const cJSON *fileRoot, int (*checkJobValid)(const char *jobName));
Z
zhong_ning 已提交
125 126

/**
M
Mupceet 已提交
127
 * 对外接口
Z
zhong_ning 已提交
128 129 130
 * 按名字执行对应的trigger。
 *
 */
S
sun_fan 已提交
131
void DoTriggerExec(const char *triggerName);
X
xionglei6 已提交
132 133 134
void DoJobExecNow(const char *triggerName);

/**
M
Mupceet 已提交
135
 * 对外接口
X
xionglei6 已提交
136 137 138 139
 * 按名字添加一个job,用于group支持。
 *
 */
int AddCompleteJob(const char *name, const char *condition, const char *cmdContent);
Z
zhong_ning 已提交
140

C
cheng_jinsong 已提交
141
void RegisterBootStateChange(void (*bootStateChange)(int start, const char *));
M
Mupceet 已提交
142

Z
zhong_ning 已提交
143
/**
M
Mupceet 已提交
144
 * 对外接口
145
 * dump 参数和trigger信息
Z
zhong_ning 已提交
146 147
 *
 */
C
cheng_jinsong 已提交
148
void SystemDumpTriggers(int verbose, int (*dump)(const char *fmt, ...));
M
Mupceet 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
#endif

/**
 * 对外接口
 * 设置参数,主要用于其他进程使用,通过管道修改参数。
 *
 */
int SystemSetParameter(const char *name, const char *value);

/**
 * 对外接口
 * 查询参数,主要用于其他进程使用,需要给定足够的内存保存参数。
 * 如果 value == null,获取value的长度
 * 否则value的大小认为是len
 *
 */
#define SystemGetParameter SystemReadParam

/**
 * 外部接口
 * 遍历参数。
 *
 */
int SystemTraversalParameter(const char *prefix,
    void (*traversalParameter)(ParamHandle handle, void *cookie), void *cookie);

/**
 * 外部接口
 * 查询参数,主要用于其他进程使用,需要给定足够的内存保存参数。
 * 如果 value == null,获取value的长度
 * 否则value的大小认为是len
 *
 */
int SystemGetParameterName(ParamHandle handle, char *name, unsigned int len);

/**
 * 外部接口
 * 等待某个参数值被修改,阻塞直到参数值被修改或超时
 *
 */
int SystemWaitParameter(const char *name, const char *value, int32_t timeout);

typedef void (*ParameterChangePtr)(const char *key, const char *value, void *context);
int SystemWatchParameter(const char *keyprefix, ParameterChangePtr change, void *context);

M
Mupceet 已提交
194
int SystemCheckParamExist(const char *name);
M
Mupceet 已提交
195

C
cheng_jinsong 已提交
196
void SystemDumpParameters(int verbose, int (*dump)(const char *fmt, ...));
M
Mupceet 已提交
197 198

int WatchParamCheck(const char *keyprefix);
Z
zhong_ning 已提交
199 200 201 202 203 204 205

#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif
#endif