blob: 9560ea32ead1badfc35c091ca5adf9fe72c1c702 [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:
47 if (android::aidl::preprocess_aidl(options, io_delegate)) return 0;
48 return 1;
49 case Options::Task::DUMPAPI:
50 return android::aidl::dump_api(options, io_delegate);
51 default:
52 LOG(FATAL) << "aidl: internal error" << std::endl;
53 return 1;
54 }
55}