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_INIT_PLUGIN_H
17 #define BASE_STARTUP_INIT_PLUGIN_H
18 #include <stdbool.h>
19 #include <stdint.h>
20 #include <stdio.h>
21 #include "modulemgr.h"
22 #include "bootstage.h"
23 #include "init_modulemgr.h"
24 #include "init_cmdexecutor.h"
25 #include "init_running_hooks.h"
26 #include "init_filesystems.h"
27 
28 #ifdef __cplusplus
29 #if __cplusplus
30 extern "C" {
31 #endif
32 #endif
33 
34 int SystemWriteParam(const char *name, const char *value);
35 
36 int SystemReadParam(const char *name, char *value, unsigned int *len);
37 
38 int LoadParamsFile(const char *fileName, bool onlyAdd);
39 
40 typedef int (*CmdExecutor)(int id, const char *name, int argc, const char **argv);
41 
42 int AddCmdExecutor(const char *cmdName, CmdExecutor execCmd);
43 
44 void RemoveCmdExecutor(const char *cmdName, int id);
45 
46 int DoJobNow(const char *jobName);
47 
48 int GetParameterFromCmdLine(const char *paramName, char *value, size_t valueLen);
49 #ifdef __cplusplus
50 #if __cplusplus
51 }
52 #endif
53 #endif
54 #endif  // BASE_STARTUP_INIT_PLUGIN_H
55