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
|
/*
* Copyright (C) 2015 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.
*/
#include "aidl_test_client_file_descriptors.h"
#include <iostream>
#include <vector>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <nativehelper/ScopedFd.h>
// libutils:
using android::sp;
// libbinder:
using android::binder::Status;
// generated
using android::aidl::tests::ITestService;
using std::cerr;
using std::cout;
using std::endl;
using std::string;
using std::vector;
namespace android {
namespace aidl {
namespace tests {
namespace client {
#define FdByName(_fd) #_fd, _fd
bool DoWrite(string name, const ScopedFd& fd, const string& buf) {
int wrote;
while ((wrote = write(fd.get(), buf.data(), buf.size())) < 0 && errno == EINTR);
if (wrote == (signed)buf.size()) {
return true;
}
if (wrote < 0) {
cerr << "Error writing to file descriptor '" << name << "': "
<< strerror(errno) << endl;
} else {
cerr << "File descriptor '" << name << "'accepted short data." << endl;
}
return false;
}
bool DoRead(string name, const ScopedFd& fd, const string& expected) {
size_t length = expected.size();
int got;
string buf;
buf.resize(length);
while ((got = read(fd.get(), &buf[0], length)) < 0 && errno == EINTR);
if (got < 0) {
cerr << "Error reading from '" << name << "': " << strerror(errno) << endl;
return false;
}
if (buf != expected) {
cerr << "Expected '" << expected << "' got '" << buf << "'" << endl;
return false;
}
return true;
}
bool DoPipe(ScopedFd* read_side, ScopedFd* write_side) {
int fds[2];
ScopedFd return_fd;
if (pipe(fds)) {
cout << "Error creating pipes: " << strerror(errno) << endl;
return false;
}
read_side->reset(fds[0]);
write_side->reset(fds[1]);
return true;
}
bool ConfirmFileDescriptors(const sp<ITestService>& s) {
Status status;
cout << "Confirming passing and returning file descriptors works." << endl;
ScopedFd return_fd;
ScopedFd read_fd;
ScopedFd write_fd;
if (!DoPipe(&read_fd, &write_fd)) {
return false;
}
status = s->RepeatFileDescriptor(write_fd, &return_fd);
if (!status.isOk()) {
cerr << "Could not repeat file descriptors." << endl;
return false;
}
/* A note on some of the spookier stuff going on here: IIUC writes to pipes
* should be atomic and non-blocking so long as the total size doesn't exceed
* PIPE_BUF. We thus play a bit fast and loose with failure modes here.
*/
bool ret =
DoWrite(FdByName(return_fd), "ReturnString") &&
DoRead(FdByName(read_fd), "ReturnString");
return ret;
}
bool ConfirmFileDescriptorArrays(const sp<ITestService>& s) {
Status status;
cout << "Confirming passing and returning file descriptor arrays works." << endl;
vector<ScopedFd> array;
array.resize(2);
if (!DoPipe(&array[0], &array[1])) {
return false;
}
vector<ScopedFd> repeated;
vector<ScopedFd> reversed;
status = s->ReverseFileDescriptorArray(array, &repeated, &reversed);
if (!status.isOk()) {
cerr << "Could not reverse file descriptor array." << endl;
return false;
}
bool ret =
DoWrite(FdByName(array[1]), "First") &&
DoWrite(FdByName(repeated[1]), "Second") &&
DoWrite(FdByName(reversed[0]), "Third") &&
DoRead(FdByName(reversed[1]), "FirstSecondThird");
return ret;
}
} // namespace client
} // namespace tests
} // namespace aidl
} // namespace android
|