blob: 703ef6f5c69eeeb8b310a58e3573fce1b640de40 [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 Morelandf7fa0682017-05-11 16:14:55 -070043 const std::string &getRootPath() {
44 return mRootPath;
45 }
46
Andreas Huber39fa7182016-08-19 14:27:33 -070047 // Attempts to parse the interface/types referred to by fqName.
48 // Parsing an interface also parses the associated package's types.hal
49 // file if it exists.
50 // If "parsedASTs" is non-NULL, successfully parsed ASTs are inserted
51 // into the set.
Yifan Hongf619fc72017-04-07 15:40:06 -070052 // If !enforce, enforceRestrictionsOnPackage won't be run.
53 AST *parse(const FQName &fqName, std::set<AST *> *parsedASTs = nullptr,
54 bool enforce = true);
Andreas Huber5345ec22016-07-29 13:33:27 -070055
Andreas Huberdca261f2016-08-04 13:47:51 -070056 // Given package-root paths of ["hardware/interfaces",
57 // "vendor/<something>/interfaces"], package roots of
58 // ["android.hardware", "vendor.<something>.hardware"], and a
59 // FQName of "android.hardware.nfc@1.0::INfc, then getPackagePath()
Yifan Hong97288ac2016-12-12 16:03:51 -080060 // will return "hardware/interfaces/nfc/1.0" (if sanitized = false)
61 // or "hardware/interfaces/nfc/V1_0" (if sanitized = true).
Andreas Huberdca261f2016-08-04 13:47:51 -070062
Andreas Huber881227d2016-08-02 14:20:21 -070063 std::string getPackagePath(
Yifan Hong97288ac2016-12-12 16:03:51 -080064 const FQName &fqName, bool relative = false,
65 bool sanitized = false) const;
Andreas Huber5345ec22016-07-29 13:33:27 -070066
Andreas Huberdca261f2016-08-04 13:47:51 -070067 // Given package roots of ["android.hardware",
68 // "vendor.<something>.hardware"] and a FQName of
Iliyan Malchev5bb14022016-08-09 15:04:39 -070069 // "android.hardware.nfc@1.0::INfc, then getPackageRoot() will
Andreas Huberdca261f2016-08-04 13:47:51 -070070 // return "android.hardware".
71
72 std::string getPackageRoot(const FQName &fqName) const;
73
Iliyan Malchev5bb14022016-08-09 15:04:39 -070074 // Given package-root paths of ["hardware/interfaces",
75 // "vendor/<something>/interfaces"], package roots of
76 // ["android.hardware", "vendor.<something>.hardware"], and a
77 // FQName of "android.hardware.nfc@1.0::INfc, then getPackageRootPath()
78 // will return "hardware/interfaces".
79
80 std::string getPackageRootPath(const FQName &fqName) const;
81
Yifan Hongc8934042016-11-17 17:10:52 -080082 // return getPackageRoot + ":" + getPackageRootPath
83 std::string getPackageRootOption(const FQName &fqName) const;
84
Andreas Huberd2943e12016-08-05 11:59:31 -070085 // Given an FQName of "android.hardware.nfc@1.0::INfc", return
86 // "android/hardware/".
87 std::string convertPackageRootToPath(const FQName &fqName) const;
88
89 status_t getPackageInterfaceFiles(
90 const FQName &package,
91 std::vector<std::string> *fileNames) const;
92
Steven Morelandaa186832016-09-26 13:51:43 -070093 status_t appendPackageInterfacesToVector(
Andreas Huberd2943e12016-08-05 11:59:31 -070094 const FQName &package,
95 std::vector<FQName> *packageInterfaces) const;
96
Yifan Hong78b38d12017-02-13 18:14:46 +000097 // Enforce a set of restrictions on a set of packages. These include:
98 // - minor version upgrades
99 // "packages" contains names like "android.hardware.nfc@1.1".
Steven Moreland218625a2017-04-18 22:31:50 -0700100 // - hashing restrictions
Yifan Hong78b38d12017-02-13 18:14:46 +0000101 status_t enforceRestrictionsOnPackage(const FQName &fqName);
102
Andreas Huberd2943e12016-08-05 11:59:31 -0700103 static bool MakeParentHierarchy(const std::string &path);
Andreas Hubere61e3f72016-08-03 10:22:03 -0700104
Andreas Huber5345ec22016-07-29 13:33:27 -0700105private:
Andreas Huberdca261f2016-08-04 13:47:51 -0700106 // A list of top-level directories (mPackageRootPaths)
107 // corresponding to a list of package roots (mPackageRoots). For
108 // example, if mPackageRootPaths[0] == "hardware/interfaces" and
109 // mPackageRoots[0] == "android.hardware" this means that all
110 // packages starting with "android.hardware" will be looked up in
111 // "hardware/interfaces".
112 std::vector<std::string> mPackageRootPaths;
113 std::vector<std::string> mPackageRoots;
Yifan Hong78b38d12017-02-13 18:14:46 +0000114
Steven Morelandf7fa0682017-05-11 16:14:55 -0700115 std::string mRootPath;
116
Yifan Hong78b38d12017-02-13 18:14:46 +0000117 // cache to parse().
Steven Morelandd537ab02016-09-12 10:32:01 -0700118 std::map<FQName, AST *> mCache;
Andreas Huber5345ec22016-07-29 13:33:27 -0700119
Yifan Hong78b38d12017-02-13 18:14:46 +0000120 // cache to enforceRestrictionsOnPackage().
121 std::set<FQName> mPackagesEnforced;
122
Andreas Huberdca261f2016-08-04 13:47:51 -0700123 std::vector<std::string>::const_iterator findPackageRoot(
124 const FQName &fqName) const;
125
Yifan Hong78b38d12017-02-13 18:14:46 +0000126 // Rules of enforceRestrictionsOnPackage are listed below.
127 status_t enforceMinorVersionUprevs(const FQName &fqName);
Steven Moreland218625a2017-04-18 22:31:50 -0700128 status_t enforceHashes(const FQName &fqName);
Yifan Hong78b38d12017-02-13 18:14:46 +0000129
Andreas Huber5345ec22016-07-29 13:33:27 -0700130 DISALLOW_COPY_AND_ASSIGN(Coordinator);
131};
132
133} // namespace android
134
135#endif // COORDINATOR_H_