/**************************************************************************** Copyright (c) 2013 cocos2d-x.org http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "CCConsole.h" #include #include #include #include #include #if defined(_MSC_VER) #include #include #define bzero(a, b) memset(a, 0, b); #else #include #include #include #include #include #include #endif #include "CCDirector.h" #include "CCScheduler.h" #include "CCScene.h" NS_CC_BEGIN // helper free functions // dprintf() is not defined in Android // so we add our own 'dpritnf' static ssize_t mydprintf(int sock, const char *format, ...) { va_list args; char buf[1024]; va_start(args, format); vsnprintf(buf, sizeof(buf), format, args); va_end(args); return write(sock, buf, strlen(buf)); } static int printSceneGraph(int fd, Node* node, int level) { int total = 1; for(int i=0; igetDescription().c_str()); for(const auto& child: node->getChildren()) total += printSceneGraph(fd, child, level+1); return total; } static void printSceneGraphBoot(int fd) { write(fd,"\n",1); auto scene = Director::getInstance()->getRunningScene(); int total = printSceneGraph(fd, scene, 0); mydprintf(fd, "Total Nodes: %d\n", total); } // // Console code // Console* Console::create() { auto ret = new Console; ret->autorelease(); return ret; } Console::Console() : _listenfd(-1) , _running(false) , _endThread(false) , _maxCommands(5) , _userCommands(nullptr) , _maxUserCommands(0) { // VS2012 doesn't support initializer list, so we create a new array and assign its elements to '_command'. Command commands[] = { { "fps on", [](int fd, const char* command) { Director *dir = Director::getInstance(); Scheduler *sched = dir->getScheduler(); sched->performFunctionInCocosThread( std::bind(&Director::setDisplayStats, dir, true)); } }, { "fps off", [](int fd, const char* command) { Director *dir = Director::getInstance(); Scheduler *sched = dir->getScheduler(); sched->performFunctionInCocosThread( std::bind(&Director::setDisplayStats, dir, false)); } }, { "scene graph", std::bind(&Console::commandSceneGraph, this, std::placeholders::_1, std::placeholders::_2) }, { "exit", std::bind(&Console::commandExit, this, std::placeholders::_1, std::placeholders::_2) }, { "help", std::bind(&Console::commandHelp, this, std::placeholders::_1, std::placeholders::_2) } }; for (size_t i = 0; i < sizeof(commands)/sizeof(commands[0]) && i < sizeof(_commands)/sizeof(_commands[0]); ++i) { _commands[i] = commands[i]; } } Console::~Console() { cancel(); } bool Console::listenOnTCP(int port) { int listenfd, n; const int on = 1; struct addrinfo hints, *res, *ressave; char serv[30]; snprintf(serv, sizeof(serv)-1, "%d", port ); serv[sizeof(serv)-1]=0; bzero(&hints, sizeof(struct addrinfo)); hints.ai_flags = AI_PASSIVE; hints.ai_family = AF_INET; // AF_UNSPEC: Do we need IPv6 ? hints.ai_socktype = SOCK_STREAM; #if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) WSADATA wsaData; n = WSAStartup(MAKEWORD(2, 2),&wsaData); #endif if ( (n = getaddrinfo(NULL, serv, &hints, &res)) != 0) { fprintf(stderr,"net_listen error for %s: %s", serv, gai_strerror(n)); return false; } ressave = res; do { listenfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol); if (listenfd < 0) continue; /* error, try next one */ setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, (const char*)&on, sizeof(on)); if (bind(listenfd, res->ai_addr, res->ai_addrlen) == 0) break; /* success */ close(listenfd); /* bind error, close and try next one */ } while ( (res = res->ai_next) != NULL); if (res == NULL) { perror("net_listen:"); freeaddrinfo(ressave); return false; } listen(listenfd, 50); if (res->ai_family == AF_INET) { char buf[INET_ADDRSTRLEN] = ""; struct sockaddr_in *sin = (struct sockaddr_in*) res->ai_addr; if( inet_ntop(res->ai_family, &sin->sin_addr, buf, sizeof(buf)) != NULL ) log("Console: listening on %s : %d", buf, ntohs(sin->sin_port)); else perror("inet_ntop"); } else if (res->ai_family == AF_INET6) { char buf[INET6_ADDRSTRLEN] = ""; struct sockaddr_in6 *sin = (struct sockaddr_in6*) res->ai_addr; if( inet_ntop(res->ai_family, &sin->sin6_addr, buf, sizeof(buf)) != NULL ) log("Console: listening on %s : %d", buf, ntohs(sin->sin6_port)); else perror("inet_ntop"); } freeaddrinfo(ressave); return listenOnFileDescriptor(listenfd); } bool Console::listenOnFileDescriptor(int fd) { CCASSERT(!_running, "already running"); _listenfd = fd; _thread = std::thread( std::bind( &Console::loop, this) ); return true; } void Console::cancel() { if( _running ) { _endThread = true; _thread.join(); } } void Console::setUserCommands(Command *commands, int numberOfCommands) { _userCommands = commands; _maxUserCommands = numberOfCommands; } // // commands // void Console::commandHelp(int fd, const char* command) { const char help[] = "\nAvailable commands:\n"; write(fd, help, sizeof(help)); for(int i=0; i<_maxCommands; ++i) { write(fd,"\t",1); write(fd, _commands[i].name, strlen(_commands[i].name)); write(fd,"\n",1); } // User commands for(int i=0; i<_maxUserCommands; ++i) { write(fd,"\t",1); write(fd, _userCommands[i].name, strlen(_userCommands[i].name)); write(fd,"\n",1); } } void Console::commandExit(int fd, const char *command) { FD_CLR(fd, &_read_set); _fds.erase(std::remove(_fds.begin(), _fds.end(), fd), _fds.end()); close(fd); } void Console::commandSceneGraph(int fd, const char *command) { Scheduler *sched = Director::getInstance()->getScheduler(); sched->performFunctionInCocosThread( std::bind(&printSceneGraphBoot, fd) ); } bool Console::parseCommand(int fd) { auto r = readline(fd); if(r < 1) return false; bool found=false; for(int i=0; i < _maxCommands; ++i) { if( strncmp(_buffer, _commands[i].name,strlen(_commands[i].name)) == 0 ) { // XXX TODO FIXME // Ideally this loop should execute the function in the cocos2d according to a variable // But clang crashes in runtime when doing that (bug in clang, not in the code). // So, unfortunately, the only way to fix it was to move that logic to the callback itself _commands[i].callback(fd, _buffer); found = true; break; } } // user commands for(int i=0; i < _maxUserCommands && !found; ++i) { if( strncmp(_buffer, _userCommands[i].name,strlen(_userCommands[i].name)) == 0 ) { _userCommands[i].callback(fd, _buffer); found = true; break; } } if(!found) { const char err[] = "Unknown command. Type 'help' for options\n"; write(fd, err, sizeof(err)); } sendPrompt(fd); return true; } // // Helpers // void Console::sendPrompt(int fd) { const char prompt[] = "\n> "; write(fd, prompt, sizeof(prompt)); } ssize_t Console::readline(int fd) { int maxlen = sizeof(_buffer)-1; ssize_t n, rc; char c, *ptr; ptr = _buffer; for( n=1; n to_remove; for(const auto &fd: _fds) { if(FD_ISSET(fd,©_set)) { if( ! parseCommand(fd) ) { to_remove.push_back(fd); } if(--nready <= 0) break; } } // remove closed conections for(int fd: to_remove) { FD_CLR(fd, &_read_set); _fds.erase(std::remove(_fds.begin(), _fds.end(), fd), _fds.end()); } } // clean up: ignore stdin, stdout and stderr for(const auto &fd: _fds ) close(fd); close(_listenfd); _running = false; } NS_CC_END