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
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 51 52

#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,
M
Mupceet 已提交
53
    PARAM_CODE_NODE_EXIST, // 9
M
Mupceet 已提交
54 55
    DAC_RESULT_INVALID_PARAM = 1000,
    DAC_RESULT_FORBIDED,
M
Mupceet 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68
    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 已提交
69 70 71 72 73
/**
 * Init 接口
 * 初始化参数服务
 *
 */
S
sun_fan 已提交
74
void InitParamService(void);
M
Mupceet 已提交
75
void LoadSpecialParam(void);
Z
zhong_ning 已提交
76 77 78 79 80 81

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

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

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

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

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

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

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

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

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

M
Mupceet 已提交
142 143
void RegisterBootStateChange(void (*bootStateChange)(const char *));

Z
zhong_ning 已提交
144
/**
M
Mupceet 已提交
145
 * 对外接口
146
 * dump 参数和trigger信息
Z
zhong_ning 已提交
147 148
 *
 */
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
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);

M
Mupceet 已提交
217
int SystemCheckParamExist(const char *name);
M
Mupceet 已提交
218 219 220 221 222
long long GetSystemCommitId(void);

void SystemDumpParameters(int verbose);

int WatchParamCheck(const char *keyprefix);
Z
zhong_ning 已提交
223 224 225 226 227 228 229

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