• 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_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 
27 #ifdef __cplusplus
28 #if __cplusplus
29 extern "C" {
30 #endif
31 #endif
32 
33 int SystemWriteParam(const char *name, const char *value);
34 
35 int SystemReadParam(const char *name, char *value, unsigned int *len);
36 
37 int LoadParamsFile(const char *fileName, bool onlyAdd);
38 
39 typedef int (*CmdExecutor)(int id, const char *name, int argc, const char **argv);
40 
41 int AddCmdExecutor(const char *cmdName, CmdExecutor execCmd);
42 
43 void RemoveCmdExecutor(const char *cmdName, int id);
44 
45 int DoJobNow(const char *jobName);
46 #ifdef __cplusplus
47 #if __cplusplus
48 }
49 #endif
50 #endif
51 #endif  // BASE_STARTUP_INIT_PLUGIN_H
52