| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- /*
- * Copyright (c) 2012-2015 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- #include "console_server.h"
- #include "temp_allocator.h"
- #include "string_stream.h"
- #include "device.h"
- #include "lua_environment.h"
- #include "memory.h"
- #include "dynamic_string.h"
- #include "json.h"
- #include "map.h"
- #include "bundle_compiler.h"
- namespace crown
- {
- ConsoleServer::ConsoleServer(uint16_t port, bool wait)
- : _clients(default_allocator())
- {
- _server.bind(port);
- _server.listen(5);
- if (wait)
- {
- AcceptResult ar;
- TCPSocket client;
- do
- {
- ar = _server.accept(client);
- }
- while (ar.error != AcceptResult::NO_ERROR);
- add_client(client);
- }
- }
- void ConsoleServer::shutdown()
- {
- for (uint32_t i = 0; i < vector::size(_clients); ++i)
- _clients[i].close();
- _server.close();
- }
- void ConsoleServer::send(TCPSocket client, const char* json)
- {
- uint32_t len = strlen32(json);
- client.write((const char*)&len, 4);
- client.write(json, len);
- }
- void ConsoleServer::send(const char* json)
- {
- for (uint32_t i = 0; i < vector::size(_clients); ++i)
- send(_clients[i], json);
- }
- void ConsoleServer::update()
- {
- TCPSocket client;
- AcceptResult result = _server.accept_nonblock(client);
- if (result.error == AcceptResult::NO_ERROR)
- add_client(client);
- TempAllocator256 alloc;
- Array<uint32_t> to_remove(alloc);
- // Update all clients
- for (uint32_t i = 0; i < vector::size(_clients); ++i)
- {
- ReadResult rr = update_client(_clients[i]);
- if (rr.error != ReadResult::NO_ERROR)
- array::push_back(to_remove, i);
- }
- // Remove clients
- for (uint32_t i = 0; i < array::size(to_remove); ++i)
- {
- const uint32_t last = vector::size(_clients) - 1;
- const uint32_t c = to_remove[i];
- _clients[c].close();
- _clients[c] = _clients[last];
- vector::pop_back(_clients);
- }
- }
- void ConsoleServer::add_client(TCPSocket socket)
- {
- vector::push_back(_clients, socket);
- }
- ReadResult ConsoleServer::update_client(TCPSocket client)
- {
- uint32_t msg_len = 0;
- ReadResult rr = client.read_nonblock(&msg_len, 4);
- // If no data received, return
- if (rr.error == ReadResult::NO_ERROR && rr.bytes_read == 0) return rr;
- if (rr.error == ReadResult::REMOTE_CLOSED) return rr;
- if (rr.error != ReadResult::NO_ERROR) return rr;
- // Else read the message
- TempAllocator4096 ta;
- Array<char> msg_buf(ta);
- array::resize(msg_buf, msg_len);
- ReadResult msg_result = client.read(array::begin(msg_buf), msg_len);
- array::push_back(msg_buf, '\0');
- if (msg_result.error == ReadResult::REMOTE_CLOSED) return msg_result;
- if (msg_result.error != ReadResult::NO_ERROR) return msg_result;
- process(client, array::begin(msg_buf));
- return msg_result;
- }
- void ConsoleServer::process(TCPSocket client, const char* json)
- {
- TempAllocator4096 ta;
- JsonObject root(ta);
- json::parse(json, root);
- DynamicString type(ta);
- json::parse_string(root["type"], type);
- if (type == "ping") process_ping(client, json);
- else if (type == "script") process_script(client, json);
- else if (type == "command") process_command(client, json);
- else CE_FATAL("Request unknown.");
- }
- void ConsoleServer::process_ping(TCPSocket client, const char* /*json*/)
- {
- send(client, "{\"type\":\"pong\"}");
- }
- void ConsoleServer::process_script(TCPSocket /*client*/, const char* json)
- {
- TempAllocator4096 ta;
- JsonObject root(ta);
- json::parse(json, root);
- DynamicString script(ta);
- json::parse_string(root["script"], script);
- device()->lua_environment()->execute_string(script.c_str());
- }
- void ConsoleServer::process_command(TCPSocket /*client*/, const char* json)
- {
- TempAllocator4096 ta;
- JsonObject root(ta);
- json::parse(json, root);
- DynamicString cmd(ta);
- json::parse_string(root["command"], cmd);
- if (cmd == "compile")
- {
- DynamicString type(ta);
- DynamicString name(ta);
- DynamicString platform(ta);
- json::parse_string(root["resource_type"], type);
- json::parse_string(root["resource_name"], name);
- json::parse_string(root["platform"], platform);
- bundle_compiler_globals::compiler()->compile(type.c_str(), name.c_str(), platform.c_str());
- }
- else if (cmd == "reload")
- {
- DynamicString type(ta);
- DynamicString name(ta);
- json::parse_string(root["resource_type"], type);
- json::parse_string(root["resource_name"], name);
- device()->reload(StringId64(type.c_str()), StringId64(name.c_str()));
- }
- else if (cmd == "pause")
- {
- device()->pause();
- }
- else if (cmd == "unpause")
- {
- device()->unpause();
- }
- }
- namespace console_server_globals
- {
- char _buffer[sizeof(ConsoleServer)];
- ConsoleServer* _console = NULL;
- void init(uint16_t port, bool wait)
- {
- _console = new (_buffer) ConsoleServer(port, wait);
- }
- void shutdown()
- {
- _console->~ConsoleServer();
- _console = NULL;
- }
- void update()
- {
- #if CROWN_DEBUG
- _console->update();
- #endif // CROWN_DEBUG
- }
- ConsoleServer* console()
- {
- return _console;
- }
- } // namespace console_server
- } // namespace crown
|