Steven Moreland | 860b194 | 2018-08-16 14:59:28 -0700 | [diff] [blame] | 1 | /* |
| 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 Moreland | 9fccf58 | 2018-08-27 20:36:27 -0700 | [diff] [blame] | 16 | #pragma once |
Steven Moreland | 860b194 | 2018-08-16 14:59:28 -0700 | [diff] [blame] | 17 | |
| 18 | #include "aidl_language.h" |
| 19 | |
| 20 | namespace android { |
| 21 | namespace aidl { |
| 22 | namespace cpp { |
| 23 | |
| 24 | // This header provides functions that translate AIDL things to cpp things. |
| 25 | |
| 26 | std::string ConstantValueDecorator(const AidlTypeSpecifier& type, const std::string& raw_value); |
| 27 | |
Jiyong Park | ce50e26 | 2018-10-29 09:54:20 +0900 | [diff] [blame] | 28 | struct CodeGeneratorContext { |
| 29 | CodeWriter& writer; |
| 30 | |
| 31 | const AidlTypenames& types; |
| 32 | const AidlTypeSpecifier& type; // an argument or return type to generate code for |
| 33 | const string name; // name of the variable for the argument or the return value |
| 34 | const bool isPointer; // whether the variable 'name' is a pointer or not |
Jiyong Park | ce50e26 | 2018-10-29 09:54:20 +0900 | [diff] [blame] | 35 | }; |
| 36 | |
Jiyong Park | 717fc69 | 2020-11-25 16:31:32 +0900 | [diff] [blame] | 37 | std::string GetTransactionIdFor(const AidlInterface& iface, const AidlMethod& method); |
Jeongik Cha | 1a7ab64 | 2019-07-29 17:31:02 +0900 | [diff] [blame] | 38 | |
| 39 | std::string CppNameOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames); |
| 40 | |
Jiyong Park | 4f3e8c0 | 2019-11-22 14:28:47 +0900 | [diff] [blame] | 41 | bool IsNonCopyableType(const AidlTypeSpecifier& type, const AidlTypenames& typenames); |
| 42 | |
Daniel Norman | 85aed54 | 2019-08-21 12:01:14 -0700 | [diff] [blame] | 43 | // Returns the name of the Parcel method suitable for reading data of the |
| 44 | // given type. |
Jeongik Cha | 1a7ab64 | 2019-07-29 17:31:02 +0900 | [diff] [blame] | 45 | std::string ParcelReadMethodOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames); |
| 46 | |
Daniel Norman | 85aed54 | 2019-08-21 12:01:14 -0700 | [diff] [blame] | 47 | // Returns the potentially-cast representation of the provided variable name, |
| 48 | // suitable for being passed to a method from ParcelReadMethodOf. |
| 49 | std::string ParcelReadCastOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames, |
| 50 | const std::string& variable_name); |
| 51 | |
| 52 | // Returns the name of the Parcel method suitable for writing data of the |
| 53 | // given type. |
Jeongik Cha | 1a7ab64 | 2019-07-29 17:31:02 +0900 | [diff] [blame] | 54 | std::string ParcelWriteMethodOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames); |
| 55 | |
Daniel Norman | 85aed54 | 2019-08-21 12:01:14 -0700 | [diff] [blame] | 56 | // Returns the potentially-cast representation of the provided variable name, |
| 57 | // suitable for being passed to a method from ParcelWriteMethodOf. |
| 58 | std::string ParcelWriteCastOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames, |
| 59 | const std::string& variable_name); |
| 60 | |
Jeongik Cha | 1a7ab64 | 2019-07-29 17:31:02 +0900 | [diff] [blame] | 61 | void AddHeaders(const AidlTypeSpecifier& type, const AidlTypenames& typenames, |
Devin Moore | 2f2077a | 2020-08-28 11:27:53 -0700 | [diff] [blame] | 62 | std::set<std::string>* headers); |
Jeongik Cha | 1a7ab64 | 2019-07-29 17:31:02 +0900 | [diff] [blame] | 63 | |
Devin Moore | 2f2077a | 2020-08-28 11:27:53 -0700 | [diff] [blame] | 64 | void AddHeaders(const AidlDefinedType& parcelable, std::set<std::string>* headers); |
Steven Moreland | 860b194 | 2018-08-16 14:59:28 -0700 | [diff] [blame] | 65 | } // namespace cpp |
| 66 | } // namespace aidl |
| 67 | } // namespace android |