startup_init/services/param/liteos/param_client.c
cheng_jinsong 57d294da61 revert set log level
Signed-off-by: cheng_jinsong <chengjinsong2@huawei.com>
2022-10-07 12:59:54 +08:00

138 lines
4.5 KiB
C

/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* 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.
*/
#include "init_param.h"
#include "param_manager.h"
#define MIN_SLEEP (100 * 1000)
static int g_flags = 0;
__attribute__((constructor)) static void ClientInit(void);
static void ClientDeinit(void);
static int InitParamClient(void)
{
if (PARAM_TEST_FLAG(g_flags, WORKSPACE_FLAGS_INIT)) {
return 0;
}
EnableInitLog(INIT_INFO);
PARAM_LOGV("InitParamClient");
int ret = InitParamWorkSpace(1, NULL);
PARAM_CHECK(ret == 0, return -1, "Failed to init param workspace");
PARAM_SET_FLAG(g_flags, WORKSPACE_FLAGS_INIT);
// init persist to save
InitPersistParamWorkSpace();
return 0;
}
void ClientInit(void)
{
PARAM_LOGV("ClientInit");
#ifdef __LITEOS_M__
InitParamService();
#else
#ifndef STARTUP_INIT_TEST
(void)InitParamClient();
#endif
#endif
}
void ClientDeinit(void)
{
if (PARAM_TEST_FLAG(g_flags, WORKSPACE_FLAGS_INIT)) {
CloseParamWorkSpace();
}
PARAM_SET_FLAG(g_flags, 0);
}
int SystemSetParameter(const char *name, const char *value)
{
PARAM_CHECK(name != NULL && value != NULL, return -1, "Invalid name or value %s", name);
int ctrlService = 0;
int ret = CheckParameterSet(name, value, GetParamSecurityLabel(), &ctrlService);
PARAM_CHECK(ret == 0, return ret, "Forbid to set parameter %s", name);
PARAM_LOGV("SystemSetParameter name %s value: %s ctrlService %d", name, value, ctrlService);
if ((ctrlService & PARAM_CTRL_SERVICE) != PARAM_CTRL_SERVICE) { // ctrl param
uint32_t dataIndex = 0;
ret = WriteParam(name, value, &dataIndex, 0);
PARAM_CHECK(ret == 0, return ret, "Failed to set param %d name %s %s", ret, name, value);
ret = WritePersistParam(name, value);
PARAM_CHECK(ret == 0, return ret, "Failed to set persist param name %s", name);
} else {
PARAM_LOGE("SystemSetParameter can not support service ctrl parameter name %s", name);
}
return ret;
}
int SystemWaitParameter(const char *name, const char *value, int32_t timeout)
{
PARAM_CHECK(name != NULL && value != NULL, return -1, "Invalid name or value %s", name);
long long globalCommit = 0;
// first check permission
ParamHandle handle = 0;
int ret = ReadParamWithCheck(name, DAC_READ, &handle);
if (ret != PARAM_CODE_NOT_FOUND && ret != 0 && ret != PARAM_CODE_NODE_EXIST) {
PARAM_CHECK(ret == 0, return ret, "Forbid to wait parameters %s", name);
}
uint32_t diff = 0;
time_t startTime;
if (timeout <= 0) {
timeout = DEFAULT_PARAM_WAIT_TIMEOUT;
}
(void)time(&startTime);
do {
long long commit = GetSystemCommitId();
if (commit != globalCommit) {
ParamNode *param = SystemCheckMatchParamWait(name, value);
if (param != NULL) {
ret = 0;
break;
}
}
globalCommit = commit;
usleep(MIN_SLEEP);
time_t finishTime;
(void)time(&finishTime);
diff = (uint32_t)difftime(finishTime, startTime);
if (diff >= timeout) {
ret = PARAM_CODE_TIMEOUT;
break;
}
} while (1);
PARAM_LOGI("SystemWaitParameter name %s value: %s diff %d timeout %d", name, value, diff, diff);
return ret;
}
int WatchParamCheck(const char *keyprefix)
{
(void)keyprefix;
return PARAM_CODE_NOT_SUPPORT;
}
int SystemCheckParamExist(const char *name)
{
return SysCheckParamExist(name);
}
int SystemFindParameter(const char *name, ParamHandle *handle)
{
PARAM_CHECK(name != NULL && handle != NULL, return -1, "The name or handle is null");
int ret = ReadParamWithCheck(name, DAC_READ, handle);
if (ret != PARAM_CODE_NOT_FOUND && ret != 0 && ret != PARAM_CODE_NODE_EXIST) {
PARAM_CHECK(ret == 0, return ret, "Forbid to access parameter %s", name);
}
return ret;
}