mirror of
https://github.com/openharmony/startup_init_lite.git
synced 2026-07-01 03:23:16 -04:00
f93d708fa9
Signed-off-by: zhong_ning <zhong_ning@hoperun.com>
67 lines
1.9 KiB
C
Executable File
67 lines
1.9 KiB
C
Executable File
/*
|
|
* Copyright (c) 2020-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.
|
|
*/
|
|
#ifndef BASE_STARTUP_INITLITE_SERVICEMANAGER_H
|
|
#define BASE_STARTUP_INITLITE_SERVICEMANAGER_H
|
|
|
|
#include "init_service.h"
|
|
#include "cJSON.h"
|
|
#include "list.h"
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif
|
|
|
|
#define UID_STR_IN_CFG "uid"
|
|
#define GID_STR_IN_CFG "gid"
|
|
#define ONCE_STR_IN_CFG "once"
|
|
#define IMPORTANT_STR_IN_CFG "importance"
|
|
#define BIN_SH_NOT_ALLOWED "/bin/sh"
|
|
#define CRITICAL_STR_IN_CFG "critical"
|
|
#define DISABLED_STR_IN_CFG "disabled"
|
|
#define CONSOLE_STR_IN_CFG "console"
|
|
|
|
#define MAX_SERVICES_CNT_IN_FILE 100
|
|
|
|
typedef struct {
|
|
char *capStr;
|
|
unsigned int CapNum;
|
|
} CapStrCapNum;
|
|
|
|
typedef struct {
|
|
ListNode services;
|
|
int serviceCount;
|
|
} ServiceSpace;
|
|
|
|
Service *GetServiceByPid(pid_t pid);
|
|
Service *GetServiceByName(const char *servName);
|
|
cJSON *GetArrayItem(const cJSON *fileRoot, int *arrSize, const char *arrName);
|
|
|
|
void StartServiceByName(const char *serviceName, bool checkDynamic);
|
|
void StopServiceByName(const char *serviceName);
|
|
void StopAllServices(int flags);
|
|
void ParseAllServices(const cJSON *fileRoot);
|
|
#ifdef OHOS_SERVICE_DUMP
|
|
void DumpAllServices();
|
|
#endif
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#endif // BASE_STARTUP_INITLITE_SERVICEMANAGER_H
|