blob: f4c1911505087526867672edadea053a13df677b [file] [log] [blame]
Christopher Wiley4427d862015-09-14 11:07:39 -07001/*
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 <iostream>
18#include <memory>
19
Christopher Wiley89e35862015-08-30 10:57:07 -070020#include "aidl.h"
Christopher Wileyb8b59f62015-09-15 12:19:53 -070021#include "logging.h"
Christopher Wiley89e35862015-08-30 10:57:07 -070022#include "options.h"
23
Christopher Wiley4427d862015-09-14 11:07:39 -070024using android::aidl::Options;
Christopher Wiley89e35862015-08-30 10:57:07 -070025
Christopher Wileyb8b59f62015-09-15 12:19:53 -070026int main(int argc, char** argv) {
27 android::base::InitLogging(argv);
28 LOG(DEBUG) << "aidl starting";
Christopher Wiley4427d862015-09-14 11:07:39 -070029 std::unique_ptr<Options> options = Options::ParseOptions(argc, argv);
30 if (!options) {
Christopher Wiley89e35862015-08-30 10:57:07 -070031 return 1;
Christopher Wiley4427d862015-09-14 11:07:39 -070032 }
33
34 switch (options->task) {
Christopher Wileyd93c5b72015-09-14 13:21:37 -070035 case Options::COMPILE_AIDL_TO_JAVA:
Christopher Wiley4427d862015-09-14 11:07:39 -070036 return android::aidl::compile_aidl(*options);
37 case Options::PREPROCESS_AIDL:
38 return android::aidl::preprocess_aidl(*options);
39 }
40 std::cerr << "aidl: internal error" << std::endl;
41 return 1;
Christopher Wiley89e35862015-08-30 10:57:07 -070042}