1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /** @file ktp.h
- *
- * @brief Klish Transfer Protocol
- */
- #ifndef _klish_ktp_h
- #define _klish_ktp_h
- #include <faux/msg.h>
- #define KTP_MAGIC 0x4b545020
- #define KTP_MAJOR 0x01
- #define KTP_MINOR 0x00
- typedef enum {
- KTP_NULL = '\0',
- KTP_STDIN = 'i',
- KTP_STDOUT = 'o',
- KTP_STDERR = 'e',
- KTP_CMD = 'c',
- KTP_CMD_ACK = 'C',
- KTP_COMPLETION = 'v',
- KTP_COMPLETION_ACK = 'V',
- KTP_HELP = 'h',
- KTP_HELP_ACK = 'H',
- KTP_NOTIFICATION = 'n',
- KTP_AUTH = 'a',
- KTP_AUTH_ACK = 'A',
- KTP_KEEPALIVE = 'k',
- } ktp_cmd_e;
- typedef enum {
- KTP_PARAM_NULL = '\0',
- KTP_PARAM_LINE = 'L',
- KTP_PARAM_PREFIX = 'P', // Same as line but differ by meaning
- KTP_PARAM_PROMPT = '$', // Same as line but differ by meaning
- KTP_PARAM_HOTKEY = 'H', // <key>'\0'<cmd>
- KTP_PARAM_WINCH = 'W', // <width><space><height>
- KTP_PARAM_ERROR = 'E',
- KTP_PARAM_RETCODE = 'R',
- } ktp_param_e;
- // Status field. Bitmap
- typedef enum {
- KTP_STATUS_NONE = (uint32_t)0x00000000,
- KTP_STATUS_ERROR = (uint32_t)0x00000001,
- KTP_STATUS_INCOMPLETED = (uint32_t)0x00000002,
- KTP_STATUS_INTERACTIVE = (uint32_t)0x00000100,
- KTP_STATUS_DRY_RUN = (uint32_t)0x00010000,
- KTP_STATUS_EXIT = (uint32_t)0x80000000,
- } ktp_status_e;
- #define KTP_STATUS_IS_ERROR(status) (status & KTP_STATUS_ERROR)
- #define KTP_STATUS_IS_INCOMPLETED(status) (status & KTP_STATUS_INCOMPLETED)
- #define KTP_STATUS_IS_INTERACTIVE(status) (status & KTP_STATUS_INTERACTIVE)
- #define KTP_STATUS_IS_DRY_RUN(status) (status & KTP_STATUS_DRY_RUN)
- #define KTP_STATUS_IS_EXIT(status) (status & KTP_STATUS_EXIT)
- #endif // _klish_ktp_h
|