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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
/*
* Copyright (C) 2010 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.
*
*/
/*
* Binder add integers benchmark (Using google-benchmark library)
*
*/
#include <cerrno>
#include <grp.h>
#include <iostream>
#include <iomanip>
#include <libgen.h>
#include <time.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <binder/IPCThreadState.h>
#include <binder/ProcessState.h>
#include <binder/IServiceManager.h>
#include <benchmark/benchmark.h>
#include <utils/Log.h>
#include <testUtil.h>
using namespace android;
using namespace std;
const int unbound = -1; // Indicator for a thread not bound to a specific CPU
String16 serviceName("test.binderAddInts");
struct options {
int serverCPU;
int clientCPU;
float iterDelay; // End of iteration delay in seconds
} options = { // Set defaults
unbound, // Server CPU
unbound, // Client CPU
0.0, // End of iteration delay
};
class AddIntsService : public BBinder
{
public:
AddIntsService(int cpu = unbound);
virtual ~AddIntsService() {}
enum command {
ADD_INTS = 0x120,
};
virtual status_t onTransact(uint32_t code,
const Parcel& data, Parcel* reply,
uint32_t flags = 0);
private:
int cpu_;
};
// File scope function prototypes
static bool server(void);
static void BM_client(benchmark::State& state);
static void bindCPU(unsigned int cpu);
static ostream &operator<<(ostream &stream, const String16& str);
static ostream &operator<<(ostream &stream, const cpu_set_t& set);
static bool server(void)
{
int rv;
// Add the service
sp<ProcessState> proc(ProcessState::self());
sp<IServiceManager> sm = defaultServiceManager();
if ((rv = sm->addService(serviceName,
new AddIntsService(options.serverCPU))) != 0) {
cerr << "addService " << serviceName << " failed, rv: " << rv
<< " errno: " << errno << endl;
return false;
}
// Start threads to handle server work
proc->startThreadPool();
return true;
}
static void BM_client(benchmark::State& state)
{
server();
int rv;
sp<IServiceManager> sm = defaultServiceManager();
// If needed bind to client CPU
if (options.clientCPU != unbound) { bindCPU(options.clientCPU); }
// Attach to service
sp<IBinder> binder;
for (int i = 0; i < 3; i++) {
binder = sm->getService(serviceName);
if (binder != 0) break;
cout << serviceName << " not published, waiting..." << endl;
usleep(500000); // 0.5 s
}
if (binder == 0) {
cout << serviceName << " failed to publish, aborting" << endl;
return;
}
unsigned int iter = 0;
// Perform the IPC operations in the benchmark
while (state.KeepRunning()) {
Parcel send, reply;
// Create parcel to be sent. Will use the iteration cound
// and the iteration count + 3 as the two integer values
// to be sent.
state.PauseTiming();
int val1 = iter;
int val2 = iter + 3;
int expected = val1 + val2; // Expect to get the sum back
send.writeInt32(val1);
send.writeInt32(val2);
state.ResumeTiming();
// Send the parcel, while timing how long it takes for
// the answer to return.
if ((rv = binder->transact(AddIntsService::ADD_INTS,
send, &reply)) != 0) {
cerr << "binder->transact failed, rv: " << rv
<< " errno: " << errno << endl;
exit(10);
}
state.PauseTiming();
int result = reply.readInt32();
if (result != (int) (iter + iter + 3)) {
cerr << "Unexpected result for iteration " << iter << endl;
cerr << " result: " << result << endl;
cerr << "expected: " << expected << endl;
}
if (options.iterDelay > 0.0) { testDelaySpin(options.iterDelay); }
state.ResumeTiming();
}
}
BENCHMARK(BM_client);
AddIntsService::AddIntsService(int cpu): cpu_(cpu) {
if (cpu != unbound) { bindCPU(cpu); }
}
// Server function that handles parcels received from the client
status_t AddIntsService::onTransact(uint32_t code, const Parcel &data,
Parcel* reply, uint32_t /* flags */) {
int val1, val2;
status_t rv(0);
int cpu;
// If server bound to a particular CPU, check that
// were executing on that CPU.
if (cpu_ != unbound) {
cpu = sched_getcpu();
if (cpu != cpu_) {
cerr << "server onTransact on CPU " << cpu << " expected CPU "
<< cpu_ << endl;
exit(20);
}
}
// Perform the requested operation
switch (code) {
case ADD_INTS:
val1 = data.readInt32();
val2 = data.readInt32();
reply->writeInt32(val1 + val2);
break;
default:
cerr << "server onTransact unknown code, code: " << code << endl;
exit(21);
}
return rv;
}
static void bindCPU(unsigned int cpu)
{
int rv;
cpu_set_t cpuset;
CPU_ZERO(&cpuset);
CPU_SET(cpu, &cpuset);
rv = sched_setaffinity(0, sizeof(cpuset), &cpuset);
if (rv != 0) {
cerr << "bindCPU failed, rv: " << rv << " errno: " << errno << endl;
perror(NULL);
exit(30);
}
}
static ostream &operator<<(ostream &stream, const String16& str)
{
for (unsigned int n1 = 0; n1 < str.size(); n1++) {
if ((str[n1] > 0x20) && (str[n1] < 0x80)) {
stream << (char) str[n1];
} else {
stream << '~';
}
}
return stream;
}
static ostream &operator<<(ostream &stream, const cpu_set_t& set)
{
for (unsigned int n1 = 0; n1 < CPU_SETSIZE; n1++) {
if (CPU_ISSET(n1, &set)) {
if (n1 != 0) { stream << ' '; }
stream << n1;
}
}
return stream;
}
int main(int argc, char *argv[])
{
int rv;
::benchmark::Initialize(&argc, argv);
// Determine CPUs available for use.
// This testcase limits its self to using CPUs that were
// available at the start of the benchmark.
cpu_set_t availCPUs;
if ((rv = sched_getaffinity(0, sizeof(availCPUs), &availCPUs)) != 0) {
cerr << "sched_getaffinity failure, rv: " << rv
<< " errno: " << errno << endl;
exit(1);
}
// Parse command line arguments
int opt;
while ((opt = getopt(argc, argv, "s:c:d:?")) != -1) {
char *chptr; // character pointer for command-line parsing
switch (opt) {
case 'c': // client CPU
case 's': { // server CPU
// Parse the CPU number
int cpu = strtoul(optarg, &chptr, 10);
if (*chptr != '\0') {
cerr << "Invalid cpu specified for -" << (char) opt
<< " option of: " << optarg << endl;
exit(2);
}
// Is the CPU available?
if (!CPU_ISSET(cpu, &availCPUs)) {
cerr << "CPU " << optarg << " not currently available" << endl;
cerr << " Available CPUs: " << availCPUs << endl;
exit(3);
}
// Record the choice
*((opt == 'c') ? &options.clientCPU : &options.serverCPU) = cpu;
break;
}
case 'd': // delay between each iteration
options.iterDelay = strtod(optarg, &chptr);
if ((*chptr != '\0') || (options.iterDelay < 0.0)) {
cerr << "Invalid delay specified of: " << optarg << endl;
exit(6);
}
break;
case '?':
default:
cerr << basename(argv[0]) << " [options]" << endl;
cerr << " options:" << endl;
cerr << " -s cpu - server CPU number" << endl;
cerr << " -c cpu - client CPU number" << endl;
cerr << " -d time - delay after operation in seconds" << endl;
exit(((optopt == 0) || (optopt == '?')) ? 0 : 7);
}
}
::benchmark::RunSpecifiedBenchmarks();
}
|