Add functions that set up, save, and restore terminal parameters.
Use existing code as Unix implementation.
Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
--- /dev/null
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (c) 2020 Dmitry Kozlyuk
+ */
+
+#include <string.h>
+
+#include "cmdline_private.h"
+
+void
+terminal_adjust(struct cmdline *cl)
+{
+ struct termios term;
+
+ tcgetattr(0, &cl->oldterm);
+
+ memcpy(&term, &cl->oldterm, sizeof(term));
+ term.c_lflag &= ~(ICANON | ECHO | ISIG);
+ tcsetattr(0, TCSANOW, &term);
+
+ setbuf(stdin, NULL);
+}
+
+void
+terminal_restore(const struct cmdline *cl)
+{
+ tcsetattr(fileno(stdin), TCSANOW, &cl->oldterm);
+}
--- /dev/null
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (c) 2020 Dmitry Kozlyuk
+ */
+
+#ifndef _CMDLINE_PRIVATE_H_
+#define _CMDLINE_PRIVATE_H_
+
+#include <cmdline.h>
+
+/* Disable buffering and echoing, save previous settings to oldterm. */
+void terminal_adjust(struct cmdline *cl);
+
+/* Restore terminal settings form oldterm. */
+void terminal_restore(const struct cmdline *cl);
+
+#endif
#include <fcntl.h>
#include "cmdline.h"
+#include "cmdline_private.h"
#include "cmdline_socket.h"
struct cmdline *
cmdline_stdin_new(cmdline_parse_ctx_t *ctx, const char *prompt)
{
struct cmdline *cl;
- struct termios oldterm, term;
-
- tcgetattr(0, &oldterm);
- memcpy(&term, &oldterm, sizeof(term));
- term.c_lflag &= ~(ICANON | ECHO | ISIG);
- tcsetattr(0, TCSANOW, &term);
- setbuf(stdin, NULL);
cl = cmdline_new(ctx, prompt, 0, 1);
- if (cl)
- memcpy(&cl->oldterm, &oldterm, sizeof(term));
+ if (cl != NULL)
+ terminal_adjust(cl);
return cl;
}
void
cmdline_stdin_exit(struct cmdline *cl)
{
- if (!cl)
+ if (cl == NULL)
return;
- tcsetattr(fileno(stdin), TCSANOW, &cl->oldterm);
+ terminal_restore(cl);
}
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
-#include <termios.h>
#include "cmdline_vt100.h"
'cmdline_cirbuf.h',
'cmdline_parse_portlist.h')
+if not is_windows
+ sources += files('cmdline_os_unix.c')
+endif
+
deps += ['net']