2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2023-12-08 00:13:39 +08:00
|
|
|
Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md).
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2019-11-23 20:27:39 +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__
|
|
|
|
/// @cond DO_NOT_SHOW
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
2021-12-25 10:04:45 +08:00
|
|
|
# include <basetsd.h>
|
|
|
|
# ifndef __SSIZE_T
|
|
|
|
# define __SSIZE_T
|
2019-11-23 20:27:39 +08:00
|
|
|
typedef SSIZE_T ssize_t;
|
2021-12-25 10:04:45 +08:00
|
|
|
# endif // __SSIZE_T
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <mutex>
|
2024-03-07 08:47:00 +08:00
|
|
|
#include <array>
|
2019-11-23 20:27:39 +08:00
|
|
|
#include <stdarg.h>
|
2023-06-24 09:17:14 +08:00
|
|
|
#include "yasio/io_watcher.hpp"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "base/Ref.h"
|
|
|
|
#include "base/Macros.h"
|
2024-03-07 08:47:00 +08:00
|
|
|
#include "base/bitmask.h"
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "platform/PlatformMacros.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2024-03-07 08:47:00 +08:00
|
|
|
#include "fmt/compile.h"
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2024-03-07 08:47:00 +08:00
|
|
|
#pragma region The new Log API since axmol-2.1.3
|
|
|
|
|
|
|
|
enum class LogLevel
|
|
|
|
{
|
|
|
|
Debug,
|
|
|
|
Info,
|
|
|
|
Warn,
|
|
|
|
Error,
|
|
|
|
Silent /* only for setLogLevel(); must be last */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class LogFmtFlag
|
|
|
|
{
|
|
|
|
Null,
|
|
|
|
Level = 1,
|
|
|
|
TimeStamp = 1 << 1,
|
|
|
|
ProcessId = 1 << 2,
|
|
|
|
ThreadId = 1 << 3,
|
|
|
|
Full = Level | TimeStamp | ProcessId | ThreadId,
|
|
|
|
};
|
|
|
|
|
|
|
|
AX_ENABLE_BITMASK_OPS(LogFmtFlag);
|
|
|
|
|
|
|
|
class ILogOutput
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~ILogOutput() {}
|
|
|
|
virtual void write(std::string&&, LogLevel) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* @brief control log level */
|
|
|
|
AX_API void setLogLevel(LogLevel level);
|
|
|
|
AX_API LogLevel getLogLevel();
|
|
|
|
|
|
|
|
/* @brief control log prefix format */
|
|
|
|
AX_API void setLogFmtFlag(LogFmtFlag flags);
|
|
|
|
|
|
|
|
/* @brief set log output */
|
|
|
|
AX_API void setLogOutput(ILogOutput* output);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @brief lowlevel print log message
|
|
|
|
* @param message the message to print
|
|
|
|
* @level the level of current log item see also LogLevel
|
|
|
|
* @prefixSize the prefix size
|
|
|
|
* @tag optional, the log tag of current log item
|
|
|
|
*/
|
|
|
|
AX_API void printLog(std::string&& message, LogLevel level, size_t prefixSize, const char* tag);
|
|
|
|
|
|
|
|
template <typename _FmtType, typename... _Types>
|
|
|
|
inline void printLogT(LogLevel level, _FmtType&& fmt, std::string_view prefix, _Types&&... args)
|
|
|
|
{
|
|
|
|
if (getLogLevel() <= level)
|
|
|
|
{
|
|
|
|
auto message = fmt::format(std::forward<_FmtType>(fmt), prefix, std::forward<_Types>(args)...);
|
|
|
|
printLog(std::move(message), level, prefix.size(), "axmol");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
using LogBufferType = std::array<char, 128>;
|
|
|
|
// for internal use make log prefix: D/[2024-02-29 00:00:00.123][PID:][TID:]
|
|
|
|
AX_API std::string_view makeLogPrefix(LogBufferType&& stack_buffer, LogLevel level);
|
|
|
|
|
|
|
|
#define AXLOG_WITH_LEVEL(level, fmtOrMsg, ...) \
|
|
|
|
ax::printLogT(level, FMT_COMPILE("{}" fmtOrMsg "\n"), ax::makeLogPrefix(ax::LogBufferType{}, level), ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define AXLOGD(fmtOrMsg, ...) AXLOG_WITH_LEVEL(ax::LogLevel::Debug, fmtOrMsg, ##__VA_ARGS__)
|
|
|
|
#define AXLOGI(fmtOrMsg, ...) AXLOG_WITH_LEVEL(ax::LogLevel::Info, fmtOrMsg, ##__VA_ARGS__)
|
|
|
|
#define AXLOGW(fmtOrMsg, ...) AXLOG_WITH_LEVEL(ax::LogLevel::Warn, fmtOrMsg, ##__VA_ARGS__)
|
|
|
|
#define AXLOGE(fmtOrMsg, ...) AXLOG_WITH_LEVEL(ax::LogLevel::Error, fmtOrMsg, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#pragma endregion
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Output Debug message.
|
|
|
|
*/
|
2024-03-07 08:47:00 +08:00
|
|
|
/* AX_DEPRECATED_ATTRIBUTE*/ AX_API void print(const char* format, ...) AX_FORMAT_PRINTF(1, 2); // use AXLOGD instead
|
2019-11-23 20:27:39 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
```
|
2023-01-11 23:28:22 +08:00
|
|
|
scheduler->runOnAxmolThread( ... );
|
2019-11-23 20:27:39 +08:00
|
|
|
```
|
|
|
|
*/
|
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL Console : public Ref
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Console Utils */
|
2021-12-25 10:04:45 +08:00
|
|
|
class Utility
|
|
|
|
{
|
2019-11-23 20:27:39 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
// split
|
2021-12-31 12:12:40 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Checks myString is a floating-point type. */
|
2021-12-31 12:12:40 +08:00
|
|
|
static bool isFloat(std::string_view myString);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** my dprintf() */
|
2021-12-25 10:04:45 +08:00
|
|
|
static ssize_t mydprintf(int sock, const char* format, ...);
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** send prompt string to console */
|
|
|
|
static void sendPrompt(int fd);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** set a new string for the prompt. */
|
2021-12-31 12:12:40 +08:00
|
|
|
static void setPrompt(std::string_view prompt);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** get the prompt string. */
|
2021-12-31 12:12:40 +08:00
|
|
|
static std::string_view getPrompt();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
2021-12-25 10:04:45 +08:00
|
|
|
static std::string _prompt; /*!< prompt */
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Command Struct */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL Command
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
2021-12-31 12:12:40 +08:00
|
|
|
using Callback = std::function<void(int fd, std::string_view args)>;
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Constructor */
|
|
|
|
Command();
|
2021-12-31 12:12:40 +08:00
|
|
|
Command(std::string_view name, std::string_view help);
|
|
|
|
Command(std::string_view name, std::string_view help, const Callback& callback);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** 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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** add callback */
|
|
|
|
void addCallback(const Callback& callback);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** add sub command */
|
|
|
|
void addSubCommand(const Command& subCmd);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** get sub command */
|
2021-12-31 12:12:40 +08:00
|
|
|
const Command* getSubCommand(std::string_view subCmdName) const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** delete sub command */
|
2021-12-31 12:12:40 +08:00
|
|
|
void delSubCommand(std::string_view subCmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** help command handler */
|
2021-12-31 12:12:40 +08:00
|
|
|
void commandHelp(int fd, std::string_view args);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** generic command handler */
|
2021-12-31 12:12:40 +08:00
|
|
|
void commandGeneric(int fd, std::string_view args);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** Gets the name of the current command */
|
2021-12-31 12:12:40 +08:00
|
|
|
std::string_view getName() const { return _name; }
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** Gets the help information of the current command */
|
2021-12-31 12:12:40 +08:00
|
|
|
std::string_view getHelp() const { return _help; }
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string _name;
|
|
|
|
std::string _help;
|
|
|
|
|
|
|
|
Callback _callback;
|
2021-12-31 12:12:40 +08:00
|
|
|
hlookup::string_map<Command*> _subCommands;
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Constructor */
|
|
|
|
Console();
|
|
|
|
|
|
|
|
/** Destructor */
|
|
|
|
virtual ~Console();
|
|
|
|
|
|
|
|
/** starts listening to specified TCP port */
|
|
|
|
bool listenOnTCP(int port);
|
|
|
|
|
|
|
|
/** starts listening to specified file descriptor */
|
|
|
|
bool listenOnFileDescriptor(int fd);
|
|
|
|
|
|
|
|
/** stops the Console. 'stop' will be called at destruction time as well */
|
|
|
|
void stop();
|
|
|
|
|
|
|
|
/** add custom command */
|
|
|
|
void addCommand(const Command& cmd);
|
2021-12-31 12:12:40 +08:00
|
|
|
void addSubCommand(std::string_view cmdName, const Command& subCmd);
|
2019-11-23 20:27:39 +08:00
|
|
|
void addSubCommand(Command& cmd, const Command& subCmd);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** get custom command */
|
2021-12-31 12:12:40 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** delete custom command */
|
2021-12-31 12:12:40 +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);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set bind address
|
|
|
|
*
|
|
|
|
* @address : 127.0.0.1
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void setBindAddress(std::string_view address);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** Checks whether the server for console is bound with ipv6 address */
|
|
|
|
bool isIpv6Server() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** The command separator */
|
2022-07-16 10:43:05 +08:00
|
|
|
AX_SYNTHESIZE(char, _commandSeparator, CommandSeparator);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Main Loop
|
|
|
|
void loop();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +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-31 12:12:40 +08:00
|
|
|
void performCommand(socket_native_type fd, std::string_view command);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
void addClient();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +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();
|
|
|
|
|
|
|
|
// Add commands here
|
2021-12-31 12:12:40 +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-31 12:12:40 +08:00
|
|
|
void commandVersion(socket_native_type fd, std::string_view args);
|
2019-11-23 20:27:39 +08:00
|
|
|
// file descriptor: socket, console, etc.
|
2021-10-09 13:48:56 +08:00
|
|
|
socket_native_type _listenfd;
|
|
|
|
std::vector<socket_native_type> _fds;
|
2019-11-23 20:27:39 +08:00
|
|
|
std::thread _thread;
|
|
|
|
|
2023-06-24 09:17:14 +08:00
|
|
|
yasio::io_watcher _watcher;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
bool _running;
|
|
|
|
bool _endThread;
|
|
|
|
bool _isIpv6Server;
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
hlookup::string_map<Command*> _commands;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
// strings generated by cocos2d sent to the remote console
|
|
|
|
bool _sendDebugStrings;
|
|
|
|
std::mutex _DebugStringsMutex;
|
|
|
|
std::vector<std::string> _DebugStrings;
|
|
|
|
|
|
|
|
intptr_t _touchId;
|
|
|
|
|
|
|
|
std::string _bindAddress;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
2022-07-16 10:43:05 +08:00
|
|
|
AX_DISALLOW_COPY_AND_ASSIGN(Console);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** send help message to console */
|
2021-12-31 12:12:40 +08:00
|
|
|
static void sendHelp(socket_native_type fd, const hlookup::string_map<Command*>& commands, const char* msg);
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/// @endcond
|
|
|
|
#endif /* defined(__CCCONSOLE_H__) */
|