Rework some of the RPC service bits and add boot support
This commit is contained in:
parent
e664839b14
commit
1879e634c5
39 changed files with 746 additions and 106 deletions
45
android/service/platform_service_interface.cpp
Normal file
45
android/service/platform_service_interface.cpp
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3, as published
|
||||
* by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranties of
|
||||
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
|
||||
* PURPOSE. See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "android/service/platform_service_interface.h"
|
||||
|
||||
namespace android {
|
||||
BpPlatformService::BpPlatformService(const sp<IBinder> &binder) :
|
||||
BpInterface<IPlatformService>(binder) {
|
||||
}
|
||||
|
||||
status_t BpPlatformService::boot_finished() {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IPlatformService::getInterfaceDescriptor());
|
||||
return remote()->transact(IPlatformService::BOOT_FINISHED, data, &reply);
|
||||
}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(PlatformService, "anbox.IPlatformService");
|
||||
|
||||
status_t BnPlatformService::onTransact(uint32_t code, const Parcel &data,
|
||||
Parcel *reply, uint32_t flags) {
|
||||
switch (code) {
|
||||
case BOOT_FINISHED:
|
||||
CHECK_INTERFACE(IPlatformService, data, reply);
|
||||
return boot_finished();
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
} // namespace android
|
||||
Loading…
Add table
Add a link
Reference in a new issue