#include <cfg/debug.h>
#include <stdio.h>
+#include <drv/ser.h>
/// Enable compilation of the unit test code
static bool rl_getc(const struct RLContext* ctx, int* ch)
{
int c = ctx->get(ctx->get_param);
+
if (c == EOF)
+ {
+ if (ctx->clear)
+ ctx->clear(ctx->clear_param);
+
return false;
+ }
if (c == 0x1B)
{
char ch;
int c;
- ASSERT(ctx->history - ctx->real_history + i < HISTORY_SIZE);
+ ASSERT(ctx->history - ctx->real_history + ctx->line_pos < HISTORY_SIZE);
if (!rl_getc(ctx, &c))
return NULL;
if (!ctx->match)
return false;
- complete_word(ctx, &i);
+ complete_word(ctx, &ctx->line_pos);
continue;
}
if (c == '\r' || c == '\n')
{
+ if (ctx->prompt)
+ rl_puts(ctx, ctx->prompt);
+
+ // Terminate line
+ insert_chars(ctx, &ctx->line_pos, NULL, 0);
rl_puts(ctx, "\r\n");
break;
}
// the start of the line
if (c == '\b')
{
- if (ctx->history[i] != '\0')
+ if (ctx->history[ctx->line_pos] != '\0')
{
- --i;
+ --ctx->line_pos;
rl_puts(ctx, "\b \b");
}
continue;
// Add a character to the buffer, if possible
ch = (char)c;
ASSERT2(ch == c, "a special key was not properly handled");
- if (insert_chars(ctx, &i, &ch, 1))
+ if (insert_chars(ctx, &ctx->line_pos, &ch, 1))
+ {
rl_putc(ctx, ch);
+ }
else
+ {
beep(ctx);
+ }
}
- ctx->history_pos = i+1;
- while (ctx->history[i] != '\0')
- --i;
+ ctx->history_pos = ctx->line_pos + 1;
+ while (ctx->history[ctx->line_pos] != '\0')
+ --ctx->line_pos;
// Do not store empty lines in the history
- if (i == ctx->history_pos - 1)
+ if (ctx->line_pos == ctx->history_pos - 1)
ctx->history_pos -= 1;
#if DEBUG_DUMP_HISTORY
// Since the current pointer now points to the separator, we need
// to return the first character
- return &ctx->history[i+1];
+ return &ctx->history[ctx->line_pos + 1];
}
typedef int (*getc_hook)(void* user_data);
typedef void (*putc_hook)(char ch, void* user_data);
typedef const char* (*match_hook)(void* user_data, const char* word, int word_len);
+typedef void (*clear_hook)(void* user_data);
struct RLContext
{
match_hook match;
void* match_param;
+ clear_hook clear;
+ void* clear_param;
+
const char* prompt;
char real_history[HISTORY_SIZE];
char* history;
size_t history_pos;
+ size_t line_pos;
};
INLINE void rl_init_ctx(struct RLContext *ctx)
INLINE void rl_sethook_match(struct RLContext* ctx, match_hook match, void* match_param)
{ ctx->match = match; ctx->match_param = match_param; }
+INLINE void rl_sethook_clear(struct RLContext* ctx, clear_hook clear, void* clear_param)
+{ ctx->clear = clear; ctx->clear_param = clear_param; }
+
INLINE void rl_setprompt(struct RLContext* ctx, const char* prompt)
{ ctx->prompt = prompt; }