2017-02-11 02:49:58 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 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.
|
|
|
|
*/
|
|
|
|
|
2019-06-25 17:54:34 +02:00
|
|
|
#pragma once
|
2017-02-11 02:49:58 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2017-02-14 02:51:59 +01:00
|
|
|
#include <iostream>
|
2017-02-11 02:49:58 +01:00
|
|
|
|
2018-02-03 00:17:51 +01:00
|
|
|
#include <procpartition/procpartition.h>
|
2018-05-26 00:29:17 +02:00
|
|
|
#include <vintf/Arch.h>
|
2018-05-26 00:05:36 +02:00
|
|
|
#include <vintf/Transport.h>
|
2018-02-03 00:17:51 +01:00
|
|
|
|
2017-09-07 04:40:24 +02:00
|
|
|
#include "TextTable.h"
|
|
|
|
|
2017-02-11 02:49:58 +01:00
|
|
|
namespace android {
|
|
|
|
namespace lshal {
|
|
|
|
|
2018-02-03 00:17:51 +01:00
|
|
|
using android::procpartition::Partition;
|
2020-12-12 00:11:17 +01:00
|
|
|
using Pids = std::vector<pid_t>;
|
2017-02-11 02:49:58 +01:00
|
|
|
|
2017-09-07 04:40:24 +02:00
|
|
|
enum class TableColumnType : unsigned int {
|
2020-08-08 03:24:06 +02:00
|
|
|
INTERFACE_NAME = 0,
|
2017-09-07 04:40:24 +02:00
|
|
|
TRANSPORT,
|
|
|
|
SERVER_PID,
|
|
|
|
SERVER_ADDR,
|
|
|
|
ARCH,
|
|
|
|
THREADS,
|
2017-09-15 03:23:38 +02:00
|
|
|
RELEASED,
|
|
|
|
HASH,
|
2018-05-25 23:20:00 +02:00
|
|
|
VINTF,
|
2018-06-26 01:15:56 +02:00
|
|
|
SERVICE_STATUS,
|
2020-08-08 03:24:06 +02:00
|
|
|
CLIENT_PIDS,
|
|
|
|
|
|
|
|
// Not a real TableColumnType. Used to determine all TableColumnTypes.
|
|
|
|
LAST,
|
|
|
|
|
|
|
|
// Not included in all TableColumnTypes because they replace *PID(S) when the
|
|
|
|
// --cmdline option is set.
|
|
|
|
SERVER_CMD,
|
|
|
|
CLIENT_CMDS,
|
2017-09-07 04:40:24 +02:00
|
|
|
};
|
|
|
|
|
2018-05-25 23:20:00 +02:00
|
|
|
enum : unsigned int {
|
|
|
|
VINTF_INFO_EMPTY = 0,
|
|
|
|
DEVICE_MANIFEST = 1 << 0,
|
|
|
|
DEVICE_MATRIX = 1 << 1,
|
|
|
|
FRAMEWORK_MANIFEST = 1 << 2,
|
|
|
|
FRAMEWORK_MATRIX = 1 << 3,
|
|
|
|
};
|
|
|
|
using VintfInfo = unsigned int;
|
|
|
|
|
2017-09-15 03:07:43 +02:00
|
|
|
enum {
|
|
|
|
NO_PID = -1,
|
|
|
|
NO_PTR = 0
|
|
|
|
};
|
|
|
|
|
2018-06-26 01:15:56 +02:00
|
|
|
enum class ServiceStatus {
|
|
|
|
UNKNOWN, // For passthrough
|
|
|
|
ALIVE,
|
|
|
|
NON_RESPONSIVE, // registered but not respond to calls
|
|
|
|
DECLARED, // in VINTF manifest
|
|
|
|
};
|
|
|
|
std::string to_string(ServiceStatus s);
|
|
|
|
|
2017-02-11 02:49:58 +01:00
|
|
|
struct TableEntry {
|
2017-09-15 03:07:43 +02:00
|
|
|
std::string interfaceName{};
|
2018-05-26 00:05:36 +02:00
|
|
|
vintf::Transport transport{vintf::Transport::EMPTY};
|
2017-09-15 03:07:43 +02:00
|
|
|
int32_t serverPid{NO_PID};
|
|
|
|
uint32_t threadUsage{0};
|
|
|
|
uint32_t threadCount{0};
|
|
|
|
std::string serverCmdline{};
|
|
|
|
uint64_t serverObjectAddress{NO_PTR};
|
|
|
|
Pids clientPids{};
|
|
|
|
std::vector<std::string> clientCmdlines{};
|
2018-05-26 00:29:17 +02:00
|
|
|
vintf::Arch arch{vintf::Arch::ARCH_EMPTY};
|
2017-09-15 03:23:38 +02:00
|
|
|
// empty: unknown, all zeros: unreleased, otherwise: released
|
|
|
|
std::string hash{};
|
2018-02-03 00:17:51 +01:00
|
|
|
Partition partition{Partition::UNKNOWN};
|
2018-05-25 23:20:00 +02:00
|
|
|
VintfInfo vintfInfo{VINTF_INFO_EMPTY};
|
2018-06-26 01:15:56 +02:00
|
|
|
// true iff hwbinder and service started
|
|
|
|
ServiceStatus serviceStatus{ServiceStatus::UNKNOWN};
|
2017-02-14 02:51:59 +01:00
|
|
|
|
|
|
|
static bool sortByInterfaceName(const TableEntry &a, const TableEntry &b) {
|
|
|
|
return a.interfaceName < b.interfaceName;
|
|
|
|
};
|
|
|
|
static bool sortByServerPid(const TableEntry &a, const TableEntry &b) {
|
|
|
|
return a.serverPid < b.serverPid;
|
|
|
|
};
|
2017-05-24 20:23:08 +02:00
|
|
|
|
|
|
|
std::string getThreadUsage() const {
|
|
|
|
if (threadCount == 0) {
|
|
|
|
return "N/A";
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::to_string(threadUsage) + "/" + std::to_string(threadCount);
|
|
|
|
}
|
2017-09-07 04:40:24 +02:00
|
|
|
|
2017-09-15 03:23:38 +02:00
|
|
|
std::string isReleased() const;
|
|
|
|
|
2018-05-25 23:20:00 +02:00
|
|
|
std::string getVintfInfo() const;
|
|
|
|
|
2017-09-07 04:40:24 +02:00
|
|
|
std::string getField(TableColumnType type) const;
|
2017-09-08 03:06:13 +02:00
|
|
|
|
|
|
|
bool operator==(const TableEntry& other) const;
|
|
|
|
std::string to_string() const;
|
2017-02-11 02:49:58 +01:00
|
|
|
};
|
|
|
|
|
2017-09-07 04:40:24 +02:00
|
|
|
using SelectedColumns = std::vector<TableColumnType>;
|
|
|
|
|
|
|
|
class Table {
|
|
|
|
public:
|
2017-03-03 04:19:29 +01:00
|
|
|
using Entries = std::vector<TableEntry>;
|
|
|
|
|
2017-09-07 04:40:24 +02:00
|
|
|
Entries::iterator begin() { return mEntries.begin(); }
|
|
|
|
Entries::const_iterator begin() const { return mEntries.begin(); }
|
|
|
|
Entries::iterator end() { return mEntries.end(); }
|
|
|
|
Entries::const_iterator end() const { return mEntries.end(); }
|
2017-09-08 03:06:13 +02:00
|
|
|
size_t size() const { return mEntries.size(); }
|
2017-09-07 04:40:24 +02:00
|
|
|
|
|
|
|
void add(TableEntry&& entry) { mEntries.push_back(std::move(entry)); }
|
|
|
|
|
|
|
|
void setSelectedColumns(const SelectedColumns& s) { mSelectedColumns = s; }
|
|
|
|
const SelectedColumns& getSelectedColumns() const { return mSelectedColumns; }
|
|
|
|
|
|
|
|
void setDescription(std::string&& d) { mDescription = std::move(d); }
|
|
|
|
|
|
|
|
// Write table content.
|
|
|
|
TextTable createTextTable(bool neat = true,
|
|
|
|
const std::function<std::string(const std::string&)>& emitDebugInfo = nullptr) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string mDescription;
|
|
|
|
Entries mEntries;
|
|
|
|
SelectedColumns mSelectedColumns;
|
2017-03-03 04:19:29 +01:00
|
|
|
};
|
|
|
|
|
2017-02-14 02:51:59 +01:00
|
|
|
using TableEntryCompare = std::function<bool(const TableEntry &, const TableEntry &)>;
|
|
|
|
|
2017-09-07 04:40:24 +02:00
|
|
|
class MergedTable {
|
|
|
|
public:
|
2018-12-21 00:47:01 +01:00
|
|
|
explicit MergedTable(std::vector<const Table*>&& tables) : mTables(std::move(tables)) {}
|
2017-09-07 04:40:24 +02:00
|
|
|
TextTable createTextTable();
|
|
|
|
private:
|
|
|
|
std::vector<const Table*> mTables;
|
2017-02-14 02:51:59 +01:00
|
|
|
};
|
|
|
|
|
2017-02-11 02:49:58 +01:00
|
|
|
} // namespace lshal
|
|
|
|
} // namespace android
|