File: platform_service_interface.cpp

package info (click to toggle)
anbox 0.0~git20210106-1
  • links: PTS, VCS
  • area: contrib
  • in suites: bullseye
  • size: 6,916 kB
  • sloc: cpp: 50,603; ansic: 5,056; sh: 1,150; xml: 850; java: 780; python: 460; makefile: 35; lisp: 7
file content (81 lines) | stat: -rw-r--r-- 3,096 bytes parent folder | download | duplicates (2)
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
/*
 * 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);
}

status_t BpPlatformService::update_window_state(const Parcel&) {
    Parcel data, reply;
    data.writeInterfaceToken(IPlatformService::getInterfaceDescriptor());
    return remote()->transact(IPlatformService::UPDATE_WINDOW_STATE, data, &reply);
}

status_t BpPlatformService::update_application_list(const Parcel&) {
    Parcel data, reply;
    data.writeInterfaceToken(IPlatformService::getInterfaceDescriptor());
    return remote()->transact(IPlatformService::UPDATE_APPLICATION_LIST, data, &reply);
}

status_t BpPlatformService::set_clipboard_data(const Parcel&) {
    Parcel data, reply;
    data.writeInterfaceToken(IPlatformService::getInterfaceDescriptor());
    return remote()->transact(IPlatformService::SET_CLIPBOARD_DATA, data, &reply);
}

status_t BpPlatformService::get_clipboard_data(const Parcel&, Parcel*) {
    Parcel data, reply;
    data.writeInterfaceToken(IPlatformService::getInterfaceDescriptor());
    return remote()->transact(IPlatformService::GET_CLIPBOARD_DATA, data, &reply);
}

IMPLEMENT_META_INTERFACE(PlatformService, "org.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();
    case UPDATE_WINDOW_STATE:
        CHECK_INTERFACE(IPlatformService, data, reply);
        return update_window_state(data);
    case UPDATE_APPLICATION_LIST:
        CHECK_INTERFACE(IPlatformService, data, reply);
        return update_application_list(data);
    case SET_CLIPBOARD_DATA:
        CHECK_INTERFACE(IPlatformService, data, reply);
        return set_clipboard_data(data);
    case GET_CLIPBOARD_DATA:
        CHECK_INTERFACE(IPlatformService, data, reply);
        return get_clipboard_data(data, reply);
    default:
        break;
    }

    return BBinder::onTransact(code, data, reply, flags);
}
} // namespace android