| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- /*
- * Copyright (c) 2012-2014 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- #include "console_server.h"
- #include "json_parser.h"
- #include "temp_allocator.h"
- #include "string_stream.h"
- #include "log.h"
- #include "device.h"
- #include "proxy_allocator.h"
- #include "lua_environment.h"
- #include "file.h"
- #include "filesystem.h"
- #include "math_utils.h"
- #include "memory.h"
- #include "main.h"
- namespace crown
- {
- ConsoleServer::ConsoleServer(uint16_t port, bool wait)
- {
- m_server.bind(port);
- m_server.listen(5);
- if (wait)
- {
- AcceptResult result;
- TCPSocket client;
- do
- {
- result = m_server.accept(client);
- }
- while (result.error != AcceptResult::NO_ERROR);
- add_client(client);
- }
- }
- void ConsoleServer::shutdown()
- {
- for (uint32_t i = 0; i < id_array::size(m_clients); i++)
- {
- m_clients[i].close();
- }
- m_server.close();
- }
- namespace console_server_internal
- {
- StringStream& sanitize(StringStream& ss, const char* msg)
- {
- using namespace string_stream;
- const char* ch = msg;
- for (; *ch; ch++)
- {
- if (*ch == '"')
- ss << "\\";
- ss << *ch;
- }
- return ss;
- }
- }
- void ConsoleServer::log_to_all(const char* msg, LogSeverity::Enum severity)
- {
- using namespace string_stream;
- using namespace console_server_internal;
- static const char* stt[] = { "info", "warning", "error", "debug" };
- // Build json message
- TempAllocator2048 alloc;
- StringStream json(alloc);
- json << "{\"type\":\"message\",";
- json << "\"severity\":\"" << stt[severity] << "\",";
- json << "\"message\":\""; sanitize(json, msg) << "\"}";
- send_to_all(c_str(json));
- }
- void ConsoleServer::send(TCPSocket client, const char* json)
- {
- uint32_t len = strlen(json);
- client.write((const char*)&len, 4);
- client.write(json, len);
- }
- void ConsoleServer::send_to_all(const char* json)
- {
- for (uint32_t i = 0; i < id_array::size(m_clients); i++)
- {
- send(m_clients[i].socket, json);
- }
- }
- void ConsoleServer::update()
- {
- // Check for new clients only if we have room for them
- if (id_array::size(m_clients) < CE_MAX_CONSOLE_CLIENTS - 1)
- {
- TCPSocket client;
- AcceptResult result = m_server.accept_nonblock(client);
- if (result.error == AcceptResult::NO_ERROR)
- {
- add_client(client);
- }
- }
- TempAllocator256 alloc;
- Array<Id> to_remove(alloc);
- // Update all clients
- for (uint32_t i = 0; i < id_array::size(m_clients); i++)
- {
- ReadResult rr = update_client(m_clients[i].socket);
- if (rr.error != ReadResult::NO_ERROR) array::push_back(to_remove, m_clients[i].id);
- }
- // Remove clients
- for (uint32_t i = 0; i < array::size(to_remove); i++)
- {
- id_array::get(m_clients, to_remove[i]).socket.close();
- id_array::destroy(m_clients, to_remove[i]);
- }
- }
- void ConsoleServer::add_client(TCPSocket socket)
- {
- Client client;
- client.socket = socket;
- Id id = id_array::create(m_clients, client);
- id_array::get(m_clients, id).id = id;
- }
- 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
- Array<char> msg_buf(default_allocator());
- 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* request)
- {
- JSONParser parser(request);
- DynamicString type;
- parser.root().key("type").to_string(type);
- // Determine request type
- if (type == "ping") process_ping(client, request);
- else if (type == "script") process_script(client, request);
- else if (type == "command") process_command(client, request);
- else if (type == "filesystem") processs_filesystem(client, request);
- else CE_FATAL("Request unknown.");
- }
- void ConsoleServer::process_ping(TCPSocket client, const char* /*msg*/)
- {
- send(client, "{\"type\":\"pong\"}");
- }
- void ConsoleServer::process_script(TCPSocket /*client*/, const char* msg)
- {
- JSONParser parser(msg);
- JSONElement root = parser.root();
- DynamicString script;
- root.key("script").to_string(script);
- device()->lua_environment()->execute_string(script.c_str());
- }
- void ConsoleServer::process_command(TCPSocket /*client*/, const char* msg)
- {
- JSONParser parser(msg);
- JSONElement root = parser.root();
- JSONElement command = root.key("command");
- DynamicString cmd;
- command.to_string(cmd);
- if (cmd == "reload")
- {
- JSONElement type = root.key_or_nil("resource_type");
- JSONElement name = root.key_or_nil("resource_name");
- DynamicString resource_type;
- DynamicString resource_name;
- type.to_string(resource_type);
- name.to_string(resource_name);
- char t[256];
- char n[256];
- strncpy(t, resource_type.c_str(), 256);
- strncpy(n, resource_name.c_str(), 256);
- device()->reload(t, n);
- }
- else if (cmd == "pause")
- {
- device()->pause();
- }
- else if (cmd == "unpause")
- {
- device()->unpause();
- }
- }
- void ConsoleServer::processs_filesystem(TCPSocket client, const char* msg)
- {
- /*
- using namespace string_stream;
- JSONParser parser(msg);
- JSONElement root = parser.root();
- JSONElement filesystem = root.key("filesystem");
- DynamicString cmd;
- filesystem.to_string(cmd);
- if (cmd == "size")
- {
- DynamicString file_name;
- root.key("file").to_string(file_name);
- File* file = crown::filesystem()->open(file_name.c_str(), FOM_READ);
- size_t file_size = file->size();
- crown::filesystem()->close(file);
- TempAllocator64 alloc;
- StringStream response(alloc);
- response << "{\"type\":\"file\",\"size\":" << file_size << "}";
- send(client, c_str(response));
- }
- else if (cmd == "read")
- {
- JSONElement file_position = root.key("position");
- JSONElement file_size = root.key("size");
- DynamicString file_name;
- root.key("file").to_string(file_name);
- // Read the file data
- File* file = crown::filesystem()->open(file_name.c_str(), FOM_READ);
- char* bytes = (char*) default_allocator().allocate((size_t) file_size.to_int());
- file->seek((size_t) file_position.to_int());
- file->read(bytes, (size_t) file_size.to_int());
- crown::filesystem()->close(file);
- // Encode data to base64
- size_t dummy;
- char* bytes_encoded = base64_encode((unsigned char*) bytes, (size_t) file_size.to_int(), &dummy);
- // Send data
- TempAllocator4096 alloc;
- StringStream response(alloc);
- response << "{\"type\":\"file\",";
- response << "\"data\":\"" << bytes_encoded << "\"}";
- send(client, c_str(response));
- // Cleanup
- default_allocator().deallocate(bytes_encoded);
- default_allocator().deallocate(bytes);
- }
- */
- }
- 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 defined(CROWN_DEBUG)
- _console->update();
- #endif // defined(CROWN_DEBUG)
- }
- ConsoleServer& console()
- {
- return *_console;
- }
- } // namespace console_server
- } // namespace crown
|