blob: 7aba3fbd56c91a870ad730af3cdd6ac163d611d5 [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"
21#include "options.h"
22
Christopher Wiley4427d862015-09-14 11:07:39 -070023using android::aidl::Options;
Christopher Wiley89e35862015-08-30 10:57:07 -070024
Christopher Wiley4427d862015-09-14 11:07:39 -070025int main(int argc, const char** argv) {
26 std::unique_ptr<Options> options = Options::ParseOptions(argc, argv);
27 if (!options) {
Christopher Wiley89e35862015-08-30 10:57:07 -070028 return 1;
Christopher Wiley4427d862015-09-14 11:07:39 -070029 }
30
31 switch (options->task) {
32 case Options::COMPILE_AIDL:
33 return android::aidl::compile_aidl(*options);
34 case Options::PREPROCESS_AIDL:
35 return android::aidl::preprocess_aidl(*options);
36 }
37 std::cerr << "aidl: internal error" << std::endl;
38 return 1;
Christopher Wiley89e35862015-08-30 10:57:07 -070039}