summaryrefslogtreecommitdiff
path: root/extra/lightbar/input.c
blob: e6c5485e391e572934ea68267ef6d32bc1ed27b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * Copyright 2014 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#include "simulation.h"

#ifdef HAS_GNU_READLINE
#include <readline/readline.h>
#include <readline/history.h>

char *get_input(const char *prompt)
{
	static char *line;

	if (line) {
		free(line);
		line = 0;
	}

	line = readline(prompt);

	if (line && *line)
		add_history(line);

	return line;
}

#else  /* no readline */

char *get_input(const char *prompt)
{
	static char mybuf[80];
	char *got;
	printf("%s", prompt);
	got = fgets(mybuf, sizeof(mybuf), stdin);
	return got;
}

#endif /* HAS_GNU_READLINE */

void *entry_input(void *ptr)
{
	char *got, buf[80];
	char *str, *word, *saveptr;
	int argc;
	char *argv[40];
	int ret;

	do {
		got = get_input("lightbar% ");
		if (got) {
			strcpy(buf, got);
			argc = 0;
			argv[argc++] = "lightbar";
			word = str = buf;
			while (word && argc < ARRAY_SIZE(argv)) {
				word = strtok_r(str, " \t\r\n", &saveptr);
				if (word)
					argv[argc++] = word;
				str = 0;
			}
			argv[argc] = 0;
			ret = fake_consolecmd_lightbar(argc, argv);
			if (ret)
				printf("ERROR %d\n", ret);
		}

	} while (got);

	exit(0);

	return 0;
}