1 /*
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
24 using android::aidl::Options;
25
26 #ifdef AIDL_CPP_BUILD
27 constexpr Options::Language kDefaultLang = Options::Language::CPP;
28 #else
29 constexpr Options::Language kDefaultLang = Options::Language::JAVA;
30 #endif
31
main(int argc,char * argv[])32 int main(int argc, char* argv[]) {
33 Options options(argc, argv, kDefaultLang);
34 if (!options.Ok()) {
35 AIDL_ERROR(options.GetErrorMessage()) << options.GetUsage();
36 return 1;
37 }
38
39 // Only minimal functionality should go here, so that as much of possible of
40 // the aidl compiler is mocked with the single function `aidl_entry`
41
42 android::aidl::IoDelegate io_delegate;
43 int ret = aidl_entry(options, io_delegate);
44
45 return ret;
46 }
47