Subversion Repositories HelenOS

Rev

Rev 4345 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4345 Rev 4347
Line 1... Line 1...
1
/*
1
/*
-
 
2
 * Copyright (c) 2006 Josef Cejka
-
 
3
 * Copyright (c) 2006 Jakub Vana
2
 * Copyright (c) 2008 Jiri Svoboda
4
 * Copyright (c) 2008 Jiri Svoboda
3
 * All rights reserved.
5
 * All rights reserved.
4
 *
6
 *
5
 * Redistribution and use in source and binary forms, with or without
7
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
8
 * modification, are permitted provided that the following conditions
Line 33... Line 35...
33
 */
35
 */
34
 
36
 
35
#include <async.h>
37
#include <async.h>
36
#include <io/stream.h>
38
#include <io/stream.h>
37
#include <ipc/console.h>
39
#include <ipc/console.h>
-
 
40
#include <ipc/services.h>
-
 
41
#include <errno.h>
-
 
42
#include <string.h>
38
#include <console.h>
43
#include <console.h>
39
 
44
 
-
 
45
static int console_phone = -1;
-
 
46
 
-
 
47
/** Size of cbuffer. */
-
 
48
#define CBUFFER_SIZE 256
-
 
49
 
-
 
50
/** Buffer for writing characters to the console. */
-
 
51
static char cbuffer[CBUFFER_SIZE];
-
 
52
 
-
 
53
/** Pointer to end of cbuffer. */
-
 
54
static char *cbuffer_end = cbuffer + CBUFFER_SIZE;
-
 
55
 
-
 
56
/** Pointer to first available field in cbuffer. */
-
 
57
static char *cbp = cbuffer;
-
 
58
 
-
 
59
static ssize_t cons_write(const char *buf, size_t nbyte);
-
 
60
static void cons_putchar(int c);
-
 
61
 
-
 
62
static void cbuffer_flush(void);
-
 
63
static void cbuffer_drain(void);
-
 
64
static void cbuffer_putc(int c);
-
 
65
 
-
 
66
 
-
 
67
void console_open(bool blocking)
-
 
68
{
-
 
69
    if (console_phone < 0) {
-
 
70
        int phone;
-
 
71
        if (blocking) {
-
 
72
            phone = ipc_connect_me_to_blocking(PHONE_NS,
-
 
73
                SERVICE_CONSOLE, 0, 0);
-
 
74
        } else {
-
 
75
            phone = ipc_connect_me_to(PHONE_NS, SERVICE_CONSOLE, 0,
-
 
76
                0);
-
 
77
        }
-
 
78
        if (phone >= 0)
-
 
79
            console_phone = phone;
-
 
80
    }
-
 
81
}
-
 
82
 
-
 
83
void console_close(void)
-
 
84
{
-
 
85
    if (console_phone >= 0) {
-
 
86
        if (ipc_hangup(console_phone) == 0) {
-
 
87
            console_phone = -1;
-
 
88
        }
-
 
89
    }
-
 
90
}
-
 
91
 
-
 
92
int console_phone_get(bool blocking)
-
 
93
{
-
 
94
    if (console_phone < 0)
-
 
95
        console_open(blocking);
-
 
96
   
-
 
97
    return console_phone;
-
 
98
}
-
 
99
 
-
 
100
void console_wait(void)
-
 
101
{
-
 
102
    while (console_phone < 0)
-
 
103
        console_open(true);
-
 
104
}
-
 
105
 
40
void console_clear(void)
106
void console_clear(void)
41
{
107
{
42
    int cons_phone = get_console_phone();
108
    int cons_phone = console_phone_get(true);
-
 
109
 
-
 
110
    cbuffer_drain();
43
    async_msg_0(cons_phone, CONSOLE_CLEAR);
111
    async_msg_0(cons_phone, CONSOLE_CLEAR);
44
}
112
}
45
 
113
 
