mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:09:42 +00:00
Bug: 288825495 Test: Build and run fuzz test in cuttlefish Change-Id: If14bd95657d6a71737a348ccbc6d1b05bbcc1f4c
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2022 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 "service.hpp"
|
|
|
|
#include <android-base/logging.h>
|
|
#include <android/binder_manager.h>
|
|
#include <android/binder_process.h>
|
|
#include <utils/Log.h>
|
|
|
|
namespace aidl {
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace threadnetwork {
|
|
|
|
Service::Service(void) : mBinderFd(-1) {
|
|
binder_status_t status = ABinderProcess_setupPolling(&mBinderFd);
|
|
CHECK_EQ(status, ::STATUS_OK);
|
|
CHECK_GE(mBinderFd, 0);
|
|
}
|
|
|
|
void Service::Update(otSysMainloopContext& context) {
|
|
FD_SET(mBinderFd, &context.mReadFdSet);
|
|
context.mMaxFd = std::max(context.mMaxFd, mBinderFd);
|
|
}
|
|
|
|
void Service::Process(const otSysMainloopContext& context) {
|
|
if (FD_ISSET(mBinderFd, &context.mReadFdSet)) {
|
|
ABinderProcess_handlePolledCommands();
|
|
}
|
|
}
|
|
|
|
void Service::startLoop(void) {
|
|
const struct timeval kPollTimeout = {1, 0};
|
|
otSysMainloopContext context;
|
|
int rval;
|
|
|
|
ot::Posix::Mainloop::Manager::Get().Add(*this);
|
|
|
|
while (true) {
|
|
context.mMaxFd = -1;
|
|
context.mTimeout = kPollTimeout;
|
|
|
|
FD_ZERO(&context.mReadFdSet);
|
|
FD_ZERO(&context.mWriteFdSet);
|
|
FD_ZERO(&context.mErrorFdSet);
|
|
|
|
ot::Posix::Mainloop::Manager::Get().Update(context);
|
|
|
|
rval = select(context.mMaxFd + 1, &context.mReadFdSet, &context.mWriteFdSet,
|
|
&context.mErrorFdSet, &context.mTimeout);
|
|
|
|
if (rval >= 0) {
|
|
ot::Posix::Mainloop::Manager::Get().Process(context);
|
|
} else if (errno != EINTR) {
|
|
ALOGE("select() failed: %s", strerror(errno));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} // namespace threadnetwork
|
|
} // namespace hardware
|
|
} // namespace android
|
|
} // namespace aidl
|