blob: 994d6a3d03b0a2685e35996f2eb42124305b5fcd [file] [log] [blame]
Andrei Onea8714b022019-02-01 18:55:54 +00001/*
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"
Jeongik Cha2c5e7622019-07-23 14:15:48 +090018#include "aidl_to_java.h"
Andrei Onea8714b022019-02-01 18:55:54 +000019
20#include <sstream>
21
22namespace android {
23namespace aidl {
24namespace mappings {
25
26std::string dump_location(const AidlNode& method) {
Mathew Inwoodadb74672019-11-29 14:01:53 +000027 return method.PrintLine();
Andrei Onea8714b022019-02-01 18:55:54 +000028}
29
Daniel Norman716d3112019-09-10 13:11:56 -070030SignatureMap generate_mappings(const AidlDefinedType* defined_type,
31 const AidlTypenames& typenames) {
Andrei Onea8714b022019-02-01 18:55:54 +000032 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()) {
Daniel Norman716d3112019-09-10 13:11:56 -070043 signature << java::JavaSignatureOf(arg->GetType(), typenames) << ",";
Andrei Onea8714b022019-02-01 18:55:54 +000044 }
45 signature << "|";
Daniel Norman716d3112019-09-10 13:11:56 -070046 signature << java::JavaSignatureOf(method->GetType(), typenames);
Andrei Onea8714b022019-02-01 18:55:54 +000047 mappings[signature.str()] = dump_location(*method);
48 }
49 }
50 return mappings;
51}
52
53} // namespace mappings
54} // namespace aidl
55} // namespace android