46
void console_goto(int row, int col)
114
void console_goto(int row, int col)
47
{
115
{
48
    int cons_phone = get_console_phone();
116
    int cons_phone = console_phone_get(true);
-
 
117
 
-
 
118
    cbuffer_flush();
49
    async_msg_2(cons_phone, CONSOLE_GOTO, row, col);
119
    async_msg_2(cons_phone, CONSOLE_GOTO, row, col);
50
}
120
}
51
 
121
 
-
 
122
void console_putchar(int c)
-
 
123
{
-
 
124
    cbuffer_putc(c);
-
 
125
}
-
 
126
 
-
 
127
/** Write all data from output buffer to the console. */
-
 
128
static void cbuffer_flush(void)
-
 
129
{
-
 
130
    int rc;
-
 
131
    int len;
-
 
132
 
-
 
133
    len = cbp - cbuffer;
-
 
134
 
-
 
135
    while (len > 0) {
-
 
136
        rc = cons_write(cbuffer, cbp - cbuffer);
-
 
137
        if (rc < 0)
-
 
138
            return;
-
 
139
 
-
 
140
        len -= rc;
-
 
141
    }
-
 
142
 
-
 
143
    cbp = cbuffer;
-
 
144
}
-
 
145
 
-
 
146
/** Drop all data in console output buffer. */
-
 
147
static void cbuffer_drain(void)
-
 
148
{
-
 
149
    cbp = cbuffer;
-
 
150
}
-
 
151
 
-
 
152
/** Write one character to the output buffer. */
-
 
153
static inline void cbuffer_putc(int c)
-
 
154
{
-
 
155
    if (cbp == cbuffer_end)
-
 
156
        cbuffer_flush();
-
 
157
 
-
 
158
    *cbp++ = c;
-
 
159
 
-
 
160
    if (c == '\n')
-
 
161
        cbuffer_flush();
-
 
162
}
-
 
163
 
-
 
164
/** Write one character to the console via IPC. */
-
 
165
static void cons_putchar(int c)
-
 
166
{
-
 
167
    int cons_phone = console_phone_get(true);
-
 
168
    async_msg_1(cons_phone, CONSOLE_PUTCHAR, c);
-
 
169
}
-
 
170
 
-
 
171
/** Write characters to the console via IPC. */
-
 
172
static ssize_t cons_write(const char *buf, size_t nbyte)
-
 
173
{
-
 
174
    int cons_phone = console_phone_get(true);
-
 
175
    ipcarg_t rc;
-
 
176
    ipc_call_t answer;
-
 
177
    aid_t req;
-
 
178
 
-
 
179
    async_serialize_start();
-
 
180
   
-
 
181
    req = async_send_0(cons_phone, CONSOLE_WRITE, &answer);
-
 
182
    rc = ipc_data_write_start(cons_phone, (void *) buf, nbyte);
-
 
183
 
-
 
184
    if (rc != EOK) {
-
 
185
        async_wait_for(req, NULL);
-
 
186
        async_serialize_end();
-
 
187
        return (ssize_t) rc;
-
 
188
    }
-
 
189
 
-
 
190
    async_wait_for(req, &rc);
-
 
191
    async_serialize_end();
-
 
192
 
-
 
193
    if (rc == EOK)
-
 
194
        return (ssize_t) IPC_GET_ARG1(answer);
-
 
195
    else
-
 
196
        return -1;
-
 
197
}
-
 
198
 
-
 
199
/** Write characters to the console. */
-
 
200
ssize_t console_write(const char *buf, size_t nbyte)
-
 
201
{
-
 
202
    size_t left;
-
 
203
 
-
 
204
    left = nbyte;
-
 
205
 
-
 
206
    while (left > 0) {
-
 
207
        cbuffer_putc(*buf++);
-
 
208
        --left;
-
 
209
    }
-
 
210
 
-
 
211
    return nbyte;
-
 
212
}
-
 
213
 
-
 
214
/** Write a NULL-terminated string to the console. */
-
 
215
void console_putstr(const char *s)
-
 
