blob: 2e761dfa2f6abc56c0157f4c14abd0e890ddbbda [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,
Steven Morelandf7fa0682017-05-11 16:14:55 -070038 const std::vector<std::string> &packageRoots,
39 const std::string &rootPath);
Andreas Huberdca261f2016-08-04 13:47:51 -070040
Andreas Huber5345ec22016-07-29 13:33:27 -070041 ~Coordinator();
42
Steven Moreland25c81662017-05-12 14:57:36 -070043 // adds path only if it doesn't exist
44 void addDefaultPackagePath(const std::string& root, const std::string& path);
45
Steven Morelandc59326e2017-06-20 15:19:30 -070046 enum class Enforce {
47 FULL, // default
48 NO_HASH, // only for use with -Lhash
49 NONE, // only for use during enforcement
50 };
51
Andreas Huber39fa7182016-08-19 14:27:33 -070052 // Attempts to parse the interface/types referred to by fqName.
53 // Parsing an interface also parses the associated package's types.hal
54 // file if it exists.
55 // If "parsedASTs" is non-NULL, successfully parsed ASTs are inserted
56 // into the set.
Yifan Hongf619fc72017-04-07 15:40:06 -070057 // If !enforce, enforceRestrictionsOnPackage won't be run.
Steven Morelandc59326e2017-06-20 15:19:30 -070058 AST* parse(const FQName& fqName, std::set<AST*>* parsedASTs = nullptr,
59 Enforce enforcement = Enforce::FULL) const;
Andreas Huber5345ec22016-07-29 13:33:27 -070060
Andreas Huberdca261f2016-08-04 13:47:51 -070061 // Given package-root paths of ["hardware/interfaces",
62 // "vendor/<something>/interfaces"], package roots of
63 // ["android.hardware", "vendor.<something>.hardware"], and a
64 // FQName of "android.hardware.nfc@1.0::INfc, then getPackagePath()
Yifan Hong97288ac2016-12-12 16:03:51 -080065 // will return "hardware/interfaces/nfc/1.0" (if sanitized = false)
66 // or "hardware/interfaces/nfc/V1_0" (if sanitized = true).
Andreas Huber881227d2016-08-02 14:20:21 -070067 std::string getPackagePath(
Yifan Hong97288ac2016-12-12 16:03:51 -080068 const FQName &fqName, bool relative = false,
69 bool sanitized = false) const;
Andreas Huber5345ec22016-07-29 13:33:27 -070070
Andreas Huberdca261f2016-08-04 13:47:51 -070071 // Given package roots of ["android.hardware",
72 // "vendor.<something>.hardware"] and a FQName of
Iliyan Malchev5bb14022016-08-09 15:04:39 -070073 // "android.hardware.nfc@1.0::INfc, then getPackageRoot() will
Andreas Huberdca261f2016-08-04 13:47:51 -070074 // return "android.hardware".
Andreas Huberdca261f2016-08-04 13:47:51 -070075 std::string getPackageRoot(const FQName &fqName) const;
76
Iliyan Malchev5bb14022016-08-09 15:04:39 -070077 // Given package-root paths of ["hardware/interfaces",
78 // "vendor/<something>/interfaces"], package roots of
79 // ["android.hardware", "vendor.<something>.hardware"], and a
80 // FQName of "android.hardware.nfc@1.0::INfc, then getPackageRootPath()
81 // will return "hardware/interfaces".
Iliyan Malchev5bb14022016-08-09 15:04:39 -070082 std::string getPackageRootPath(const FQName &fqName) const;
83
Yifan Hongc8934042016-11-17 17:10:52 -080084 // return getPackageRoot + ":" + getPackageRootPath
85 std::string getPackageRootOption(const FQName &fqName) const;
86
Andreas Huberd2943e12016-08-05 11:59:31 -070087 // Given an FQName of "android.hardware.nfc@1.0::INfc", return
88 // "android/hardware/".
89 std::string convertPackageRootToPath(const FQName &fqName) const;
90
91 status_t getPackageInterfaceFiles(
92 const FQName &package,
93 std::vector<std::string> *fileNames) const;
94
Steven Morelandaa186832016-09-26 13:51:43 -070095 status_t appendPackageInterfacesToVector(
Andreas Huberd2943e12016-08-05 11:59:31 -070096 const FQName &package,
97 std::vector<FQName> *packageInterfaces) const;
98
Yifan Hong78b38d12017-02-13 18:14:46 +000099 // Enforce a set of restrictions on a set of packages. These include:
100 // - minor version upgrades
101 // "packages" contains names like "android.hardware.nfc@1.1".
Steven Moreland218625a2017-04-18 22:31:50 -0700102 // - hashing restrictions
Steven Morelandc59326e2017-06-20 15:19:30 -0700103 status_t enforceRestrictionsOnPackage(const FQName& fqName,
104 Enforce enforcement = Enforce::FULL) const;
Yifan Hong78b38d12017-02-13 18:14:46 +0000105
Andreas Huberd2943e12016-08-05 11:59:31 -0700106 static bool MakeParentHierarchy(const std::string &path);
Andreas Hubere61e3f72016-08-03 10:22:03 -0700107
Andreas Huber5345ec22016-07-29 13:33:27 -0700108private:
Andreas Huberdca261f2016-08-04 13:47:51 -0700109 // A list of top-level directories (mPackageRootPaths)
110 // corresponding to a list of package roots (mPackageRoots). For
111 // example, if mPackageRootPaths[0] == "hardware/interfaces" and
112 // mPackageRoots[0] == "android.hardware" this means that all
113 // packages starting with "android.hardware" will be looked up in
114 // "hardware/interfaces".
115 std::vector<std::string> mPackageRootPaths;
116 std::vector<std::string> mPackageRoots;
Yifan Hong78b38d12017-02-13 18:14:46 +0000117
Steven Morelandf7fa0682017-05-11 16:14:55 -0700118 std::string mRootPath;
119
Yifan Hong78b38d12017-02-13 18:14:46 +0000120 // cache to parse().
Steven Moreland28b9b532017-05-12 17:02:58 -0700121 mutable std::map<FQName, AST *> mCache;
Andreas Huber5345ec22016-07-29 13:33:27 -0700122
Yifan Hong78b38d12017-02-13 18:14:46 +0000123 // cache to enforceRestrictionsOnPackage().
Steven Moreland28b9b532017-05-12 17:02:58 -0700124 mutable std::set<FQName> mPackagesEnforced;
Yifan Hong78b38d12017-02-13 18:14:46 +0000125
Andreas Huberdca261f2016-08-04 13:47:51 -0700126 std::vector<std::string>::const_iterator findPackageRoot(
127 const FQName &fqName) const;
128
Steven Morelandb90d3272017-05-26 10:02:39 -0700129 // Returns abs package path by prepending the root path if a package
130 // path is non-absolute.
131 // If root is '/android/master' and getPackagePath returns 'h/i/nfc/V1_0'
132 // this will return '/android/master/h/i/nfc/V1_0'.
133 // If root is '/android/master' and getPackagePath returns '/abs/path/to/nfc/V1_0'
134 // this will return '/abs/path/to/nfc/V1_0'
135 std::string getAbsolutePackagePath(const FQName& fqName) const;
136
Yifan Hong78b38d12017-02-13 18:14:46 +0000137 // Rules of enforceRestrictionsOnPackage are listed below.
Steven Moreland28b9b532017-05-12 17:02:58 -0700138 status_t enforceMinorVersionUprevs(const FQName &fqName) const;
139 status_t enforceHashes(const FQName &fqName) const;
Yifan Hong78b38d12017-02-13 18:14:46 +0000140
Andreas Huber5345ec22016-07-29 13:33:27 -0700141 DISALLOW_COPY_AND_ASSIGN(Coordinator);
142};
143
144} // namespace android
145
146#endif // COORDINATOR_H_