blob: 9a12d859e0ac77ebdcaec23876a9c742f8018a5e [file] [log] [blame]
Andreas Huber1aec3972016-08-26 09:26:32 -07001/*
2 * Copyright (C) 2016 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
Andreas Huber5345ec22016-07-29 13:33:27 -070017#ifndef COORDINATOR_H_
18
19#define COORDINATOR_H_
20
21#include <android-base/macros.h>
Andreas Hubere61e3f72016-08-03 10:22:03 -070022#include <functional>
Steven Morelandd537ab02016-09-12 10:32:01 -070023#include <map>
Andreas Huber39fa7182016-08-19 14:27:33 -070024#include <set>
Andreas Huber5345ec22016-07-29 13:33:27 -070025#include <string>
Steven Morelandd537ab02016-09-12 10:32:01 -070026#include <utils/Errors.h>
Andreas Huberdca261f2016-08-04 13:47:51 -070027#include <vector>
Andreas Huber5345ec22016-07-29 13:33:27 -070028
29namespace android {
30
31struct AST;
32struct FQName;
Andreas Huberfd4afab2016-08-03 13:02:57 -070033struct Type;
Andreas Huber5345ec22016-07-29 13:33:27 -070034
35struct Coordinator {
Andreas Huberdca261f2016-08-04 13:47:51 -070036 Coordinator(
37 const std::vector<std::string> &packageRootPaths,
38 const std::vector<std::string> &packageRoots);
39
Andreas Huber5345ec22016-07-29 13:33:27 -070040 ~Coordinator();
41
Andreas Huber39fa7182016-08-19 14:27:33 -070042 // Attempts to parse the interface/types referred to by fqName.
43 // Parsing an interface also parses the associated package's types.hal
44 // file if it exists.
45 // If "parsedASTs" is non-NULL, successfully parsed ASTs are inserted
46 // into the set.
47 AST *parse(const FQName &fqName, std::set<AST *> *parsedASTs = nullptr);
Andreas Huber5345ec22016-07-29 13:33:27 -070048
Andreas Huberdca261f2016-08-04 13:47:51 -070049 // Given package-root paths of ["hardware/interfaces",
50 // "vendor/<something>/interfaces"], package roots of
51 // ["android.hardware", "vendor.<something>.hardware"], and a
52 // FQName of "android.hardware.nfc@1.0::INfc, then getPackagePath()
Iliyan Malchev5bb14022016-08-09 15:04:39 -070053 // will return "hardware/interfaces/nfc/V1_0".
Andreas Huberdca261f2016-08-04 13:47:51 -070054
Andreas Huber881227d2016-08-02 14:20:21 -070055 std::string getPackagePath(
56 const FQName &fqName, bool relative = false) const;
Andreas Huber5345ec22016-07-29 13:33:27 -070057
Andreas Huberdca261f2016-08-04 13:47:51 -070058 // Given package roots of ["android.hardware",
59 // "vendor.<something>.hardware"] and a FQName of
Iliyan Malchev5bb14022016-08-09 15:04:39 -070060 // "android.hardware.nfc@1.0::INfc, then getPackageRoot() will
Andreas Huberdca261f2016-08-04 13:47:51 -070061 // return "android.hardware".
62
63 std::string getPackageRoot(const FQName &fqName) const;
64
Iliyan Malchev5bb14022016-08-09 15:04:39 -070065 // Given package-root paths of ["hardware/interfaces",
66 // "vendor/<something>/interfaces"], package roots of
67 // ["android.hardware", "vendor.<something>.hardware"], and a
68 // FQName of "android.hardware.nfc@1.0::INfc, then getPackageRootPath()
69 // will return "hardware/interfaces".
70
71 std::string getPackageRootPath(const FQName &fqName) const;
72
Andreas Huberd2943e12016-08-05 11:59:31 -070073 // Given an FQName of "android.hardware.nfc@1.0::INfc", return
74 // "android/hardware/".
75 std::string convertPackageRootToPath(const FQName &fqName) const;
76
77 status_t getPackageInterfaceFiles(
78 const FQName &package,
79 std::vector<std::string> *fileNames) const;
80
Iliyan Malchev5bb14022016-08-09 15:04:39 -070081 status_t appendPackageInterfacesToSet(
Andreas Huberd2943e12016-08-05 11:59:31 -070082 const FQName &package,
83 std::vector<FQName> *packageInterfaces) const;
84
85 static bool MakeParentHierarchy(const std::string &path);
Andreas Hubere61e3f72016-08-03 10:22:03 -070086
Andreas Huber5345ec22016-07-29 13:33:27 -070087private:
Andreas Huberdca261f2016-08-04 13:47:51 -070088 // A list of top-level directories (mPackageRootPaths)
89 // corresponding to a list of package roots (mPackageRoots). For
90 // example, if mPackageRootPaths[0] == "hardware/interfaces" and
91 // mPackageRoots[0] == "android.hardware" this means that all
92 // packages starting with "android.hardware" will be looked up in
93 // "hardware/interfaces".
94 std::vector<std::string> mPackageRootPaths;
95 std::vector<std::string> mPackageRoots;
Steven Morelandd537ab02016-09-12 10:32:01 -070096 std::map<FQName, AST *> mCache;
Andreas Huber5345ec22016-07-29 13:33:27 -070097
Andreas Huberdca261f2016-08-04 13:47:51 -070098 std::vector<std::string>::const_iterator findPackageRoot(
99 const FQName &fqName) const;
100
Andreas Huber5345ec22016-07-29 13:33:27 -0700101 DISALLOW_COPY_AND_ASSIGN(Coordinator);
102};
103
104} // namespace android
105
106#endif // COORDINATOR_H_