TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / android / service / platform_service.h
1 /*
2  * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #ifndef ANBOX_ANDROID_PLATFORM_SERVICE_H_
19 #define ANBOX_ANDROID_PLATFORM_SERVICE_H_
20
21 #include "android/service/platform_service_interface.h"
22 #include "android/service/platform_api_stub.h"
23
24 #include <binder/Parcel.h>
25
26 #include <memory>
27
28 namespace android {
29 class PlatformService : public BnPlatformService {
30 public:
31     static const char* service_name() { return "org.anbox.PlatformService"; }
32
33     PlatformService(const std::shared_ptr<anbox::PlatformApiStub> &platform_api_stub);
34
35     status_t boot_finished() override;
36     status_t update_window_state(const Parcel &data) override;
37     status_t update_application_list(const Parcel &data) override;
38     status_t set_clipboard_data(const Parcel &data) override;
39     status_t get_clipboard_data(const Parcel &data, Parcel *reply) override;
40
41 private:
42     anbox::PlatformApiStub::WindowStateUpdate::Window unpack_window_state(const Parcel &data);
43     std::shared_ptr<anbox::PlatformApiStub> platform_api_stub_;
44 };
45 } // namespace android
46
47 #endif