blob: 74db49c7be1c10f424833d55feb1eb92e2a8bad8 [file] [log] [blame]
Jiyong Park1deecc32018-07-17 01:14:41 +09001/*
2 * Copyright (C) 2018, 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 */
Steven Moreland9fccf582018-08-27 20:36:27 -070016#pragma once
Jiyong Park1deecc32018-07-17 01:14:41 +090017
Steven Moreland6cee3482018-07-18 14:39:58 -070018#include <functional>
Jiyong Park1deecc32018-07-17 01:14:41 +090019#include <map>
20#include <memory>
21#include <set>
22#include <string>
23#include <utility>
24#include <vector>
25
26using std::map;
27using std::pair;
28using std::set;
29using std::string;
30using std::unique_ptr;
31using std::vector;
32
33class AidlDefinedType;
34class AidlTypeSpecifier;
35
36namespace android {
37namespace aidl {
38
39// AidlTypenames is a collection of AIDL types available to a compilation unit.
40//
41// Basic types (such as int, String, etc.) are added by default, while defined
42// types (such as IFoo, MyParcelable, etc.) and types from preprocessed inputs
43// are added as they are recognized by the parser.
44//
45// When AidlTypeSpecifier is encountered during parsing, parser defers the
46// resolution of it until the end of the parsing, where it uses AidlTypenames
47// to resolve type names in AidlTypeSpecifier.
48//
49// Note that nothing here is specific to either Java or C++.
Jiyong Parkac896042018-07-23 21:23:05 +090050class AidlTypenames final {
Jiyong Park1deecc32018-07-17 01:14:41 +090051 public:
52 AidlTypenames() = default;
Jiyong Parkb034bf02018-07-30 17:44:33 +090053 void Reset();
54 bool AddDefinedType(unique_ptr<AidlDefinedType> type);
Jiyong Park1deecc32018-07-17 01:14:41 +090055 bool AddPreprocessedType(unique_ptr<AidlDefinedType> type);
Jiyong Parkac896042018-07-23 21:23:05 +090056 static bool IsBuiltinTypename(const string& type_name);
Jeongik Chadb0f59e2018-11-01 18:11:21 +090057 static bool IsPrimitiveTypename(const string& type_name);
Jiyong Parkac896042018-07-23 21:23:05 +090058 const AidlDefinedType* TryGetDefinedType(const string& type_name) const;
59 pair<string, bool> ResolveTypename(const string& type_name) const;
Jiyong Park1d2df7d2018-07-23 15:22:50 +090060 bool CanBeOutParameter(const AidlTypeSpecifier& type) const;
Jiyong Park1deecc32018-07-17 01:14:41 +090061
Steven Moreland6cee3482018-07-18 14:39:58 -070062 // Iterates over all defined and then preprocessed types
63 void IterateTypes(const std::function<void(const AidlDefinedType&)>& body) const;
64
Jiyong Park1deecc32018-07-17 01:14:41 +090065 private:
Jiyong Parkb034bf02018-07-30 17:44:33 +090066 map<string, unique_ptr<AidlDefinedType>> defined_types_;
Jiyong Park1deecc32018-07-17 01:14:41 +090067 map<string, unique_ptr<AidlDefinedType>> preprocessed_types_;
68};
69
70} // namespace aidl
71} // namespace android