mirror of https://github.com/rusefi/rusefi-1.git
87 lines
2.3 KiB
C
87 lines
2.3 KiB
C
/**
|
|
* @file cli_registry.h
|
|
* @brief Command-line interface commands registry
|
|
*
|
|
* @date Nov 15, 2012
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef RFICONSOLE_LOGIC_H_
|
|
#define RFICONSOLE_LOGIC_H_
|
|
|
|
#include "datalogging.h"
|
|
#include "rusefi_types.h"
|
|
|
|
typedef enum {
|
|
NO_PARAMETER,
|
|
NO_PARAMETER_P,
|
|
ONE_PARAMETER,
|
|
ONE_PARAMETER_P,
|
|
FLOAT_PARAMETER_NAN_ALLOWED,
|
|
FLOAT_PARAMETER,
|
|
FLOAT_PARAMETER_P,
|
|
STRING_PARAMETER,
|
|
STRING_PARAMETER_P,
|
|
STRING2_PARAMETER,
|
|
STRING2_PARAMETER_P,
|
|
STRING3_PARAMETER,
|
|
STRING5_PARAMETER,
|
|
TWO_INTS_PARAMETER,
|
|
TWO_INTS_PARAMETER_P,
|
|
FLOAT_FLOAT_PARAMETER,
|
|
FLOAT_FLOAT_PARAMETER_P,
|
|
} action_type_e;
|
|
|
|
typedef struct {
|
|
const char *token;
|
|
action_type_e parameterType;
|
|
void (*callback)(void);
|
|
void *param;
|
|
} TokenCallback;
|
|
|
|
|
|
int tokenLength(const char *msgp);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
char *validateSecureLine(char *line);
|
|
void resetConsoleActions(void);
|
|
void helpCommand(void);
|
|
void initConsoleLogic(Logging *sharedLogger);
|
|
void handleConsoleLine(char *line);
|
|
int findEndOfToken(const char *line);
|
|
char *unquote(char *line);
|
|
|
|
void addConsoleAction(const char *token, Void callback);
|
|
void addConsoleActionP(const char *token, VoidPtr callback, void *param);
|
|
|
|
void addConsoleActionI(const char *token, VoidInt callback);
|
|
void addConsoleActionIP(const char *token, VoidIntVoidPtr callback, void *param);
|
|
|
|
void addConsoleActionII(const char *token, VoidIntInt callback);
|
|
void addConsoleActionIIP(const char *token, VoidIntIntVoidPtr callback, void *param);
|
|
|
|
void addConsoleActionF(const char *token, VoidFloat callback);
|
|
void addConsoleActionNANF(const char *token, VoidFloat callback);
|
|
|
|
void addConsoleActionFF(const char *token, VoidFloatFloat callback);
|
|
void addConsoleActionFFP(const char *token, VoidFloatFloatVoidPtr callback, void *param);
|
|
|
|
void addConsoleActionS(const char *token, VoidCharPtr callback);
|
|
void addConsoleActionSP(const char *token, VoidCharPtrVoidPtr callback, void *param);
|
|
|
|
void addConsoleActionSS(const char *token, VoidCharPtrCharPtr callback);
|
|
void addConsoleActionSSP(const char *token, VoidCharPtrCharPtrVoidPtr callback, void *param);
|
|
|
|
void addConsoleActionSSS(const char *token, VoidCharPtrCharPtrCharPtr callback);
|
|
void addConsoleActionSSSSS(const char *token, VoidCharPtrCharPtrCharPtrCharPtrCharPtr callback);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* RFICONSOLE_H_ */
|