init_param.h 5.3 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
Z
zhong_ning 已提交
23 24 25 26 27
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif
M
Mupceet 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

#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 uint32_t ParamHandle;

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,
    PARAM_CODE_NODE_EXIST,
    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 已提交
66 67 68 69 70
/**
 * Init 接口
 * 初始化参数服务
 *
 */
S
sun_fan 已提交
71
void InitParamService(void);
Z
zhong_ning 已提交
72 73 74 75 76 77

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

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

/**
 * Init 接口
 * 加载默认的参数值
 *
 */
4
411148299@qq.com 已提交
92
int LoadDefaultParams(const char *fileName, unsigned int mode);
Z
zhong_ning 已提交
93 94 95

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

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

/**
 * Init 接口
 * 查询参数。
 *
 */
int SystemReadParam(const char *name, char *value, unsigned int *len);

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

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

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

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

M
Mupceet 已提交
145 146
void RegisterBootStateChange(void (*bootStateChange)(const char *));

Z
zhong_ning 已提交
147
/**
M
Mupceet 已提交
148
 * 对外接口
149
 * dump 参数和trigger信息
Z
zhong_ning 已提交
150 151
 *
 */
M
Mupceet 已提交
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
void SystemDumpTriggers(int verbose);
#endif

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

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

/**
 * 对外接口
 * 查询参数,主要用于其他进程使用,找到对应属性的handle。
 *
 */
int SystemFindParameter(const char *name, ParamHandle *handle);

/**
 * 对外接口
 * 根据handle获取对应数据的修改标识。
 * commitId 获取计数变化
 *
 */
int SystemGetParameterCommitId(ParamHandle handle, uint32_t *commitId);

/**
 * 外部接口
 * 遍历参数。
 *
 */
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 SystemGetParameterValue(ParamHandle handle, char *value, 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);

int SysCheckParamExist(const char *name);
long long GetSystemCommitId(void);

void SystemDumpParameters(int verbose);

int WatchParamCheck(const char *keyprefix);
Z
zhong_ning 已提交
226 227 228 229 230 231 232

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