axmol/core/base/CCConsole.h

309 lines
10 KiB
C
Raw Normal View History

2013-12-05 08:26:21 +08:00
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-10-09 13:48:56 +08:00
Copyright (c) 2021 Bytedance Inc.
2022-01-04 12:36:20 +08:00
https://adxeproject.github.io/
2013-12-05 08:26:21 +08:00
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.
****************************************************************************/
#ifndef __CCCONSOLE_H__
#define __CCCONSOLE_H__
2015-03-24 20:23:51 +08:00
/// @cond DO_NOT_SHOW
2013-12-05 08:26:21 +08:00
2014-01-04 14:40:22 +08:00
#if defined(_MSC_VER) || defined(__MINGW32__)
2021-12-25 10:04:45 +08:00
# include <basetsd.h>
# ifndef __SSIZE_T
# define __SSIZE_T
typedef SSIZE_T ssize_t;
2021-12-25 10:04:45 +08:00
# endif // __SSIZE_T
2013-12-05 16:09:38 +08:00
#endif
#include <thread>
#include <vector>
#include <unordered_map>
2013-12-05 08:26:21 +08:00
#include <functional>
#include <string>
#include <mutex>
#include <stdarg.h>
2021-10-09 13:48:56 +08:00
#include "yasio/detail/socket.hpp"
#include "base/CCRef.h"
2014-04-30 08:37:36 +08:00
#include "base/ccMacros.h"
#include "platform/CCPlatformMacros.h"
NS_CC_BEGIN
/// The max length of CCLog message.
2021-12-25 10:04:45 +08:00
static const int MAX_LOG_LENGTH = 16 * 1024;
/**
@brief Output Debug message.
*/
2021-12-25 10:04:45 +08:00
void CC_DLL log(const char* format, ...) CC_FORMAT_PRINTF(1, 2);
2013-12-05 08:26:21 +08:00
/** Console is helper class that lets the developer control the game from TCP connection.
Console will spawn a new thread that will listen to a specified TCP port.
Console has a basic token parser. Each token is associated with an std::function<void(int)>.
If the std::function<> needs to use the cocos2d API, it needs to call
2021-12-25 10:04:45 +08:00
2013-12-05 08:26:21 +08:00
```
scheduler->performFunctionInCocosThread( ... );
```
*/
2021-12-25 10:04:45 +08:00
class CC_DLL Console : public Ref
{
public:
2016-04-21 11:31:20 +08:00
/** Console Utils */
2021-12-25 10:04:45 +08:00
class Utility
{
2016-04-21 11:31:20 +08:00
public:
// Trimming functions
static std::string& ltrim(std::string& s);
static std::string& rtrim(std::string& s);
static std::string& trim(std::string& s);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
// split
2021-12-26 23:26:34 +08:00
static std::vector<std::string>& split(std::string_view s, char delim, std::vector<std::string>& elems);
static std::vector<std::string> split(std::string_view s, char delim);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** Checks myString is a floating-point type. */
2021-12-26 23:26:34 +08:00
static bool isFloat(std::string_view myString);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** send a message to console */
static ssize_t sendToConsole(int fd, const void* buffer, size_t length, int flags = 0);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** my dprintf() */
2021-12-25 10:04:45 +08:00
static ssize_t mydprintf(int sock, const char* format, ...);
2016-04-21 11:31:20 +08:00
/** send prompt string to console */
static void sendPrompt(int fd);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** set a new string for the prompt. */
2021-12-26 23:26:34 +08:00
static void setPrompt(std::string_view prompt);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** get the prompt string. */
2021-12-26 23:26:34 +08:00
static std::string_view getPrompt();
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
private:
2021-12-25 10:04:45 +08:00
static std::string _prompt; /*!< prompt */
2016-04-21 11:31:20 +08:00
};
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** Command Struct */
class CC_DLL Command
{
public:
2021-12-26 23:26:34 +08:00
using Callback = std::function<void(int fd, std::string_view args)>;
2016-04-21 11:31:20 +08:00
/** Constructor */
Command();
2021-12-26 23:26:34 +08:00
Command(std::string_view name, std::string_view help);
Command(std::string_view name, std::string_view help, const Callback& callback);
/** Copy constructor */
Command(const Command& o);
/** Move constructor */
Command(Command&& o);
/** Destructor */
~Command();
/** Copy operator */
Command& operator=(const Command& o);
/** Move operator */
Command& operator=(Command&& o);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** add callback */
void addCallback(const Callback& callback);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** add sub command */
void addSubCommand(const Command& subCmd);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** get sub command */
2021-12-26 23:26:34 +08:00
const Command* getSubCommand(std::string_view subCmdName) const;
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** delete sub command */
2021-12-26 23:26:34 +08:00
void delSubCommand(std::string_view subCmdName);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** help command handler */
2021-12-26 23:26:34 +08:00
void commandHelp(int fd, std::string_view args);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** generic command handler */
2021-12-26 23:26:34 +08:00
void commandGeneric(int fd, std::string_view args);
/** Gets the name of the current command */
2021-12-26 23:26:34 +08:00
std::string_view getName() const { return _name; }
/** Gets the help information of the current command */
2021-12-26 23:26:34 +08:00
std::string_view getHelp() const { return _help; }
private:
std::string _name;
std::string _help;
Callback _callback;
2021-12-26 23:26:34 +08:00
hlookup::string_map<Command*> _subCommands;
2013-12-05 09:38:11 +08:00
};
/** Constructor */
Console();
/** Destructor */
virtual ~Console();
2013-12-04 10:46:54 +08:00
/** starts listening to specified TCP port */
2013-12-04 10:46:54 +08:00
bool listenOnTCP(int port);
2013-12-05 08:26:21 +08:00
/** starts listening to specified file descriptor */
2013-12-04 10:46:54 +08:00
bool listenOnFileDescriptor(int fd);
/** stops the Console. 'stop' will be called at destruction time as well */
void stop();
2014-02-13 10:40:57 +08:00
/** add custom command */
2014-02-14 14:54:26 +08:00
void addCommand(const Command& cmd);
2021-12-26 23:26:34 +08:00
void addSubCommand(std::string_view cmdName, const Command& subCmd);
2016-04-21 11:31:20 +08:00
void addSubCommand(Command& cmd, const Command& subCmd);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** get custom command */
2021-12-26 23:26:34 +08:00
const Command* getCommand(std::string_view cmdName);
const Command* getSubCommand(std::string_view cmdName, std::string_view subCmdName);
const Command* getSubCommand(const Command& cmd, std::string_view subCmdName);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** delete custom command */
2021-12-26 23:26:34 +08:00
void delCommand(std::string_view cmdName);
void delSubCommand(std::string_view cmdName, std::string_view subCmdName);
void delSubCommand(Command& cmd, std::string_view subCmdName);
2016-04-21 11:31:20 +08:00
/** log something in the console */
2021-12-25 10:04:45 +08:00
void log(const char* buf);
2014-12-24 02:04:42 +08:00
/**
* set bind address
*
* @address : 127.0.0.1
*/
2021-12-26 23:26:34 +08:00
void setBindAddress(std::string_view address);
2016-04-21 11:31:20 +08:00
/** Checks whether the server for console is bound with ipv6 address */
bool isIpv6Server() const;
2021-12-25 10:04:45 +08:00
/** The command separator */
CC_SYNTHESIZE(char, _commandSeparator, CommandSeparator);
protected:
2016-04-21 11:31:20 +08:00
// Main Loop
void loop();
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
// Helpers
2021-12-25 10:04:45 +08:00
ssize_t readline(socket_native_type fd, char* buf, size_t maxlen);
2021-10-09 13:48:56 +08:00
ssize_t readBytes(socket_native_type fd, char* buffer, size_t maxlen, bool* more);
bool parseCommand(socket_native_type fd);
2021-12-26 23:26:34 +08:00
void performCommand(socket_native_type fd, std::string_view command);
2021-12-25 10:04:45 +08:00
2013-12-05 08:26:21 +08:00
void addClient();
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
// create a map of command.
void createCommandAllocator();
void createCommandConfig();
void createCommandDebugMsg();
void createCommandDirector();
void createCommandExit();
void createCommandFileUtils();
void createCommandFps();
void createCommandHelp();
void createCommandProjection();
void createCommandResolution();
void createCommandSceneGraph();
void createCommandTexture();
void createCommandTouch();
void createCommandUpload();
void createCommandVersion();
2013-12-05 08:26:21 +08:00
// Add commands here
2021-12-26 23:26:34 +08:00
void commandAllocator(socket_native_type fd, std::string_view args);
void commandConfig(socket_native_type fd, std::string_view args);
void commandDebugMsg(socket_native_type fd, std::string_view args);
void commandDebugMsgSubCommandOnOff(socket_native_type fd, std::string_view args);
void commandDirectorSubCommandPause(socket_native_type fd, std::string_view args);
void commandDirectorSubCommandResume(socket_native_type fd, std::string_view args);
void commandDirectorSubCommandStop(socket_native_type fd, std::string_view args);
void commandDirectorSubCommandStart(socket_native_type fd, std::string_view args);
void commandDirectorSubCommandEnd(socket_native_type fd, std::string_view args);
void commandExit(socket_native_type fd, std::string_view args);
void commandFileUtils(socket_native_type fd, std::string_view args);
void commandFileUtilsSubCommandFlush(socket_native_type fd, std::string_view args);
void commandFps(socket_native_type fd, std::string_view args);
void commandFpsSubCommandOnOff(socket_native_type fd, std::string_view args);
void commandHelp(socket_native_type fd, std::string_view args);
void commandProjection(socket_native_type fd, std::string_view args);
void commandProjectionSubCommand2d(socket_native_type fd, std::string_view args);
void commandProjectionSubCommand3d(socket_native_type fd, std::string_view args);
void commandResolution(socket_native_type fd, std::string_view args);
void commandResolutionSubCommandEmpty(socket_native_type fd, std::string_view args);
void commandSceneGraph(socket_native_type fd, std::string_view args);
void commandTextures(socket_native_type fd, std::string_view args);
void commandTexturesSubCommandFlush(socket_native_type fd, std::string_view args);
void commandTouchSubCommandTap(socket_native_type fd, std::string_view args);
void commandTouchSubCommandSwipe(socket_native_type fd, std::string_view args);
2021-10-09 13:48:56 +08:00
void commandUpload(socket_native_type fd);
2021-12-26 23:26:34 +08:00
void commandVersion(socket_native_type fd, std::string_view args);
// file descriptor: socket, console, etc.
2021-10-09 13:48:56 +08:00
socket_native_type _listenfd;
socket_native_type _maxfd;
std::vector<socket_native_type> _fds;
std::thread _thread;
2013-12-05 08:26:21 +08:00
fd_set _read_set;
bool _running;
bool _endThread;
bool _isIpv6Server;
2021-12-26 23:26:34 +08:00
hlookup::string_map<Command*> _commands;
// strings generated by cocos2d sent to the remote console
bool _sendDebugStrings;
std::mutex _DebugStringsMutex;
std::vector<std::string> _DebugStrings;
intptr_t _touchId;
2014-12-24 02:04:42 +08:00
std::string _bindAddress;
2021-12-25 10:04:45 +08:00
private:
CC_DISALLOW_COPY_AND_ASSIGN(Console);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
// helper functions
2021-10-09 13:48:56 +08:00
int printSceneGraph(socket_native_type fd, Node* node, int level);
void printSceneGraphBoot(socket_native_type fd);
void printFileUtils(socket_native_type fd);
2021-12-25 10:04:45 +08:00
2016-04-21 11:31:20 +08:00
/** send help message to console */
2021-12-28 11:00:34 +08:00
static void sendHelp(socket_native_type fd, const hlookup::string_map<Command*>& commands, const char* msg);
};
NS_CC_END
2015-03-24 20:23:51 +08:00
/// @endcond
2013-12-05 08:26:21 +08:00
#endif /* defined(__CCCONSOLE_H__) */