TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / qemu / boot_properties_message_processor.cpp
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 #include "anbox/qemu//boot_properties_message_processor.h"
19 #include "anbox/graphics/density.h"
20 #include "anbox/utils.h"
21
22 namespace anbox {
23 namespace qemu {
24 BootPropertiesMessageProcessor::BootPropertiesMessageProcessor(
25     const std::shared_ptr<network::SocketMessenger> &messenger)
26     : QemudMessageProcessor(messenger) {}
27
28 BootPropertiesMessageProcessor::~BootPropertiesMessageProcessor() {}
29
30 void BootPropertiesMessageProcessor::handle_command(
31     const std::string &command) {
32   if (command == "list") list_properties();
33 }
34
35 void BootPropertiesMessageProcessor::list_properties() {
36   std::vector<std::string> properties = {
37       // TODO(morphis): Using HDPI here for now but should be adjusted to the
38       // device we're running on
39       utils::string_format("ro.sf.lcd_density=%d", static_cast<int>(graphics::current_density())),
40   };
41
42   for (const auto &prop : properties) {
43     send_header(prop.length());
44     messenger_->send(prop.c_str(), prop.length());
45   }
46
47   finish_message();
48 }
49 }  // namespace qemu
50 }  // namespace anbox