Subversion Repositories HelenOS

Rev

Rev 4266 | Rev 4496 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4266 Rev 4486
1
/* Copyright (c) 2008, Tim Post <tinkertim@gmail.com>
1
/* Copyright (c) 2008, Tim Post <tinkertim@gmail.com>
2
 * All rights reserved.
2
 * All rights reserved.
3
 * Copyright (c) 2008, Jiri Svoboda - All Rights Reserved
3
 * Copyright (c) 2008, Jiri Svoboda - All Rights Reserved
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions are met:
6
 * modification, are permitted provided that the following conditions are met:
7
 *
7
 *
8
 * Redistributions of source code must retain the above copyright notice, this
8
 * Redistributions of source code must retain the above copyright notice, this
9
 * list of conditions and the following disclaimer.
9
 * list of conditions and the following disclaimer.
10
 *
10
 *
11
 * Redistributions in binary form must reproduce the above copyright notice,
11
 * Redistributions in binary form must reproduce the above copyright notice,
12
 * this list of conditions and the following disclaimer in the documentation
12
 * this list of conditions and the following disclaimer in the documentation
13
 * and/or other materials provided with the distribution.
13
 * and/or other materials provided with the distribution.
14
 *
14
 *
15
 * Neither the name of the original program's authors nor the names of its
15
 * Neither the name of the original program's authors nor the names of its
16
 * contributors may be used to endorse or promote products derived from this
16
 * contributors may be used to endorse or promote products derived from this
17
 * software without specific prior written permission.
17
 * software without specific prior written permission.
18
 *
18
 *
19
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
 * POSSIBILITY OF SUCH DAMAGE.
29
 * POSSIBILITY OF SUCH DAMAGE.
30
 */
30
 */
31
 
31
 
32
#include <stdio.h>
32
#include <stdio.h>
33
#include <stdlib.h>
33
#include <stdlib.h>
34
#include <string.h>
34
#include <string.h>
35
#include <io/stream.h>
-
 
36
#include <console.h>
35
#include <io/console.h>
37
#include <kbd/kbd.h>
36
#include <io/keycode.h>
38
#include <kbd/keycode.h>
37
#include <io/style.h>
39
#include <errno.h>
38
#include <errno.h>
40
#include <bool.h>
39
#include <bool.h>
41
 
40
 
42
#include "config.h"
41
#include "config.h"
43
#include "util.h"
42
#include "util.h"
44
#include "scli.h"
43
#include "scli.h"
45
#include "input.h"
44
#include "input.h"
46
#include "errors.h"
45
#include "errors.h"
47
#include "exec.h"
46
#include "exec.h"
48
 
47
 
49
static void read_line(char *, int);
48
static void read_line(char *, int);
50
 
49
 
51
/* Tokenizes input from console, sees if the first word is a built-in, if so
50
/* Tokenizes input from console, sees if the first word is a built-in, if so
52
 * invokes the built-in entry point (a[0]) passing all arguments in a[] to
51
 * invokes the built-in entry point (a[0]) passing all arguments in a[] to
53
 * the handler */
52
 * the handler */
54
int tok_input(cliuser_t *usr)
53
int tok_input(cliuser_t *usr)
55
{
54
{
56
    char *cmd[WORD_MAX];
55
    char *cmd[WORD_MAX];
57
    int n = 0, i = 0;
56
    int n = 0, i = 0;
58
    int rc = 0;
57
    int rc = 0;
59
    char *tmp;
58
    char *tmp;
60
 
59
 
61
    if (NULL == usr->line)
60
    if (NULL == usr->line)
62
        return CL_EFAIL;
61
        return CL_EFAIL;
63
 
62
 
64
    tmp = str_dup(usr->line);
63
    tmp = str_dup(usr->line);
65
 
64
 
66
    cmd[n] = strtok(tmp, " ");
65
    cmd[n] = strtok(tmp, " ");
67
    while (cmd[n] && n < WORD_MAX) {
66
    while (cmd[n] && n < WORD_MAX) {
68
        cmd[++n] = strtok(NULL, " ");
67
        cmd[++n] = strtok(NULL, " ");
69
    }
68
    }
70
 
69
 
71
    /* We have rubbish */
70
    /* We have rubbish */
72
    if (NULL == cmd[0]) {
71
    if (NULL == cmd[0]) {
73
        rc = CL_ENOENT;
72
        rc = CL_ENOENT;
74
        goto finit;
73
        goto finit;
75
    }
74
    }
76
 
75
 
77
    /* Its a builtin command ? */
76
    /* Its a builtin command ? */
78
    if ((i = (is_builtin(cmd[0]))) > -1) {
77
    if ((i = (is_builtin(cmd[0]))) > -1) {
79
        rc = run_builtin(i, cmd, usr);
78
        rc = run_builtin(i, cmd, usr);
80
        goto finit;
79
        goto finit;
81
    /* Its a module ? */
80
    /* Its a module ? */
82
    } else if ((i = (is_module(cmd[0]))) > -1) {
81
    } else if ((i = (is_module(cmd[0]))) > -1) {
83
        rc = run_module(i, cmd);
82
        rc = run_module(i, cmd);
84
        goto finit;
83
        goto finit;
85
    }
84
    }
86
 
85
 
87
    /* See what try_exec thinks of it */
86
    /* See what try_exec thinks of it */
88
    rc = try_exec(cmd[0], cmd);
87
    rc = try_exec(cmd[0], cmd);
89
 
88
 
90
finit:
89
finit:
91
    if (NULL != usr->line) {
90
    if (NULL != usr->line) {
92
        free(usr->line);
91
        free(usr->line);
93
        usr->line = (char *) NULL;
92
        usr->line = (char *) NULL;
94
    }
93
    }
95
    if (NULL != tmp)
94
    if (NULL != tmp)
96
        free(tmp);
95
        free(tmp);
97
 
96
 
98
    return rc;
97
    return rc;
99
}
98
}
100
 
