• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef BASE_STARTUP_PARAM_BASE_H
17 #define BASE_STARTUP_PARAM_BASE_H
18 #include "sys_param.h"
19 #include "beget_ext.h"
20 #ifndef PARAM_BASE
21 #include "securec.h"
22 #endif
23 
24 #ifdef __cplusplus
25 #if __cplusplus
26 extern "C" {
27 #endif
28 #endif
29 
30 INIT_LOCAL_API void CloseParamWorkSpace(void);
31 INIT_LOCAL_API int ParamSprintf(char *buffer, size_t buffSize, const char *format, ...);
32 INIT_LOCAL_API int ParamMemcpy(void *dest, size_t destMax, const void *src, size_t count);
33 INIT_LOCAL_API int ParamStrCpy(char *strDest, size_t destMax, const char *strSrc);
34 
35 typedef struct CachedParameter_ {
36     struct WorkSpace_ *workspace;
37     long long spaceCommitId;
38     uint32_t dataCommitId;
39     uint32_t dataIndex;
40     uint32_t bufferLen;
41     uint32_t nameLen;
42     char *paramValue;
43     char data[0];
44 } CachedParameter;
45 
46 #ifdef __cplusplus
47 #if __cplusplus
48 }
49 #endif
50 #endif
51 #endif // BASE_STARTUP_PARAM_BASE_H