[5d94b16c] | 1 | /*
|
---|
[68a552f] | 2 | * Copyright (c) 2021 Jiri Svoboda
|
---|
[5d94b16c] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[4805495] | 35 | #ifndef _LIBC_CON_SRV_H_
|
---|
| 36 | #define _LIBC_CON_SRV_H_
|
---|
[5d94b16c] | 37 |
|
---|
| 38 | #include <adt/list.h>
|
---|
| 39 | #include <async.h>
|
---|
| 40 | #include <fibril_synch.h>
|
---|
[68a552f] | 41 | #include <io/charfield.h>
|
---|
[5d94b16c] | 42 | #include <io/color.h>
|
---|
| 43 | #include <io/concaps.h>
|
---|
[902f0906] | 44 | #include <io/cons_event.h>
|
---|
[5d94b16c] | 45 | #include <io/pixel.h>
|
---|
| 46 | #include <io/style.h>
|
---|
[3e6a98c5] | 47 | #include <stdbool.h>
|
---|
[bd41ac52] | 48 | #include <time.h>
|
---|
[8d2dd7f2] | 49 | #include <stddef.h>
|
---|
[5d94b16c] | 50 |
|
---|
| 51 | typedef struct con_ops con_ops_t;
|
---|
| 52 |
|
---|
[b48e680f] | 53 | #define CON_CAPTION_MAXLEN 255
|
---|
| 54 |
|
---|
[5d94b16c] | 55 | /** Service setup (per sevice) */
|
---|
| 56 | typedef struct {
|
---|
| 57 | con_ops_t *ops;
|
---|
| 58 | void *sarg;
|
---|
| 59 | /** Period to check for abort */
|
---|
[bd41ac52] | 60 | usec_t abort_timeout;
|
---|
[5d94b16c] | 61 | bool aborted;
|
---|
| 62 | } con_srvs_t;
|
---|
| 63 |
|
---|
| 64 | /** Server structure (per client session) */
|
---|
| 65 | typedef struct {
|
---|
| 66 | con_srvs_t *srvs;
|
---|
| 67 | async_sess_t *client_sess;
|
---|
| 68 | void *carg;
|
---|
| 69 | } con_srv_t;
|
---|
| 70 |
|
---|
[55edba0] | 71 | struct con_ops {
|
---|
[b7fd2a0] | 72 | errno_t (*open)(con_srvs_t *, con_srv_t *);
|
---|
| 73 | errno_t (*close)(con_srv_t *);
|
---|
| 74 | errno_t (*read)(con_srv_t *, void *, size_t, size_t *);
|
---|
| 75 | errno_t (*write)(con_srv_t *, void *, size_t, size_t *);
|
---|
[5d94b16c] | 76 | void (*sync)(con_srv_t *);
|
---|
| 77 | void (*clear)(con_srv_t *);
|
---|
| 78 | void (*set_pos)(con_srv_t *, sysarg_t col, sysarg_t row);
|
---|
[b7fd2a0] | 79 | errno_t (*get_pos)(con_srv_t *, sysarg_t *, sysarg_t *);
|
---|
| 80 | errno_t (*get_size)(con_srv_t *, sysarg_t *, sysarg_t *);
|
---|
| 81 | errno_t (*get_color_cap)(con_srv_t *, console_caps_t *);
|
---|
[5d94b16c] | 82 | void (*set_style)(con_srv_t *, console_style_t);
|
---|
| 83 | void (*set_color)(con_srv_t *, console_color_t, console_color_t,
|
---|
| 84 | console_color_attr_t);
|
---|
| 85 | void (*set_rgb_color)(con_srv_t *, pixel_t, pixel_t);
|
---|
| 86 | void (*set_cursor_visibility)(con_srv_t *, bool);
|
---|
[b48e680f] | 87 | errno_t (*set_caption)(con_srv_t *, const char *);
|
---|
[b7fd2a0] | 88 | errno_t (*get_event)(con_srv_t *, cons_event_t *);
|
---|
[68a552f] | 89 | errno_t (*map)(con_srv_t *, sysarg_t, sysarg_t, charfield_t **);
|
---|
| 90 | void (*unmap)(con_srv_t *);
|
---|
| 91 | void (*update)(con_srv_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t);
|
---|
[55edba0] | 92 | };
|
---|
[5d94b16c] | 93 |
|
---|
| 94 | extern void con_srvs_init(con_srvs_t *);
|
---|
| 95 |
|
---|
[984a9ba] | 96 | extern errno_t con_conn(ipc_call_t *, con_srvs_t *);
|
---|
[5d94b16c] | 97 |
|
---|
| 98 | #endif
|
---|
| 99 |
|
---|
| 100 | /** @}
|
---|
| 101 | */
|
---|