2010-04-14 04:29:51 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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.
|
|
|
|
*/
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
#ifndef _INIT_PARSER_H_
|
|
|
|
#define _INIT_PARSER_H_
|
2010-04-14 04:29:51 +02:00
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-08-03 02:01:36 +02:00
|
|
|
#include "result.h"
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
// SectionParser is an interface that can parse a given 'section' in init.
|
|
|
|
//
|
2017-11-10 21:50:58 +01:00
|
|
|
// You can implement up to 4 functions below, with ParseSection being mandatory. The first two
|
2019-06-10 20:08:01 +02:00
|
|
|
// functions return Result<void> indicating if they have an error. It will be reported along
|
2017-11-10 21:50:58 +01:00
|
|
|
// with the filename and line number of where the error occurred.
|
2017-07-27 21:54:48 +02:00
|
|
|
//
|
2017-11-10 21:50:58 +01:00
|
|
|
// 1) ParseSection
|
2017-07-27 21:54:48 +02:00
|
|
|
// This function is called when a section is first encountered.
|
|
|
|
//
|
2017-11-10 21:50:58 +01:00
|
|
|
// 2) ParseLineSection
|
2017-07-27 21:54:48 +02:00
|
|
|
// This function is called on each subsequent line until the next section is encountered.
|
|
|
|
//
|
2017-11-10 21:50:58 +01:00
|
|
|
// 3) EndSection
|
2017-07-27 21:54:48 +02:00
|
|
|
// This function is called either when a new section is found or at the end of the file.
|
|
|
|
// It indicates that parsing of the current section is complete and any relevant objects should
|
|
|
|
// be committed.
|
|
|
|
//
|
2017-11-10 21:50:58 +01:00
|
|
|
// 4) EndFile
|
2017-07-27 21:54:48 +02:00
|
|
|
// This function is called at the end of the file.
|
|
|
|
// It indicates that the parsing has completed and any relevant objects should be committed.
|
2010-04-14 04:29:51 +02:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
class SectionParser {
|
|
|
|
public:
|
|
|
|
virtual ~SectionParser() {}
|
2019-06-10 20:08:01 +02:00
|
|
|
virtual Result<void> ParseSection(std::vector<std::string>&& args, const std::string& filename,
|
|
|
|
int line) = 0;
|
|
|
|
virtual Result<void> ParseLineSection(std::vector<std::string>&&, int) { return {}; };
|
|
|
|
virtual Result<void> EndSection() { return {}; };
|
2017-07-27 21:54:48 +02:00
|
|
|
virtual void EndFile(){};
|
2010-04-20 23:29:05 +02:00
|
|
|
};
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
class Parser {
|
|
|
|
public:
|
|
|
|
// LineCallback is the type for callbacks that can parse a line starting with a given prefix.
|
|
|
|
//
|
|
|
|
// They take the form of bool Callback(std::vector<std::string>&& args, std::string* err)
|
|
|
|
//
|
|
|
|
// Similar to ParseSection() and ParseLineSection(), this function returns bool with false
|
|
|
|
// indicating a failure and has an std::string* err parameter into which an error string can
|
|
|
|
// be written.
|
2019-06-10 20:08:01 +02:00
|
|
|
using LineCallback = std::function<Result<void>(std::vector<std::string>&&)>;
|
2017-07-27 21:54:48 +02:00
|
|
|
|
|
|
|
Parser();
|
|
|
|
|
|
|
|
bool ParseConfig(const std::string& path);
|
2023-01-10 07:22:54 +01:00
|
|
|
Result<void> ParseConfigFile(const std::string& path);
|
2017-07-27 21:54:48 +02:00
|
|
|
void AddSectionParser(const std::string& name, std::unique_ptr<SectionParser> parser);
|
|
|
|
void AddSingleLineParser(const std::string& prefix, LineCallback callback);
|
|
|
|
|
2018-06-20 00:18:40 +02:00
|
|
|
// Host init verifier check file permissions.
|
2023-03-16 17:22:25 +01:00
|
|
|
bool ParseConfigFileInsecure(const std::string& path, bool follow_symlinks);
|
2018-06-20 00:18:40 +02:00
|
|
|
|
2018-05-10 02:38:30 +02:00
|
|
|
size_t parse_error_count() const { return parse_error_count_; }
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
private:
|
2018-06-20 00:18:40 +02:00
|
|
|
void ParseData(const std::string& filename, std::string* data);
|
2018-05-10 02:38:30 +02:00
|
|
|
bool ParseConfigDir(const std::string& path);
|
2017-07-27 21:54:48 +02:00
|
|
|
|
|
|
|
std::map<std::string, std::unique_ptr<SectionParser>> section_parsers_;
|
|
|
|
std::vector<std::pair<std::string, LineCallback>> line_callbacks_;
|
2018-05-10 02:38:30 +02:00
|
|
|
size_t parse_error_count_ = 0;
|
2017-07-27 21:54:48 +02:00
|
|
|
};
|
2010-04-14 04:29:51 +02:00
|
|
|
|
2017-06-22 21:53:17 +02:00
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|
|
|
|
|
2017-07-27 21:54:48 +02:00
|
|
|
#endif
|