/**************************************************************************** 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 "ConsoleTest.h" #include "../testResource.h" #include #include #if (CC_TARGET_PLATFORM != CC_PLATFORM_WIN32) && (CC_TARGET_PLATFORM != CC_PLATFORM_WINRT) #include #include #include #include #else #include #include #endif USING_NS_CC; //------------------------------------------------------------------ // // ConsoleTest // //------------------------------------------------------------------ ConsoleTests::ConsoleTests() { ADD_TEST_CASE(ConsoleCustomCommand); ADD_TEST_CASE(ConsoleUploadFile); } BaseTestConsole::BaseTestConsole() { } BaseTestConsole::~BaseTestConsole(void) { } std::string BaseTestConsole::title() const { return "No title"; } //------------------------------------------------------------------ // // ConsoleCustomCommand // //------------------------------------------------------------------ ConsoleCustomCommand::ConsoleCustomCommand() { _console = Director::getInstance()->getConsole(); static struct Console::Command commands[] = { {"hello", "This is just a user generated command", [](int fd, const std::string& args) { const char msg[] = "how are you?\nArguments passed: "; send(fd, msg, sizeof(msg),0); send(fd, args.c_str(), args.length(),0); send(fd, "\n",1,0); }}, }; _console->addCommand(commands[0]); } ConsoleCustomCommand::~ConsoleCustomCommand() { } void ConsoleCustomCommand::onEnter() { BaseTestConsole::onEnter(); } std::string ConsoleCustomCommand::title() const { return "Console Custom Commands"; } std::string ConsoleCustomCommand::subtitle() const { return "telnet localhost 5678"; } //------------------------------------------------------------------ // // ConsoleUploadFile // //------------------------------------------------------------------ ConsoleUploadFile::ConsoleUploadFile() { std::srand ((unsigned)time(nullptr)); int _id = rand()%100000; char buf[32]; sprintf(buf, "%d", _id); _target_file_name = std::string("grossini") + buf; _src_file_path = FileUtils::getInstance()->fullPathForFilename(s_pathGrossini); std::thread t = std::thread( &ConsoleUploadFile::uploadFile, this); t.detach(); } void ConsoleUploadFile::onEnter() { BaseTestConsole::onEnter(); } ConsoleUploadFile::~ConsoleUploadFile() { } void ConsoleUploadFile::uploadFile() { struct addrinfo hints; struct addrinfo *result, *rp; int sfd, s; /* Obtain address(es) matching host/port */ memset(&hints, 0, sizeof(struct addrinfo)); hints.ai_family = AF_INET; /* Allow IPv4 or IPv6 */ hints.ai_socktype = SOCK_STREAM; /* stream socket */ hints.ai_flags = 0; hints.ai_protocol = 0; /* Any protocol */ #if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT) WSADATA wsaData; WSAStartup(MAKEWORD(2, 2),&wsaData); #endif s = getaddrinfo("localhost", "5678", &hints, &result); if (s != 0) { CCLOG("ConsoleUploadFile: getaddrinfo error"); return; } /* getaddrinfo() returns a list of address structures. Try each address until we successfully connect(2). If socket(2) (or connect(2)) fails, we (close the socket and) try the next address. */ for (rp = result; rp != nullptr; rp = rp->ai_next) { sfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol); if (sfd == -1) continue; if (connect(sfd, rp->ai_addr, rp->ai_addrlen) != -1) break; /* Success */ #if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT) closesocket(sfd); #else close(sfd); #endif } if (rp == nullptr) { /* No address succeeded */ CCLOG("ConsoleUploadFile: could not connect!"); return; } freeaddrinfo(result); /* No longer needed */ FILE* fp = fopen(_src_file_path.c_str(), "rb"); if(!fp) { CCLOG("ConsoleUploadFile: could not open file %s", _src_file_path.c_str()); return; } std::string tmp = "upload"; tmp += " "; tmp += _target_file_name; tmp += " "; char cmd[512]; strcpy(cmd, tmp.c_str()); send(sfd,cmd,strlen(cmd),0); while(true) { char buffer[3], *out; unsigned char *in; in = (unsigned char *)buffer; // copy the file into the buffer: size_t ret = fread(buffer, 1, 3, fp); if (ret > 0) { base64Encode(in, (unsigned int)ret, &out); send(sfd, out, 4, 0); free(out); if(ret < 3) { //eof break; } } else { //read error break; } } char l = '\n'; send(sfd, &l, 1, 0); // terminate fclose (fp); #if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT) closesocket(sfd); WSACleanup(); #else close(sfd); #endif return; } std::string ConsoleUploadFile::title() const { return "Console UploadFile"; } std::string ConsoleUploadFile::subtitle() const { auto sharedFileUtils = FileUtils::getInstance(); std::string writablePath = sharedFileUtils->getWritablePath(); return "file uploaded to:" + writablePath + _target_file_name; }