blob: 8f5d874e548ee9a25b9ae59321d916db54f7b3b7 [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>
Steven Moreland47792c42017-09-20 10:03:20 -070022#include <hidl-util/FQName.h>
Steven Morelandf78c44d2017-09-25 18:41:45 -070023#include <hidl-util/Formatter.h>
24#include <utils/Errors.h>
Steven Morelandd537ab02016-09-12 10:32:01 -070025#include <map>
Andreas Huber39fa7182016-08-19 14:27:33 -070026#include <set>
Andreas Huber5345ec22016-07-29 13:33:27 -070027#include <string>
Andreas Huberdca261f2016-08-04 13:47:51 -070028#include <vector>
Andreas Huber5345ec22016-07-29 13:33:27 -070029
30namespace android {
31
32struct AST;
Andreas Huberfd4afab2016-08-03 13:02:57 -070033struct Type;
Andreas Huber5345ec22016-07-29 13:33:27 -070034
35struct Coordinator {
Steven Moreland47792c42017-09-20 10:03:20 -070036 Coordinator() {};
Andreas Huberdca261f2016-08-04 13:47:51 -070037
Steven Moreland89a9ebb2017-12-04 10:18:00 -080038 const std::string& getRootPath() const;
Steven Moreland47792c42017-09-20 10:03:20 -070039 void setRootPath(const std::string &rootPath);
Steven Moreland6d3d3c82018-02-08 11:49:34 -080040 void setOutputPath(const std::string& outputPath);
Andreas Huber5345ec22016-07-29 13:33:27 -070041
Steven Moreland37c57ee2017-09-25 19:08:56 -070042 void setVerbose(bool value);
Andreas Huber308d8a22017-11-06 14:46:52 -080043 bool isVerbose() const;
Steven Moreland37c57ee2017-09-25 19:08:56 -070044
Steven Moreland394af5c2018-02-09 14:41:46 -080045 void setDepFile(const std::string& depFile);
46
Steven Moreland89a9ebb2017-12-04 10:18:00 -080047 const std::string& getOwner() const;
48 void setOwner(const std::string& owner);
49
Steven Moreland25c81662017-05-12 14:57:36 -070050 // adds path only if it doesn't exist
Steven Moreland47792c42017-09-20 10:03:20 -070051 status_t addPackagePath(const std::string& root, const std::string& path, std::string* error);
52 // adds path if it hasn't already been added
Steven Moreland25c81662017-05-12 14:57:36 -070053 void addDefaultPackagePath(const std::string& root, const std::string& path);
54
Steven Morelandf78c44d2017-09-25 18:41:45 -070055 enum class Location {
Steven Moreland5abcf012018-02-08 18:50:18 -080056 STANDARD_OUT,
Steven Moreland6d3d3c82018-02-08 11:49:34 -080057 DIRECT, // mOutputPath + file name
58 PACKAGE_ROOT, // e.x. mRootPath + /nfc/1.0/Android.bp
59 GEN_OUTPUT, // e.x. mOutputPath + /android/hardware/foo/1.0/*.cpp
60 GEN_SANITIZED, // e.x. mOutputPath + /android/hardware/foo/V1_0/*.cpp
Steven Morelandf78c44d2017-09-25 18:41:45 -070061 };
62
Steven Moreland255c9a12018-02-26 13:10:27 -080063 status_t getFilepath(const FQName& fqName, Location location, const std::string& fileName,
64 std::string* path) const;
Steven Morelandf78c44d2017-09-25 18:41:45 -070065
Steven Moreland6d3d3c82018-02-08 11:49:34 -080066 Formatter getFormatter(const FQName& fqName, Location location,
Steven Morelandf78c44d2017-09-25 18:41:45 -070067 const std::string& fileName) const;
68
Steven Moreland37c57ee2017-09-25 19:08:56 -070069 // must be called before file access
70 void onFileAccess(const std::string& path, const std::string& mode) const;
71
Steven Moreland394af5c2018-02-09 14:41:46 -080072 status_t writeDepFile(const std::string& forFile) const;
73
Steven Morelandc59326e2017-06-20 15:19:30 -070074 enum class Enforce {
75 FULL, // default
76 NO_HASH, // only for use with -Lhash
77 NONE, // only for use during enforcement
78 };
79
Andreas Huber39fa7182016-08-19 14:27:33 -070080 // Attempts to parse the interface/types referred to by fqName.
81 // Parsing an interface also parses the associated package's types.hal
82 // file if it exists.
83 // If "parsedASTs" is non-NULL, successfully parsed ASTs are inserted
84 // into the set.
Yifan Hongf619fc72017-04-07 15:40:06 -070085 // If !enforce, enforceRestrictionsOnPackage won't be run.
Steven Morelandc59326e2017-06-20 15:19:30 -070086 AST* parse(const FQName& fqName, std::set<AST*>* parsedASTs = nullptr,
87 Enforce enforcement = Enforce::FULL) const;
Andreas Huber5345ec22016-07-29 13:33:27 -070088
Steven Moreland71f09132018-02-20 12:24:30 -080089 // Same as parse, but it distinguishes between "missing file" and "could not parse AST"
90 // return OK, out *ast:
91 // 0xdeadbeef -> successfully parsed
92 // nullptr -> file not present
93 // return !OK
94 // could not parse AST and file exists
95 status_t parseOptional(const FQName& fqName, AST** ast, std::set<AST*>* parsedASTs = nullptr,
96 Enforce enforcement = Enforce::FULL) const;
97
Andreas Huberdca261f2016-08-04 13:47:51 -070098 // Given package-root paths of ["hardware/interfaces",
99 // "vendor/<something>/interfaces"], package roots of
100 // ["android.hardware", "vendor.<something>.hardware"], and a
101 // FQName of "android.hardware.nfc@1.0::INfc, then getPackagePath()
Yifan Hong97288ac2016-12-12 16:03:51 -0800102 // will return "hardware/interfaces/nfc/1.0" (if sanitized = false)
103 // or "hardware/interfaces/nfc/V1_0" (if sanitized = true).
Steven Moreland255c9a12018-02-26 13:10:27 -0800104 status_t getPackagePath(const FQName& fqName, bool relative, bool sanitized,
105 std::string* path) const;
Andreas Huber5345ec22016-07-29 13:33:27 -0700106
Andreas Huberdca261f2016-08-04 13:47:51 -0700107 // Given package roots of ["android.hardware",
108 // "vendor.<something>.hardware"] and a FQName of
Iliyan Malchev5bb14022016-08-09 15:04:39 -0700109 // "android.hardware.nfc@1.0::INfc, then getPackageRoot() will
Andreas Huberdca261f2016-08-04 13:47:51 -0700110 // return "android.hardware".
Steven Moreland255c9a12018-02-26 13:10:27 -0800111 status_t getPackageRoot(const FQName& fqName, std::string* root) const;
Andreas Huberdca261f2016-08-04 13:47:51 -0700112
Andreas Huberd2943e12016-08-05 11:59:31 -0700113 status_t getPackageInterfaceFiles(
114 const FQName &package,
115 std::vector<std::string> *fileNames) const;
116
Steven Morelandaa186832016-09-26 13:51:43 -0700117 status_t appendPackageInterfacesToVector(
Andreas Huberd2943e12016-08-05 11:59:31 -0700118 const FQName &package,
119 std::vector<FQName> *packageInterfaces) const;
120
Steven Moreland87b26d72017-10-11 09:35:42 -0700121 status_t isTypesOnlyPackage(const FQName& package, bool* result) const;
122
Steven Moreland40b86352018-02-01 16:03:30 -0800123 // Returns types which are imported/defined but not referenced in code
124 status_t addUnreferencedTypes(const std::vector<FQName>& packageInterfaces,
125 std::set<FQName>* unreferencedDefinitions,
Steven Morelandb65e5d92018-02-08 12:44:51 -0800126 std::set<FQName>* unreferencedImports) const;
Steven Moreland40b86352018-02-01 16:03:30 -0800127
Yifan Hong78b38d12017-02-13 18:14:46 +0000128 // Enforce a set of restrictions on a set of packages. These include:
129 // - minor version upgrades
130 // "packages" contains names like "android.hardware.nfc@1.1".
Steven Moreland218625a2017-04-18 22:31:50 -0700131 // - hashing restrictions
Steven Morelandc59326e2017-06-20 15:19:30 -0700132 status_t enforceRestrictionsOnPackage(const FQName& fqName,
133 Enforce enforcement = Enforce::FULL) const;
Yifan Hong78b38d12017-02-13 18:14:46 +0000134
Neel Mehta698840c2019-05-17 11:43:41 -0700135 // opt is the option that was parsed
136 // optarg contains the argument provided to opt
137 // - optarg == NULL if opt is not expecting an argument
138 using HandleArg = std::function<void(int opt, char* optarg)>;
139
140 // options is the same format as optstring for getopt
141 void parseOptions(int argc, char** argv, const std::string& options,
142 const HandleArg& handleArg);
143
144 private:
Andreas Huberd2943e12016-08-05 11:59:31 -0700145 static bool MakeParentHierarchy(const std::string &path);
Andreas Hubere61e3f72016-08-03 10:22:03 -0700146
Steven Moreland2d3ff5c2018-01-18 17:22:45 -0800147 enum class HashStatus {
148 ERROR,
149 UNFROZEN,
150 FROZEN,
151 CHANGED, // frozen but changed
152 };
153 HashStatus checkHash(const FQName& fqName) const;
154 status_t getUnfrozenDependencies(const FQName& fqName, std::set<FQName>* result) const;
155
Steven Moreland47792c42017-09-20 10:03:20 -0700156 // indicates that packages in "android.hardware" will be looked up in hardware/interfaces
157 struct PackageRoot {
158 std::string path; // e.x. hardware/interfaces
159 FQName root; // e.x. android.hardware@0.0
160 };
Steven Moreland18d9af12017-10-03 08:52:05 -0700161
Steven Moreland255c9a12018-02-26 13:10:27 -0800162 // nullptr if it doesn't exist
163 const PackageRoot* findPackageRoot(const FQName& fqName) const;
Steven Moreland18d9af12017-10-03 08:52:05 -0700164
165 // Given package-root paths of ["hardware/interfaces",
166 // "vendor/<something>/interfaces"], package roots of
167 // ["android.hardware", "vendor.<something>.hardware"], and a
168 // FQName of "android.hardware.nfc@1.0::INfc, then getPackageRootPath()
169 // will return "hardware/interfaces".
Steven Moreland255c9a12018-02-26 13:10:27 -0800170 status_t getPackageRootPath(const FQName& fqName, std::string* path) const;
Steven Moreland18d9af12017-10-03 08:52:05 -0700171
172 // Given an FQName of "android.hardware.nfc@1.0::INfc", return
173 // "android/hardware/".
Steven Moreland255c9a12018-02-26 13:10:27 -0800174 status_t convertPackageRootToPath(const FQName& fqName, std::string* path) const;
Steven Moreland18d9af12017-10-03 08:52:05 -0700175
Steven Moreland47792c42017-09-20 10:03:20 -0700176 std::vector<PackageRoot> mPackageRoots;
Steven Moreland6d3d3c82018-02-08 11:49:34 -0800177 std::string mRootPath; // root of android source tree (to locate package roots)
178 std::string mOutputPath; // root of output directory
Steven Moreland394af5c2018-02-09 14:41:46 -0800179 std::string mDepFile; // location to write depfile
Steven Moreland89a9ebb2017-12-04 10:18:00 -0800180
181 // hidl-gen options
Steven Moreland75fb19b2018-02-09 11:22:43 -0800182 bool mVerbose = false;
Steven Moreland89a9ebb2017-12-04 10:18:00 -0800183 std::string mOwner;
Steven Moreland37c57ee2017-09-25 19:08:56 -0700184
Yifan Hong78b38d12017-02-13 18:14:46 +0000185 // cache to parse().
Steven Moreland28b9b532017-05-12 17:02:58 -0700186 mutable std::map<FQName, AST *> mCache;
Andreas Huber5345ec22016-07-29 13:33:27 -0700187
Yifan Hong78b38d12017-02-13 18:14:46 +0000188 // cache to enforceRestrictionsOnPackage().
Steven Moreland28b9b532017-05-12 17:02:58 -0700189 mutable std::set<FQName> mPackagesEnforced;
Yifan Hong78b38d12017-02-13 18:14:46 +0000190
Steven Moreland394af5c2018-02-09 14:41:46 -0800191 mutable std::set<std::string> mReadFiles;
192
Steven Moreland7a368042017-08-28 12:47:24 -0700193 // Returns the given path if it is absolute, otherwise it returns
194 // the path relative to mRootPath
195 std::string makeAbsolute(const std::string& string) const;
Steven Morelandb90d3272017-05-26 10:02:39 -0700196
Yifan Hong78b38d12017-02-13 18:14:46 +0000197 // Rules of enforceRestrictionsOnPackage are listed below.
Steven Moreland51b02f42018-03-14 15:43:29 -0700198 status_t enforceMinorVersionUprevs(const FQName& fqName, Enforce enforcement) const;
Steven Moreland28b9b532017-05-12 17:02:58 -0700199 status_t enforceHashes(const FQName &fqName) const;
Yifan Hong78b38d12017-02-13 18:14:46 +0000200
Andreas Huber5345ec22016-07-29 13:33:27 -0700201 DISALLOW_COPY_AND_ASSIGN(Coordinator);
202};
203
204} // namespace android
205
206#endif // COORDINATOR_H_