2009-03-04 04:32:55 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-06-26 23:44:37 +02:00
|
|
|
#pragma once
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2018-02-21 19:37:44 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2015-06-13 03:02:20 +02:00
|
|
|
#include <string>
|
2017-06-22 21:53:17 +02:00
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
#include "action.h"
|
2018-02-14 00:36:14 +01:00
|
|
|
#include "action_manager.h"
|
2017-07-27 21:54:48 +02:00
|
|
|
#include "parser.h"
|
2019-06-26 19:46:20 +02:00
|
|
|
#include "service_list.h"
|
2017-07-27 21:54:48 +02:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
2017-07-28 01:20:58 +02:00
|
|
|
Parser CreateParser(ActionManager& action_manager, ServiceList& service_list);
|
2018-11-08 09:14:35 +01:00
|
|
|
Parser CreateServiceOnlyParser(ServiceList& service_list);
|
2017-07-27 21:54:48 +02:00
|
|
|
|
2019-10-11 22:18:44 +02:00
|
|
|
void TriggerShutdown(const std::string& command);
|
2019-09-10 19:40:47 +02:00
|
|
|
|
2017-02-02 19:52:39 +01:00
|
|
|
bool start_waiting_for_property(const char *name, const char *value);
|
2017-01-26 01:27:03 +01:00
|
|
|
|
2017-04-20 00:31:58 +02:00
|
|
|
void DumpState();
|
|
|
|
|
2017-06-28 07:08:45 +02:00
|
|
|
void ResetWaitForProp();
|
|
|
|
|
2019-04-23 02:46:37 +02:00
|
|
|
void SendLoadPersistentPropertiesMessage();
|
|
|
|
void SendStopSendingMessagesMessage();
|
2019-10-07 17:26:33 +02:00
|
|
|
void SendStartSendingMessagesMessage();
|
2019-04-23 02:46:37 +02:00
|
|
|
|
2018-11-06 23:12:05 +01:00
|
|
|
int SecondStageMain(int argc, char** argv);
|
2018-01-19 23:25:48 +01:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|