Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 1 | /* |
| 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 Hong | 38d53e0 | 2017-02-13 17:51:59 -0800 | [diff] [blame] | 24 | #include <iostream> |
Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 25 | |
Yifan Hong | f31aa05 | 2018-02-02 15:17:51 -0800 | [diff] [blame] | 26 | #include <procpartition/procpartition.h> |
Yifan Hong | 0ad64f5 | 2018-05-25 15:29:17 -0700 | [diff] [blame] | 27 | #include <vintf/Arch.h> |
Yifan Hong | 8304e41 | 2018-05-25 15:05:36 -0700 | [diff] [blame] | 28 | #include <vintf/Transport.h> |
Yifan Hong | f31aa05 | 2018-02-02 15:17:51 -0800 | [diff] [blame] | 29 | |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 30 | #include "TextTable.h" |
| 31 | |
Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 32 | namespace android { |
| 33 | namespace lshal { |
| 34 | |
Yifan Hong | f31aa05 | 2018-02-02 15:17:51 -0800 | [diff] [blame] | 35 | using android::procpartition::Partition; |
Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 36 | using Pids = std::vector<int32_t>; |
| 37 | |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 38 | enum 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 Hong | fee209d | 2017-09-14 18:23:38 -0700 | [diff] [blame] | 48 | RELEASED, |
| 49 | HASH, |
Yifan Hong | bdf44f8 | 2018-05-25 14:20:00 -0700 | [diff] [blame] | 50 | VINTF, |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
Yifan Hong | bdf44f8 | 2018-05-25 14:20:00 -0700 | [diff] [blame] | 53 | enum : unsigned int { |
| 54 | VINTF_INFO_EMPTY = 0, |
| 55 | DEVICE_MANIFEST = 1 << 0, |
| 56 | DEVICE_MATRIX = 1 << 1, |
| 57 | FRAMEWORK_MANIFEST = 1 << 2, |
| 58 | FRAMEWORK_MATRIX = 1 << 3, |
| 59 | }; |
| 60 | using VintfInfo = unsigned int; |
| 61 | |
Yifan Hong | 22ea7b8 | 2017-09-14 18:07:43 -0700 | [diff] [blame] | 62 | enum { |
| 63 | NO_PID = -1, |
| 64 | NO_PTR = 0 |
| 65 | }; |
| 66 | |
Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 67 | struct TableEntry { |
Yifan Hong | 22ea7b8 | 2017-09-14 18:07:43 -0700 | [diff] [blame] | 68 | std::string interfaceName{}; |
Yifan Hong | 8304e41 | 2018-05-25 15:05:36 -0700 | [diff] [blame] | 69 | vintf::Transport transport{vintf::Transport::EMPTY}; |
Yifan Hong | 22ea7b8 | 2017-09-14 18:07:43 -0700 | [diff] [blame] | 70 | int32_t serverPid{NO_PID}; |
| 71 | uint32_t threadUsage{0}; |
| 72 | uint32_t threadCount{0}; |
| 73 | std::string serverCmdline{}; |
| 74 | uint64_t serverObjectAddress{NO_PTR}; |
| 75 | Pids clientPids{}; |
| 76 | std::vector<std::string> clientCmdlines{}; |
Yifan Hong | 0ad64f5 | 2018-05-25 15:29:17 -0700 | [diff] [blame] | 77 | vintf::Arch arch{vintf::Arch::ARCH_EMPTY}; |
Yifan Hong | fee209d | 2017-09-14 18:23:38 -0700 | [diff] [blame] | 78 | // empty: unknown, all zeros: unreleased, otherwise: released |
| 79 | std::string hash{}; |
Yifan Hong | f31aa05 | 2018-02-02 15:17:51 -0800 | [diff] [blame] | 80 | Partition partition{Partition::UNKNOWN}; |
Yifan Hong | bdf44f8 | 2018-05-25 14:20:00 -0700 | [diff] [blame] | 81 | VintfInfo vintfInfo{VINTF_INFO_EMPTY}; |
Yifan Hong | 38d53e0 | 2017-02-13 17:51:59 -0800 | [diff] [blame] | 82 | |
| 83 | static bool sortByInterfaceName(const TableEntry &a, const TableEntry &b) { |
| 84 | return a.interfaceName < b.interfaceName; |
| 85 | }; |
| 86 | static bool sortByServerPid(const TableEntry &a, const TableEntry &b) { |
| 87 | return a.serverPid < b.serverPid; |
| 88 | }; |
Steven Moreland | d8e2019 | 2017-05-24 11:23:08 -0700 | [diff] [blame] | 89 | |
| 90 | std::string getThreadUsage() const { |
| 91 | if (threadCount == 0) { |
| 92 | return "N/A"; |
| 93 | } |
| 94 | |
| 95 | return std::to_string(threadUsage) + "/" + std::to_string(threadCount); |
| 96 | } |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 97 | |
Yifan Hong | fee209d | 2017-09-14 18:23:38 -0700 | [diff] [blame] | 98 | std::string isReleased() const; |
| 99 | |
Yifan Hong | bdf44f8 | 2018-05-25 14:20:00 -0700 | [diff] [blame] | 100 | std::string getVintfInfo() const; |
| 101 | |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 102 | std::string getField(TableColumnType type) const; |
Yifan Hong | 8bf7316 | 2017-09-07 18:06:13 -0700 | [diff] [blame] | 103 | |
| 104 | bool operator==(const TableEntry& other) const; |
| 105 | std::string to_string() const; |
Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 106 | }; |
| 107 | |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 108 | using SelectedColumns = std::vector<TableColumnType>; |
Yifan Hong | a3b8709 | 2017-03-02 19:19:29 -0800 | [diff] [blame] | 109 | |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 110 | class Table { |
| 111 | public: |
| 112 | using Entries = std::vector<TableEntry>; |
| 113 | |
| 114 | Entries::iterator begin() { return mEntries.begin(); } |
| 115 | Entries::const_iterator begin() const { return mEntries.begin(); } |
| 116 | Entries::iterator end() { return mEntries.end(); } |
| 117 | Entries::const_iterator end() const { return mEntries.end(); } |
Yifan Hong | 8bf7316 | 2017-09-07 18:06:13 -0700 | [diff] [blame] | 118 | size_t size() const { return mEntries.size(); } |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 119 | |
| 120 | void add(TableEntry&& entry) { mEntries.push_back(std::move(entry)); } |
| 121 | |
| 122 | void setSelectedColumns(const SelectedColumns& s) { mSelectedColumns = s; } |
| 123 | const SelectedColumns& getSelectedColumns() const { return mSelectedColumns; } |
| 124 | |
| 125 | void setDescription(std::string&& d) { mDescription = std::move(d); } |
| 126 | |
| 127 | // Write table content. |
| 128 | TextTable createTextTable(bool neat = true, |
| 129 | const std::function<std::string(const std::string&)>& emitDebugInfo = nullptr) const; |
| 130 | |
| 131 | private: |
| 132 | std::string mDescription; |
| 133 | Entries mEntries; |
| 134 | SelectedColumns mSelectedColumns; |
Yifan Hong | a3b8709 | 2017-03-02 19:19:29 -0800 | [diff] [blame] | 135 | }; |
| 136 | |
Yifan Hong | 38d53e0 | 2017-02-13 17:51:59 -0800 | [diff] [blame] | 137 | using TableEntryCompare = std::function<bool(const TableEntry &, const TableEntry &)>; |
| 138 | |
Yifan Hong | d4a77e8 | 2017-09-06 19:40:24 -0700 | [diff] [blame] | 139 | class MergedTable { |
| 140 | public: |
| 141 | MergedTable(std::vector<const Table*>&& tables) : mTables(std::move(tables)) {} |
| 142 | TextTable createTextTable(); |
| 143 | private: |
| 144 | std::vector<const Table*> mTables; |
Yifan Hong | 38d53e0 | 2017-02-13 17:51:59 -0800 | [diff] [blame] | 145 | }; |
| 146 | |
Yifan Hong | b0dde93 | 2017-02-10 17:49:58 -0800 | [diff] [blame] | 147 | } // namespace lshal |
| 148 | } // namespace android |
| 149 | |
| 150 | #endif // FRAMEWORK_NATIVE_CMDS_LSHAL_TABLE_ENTRY_H_ |