blob: 7843cb5ea7fda1635ad655a53ddde2e7fb811d1e [file] [log] [blame]
Yifan Hong676447a2016-11-15 12:57:23 -08001/*
2 * Copyright (C) 2017 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
Yifan Honge3a92342018-01-25 17:00:16 -080017#include <getopt.h>
18
19#include <android-base/strings.h>
Yifan Hong3daec812017-02-27 18:49:11 -080020#include <vintf/VintfObject.h>
Yifan Honge3a92342018-01-25 17:00:16 -080021#include <vintf/parse_string.h>
22#include <vintf/parse_xml.h>
23#include <iomanip>
24#include <iostream>
25#include <string>
26#include <vector>
Yifan Hong676447a2016-11-15 12:57:23 -080027
Yifan Hong3eed7e12018-01-25 11:22:52 -080028using namespace ::android::vintf;
29
Yifan Honge3a92342018-01-25 17:00:16 -080030static const std::string kColumnSeperator = " ";
31
Yifan Hong3eed7e12018-01-25 11:22:52 -080032std::string existString(bool value) {
33 return value ? "GOOD" : "DOES NOT EXIST";
34}
35
36std::string compatibleString(int32_t value) {
37 switch (value) {
38 case COMPATIBLE:
39 return "GOOD";
40 case INCOMPATIBLE:
41 return "INCOMPATIBLE";
42 default:
43 return strerror(-value);
44 }
45}
46
47std::string boolCompatString(bool value) {
48 return compatibleString(value ? COMPATIBLE : INCOMPATIBLE);
49}
50
51std::string deprecateString(int32_t value) {
52 switch (value) {
53 case NO_DEPRECATED_HALS:
54 return "GOOD";
55 case DEPRECATED:
56 return "DEPRECATED";
57 default:
58 return strerror(-value);
59 }
60}
61
Yifan Honge3a92342018-01-25 17:00:16 -080062enum Status : int {
63 OK = 0,
64 USAGE,
65};
66
67struct ParsedOptions {
68 bool verbose = false;
69};
70
71struct Option {
72 char shortOption = '\0';
73 std::string longOption;
74 std::string help;
75 std::function<Status(ParsedOptions*)> op;
76};
77
78std::string getShortOptions(const std::vector<Option>& options) {
79 std::stringstream ret;
80 for (const auto& e : options)
81 if (e.shortOption != '\0') ret << e.shortOption;
82 return ret.str();
83}
84
85std::unique_ptr<struct option[]> getLongOptions(const std::vector<Option>& options,
86 int* longOptFlag) {
87 std::unique_ptr<struct option[]> ret{new struct option[options.size() + 1]};
88 int i = 0;
89 for (const auto& e : options) {
90 ret[i].name = e.longOption.c_str();
91 ret[i].has_arg = no_argument;
92 ret[i].flag = longOptFlag;
93 ret[i].val = i;
94
95 i++;
96 }
97 // getopt_long last option has all zeros
98 ret[i].name = NULL;
99 ret[i].has_arg = 0;
100 ret[i].flag = NULL;
101 ret[i].val = 0;
102
103 return ret;
104}
105
106Status parseOptions(int argc, char** argv, const std::vector<Option>& options, ParsedOptions* out) {
107 int longOptFlag;
108 std::unique_ptr<struct option[]> longOptions = getLongOptions(options, &longOptFlag);
109 std::string shortOptions = getShortOptions(options);
110 int optionIndex;
111 for (;;) {
112 int c = getopt_long(argc, argv, shortOptions.c_str(), longOptions.get(), &optionIndex);
113 if (c == -1) {
114 break;
115 }
116 const Option* found = nullptr;
117 for (size_t i = 0; i < options.size(); ++i)
118 if ((c == 0 && longOptFlag == static_cast<int>(i)) ||
119 (c != 0 && c == options[i].shortOption))
120
121 found = &options[i];
122
123 if (found == nullptr) {
124 // see unrecognized options
125 std::cerr << "unrecognized option `" << argv[optind - 1] << "'" << std::endl;
126 return USAGE;
127 }
128
129 Status status = found->op(out);
130 if (status != OK) return status;
131 }
132 if (optind < argc) {
133 // see non option
134 std::cerr << "unrecognized option `" << argv[optind] << "'" << std::endl;
135 return USAGE;
136 }
137 return OK;
138}
139
140void usage(char* me, const std::vector<Option>& options) {
141 std::cerr << me << ": dump VINTF metadata via libvintf." << std::endl;
142 for (const auto& e : options) {
143 if (e.help.empty()) continue;
144 std::cerr << " ";
145 if (e.shortOption != '\0') std::cerr << "-" << e.shortOption;
146 if (e.shortOption != '\0' && !e.longOption.empty()) std::cerr << ", ";
147 if (!e.longOption.empty()) std::cerr << "--" << e.longOption;
148 std::cerr << ": "
149 << android::base::Join(android::base::Split(e.help, "\n"), "\n ")
150 << std::endl;
151 }
152}
153
Yifan Honge3a92342018-01-25 17:00:16 -0800154struct TableRow {
155 // Whether the HAL version is in device manifest, framework manifest, device compatibility
156 // matrix, framework compatibility matrix, respectively.
157 bool dm = false;
158 bool fm = false;
159 bool dcm = false;
160 bool fcm = false;
161 // If the HAL version is in device / framework compatibility matrix, whether it is required
162 // or not.
163 bool required = false;
164
165 // Return true if:
166 // - not a required HAL version; OR
167 // - required in device matrix and framework manifest;
168 // - required in framework matrix and device manifest.
169 bool meetsReqeuirement() const {
170 if (!required) return true;
171 if (dcm && !fm) return false;
172 if (fcm && !dm) return false;
173 return true;
174 }
175};
176
177std::ostream& operator<<(std::ostream& out, const TableRow& row) {
178 return out << (row.required ? "R" : " ") << (row.meetsReqeuirement() ? " " : "!")
179 << kColumnSeperator << (row.dm ? "DM" : " ") << kColumnSeperator
180 << (row.fm ? "FM" : " ") << kColumnSeperator << (row.fcm ? "FCM" : " ")
181 << kColumnSeperator << (row.dcm ? "DCM" : " ");
182}
183
184using RowMutator = std::function<void(TableRow*)>;
185using Table = std::map<std::string, TableRow>;
186
187// Insert each fqInstanceName foo@x.y::IFoo/instance to the table by inserting the key
188// if it does not exist and setting the corresponding indicator (as specified by "mutate").
189void insert(const HalManifest* manifest, Table* table, const RowMutator& mutate) {
190 if (manifest == nullptr) return;
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800191 manifest->forEachInstance([&](const auto& manifestInstance) {
192 std::string key = toFQNameString(manifestInstance.package(), manifestInstance.version(),
193 manifestInstance.interface(), manifestInstance.instance());
Yifan Honge3a92342018-01-25 17:00:16 -0800194 mutate(&(*table)[key]);
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800195 return true;
Yifan Honge3a92342018-01-25 17:00:16 -0800196 });
197}
198
199void insert(const CompatibilityMatrix* matrix, Table* table, const RowMutator& mutate) {
200 if (matrix == nullptr) return;
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800201 matrix->forEachInstance([&](const auto& matrixInstance) {
Yifan Honge3a92342018-01-25 17:00:16 -0800202 bool missed = false;
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800203 for (auto minorVer = matrixInstance.versionRange().minMinor;
204 minorVer <= matrixInstance.versionRange().maxMinor; ++minorVer) {
205 std::string key = toFQNameString(
206 matrixInstance.package(), Version{matrixInstance.versionRange().majorVer, minorVer},
207 matrixInstance.interface(), matrixInstance.instance());
Yifan Honge3a92342018-01-25 17:00:16 -0800208 auto it = table->find(key);
209 if (it == table->end()) {
210 missed = true;
211 } else {
212 mutate(&it->second);
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800213 it->second.required = !matrixInstance.optional();
Yifan Honge3a92342018-01-25 17:00:16 -0800214 }
215 }
216 if (missed) {
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800217 std::string key =
218 toFQNameString(matrixInstance.package(), matrixInstance.versionRange(),
219 matrixInstance.interface(), matrixInstance.instance());
Yifan Honge3a92342018-01-25 17:00:16 -0800220 mutate(&(*table)[key]);
221 }
Yifan Hong2a90ffe2018-03-05 17:45:34 -0800222 return true;
Yifan Honge3a92342018-01-25 17:00:16 -0800223 });
224}
225
226Table generateHalSummary(const HalManifest* vm, const HalManifest* fm,
227 const CompatibilityMatrix* vcm, const CompatibilityMatrix* fcm) {
228 Table table;
229 insert(vm, &table, [](auto* row) { row->dm = true; });
230 insert(fm, &table, [](auto* row) { row->fm = true; });
231 insert(vcm, &table, [](auto* row) { row->dcm = true; });
232 insert(fcm, &table, [](auto* row) { row->fcm = true; });
233
234 return table;
235}
236
237static const std::vector<Option> gAvailableOptions{
238 {'h', "help", "Print help message.", [](auto) { return USAGE; }},
239 {'v', "verbose", "Dump detailed and raw content, including kernel configurations", [](auto o) {
240 o->verbose = true;
241 return OK;
242 }}};
Yifan Hong1e5a0542017-04-28 14:37:56 -0700243// A convenience binary to dump information available through libvintf.
Yifan Honge3a92342018-01-25 17:00:16 -0800244int main(int argc, char** argv) {
245 ParsedOptions options;
246 Status status = parseOptions(argc, argv, gAvailableOptions, &options);
247 if (status == USAGE) usage(argv[0], gAvailableOptions);
248 if (status != OK) return status;
Yifan Hong676447a2016-11-15 12:57:23 -0800249
Yifan Honge3a92342018-01-25 17:00:16 -0800250 auto vm = VintfObject::GetDeviceHalManifest();
251 auto fm = VintfObject::GetFrameworkHalManifest();
252 auto vcm = VintfObject::GetDeviceCompatibilityMatrix();
253 auto fcm = VintfObject::GetFrameworkCompatibilityMatrix();
254 auto ki = VintfObject::GetRuntimeInfo();
255
256 if (!options.verbose) {
257 std::cout << "======== HALs =========" << std::endl
258 << "R: required. (empty): optional or missing from matrices. "
259 << "!: required and not in manifest." << std::endl
260 << "DM: device manifest. FM: framework manifest." << std::endl
261 << "FCM: framework compatibility matrix. DCM: device compatibility matrix."
262 << std::endl
263 << std::endl;
264 auto table = generateHalSummary(vm.get(), fm.get(), vcm.get(), fcm.get());
265
266 for (const auto& pair : table)
267 std::cout << pair.second << kColumnSeperator << pair.first << std::endl;
268
269 std::cout << std::endl;
270 }
271
272 SerializeFlags flags = SerializeFlag::EVERYTHING;
273 if (!options.verbose) {
274 flags |= SerializeFlag::NO_HALS;
275 flags |= SerializeFlag::NO_KERNEL;
276 }
Yifan Hong1e5a0542017-04-28 14:37:56 -0700277 std::cout << "======== Device HAL Manifest =========" << std::endl;
Yifan Honge3a92342018-01-25 17:00:16 -0800278 if (vm != nullptr) std::cout << gHalManifestConverter(*vm, flags);
Yifan Hong1e5a0542017-04-28 14:37:56 -0700279 std::cout << "======== Framework HAL Manifest =========" << std::endl;
Yifan Honge3a92342018-01-25 17:00:16 -0800280 if (fm != nullptr) std::cout << gHalManifestConverter(*fm, flags);
Yifan Hong1e5a0542017-04-28 14:37:56 -0700281 std::cout << "======== Device Compatibility Matrix =========" << std::endl;
Yifan Honge3a92342018-01-25 17:00:16 -0800282 if (vcm != nullptr) std::cout << gCompatibilityMatrixConverter(*vcm, flags);
Yifan Hong1e5a0542017-04-28 14:37:56 -0700283 std::cout << "======== Framework Compatibility Matrix =========" << std::endl;
Yifan Honge3a92342018-01-25 17:00:16 -0800284 if (fcm != nullptr) std::cout << gCompatibilityMatrixConverter(*fcm, flags);
Yifan Hong1e5a0542017-04-28 14:37:56 -0700285
Yifan Hong3f835d62017-05-16 13:10:11 -0700286 std::cout << "======== Runtime Info =========" << std::endl;
Yifan Honge3a92342018-01-25 17:00:16 -0800287 if (ki != nullptr) std::cout << dump(*ki, options.verbose);
Yifan Hong3f835d62017-05-16 13:10:11 -0700288
Yifan Hong3f835d62017-05-16 13:10:11 -0700289 std::cout << std::endl;
290
Yifan Honge3a92342018-01-25 17:00:16 -0800291 std::cout << "======== Summary =========" << std::endl;
Yifan Hong3eed7e12018-01-25 11:22:52 -0800292 std::cout << "Device Manifest? " << existString(vm != nullptr) << std::endl
293 << "Device Matrix? " << existString(vcm != nullptr) << std::endl
294 << "Framework Manifest? " << existString(fm != nullptr) << std::endl
295 << "Framework Matrix? " << existString(fcm != nullptr) << std::endl;
Yifan Hong1e5a0542017-04-28 14:37:56 -0700296 std::string error;
297 if (vm && fcm) {
298 bool compatible = vm->checkCompatibility(*fcm, &error);
299 std::cout << "Device HAL Manifest <==> Framework Compatibility Matrix? "
Yifan Hong3eed7e12018-01-25 11:22:52 -0800300 << boolCompatString(compatible);
Yifan Hong1e5a0542017-04-28 14:37:56 -0700301 if (!compatible)
302 std::cout << ", " << error;
303 std::cout << std::endl;
304 }
305 if (fm && vcm) {
306 bool compatible = fm->checkCompatibility(*vcm, &error);
307 std::cout << "Framework HAL Manifest <==> Device Compatibility Matrix? "
Yifan Hong3eed7e12018-01-25 11:22:52 -0800308 << boolCompatString(compatible);
Yifan Hong1e5a0542017-04-28 14:37:56 -0700309 if (!compatible)
310 std::cout << ", " << error;
311 std::cout << std::endl;
312 }
Yifan Hong3f835d62017-05-16 13:10:11 -0700313 if (ki && fcm) {
314 bool compatible = ki->checkCompatibility(*fcm, &error);
Yifan Hong3eed7e12018-01-25 11:22:52 -0800315 std::cout << "Runtime info <==> Framework Compatibility Matrix? "
316 << boolCompatString(compatible);
Yifan Hong3f835d62017-05-16 13:10:11 -0700317 if (!compatible) std::cout << ", " << error;
318 std::cout << std::endl;
319 }
Yifan Hong1e5a0542017-04-28 14:37:56 -0700320
Yifan Hong3f835d62017-05-16 13:10:11 -0700321 {
322 auto compatible = VintfObject::CheckCompatibility({}, &error);
Yifan Hong3eed7e12018-01-25 11:22:52 -0800323 std::cout << "VintfObject::CheckCompatibility? "
324 << compatibleString(compatible);
Yifan Hong3f835d62017-05-16 13:10:11 -0700325 if (compatible != COMPATIBLE) std::cout << ", " << error;
326 std::cout << std::endl;
327 }
Yifan Hong3eed7e12018-01-25 11:22:52 -0800328
329 if (vm && fcm) {
330 auto deprecate = VintfObject::CheckDeprecation(&error);
331 std::cout << "VintfObject::CheckDeprecation (against device manifest)? "
332 << deprecateString(deprecate);
333 if (deprecate != NO_DEPRECATED_HALS) std::cout << ", " << error;
334 std::cout << std::endl;
335 }
Yifan Hong676447a2016-11-15 12:57:23 -0800336}