• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2019, 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 "generate_aidl_mappings.h"
18 #include "aidl_to_java.h"
19 
20 #include <sstream>
21 
22 namespace android {
23 namespace aidl {
24 namespace mappings {
25 
dump_location(const AidlNode & method)26 std::string dump_location(const AidlNode& method) {
27   return method.PrintLine();
28 }
29 
generate_mappings(const AidlDefinedType * defined_type,const AidlTypenames & typenames)30 SignatureMap generate_mappings(const AidlDefinedType* defined_type,
31                                const AidlTypenames& typenames) {
32   const AidlInterface* interface = defined_type->AsInterface();
33   SignatureMap mappings;
34   if (interface == nullptr) {
35     return mappings;
36   }
37   for (const auto& method : interface->GetMethods()) {
38     if (method->IsUserDefined()) {
39       std::stringstream signature;
40       signature << interface->GetCanonicalName() << "|";
41       signature << method->GetName() << "|";
42       for (const auto& arg : method->GetArguments()) {
43         signature << java::JavaSignatureOf(arg->GetType(), typenames) << ",";
44       }
45       signature << "|";
46       signature << java::JavaSignatureOf(method->GetType(), typenames);
47       mappings[signature.str()] = dump_location(*method);
48     }
49   }
50   return mappings;
51 }
52 
53 }  // namespace mappings
54 }  // namespace aidl
55 }  // namespace android
56