216
{
-
 
217
    size_t len;
-
 
218
    ssize_t rc;
-
 
219
 
-
 
220
    len = strlen(s);
-
 
221
    while (len > 0) {
-
 
222
        rc = console_write(s, len);
-
 
223
        if (rc < 0)
-
 
224
            return; /* Error */
-
 
225
        s += rc;
-
 
226
        len -= rc;
-
 
227
    }
-
 
228
}
-
 
229
 
-
 
230
/** Flush all output to the console. */
52
void console_flush(void)
231
void console_flush(void)
53
{
232
{
54
    int cons_phone = get_console_phone();
233
    int cons_phone = console_phone_get(false);
-
 
234
 
-
 
235
    cbuffer_flush();
55
    async_msg_0(cons_phone, CONSOLE_FLUSH);
236
    async_msg_0(cons_phone, CONSOLE_FLUSH);
56
}
237
}
57
 
238
 
58
int console_get_size(int *rows, int *cols)
239
int console_get_size(int *rows, int *cols)
59
{
240
{
60
    int cons_phone = get_console_phone();
241
    int cons_phone = console_phone_get(true);
61
    ipcarg_t r, c;
242
    ipcarg_t r, c;
62
    int rc;
243
    int rc;
63
 
244
 
64
    rc = async_req_0_2(cons_phone, CONSOLE_GETSIZE, &r, &c);
245
    rc = async_req_0_2(cons_phone, CONSOLE_GETSIZE, &r, &c);
65
 
246
 
Line 69... Line 250...
69
    return rc;
250
    return rc;
70
}
251
}
71
 
252
 
72
void console_set_style(int style)
253
void console_set_style(int style)
73
{
254
{
74
    int cons_phone = get_console_phone();
255
    int cons_phone = console_phone_get(true);
-
 
256
 
-
 
257
    cbuffer_flush();
75
    async_msg_1(cons_phone, CONSOLE_SET_STYLE, style);
258
    async_msg_1(cons_phone, CONSOLE_SET_STYLE, style);
76
}
259
}
77
 
260
 
78
void console_set_color(int fg_color, int bg_color, int flags)
261
void console_set_color(int fg_color, int bg_color, int flags)
79
{
262
{
80
    int cons_phone = get_console_phone();
263
    int cons_phone = console_phone_get(true);
-
 
264
 
-
 
265
    cbuffer_flush();
81
    async_msg_3(cons_phone, CONSOLE_SET_COLOR, fg_color, bg_color, flags);
266
    async_msg_3(cons_phone, CONSOLE_SET_COLOR, fg_color, bg_color, flags);
82
}
267
}
83
 
268
 
84
void console_set_rgb_color(int fg_color, int bg_color)
269
void console_set_rgb_color(int fg_color, int bg_color)
85
{
270
{
86
    int cons_phone = get_console_phone();
271
    int cons_phone = console_phone_get(true);
-
 
272
 
-
 
273
    cbuffer_flush();
87
    async_msg_2(cons_phone, CONSOLE_SET_RGB_COLOR, fg_color, bg_color);
274
    async_msg_2(cons_phone, CONSOLE_SET_RGB_COLOR, fg_color, bg_color);
88
}
275
}
89
 
276
 
90
void console_cursor_visibility(int show)
277
void console_cursor_visibility(int show)
91
{
278
{
92
    int cons_phone = get_console_phone();
279
    int cons_phone = console_phone_get(true);
-
 
280
 
-
 
281
    cbuffer_flush();
93
    async_msg_1(cons_phone, CONSOLE_CURSOR_VISIBILITY, show != 0);
282
    async_msg_1(cons_phone, CONSOLE_CURSOR_VISIBILITY, show != 0);
94
}
283
}
95
 
284
 
-
 
285
void console_kcon_enable(void)
-
 
286
{
-
 
287
    int cons_phone = console_phone_get(true);
-
 
288
 
-
 
289
    cbuffer_flush();
-
 
290
    async_msg_0(cons_phone, CONSOLE_KCON_ENABLE);
-
 
291
}
-
 
292
 
96
/** @}
293
/** @}
97
 */
294
 */