blob: 69ba060981a401df9ffdc8c27d41602c6b97b0a4 [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>
Steven Morelandbb654e32020-01-08 19:52:05 -080023
Steven Moreland3981d9e2020-03-31 14:11:44 -070024using android::aidl::Options;
25
Steven Morelandbb654e32020-01-08 19:52:05 -080026#ifdef AIDL_CPP_BUILD
27constexpr Options::Language kDefaultLang = Options::Language::CPP;
28#else
29constexpr Options::Language kDefaultLang = Options::Language::JAVA;
30#endif
Jiyong Park74595c12018-07-23 15:22:50 +090031
Steven Morelandfdb57cd2020-01-08 20:03:30 -080032int main(int argc, char* argv[]) {
Steven Morelandfdb57cd2020-01-08 20:03:30 -080033 Options options(argc, argv, kDefaultLang);
34 if (!options.Ok()) {
Steven Moreland21780812020-09-11 01:29:45 +000035 AIDL_ERROR(options.GetErrorMessage()) << options.GetUsage();
Steven Morelandfdb57cd2020-01-08 20:03:30 -080036 return 1;
37 }
38
Steven Moreland3981d9e2020-03-31 14:11:44 -070039 // 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`
Steven Morelandfdb57cd2020-01-08 20:03:30 -080041
Steven Moreland3981d9e2020-03-31 14:11:44 -070042 android::aidl::IoDelegate io_delegate;
43 int ret = aidl_entry(options, io_delegate);
Steven Morelandfdb57cd2020-01-08 20:03:30 -080044
45 return ret;
46}