blob: 9bd6768bd2a2d5756e204b6a795823feeb578ea9 [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 Wiley89eaab52015-09-15 14:46:46 -070024using android::aidl::JavaOptions;
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 Wiley89eaab52015-09-15 14:46:46 -070029 std::unique_ptr<JavaOptions> options = JavaOptions::Parse(argc, argv);
Christopher Wiley4427d862015-09-14 11:07:39 -070030 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 Wiley89eaab52015-09-15 14:46:46 -070035 case JavaOptions::COMPILE_AIDL_TO_JAVA:
Christopher Wileya590de82015-09-15 15:46:28 -070036 return android::aidl::compile_aidl_to_java(*options);
Christopher Wiley89eaab52015-09-15 14:46:46 -070037 case JavaOptions::PREPROCESS_AIDL:
Christopher Wiley4427d862015-09-14 11:07:39 -070038 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}