blob: 99002916224024da675c7bc5c6d402d743154af2 [file] [log] [blame]
/*
* Copyright (C) 2015, 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.
*/
#ifndef AIDL_OPTIONS_H_
#define AIDL_OPTIONS_H_
#include <memory>
#include <string>
#include <vector>
#include <base/macros.h>
#include <gtest/gtest_prod.h>
namespace android {
namespace aidl {
// This object represents the parsed options to the Java generating aidl.
class JavaOptions final {
public:
enum {
COMPILE_AIDL_TO_JAVA,
PREPROCESS_AIDL,
};
~JavaOptions() = default;
// Parses the command line and returns a non-null pointer to an JavaOptions
// object on success.
// Prints the usage statement on failure.
static std::unique_ptr<JavaOptions> Parse(int argc, const char* const* argv);
int task{COMPILE_AIDL_TO_JAVA};
bool fail_on_parcelable_{false};
std::vector<std::string> import_paths_;
std::vector<std::string> preprocessed_files_;
std::string input_file_name_;
std::string output_file_name_;
std::string output_base_folder_;
std::string dep_file_name_;
bool auto_dep_file_{false};
std::vector<std::string> files_to_preprocess_;
private:
JavaOptions() = default;
FRIEND_TEST(EndToEndTest, IExampleInterface);
DISALLOW_COPY_AND_ASSIGN(JavaOptions);
};
class CppOptions final {
public:
~CppOptions() = default;
// Parses the command line and returns a non-null pointer to an CppOptions
// object on success.
// Prints the usage statement on failure.
static std::unique_ptr<CppOptions> Parse(int argc, const char* const* argv);
std::string InputFileName() const;
// TODO(wiley) Introduce other getters as necessary.
private:
CppOptions() = default;
std::string input_file_name_;
std::vector<std::string> import_paths_;
std::string output_base_folder_;
std::string dep_file_name_;
FRIEND_TEST(CppOptionsTests, ParsesCompileCpp);
DISALLOW_COPY_AND_ASSIGN(CppOptions);
};
} // namespace android
} // namespace aidl
#endif // AIDL_OPTIONS_H_