| [b861b58] | 1 | /*
|
|---|
| [df4ed85] | 2 | * Copyright (c) 2006 Josef Cejka
|
|---|
| [2595dab] | 3 | * Copyright (c) 2006 Jakub Vana
|
|---|
| [b861b58] | 4 | * All rights reserved.
|
|---|
| 5 | *
|
|---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 7 | * modification, are permitted provided that the following conditions
|
|---|
| 8 | * are met:
|
|---|
| 9 | *
|
|---|
| 10 | * - Redistributions of source code must retain the above copyright
|
|---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 14 | * documentation and/or other materials provided with the distribution.
|
|---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 16 | * derived from this software without specific prior written permission.
|
|---|
| 17 | *
|
|---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| [4e2cf8b] | 28 | */
|
|---|
| [b861b58] | 29 |
|
|---|
| [fadd381] | 30 | /** @addtogroup libc
|
|---|
| [b2951e2] | 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 | /** @file
|
|---|
| 34 | */
|
|---|
| 35 |
|
|---|
| [582a0b8] | 36 | #include <stddef.h>
|
|---|
| [2595dab] | 37 | #include <libc.h>
|
|---|
| [19f857a] | 38 | #include <str.h>
|
|---|
| [8d2dd7f2] | 39 | #include <stdint.h>
|
|---|
| [d8de5d3] | 40 | #include <errno.h>
|
|---|
| [6fa9a99d] | 41 | #include <abi/kio.h>
|
|---|
| 42 | #include <io/kio.h>
|
|---|
| [d8de5d3] | 43 | #include <io/printf_core.h>
|
|---|
| [5e904dd] | 44 | #include <macros.h>
|
|---|
| 45 | #include <libarch/config.h>
|
|---|
| 46 | #include <futex.h>
|
|---|
| 47 |
|
|---|
| 48 | #define KIO_BUFFER_SIZE PAGE_SIZE
|
|---|
| 49 |
|
|---|
| 50 | static struct {
|
|---|
| 51 | futex_t futex;
|
|---|
| 52 | char data[KIO_BUFFER_SIZE];
|
|---|
| 53 | size_t used;
|
|---|
| 54 | } kio_buffer = { .futex = FUTEX_INITIALIZER, };
|
|---|
| [350514c] | 55 |
|
|---|
| [b7fd2a0] | 56 | errno_t kio_write(const void *buf, size_t size, size_t *nwritten)
|
|---|
| [2595dab] | 57 | {
|
|---|
| [5e904dd] | 58 | futex_lock(&kio_buffer.futex);
|
|---|
| 59 |
|
|---|
| 60 | const char *s = buf;
|
|---|
| 61 | while (true) {
|
|---|
| 62 | const char *endl = memchr(s, '\n', size);
|
|---|
| 63 | if (endl) {
|
|---|
| 64 | size_t used = kio_buffer.used;
|
|---|
| 65 |
|
|---|
| 66 | size_t sz = min(KIO_BUFFER_SIZE - used, (size_t) (endl - s));
|
|---|
| 67 | memcpy(&kio_buffer.data[used], s, sz);
|
|---|
| 68 |
|
|---|
| 69 | __SYSCALL3(SYS_KIO, KIO_WRITE,
|
|---|
| 70 | (sysarg_t) &kio_buffer.data[0], used + sz);
|
|---|
| 71 |
|
|---|
| 72 | kio_buffer.used = 0;
|
|---|
| 73 | size -= endl + 1 - s;
|
|---|
| 74 | s = endl + 1;
|
|---|
| 75 | } else {
|
|---|
| 76 | size_t used = kio_buffer.used;
|
|---|
| 77 | size_t sz = min(KIO_BUFFER_SIZE - used, size);
|
|---|
| 78 | memcpy(&kio_buffer.data[used], s, sz);
|
|---|
| 79 | kio_buffer.used += sz;
|
|---|
| 80 | break;
|
|---|
| 81 | }
|
|---|
| 82 | }
|
|---|
| [a35b458] | 83 |
|
|---|
| [5e904dd] | 84 | futex_unlock(&kio_buffer.futex);
|
|---|
| 85 | if (nwritten)
|
|---|
| [6afc9d7] | 86 | *nwritten = size;
|
|---|
| [5e904dd] | 87 | return EOK;
|
|---|
| [2595dab] | 88 | }
|
|---|
| [b861b58] | 89 |
|
|---|
| [6fa9a99d] | 90 | void kio_update(void)
|
|---|
| [2595dab] | 91 | {
|
|---|
| [6fa9a99d] | 92 | (void) __SYSCALL3(SYS_KIO, KIO_UPDATE, (uintptr_t) NULL, 0);
|
|---|
| [2595dab] | 93 | }
|
|---|
| [b2951e2] | 94 |
|
|---|
| [6fa9a99d] | 95 | void kio_command(const void *buf, size_t size)
|
|---|
| [ec85df0] | 96 | {
|
|---|
| [6fa9a99d] | 97 | (void) __SYSCALL3(SYS_KIO, KIO_COMMAND, (sysarg_t) buf, (sysarg_t) size);
|
|---|
| [ec85df0] | 98 | }
|
|---|
| 99 |
|
|---|
| [6fa9a99d] | 100 | /** Print formatted text to kio.
|
|---|
| [d8de5d3] | 101 | *
|
|---|
| 102 | * @param fmt Format string
|
|---|
| 103 | *
|
|---|
| 104 | * \see For more details about format string see printf_core.
|
|---|
| 105 | *
|
|---|
| 106 | */
|
|---|
| [6fa9a99d] | 107 | int kio_printf(const char *fmt, ...)
|
|---|
| [d8de5d3] | 108 | {
|
|---|
| 109 | va_list args;
|
|---|
| 110 | va_start(args, fmt);
|
|---|
| [a35b458] | 111 |
|
|---|
| [6fa9a99d] | 112 | int ret = kio_vprintf(fmt, args);
|
|---|
| [a35b458] | 113 |
|
|---|
| [d8de5d3] | 114 | va_end(args);
|
|---|
| [a35b458] | 115 |
|
|---|
| [d8de5d3] | 116 | return ret;
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| [6fa9a99d] | 119 | static int kio_vprintf_str_write(const char *str, size_t size, void *data)
|
|---|
| [d8de5d3] | 120 | {
|
|---|
| [6afc9d7] | 121 | size_t wr;
|
|---|
| [a35b458] | 122 |
|
|---|
| [6afc9d7] | 123 | wr = 0;
|
|---|
| 124 | (void) kio_write(str, size, &wr);
|
|---|
| [d8de5d3] | 125 | return str_nlength(str, wr);
|
|---|
| 126 | }
|
|---|
| 127 |
|
|---|
| [6fa9a99d] | 128 | static int kio_vprintf_wstr_write(const wchar_t *str, size_t size, void *data)
|
|---|
| [d8de5d3] | 129 | {
|
|---|
| 130 | size_t offset = 0;
|
|---|
| 131 | size_t chars = 0;
|
|---|
| [6afc9d7] | 132 | size_t wr;
|
|---|
| [a35b458] | 133 |
|
|---|
| [d8de5d3] | 134 | while (offset < size) {
|
|---|
| 135 | char buf[STR_BOUNDS(1)];
|
|---|
| 136 | size_t sz = 0;
|
|---|
| [a35b458] | 137 |
|
|---|
| [d8de5d3] | 138 | if (chr_encode(str[chars], buf, &sz, STR_BOUNDS(1)) == EOK)
|
|---|
| [6afc9d7] | 139 | kio_write(buf, sz, &wr);
|
|---|
| [a35b458] | 140 |
|
|---|
| [d8de5d3] | 141 | chars++;
|
|---|
| 142 | offset += sizeof(wchar_t);
|
|---|
| 143 | }
|
|---|
| [a35b458] | 144 |
|
|---|
| [d8de5d3] | 145 | return chars;
|
|---|
| 146 | }
|
|---|
| 147 |
|
|---|
| [6fa9a99d] | 148 | /** Print formatted text to kio.
|
|---|
| [d8de5d3] | 149 | *
|
|---|
| 150 | * @param fmt Format string
|
|---|
| 151 | * @param ap Format parameters
|
|---|
| 152 | *
|
|---|
| 153 | * \see For more details about format string see printf_core.
|
|---|
| 154 | *
|
|---|
| 155 | */
|
|---|
| [6fa9a99d] | 156 | int kio_vprintf(const char *fmt, va_list ap)
|
|---|
| [d8de5d3] | 157 | {
|
|---|
| 158 | printf_spec_t ps = {
|
|---|
| [6fa9a99d] | 159 | kio_vprintf_str_write,
|
|---|
| 160 | kio_vprintf_wstr_write,
|
|---|
| [d8de5d3] | 161 | NULL
|
|---|
| 162 | };
|
|---|
| [a35b458] | 163 |
|
|---|
| [d8de5d3] | 164 | return printf_core(fmt, &ps, ap);
|
|---|
| 165 | }
|
|---|
| 166 |
|
|---|
| [fadd381] | 167 | /** @}
|
|---|
| [b2951e2] | 168 | */
|
|---|