blob: 08a130360023d185b278aae1194dd1dfef1727e4 [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 Hong4b865492017-02-28 19:38:24 -080038enum : unsigned int {
39 HWSERVICEMANAGER_LIST, // through defaultServiceManager()->list()
40 PTSERVICEMANAGER_REG_CLIENT, // through registerPassthroughClient
41 LIST_DLLIB, // through listing dynamic libraries
42};
43using TableEntrySource = unsigned int;
44
Yifan Hongd4a77e82017-09-06 19:40:24 -070045enum class TableColumnType : unsigned int {
46 INTERFACE_NAME,
47 TRANSPORT,
48 SERVER_PID,
49 SERVER_CMD,
50 SERVER_ADDR,
51 CLIENT_PIDS,
52 CLIENT_CMDS,
53 ARCH,
54 THREADS,
Yifan Hongfee209d2017-09-14 18:23:38 -070055 RELEASED,
56 HASH,
Yifan Hongd4a77e82017-09-06 19:40:24 -070057};
58
Yifan Hong22ea7b82017-09-14 18:07:43 -070059enum {
60 NO_PID = -1,
61 NO_PTR = 0
62};
63
Yifan Hongb0dde932017-02-10 17:49:58 -080064struct TableEntry {
Yifan Hong22ea7b82017-09-14 18:07:43 -070065 std::string interfaceName{};
Yifan Hong8304e412018-05-25 15:05:36 -070066 vintf::Transport transport{vintf::Transport::EMPTY};
Yifan Hong22ea7b82017-09-14 18:07:43 -070067 int32_t serverPid{NO_PID};
68 uint32_t threadUsage{0};
69 uint32_t threadCount{0};
70 std::string serverCmdline{};
71 uint64_t serverObjectAddress{NO_PTR};
72 Pids clientPids{};
73 std::vector<std::string> clientCmdlines{};
Yifan Hong0ad64f52018-05-25 15:29:17 -070074 vintf::Arch arch{vintf::Arch::ARCH_EMPTY};
Yifan Hongfee209d2017-09-14 18:23:38 -070075 // empty: unknown, all zeros: unreleased, otherwise: released
76 std::string hash{};
Yifan Hongf31aa052018-02-02 15:17:51 -080077 Partition partition{Partition::UNKNOWN};
Yifan Hong38d53e02017-02-13 17:51:59 -080078
79 static bool sortByInterfaceName(const TableEntry &a, const TableEntry &b) {
80 return a.interfaceName < b.interfaceName;
81 };
82 static bool sortByServerPid(const TableEntry &a, const TableEntry &b) {
83 return a.serverPid < b.serverPid;
84 };
Steven Morelandd8e20192017-05-24 11:23:08 -070085
86 std::string getThreadUsage() const {
87 if (threadCount == 0) {
88 return "N/A";
89 }
90
91 return std::to_string(threadUsage) + "/" + std::to_string(threadCount);
92 }
Yifan Hongd4a77e82017-09-06 19:40:24 -070093
Yifan Hongfee209d2017-09-14 18:23:38 -070094 std::string isReleased() const;
95
Yifan Hongd4a77e82017-09-06 19:40:24 -070096 std::string getField(TableColumnType type) const;
Yifan Hong8bf73162017-09-07 18:06:13 -070097
98 bool operator==(const TableEntry& other) const;
99 std::string to_string() const;
Yifan Hongb0dde932017-02-10 17:49:58 -0800100};
101
Yifan Hongd4a77e82017-09-06 19:40:24 -0700102using SelectedColumns = std::vector<TableColumnType>;
Yifan Honga3b87092017-03-02 19:19:29 -0800103
Yifan Hongd4a77e82017-09-06 19:40:24 -0700104class Table {
105public:
106 using Entries = std::vector<TableEntry>;
107
108 Entries::iterator begin() { return mEntries.begin(); }
109 Entries::const_iterator begin() const { return mEntries.begin(); }
110 Entries::iterator end() { return mEntries.end(); }
111 Entries::const_iterator end() const { return mEntries.end(); }
Yifan Hong8bf73162017-09-07 18:06:13 -0700112 size_t size() const { return mEntries.size(); }
Yifan Hongd4a77e82017-09-06 19:40:24 -0700113
114 void add(TableEntry&& entry) { mEntries.push_back(std::move(entry)); }
115
116 void setSelectedColumns(const SelectedColumns& s) { mSelectedColumns = s; }
117 const SelectedColumns& getSelectedColumns() const { return mSelectedColumns; }
118
119 void setDescription(std::string&& d) { mDescription = std::move(d); }
120
121 // Write table content.
122 TextTable createTextTable(bool neat = true,
123 const std::function<std::string(const std::string&)>& emitDebugInfo = nullptr) const;
124
125private:
126 std::string mDescription;
127 Entries mEntries;
128 SelectedColumns mSelectedColumns;
Yifan Honga3b87092017-03-02 19:19:29 -0800129};
130
Yifan Hong38d53e02017-02-13 17:51:59 -0800131using TableEntryCompare = std::function<bool(const TableEntry &, const TableEntry &)>;
132
Yifan Hongd4a77e82017-09-06 19:40:24 -0700133class MergedTable {
134public:
135 MergedTable(std::vector<const Table*>&& tables) : mTables(std::move(tables)) {}
136 TextTable createTextTable();
137private:
138 std::vector<const Table*> mTables;
Yifan Hong38d53e02017-02-13 17:51:59 -0800139};
140
Yifan Hongb0dde932017-02-10 17:49:58 -0800141} // namespace lshal
142} // namespace android
143
144#endif // FRAMEWORK_NATIVE_CMDS_LSHAL_TABLE_ENTRY_H_