blob: e04c3ca252821b4ba4b2f9e18a8de1a9d63064e7 [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
26namespace android {
27namespace lshal {
28
29using Pids = std::vector<int32_t>;
30
Yifan Hong4b865492017-02-28 19:38:24 -080031enum : unsigned int {
32 HWSERVICEMANAGER_LIST, // through defaultServiceManager()->list()
33 PTSERVICEMANAGER_REG_CLIENT, // through registerPassthroughClient
34 LIST_DLLIB, // through listing dynamic libraries
35};
36using TableEntrySource = unsigned int;
37
Yifan Hongb4479022017-03-02 16:54:11 -080038enum : unsigned int {
39 ARCH_UNKNOWN = 0,
Yifan Hong3fdbd9f2017-03-08 14:01:58 -080040 ARCH32 = 1 << 0,
41 ARCH64 = 1 << 1,
Yifan Hongb4479022017-03-02 16:54:11 -080042 ARCH_BOTH = ARCH32 | ARCH64
43};
44using Architecture = unsigned int;
45
Yifan Hongb0dde932017-02-10 17:49:58 -080046struct TableEntry {
47 std::string interfaceName;
48 std::string transport;
49 int32_t serverPid;
Steven Morelandd8e20192017-05-24 11:23:08 -070050 uint32_t threadUsage;
51 uint32_t threadCount;
Yifan Hongae09a3d2017-02-14 17:33:50 -080052 std::string serverCmdline;
Yifan Hongb0dde932017-02-10 17:49:58 -080053 uint64_t serverObjectAddress;
54 Pids clientPids;
Yifan Hongae09a3d2017-02-14 17:33:50 -080055 std::vector<std::string> clientCmdlines;
Yifan Hongb4479022017-03-02 16:54:11 -080056 Architecture arch;
Yifan Hong38d53e02017-02-13 17:51:59 -080057
58 static bool sortByInterfaceName(const TableEntry &a, const TableEntry &b) {
59 return a.interfaceName < b.interfaceName;
60 };
61 static bool sortByServerPid(const TableEntry &a, const TableEntry &b) {
62 return a.serverPid < b.serverPid;
63 };
Steven Morelandd8e20192017-05-24 11:23:08 -070064
65 std::string getThreadUsage() const {
66 if (threadCount == 0) {
67 return "N/A";
68 }
69
70 return std::to_string(threadUsage) + "/" + std::to_string(threadCount);
71 }
Yifan Hongb0dde932017-02-10 17:49:58 -080072};
73
Yifan Honga3b87092017-03-02 19:19:29 -080074struct Table {
75 using Entries = std::vector<TableEntry>;
76 std::string description;
77 Entries entries;
78
79 Entries::iterator begin() { return entries.begin(); }
80 Entries::const_iterator begin() const { return entries.begin(); }
81 Entries::iterator end() { return entries.end(); }
82 Entries::const_iterator end() const { return entries.end(); }
83};
84
Yifan Hong38d53e02017-02-13 17:51:59 -080085using TableEntryCompare = std::function<bool(const TableEntry &, const TableEntry &)>;
86
87enum : unsigned int {
88 ENABLE_INTERFACE_NAME = 1 << 0,
89 ENABLE_TRANSPORT = 1 << 1,
90 ENABLE_SERVER_PID = 1 << 2,
91 ENABLE_SERVER_ADDR = 1 << 3,
Yifan Hongb4479022017-03-02 16:54:11 -080092 ENABLE_CLIENT_PIDS = 1 << 4,
Steven Morelandd8e20192017-05-24 11:23:08 -070093 ENABLE_ARCH = 1 << 5,
94 ENABLE_THREADS = 1 << 6,
Yifan Hong38d53e02017-02-13 17:51:59 -080095};
96
97using TableEntrySelect = unsigned int;
Yifan Hongb0dde932017-02-10 17:49:58 -080098
99enum {
100 NO_PID = -1,
101 NO_PTR = 0
102};
103
104} // namespace lshal
105} // namespace android
106
107#endif // FRAMEWORK_NATIVE_CMDS_LSHAL_TABLE_ENTRY_H_