99
 
101
static void read_line(char *buffer, int n)
100
static void read_line(char *buffer, int n)
102
{
101
{
103
    kbd_event_t ev;
102
    console_event_t ev;
104
    size_t offs, otmp;
103
    size_t offs, otmp;
105
    wchar_t dec;
104
    wchar_t dec;
106
 
105
 
107
    offs = 0;
106
    offs = 0;
108
    while (true) {
107
    while (true) {
109
        fflush(stdout);
108
        fflush(stdout);
110
        if (kbd_get_event(&ev) < 0)
109
        if (!console_get_event(fphone(stdin), &ev))
111
            return;
110
            return;
-
 
111
       
112
        if (ev.type == KE_RELEASE)
112
        if (ev.type != KEY_PRESS)
113
            continue;
113
            continue;
114
 
114
       
115
        if (ev.key == KC_ENTER || ev.key == KC_NENTER)
115
        if (ev.key == KC_ENTER || ev.key == KC_NENTER)
116
            break;
116
            break;
117
        if (ev.key == KC_BACKSPACE) {
117
        if (ev.key == KC_BACKSPACE) {
118
            if (offs > 0) {
118
            if (offs > 0) {
119
                /*
119
                /*
120
                 * Back up until we reach valid start of
120
                 * Back up until we reach valid start of
121
                 * character.
121
                 * character.
122
                 */
122
                 */
123
                while (offs > 0) {
123
                while (offs > 0) {
124
                    --offs; otmp = offs;
124
                    --offs; otmp = offs;
125
                    dec = str_decode(buffer, &otmp, n);
125
                    dec = str_decode(buffer, &otmp, n);
126
                    if (dec != U_SPECIAL)
126
                    if (dec != U_SPECIAL)
127
                        break;
127
                        break;
128
                }
128
                }
129
                putchar('\b');
129
                putchar('\b');
130
            }
130
            }
131
            continue;
131
            continue;
132
        }
132
        }
133
        if (ev.c >= ' ') {
133
        if (ev.c >= ' ') {
134
            //putchar(ev.c);
-
 
135
            if (chr_encode(ev.c, buffer, &offs, n - 1) == EOK)
134
            if (chr_encode(ev.c, buffer, &offs, n - 1) == EOK)
136
                console_putchar(ev.c);
135
                putchar(ev.c);
137
        }
136
        }
138
    }
137
    }
139
    putchar('\n');
138
    putchar('\n');
140
    buffer[offs] = '\0';
139
    buffer[offs] = '\0';
141
}
140
}
142
 
141
 
143
/* TODO:
142
/* TODO:
144
 * Implement something like editline() / readline(), if even
143
 * Implement something like editline() / readline(), if even
145
 * just for command history and making arrows work. */
144
 * just for command history and making arrows work. */
146
void get_input(cliuser_t *usr)
145
void get_input(cliuser_t *usr)
147
{
146
{
148
    char line[INPUT_MAX];
147
    char line[INPUT_MAX];
149
 
148
 
150
    console_set_style(STYLE_EMPHASIS);
149
    console_set_style(fphone(stdout), STYLE_EMPHASIS);
151
    printf("%s", usr->prompt);
150
    printf("%s", usr->prompt);
152
    console_set_style(STYLE_NORMAL);
151
    console_set_style(fphone(stdout), STYLE_NORMAL);
153
 
152
 
154
    read_line(line, INPUT_MAX);
153
    read_line(line, INPUT_MAX);
155
    /* Make sure we don't have rubbish or a C/R happy user */
154
    /* Make sure we don't have rubbish or a C/R happy user */
156
    if (str_cmp(line, "") == 0 || str_cmp(line, "\n") == 0)
155
    if (str_cmp(line, "") == 0 || str_cmp(line, "\n") == 0)
157
        return;
156
        return;
158
    usr->line = str_dup(line);
157
    usr->line = str_dup(line);
159
 
158
 
160
    return;
159
    return;
161
}
160
}
162
 
161
 
163
 
162