blob: e8792a4307f069701462343ea8b2a934323db974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define LOG_TAG "lshal"
#include <android-base/logging.h>
#include <hidl-hash/Hash.h>
#include "TableEntry.h"
#include "TextTable.h"
#include "utils.h"
namespace android {
namespace lshal {
static const std::string &getArchString(Architecture arch) {
static const std::string sStr64 = "64";
static const std::string sStr32 = "32";
static const std::string sStrBoth = "32+64";
static const std::string sStrUnknown = "";
switch (arch) {
case ARCH64:
return sStr64;
case ARCH32:
return sStr32;
case ARCH_BOTH:
return sStrBoth;
case ARCH_UNKNOWN: // fall through
default:
return sStrUnknown;
}
}
static std::string getTitle(TableColumnType type) {
switch (type) {
case TableColumnType::INTERFACE_NAME: return "Interface";
case TableColumnType::TRANSPORT: return "Transport";
case TableColumnType::SERVER_PID: return "Server";
case TableColumnType::SERVER_CMD: return "Server CMD";
case TableColumnType::SERVER_ADDR: return "PTR";
case TableColumnType::CLIENT_PIDS: return "Clients";
case TableColumnType::CLIENT_CMDS: return "Clients CMD";
case TableColumnType::ARCH: return "Arch";
case TableColumnType::THREADS: return "Thread Use";
case TableColumnType::RELEASED: return "R";
case TableColumnType::HASH: return "Hash";
default:
LOG(FATAL) << __func__ << "Should not reach here. " << static_cast<int>(type);
return "";
}
}
std::string TableEntry::getField(TableColumnType type) const {
switch (type) {
case TableColumnType::INTERFACE_NAME:
return interfaceName;
case TableColumnType::TRANSPORT:
return transport;
case TableColumnType::SERVER_PID:
return serverPid == NO_PID ? "N/A" : std::to_string(serverPid);
case TableColumnType::SERVER_CMD:
return serverCmdline;
case TableColumnType::SERVER_ADDR:
return serverObjectAddress == NO_PTR ? "N/A" : toHexString(serverObjectAddress);
case TableColumnType::CLIENT_PIDS:
return join(clientPids, " ");
case TableColumnType::CLIENT_CMDS:
return join(clientCmdlines, ";");
case TableColumnType::ARCH:
return getArchString(arch);
case TableColumnType::THREADS:
return getThreadUsage();
case TableColumnType::RELEASED:
return isReleased();
case TableColumnType::HASH:
return hash;
default:
LOG(FATAL) << __func__ << "Should not reach here. " << static_cast<int>(type);
return "";
}
}
std::string TableEntry::isReleased() const {
static const std::string unreleased = Hash::hexString(Hash::kEmptyHash);
if (hash.empty() || hash == unreleased) {
return " "; // unknown or unreleased
}
return "Y"; // released
}
TextTable Table::createTextTable(bool neat,
const std::function<std::string(const std::string&)>& emitDebugInfo) const {
TextTable textTable;
std::vector<std::string> row;
if (!neat) {
textTable.add(mDescription);
row.clear();
for (TableColumnType type : mSelectedColumns) {
row.push_back(getTitle(type));
}
textTable.add(std::move(row));
}
for (const auto& entry : mEntries) {
row.clear();
for (TableColumnType type : mSelectedColumns) {
row.push_back(entry.getField(type));
}
textTable.add(std::move(row));
if (emitDebugInfo) {
std::string debugInfo = emitDebugInfo(entry.interfaceName);
if (!debugInfo.empty()) textTable.add(debugInfo);
}
}
return textTable;
}
TextTable MergedTable::createTextTable() {
TextTable textTable;
for (const Table* table : mTables) {
textTable.addAll(table->createTextTable());
}
return textTable;
}
bool TableEntry::operator==(const TableEntry& other) const {
if (this == &other) {
return true;
}
return interfaceName == other.interfaceName && transport == other.transport &&
serverPid == other.serverPid && threadUsage == other.threadUsage &&
threadCount == other.threadCount && serverCmdline == other.serverCmdline &&
serverObjectAddress == other.serverObjectAddress && clientPids == other.clientPids &&
clientCmdlines == other.clientCmdlines && arch == other.arch;
}
std::string TableEntry::to_string() const {
std::stringstream ss;
ss << "name=" << interfaceName << ";transport=" << transport << ";thread=" << getThreadUsage()
<< ";server=" << serverPid
<< "(" << serverObjectAddress << ";" << serverCmdline << ");clients=["
<< join(clientPids, ";") << "](" << join(clientCmdlines, ";") << ");arch="
<< getArchString(arch);
return ss.str();
}
} // namespace lshal
} // namespace android
|