64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
/*
|
|
* 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_api_stub.h"
|
|
#include "anbox/rpc/channel.h"
|
|
|
|
#include "anbox_rpc.pb.h"
|
|
#include "anbox_bridge.pb.h"
|
|
|
|
namespace anbox {
|
|
PlatformApiStub::PlatformApiStub(const std::shared_ptr<rpc::Channel> &rpc_channel) :
|
|
rpc_channel_(rpc_channel) {
|
|
}
|
|
|
|
void PlatformApiStub::boot_finished() {
|
|
protobuf::bridge::EventSequence seq;
|
|
auto event = seq.mutable_boot_finished();
|
|
(void) event;
|
|
rpc_channel_->send_event(seq);
|
|
}
|
|
|
|
void PlatformApiStub::update_window_state(const WindowStateUpdate &state) {
|
|
protobuf::bridge::EventSequence seq;
|
|
auto event = seq.mutable_window_state_update();
|
|
|
|
auto convert_window = [](WindowStateUpdate::Window in, anbox::protobuf::bridge::WindowStateUpdateEvent_WindowState *out) {
|
|
out->set_display_id(in.display_id);
|
|
out->set_has_surface(in.has_surface);
|
|
out->set_package_name(in.package_name);
|
|
out->set_frame_left(in.frame.left);
|
|
out->set_frame_top(in.frame.top);
|
|
out->set_frame_right(in.frame.right);
|
|
out->set_frame_bottom(in.frame.bottom);
|
|
out->set_task_id(in.task_id);
|
|
out->set_stack_id(in.stack_id);
|
|
};
|
|
|
|
for (const auto &window : state.updated_windows) {
|
|
auto w = event->add_windows();
|
|
convert_window(window, w);
|
|
}
|
|
|
|
for (const auto &window : state.removed_windows) {
|
|
auto w = event->add_removed_windows();
|
|
convert_window(window, w);
|
|
}
|
|
|
|
rpc_channel_->send_event(seq);
|
|
}
|
|
} // namespace anbox
|