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
|
/*
* Copyright (C) 2019 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.
*/
#define LOG_TAG "GraphicBufferOverBinder_test"
#include <binder/IServiceManager.h>
#include <binder/Parcel.h>
#include <binder/ProcessState.h>
#include <gtest/gtest.h>
#include <ui/GraphicBuffer.h>
#include <utils/Log.h>
namespace android {
constexpr uint32_t kTestWidth = 1024;
constexpr uint32_t kTestHeight = 1;
constexpr uint32_t kTestFormat = HAL_PIXEL_FORMAT_BLOB;
constexpr uint32_t kTestLayerCount = 1;
constexpr uint64_t kTestUsage = GraphicBuffer::USAGE_SW_WRITE_OFTEN;
static const String16 kTestServiceName = String16("GraphicBufferOverBinderTestService");
enum GraphicBufferOverBinderTestServiceCode {
GRAPHIC_BUFFER = IBinder::FIRST_CALL_TRANSACTION,
};
class GraphicBufferOverBinderTestService : public BBinder {
public:
GraphicBufferOverBinderTestService() {
// GraphicBuffer
mGraphicBuffer = new GraphicBuffer(kTestWidth, kTestHeight, kTestFormat, kTestLayerCount,
kTestUsage);
}
~GraphicBufferOverBinderTestService() = default;
virtual status_t onTransact(uint32_t code, const Parcel& /*data*/, Parcel* reply,
uint32_t /*flags*/ = 0) {
switch (code) {
case GRAPHIC_BUFFER: {
return reply->write(*mGraphicBuffer);
}
default:
return UNKNOWN_TRANSACTION;
};
}
protected:
sp<GraphicBuffer> mGraphicBuffer;
};
static int runBinderServer() {
ProcessState::self()->startThreadPool();
sp<IServiceManager> sm = defaultServiceManager();
sp<GraphicBufferOverBinderTestService> service = new GraphicBufferOverBinderTestService;
sm->addService(kTestServiceName, service, false);
ALOGI("Binder server running...");
while (true) {
int stat, retval;
retval = wait(&stat);
if (retval == -1 && errno == ECHILD) {
break;
}
}
ALOGI("Binder server exiting...");
return 0;
}
class GraphicBufferOverBinderTest : public ::testing::TestWithParam<uint32_t> {
protected:
virtual void SetUp() {
mService = defaultServiceManager()->getService(kTestServiceName);
if (mService == nullptr) {
ALOGE("Failed to connect to the test service.");
return;
}
ALOGI("Binder service is ready for client.");
}
status_t GetGraphicBuffer(sp<GraphicBuffer>* outBuf, uint32_t opCode) {
Parcel data;
Parcel reply;
status_t error = mService->transact(opCode, data, &reply);
if (error != NO_ERROR) {
ALOGE("Failed to get graphic buffer over binder, error=%d.", error);
return error;
}
*outBuf = new GraphicBuffer();
return reply.read(**outBuf);
}
private:
sp<IBinder> mService;
};
TEST_F(GraphicBufferOverBinderTest, SendGraphicBufferOverBinder) {
sp<GraphicBuffer> gb;
EXPECT_EQ(GetGraphicBuffer(&gb, GRAPHIC_BUFFER), OK);
EXPECT_NE(gb, nullptr);
void* vaddr;
EXPECT_EQ(gb->lock(kTestUsage, &vaddr), OK);
EXPECT_EQ(gb->unlock(), OK);
}
} // namespace android
int main(int argc, char** argv) {
pid_t pid = fork();
if (pid == 0) {
android::ProcessState::self()->startThreadPool();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
} else {
ALOGI("Test process pid: %d.", pid);
return android::runBinderServer();
}
}
|