blob: 601b7e25f9ab36d75ba4324433e6c0aefbcf7136 [file] [log] [blame]
Yifan Hongb0dde932017-02-10 17:49:58 -08001/*
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
17#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_TABLE_ENTRY_H_
18#define FRAMEWORK_NATIVE_CMDS_LSHAL_TABLE_ENTRY_H_
19
20#include <stdint.h>
21
22#include <string>
23#include <vector>
Yifan Hong38d53e02017-02-13 17:51:59 -080024#include <iostream>
Yifan Hongb0dde932017-02-10 17:49:58 -080025
Yifan Hongf31aa052018-02-02 15:17:51 -080026#include <procpartition/procpartition.h>
Yifan Hong0ad64f52018-05-25 15:29:17 -070027#include <vintf/Arch.h>
Yifan Hong8304e412018-05-25 15:05:36 -070028#include <vintf/Transport.h>
Yifan Hongf31aa052018-02-02 15:17:51 -080029
Yifan Hongd4a77e82017-09-06 19:40:24 -070030#include "TextTable.h"
31
Yifan Hongb0dde932017-02-10 17:49:58 -080032namespace android {
33namespace lshal {
34
Yifan Hongf31aa052018-02-02 15:17:51 -080035using android::procpartition::Partition;
Yifan Hongb0dde932017-02-10 17:49:58 -080036using Pids = std::vector<int32_t>;
37
Yifan Hongd4a77e82017-09-06 19:40:24 -070038enum class TableColumnType : unsigned int {
39 INTERFACE_NAME,
40 TRANSPORT,
41 SERVER_PID,
42 SERVER_CMD,
43 SERVER_ADDR,
44 CLIENT_PIDS,
45 CLIENT_CMDS,
46 ARCH,
47 THREADS,
Yifan Hongfee209d2017-09-14 18:23:38 -070048 RELEASED,
49 HASH,
Yifan Hongbdf44f82018-05-25 14:20:00 -070050 VINTF,
Yifan Hong13ba0a92018-06-25 16:15:56 -070051 SERVICE_STATUS,
Yifan Hongd4a77e82017-09-06 19:40:24 -070052};
53
Yifan Hongbdf44f82018-05-25 14:20:00 -070054enum : unsigned int {
55 VINTF_INFO_EMPTY = 0,
56 DEVICE_MANIFEST = 1 << 0,
57 DEVICE_MATRIX = 1 << 1,
58 FRAMEWORK_MANIFEST = 1 << 2,
59 FRAMEWORK_MATRIX = 1 << 3,
60};
61using VintfInfo = unsigned int;
62
Yifan Hong22ea7b82017-09-14 18:07:43 -070063enum {
64 NO_PID = -1,
65 NO_PTR = 0
66};
67
Yifan Hong13ba0a92018-06-25 16:15:56 -070068enum class ServiceStatus {
69 UNKNOWN, // For passthrough
70 ALIVE,
71 NON_RESPONSIVE, // registered but not respond to calls
72 DECLARED, // in VINTF manifest
73};
74std::string to_string(ServiceStatus s);
75
Yifan Hongb0dde932017-02-10 17:49:58 -080076struct TableEntry {
Yifan Hong22ea7b82017-09-14 18:07:43 -070077 std::string interfaceName{};
Yifan Hong8304e412018-05-25 15:05:36 -070078 vintf::Transport transport{vintf::Transport::EMPTY};
Yifan Hong22ea7b82017-09-14 18:07:43 -070079 int32_t serverPid{NO_PID};
80 uint32_t threadUsage{0};
81 uint32_t threadCount{0};
82 std::string serverCmdline{};
83 uint64_t serverObjectAddress{NO_PTR};
84 Pids clientPids{};
85 std::vector<std::string> clientCmdlines{};
Yifan Hong0ad64f52018-05-25 15:29:17 -070086 vintf::Arch arch{vintf::Arch::ARCH_EMPTY};
Yifan Hongfee209d2017-09-14 18:23:38 -070087 // empty: unknown, all zeros: unreleased, otherwise: released
88 std::string hash{};
Yifan Hongf31aa052018-02-02 15:17:51 -080089 Partition partition{Partition::UNKNOWN};
Yifan Hongbdf44f82018-05-25 14:20:00 -070090 VintfInfo vintfInfo{VINTF_INFO_EMPTY};
Yifan Hong13ba0a92018-06-25 16:15:56 -070091 // true iff hwbinder and service started
92 ServiceStatus serviceStatus{ServiceStatus::UNKNOWN};
Yifan Hong38d53e02017-02-13 17:51:59 -080093
94 static bool sortByInterfaceName(const TableEntry &a, const TableEntry &b) {
95 return a.interfaceName < b.interfaceName;
96 };
97 static bool sortByServerPid(const TableEntry &a, const TableEntry &b) {
98 return a.serverPid < b.serverPid;
99 };
Steven Morelandd8e20192017-05-24 11:23:08 -0700100
101 std::string getThreadUsage() const {
102 if (threadCount == 0) {
103 return "N/A";
104 }
105
106 return std::to_string(threadUsage) + "/" + std::to_string(threadCount);
107 }
Yifan Hongd4a77e82017-09-06 19:40:24 -0700108
Yifan Hongfee209d2017-09-14 18:23:38 -0700109 std::string isReleased() const;
110
Yifan Hongbdf44f82018-05-25 14:20:00 -0700111 std::string getVintfInfo() const;
112
Yifan Hongd4a77e82017-09-06 19:40:24 -0700113 std::string getField(TableColumnType type) const;
Yifan Hong8bf73162017-09-07 18:06:13 -0700114
115 bool operator==(const TableEntry& other) const;
116 std::string to_string() const;
Yifan Hongb0dde932017-02-10 17:49:58 -0800117};
118
Yifan Hongd4a77e82017-09-06 19:40:24 -0700119using SelectedColumns = std::vector<TableColumnType>;
Yifan Honga3b87092017-03-02 19:19:29 -0800120
Yifan Hongd4a77e82017-09-06 19:40:24 -0700121class Table {
122public:
123 using Entries = std::vector<TableEntry>;
124
125 Entries::iterator begin() { return mEntries.begin(); }
126 Entries::const_iterator begin() const { return mEntries.begin(); }
127 Entries::iterator end() { return mEntries.end(); }
128 Entries::const_iterator end() const { return mEntries.end(); }
Yifan Hong8bf73162017-09-07 18:06:13 -0700129 size_t size() const { return mEntries.size(); }
Yifan Hongd4a77e82017-09-06 19:40:24 -0700130
131 void add(TableEntry&& entry) { mEntries.push_back(std::move(entry)); }
132
133 void setSelectedColumns(const SelectedColumns& s) { mSelectedColumns = s; }
134 const SelectedColumns& getSelectedColumns() const { return mSelectedColumns; }
135
136 void setDescription(std::string&& d) { mDescription = std::move(d); }
137
138 // Write table content.
139 TextTable createTextTable(bool neat = true,
140 const std::function<std::string(const std::string&)>& emitDebugInfo = nullptr) const;
141
142private:
143 std::string mDescription;
144 Entries mEntries;
145 SelectedColumns mSelectedColumns;
Yifan Honga3b87092017-03-02 19:19:29 -0800146};
147
Yifan Hong38d53e02017-02-13 17:51:59 -0800148using TableEntryCompare = std::function<bool(const TableEntry &, const TableEntry &)>;
149
Yifan Hongd4a77e82017-09-06 19:40:24 -0700150class MergedTable {
151public:
Chih-Hung Hsieh45e31c72018-12-20 15:47:01 -0800152 explicit MergedTable(std::vector<const Table*>&& tables) : mTables(std::move(tables)) {}
Yifan Hongd4a77e82017-09-06 19:40:24 -0700153 TextTable createTextTable();
154private:
155 std::vector<const Table*> mTables;
Yifan Hong38d53e02017-02-13 17:51:59 -0800156};
157
Yifan Hongb0dde932017-02-10 17:49:58 -0800158} // namespace lshal
159} // namespace android
160
161#endif // FRAMEWORK_NATIVE_CMDS_LSHAL_TABLE_ENTRY_H_