blob: daaa6b5ea41d4a255a49e1f5529299c42b2ec123 [file] [log] [blame]
Jiyong Park74595c12018-07-23 15:22:50 +09001/*
2 * Copyright (C) 2015, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "aidl.h"
18#include "io_delegate.h"
19#include "logging.h"
20#include "options.h"
21
22#include <iostream>
23#include <memory>
24
25using android::aidl::Options;
26
27// aidl is leaky. Turn off LeakSanitizer by default. b/37749857
28extern "C" const char* __asan_default_options() {
29 return "detect_leaks=0";
30}
31
32int main(int argc, char* argv[]) {
33 android::base::InitLogging(argv);
34 LOG(DEBUG) << "aidl starting";
35 Options options(argc, argv, Options::Language::JAVA);
36 if (!options.Ok()) {
37 std::cerr << options.GetErrorMessage();
38 std::cerr << options.GetUsage();
39 return 1;
40 }
41
42 android::aidl::IoDelegate io_delegate;
Jiyong Park74595c12018-07-23 15:22:50 +090043 switch (options.GetTask()) {
44 case Options::Task::COMPILE:
Jiyong Parkb034bf02018-07-30 17:44:33 +090045 return android::aidl::compile_aidl(options, io_delegate);
Jiyong Park74595c12018-07-23 15:22:50 +090046 case Options::Task::PREPROCESS:
Jiyong Park0ce81842018-08-01 20:03:41 +090047 return android::aidl::preprocess_aidl(options, io_delegate) ? 0 : 1;
Jiyong Park74595c12018-07-23 15:22:50 +090048 case Options::Task::DUMPAPI:
Jiyong Park0ce81842018-08-01 20:03:41 +090049 return android::aidl::dump_api(options, io_delegate) ? 0 : 1;
Jiyong Park74595c12018-07-23 15:22:50 +090050 default:
51 LOG(FATAL) << "aidl: internal error" << std::endl;
52 return 1;
53 }
54}