[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>
|
---|
[f787c8e] | 46 |
|
---|
| 47 | #include "../private/futex.h"
|
---|
[5e904dd] | 48 |
|
---|
| 49 | #define KIO_BUFFER_SIZE PAGE_SIZE
|
---|
| 50 |
|
---|
| 51 | static struct {
|
---|
| 52 | futex_t futex;
|
---|
| 53 | char data[KIO_BUFFER_SIZE];
|
---|
| 54 | size_t used;
|
---|
| 55 | } kio_buffer = { .futex = FUTEX_INITIALIZER, };
|
---|
[350514c] | 56 |
|
---|
[b7fd2a0] | 57 | errno_t kio_write(const void *buf, size_t size, size_t *nwritten)
|
---|
[2595dab] | 58 | {
|
---|
[40abf56a] | 59 | /* Using down/up instead of lock/unlock so we can print very early. */
|
---|
| 60 | futex_down(&kio_buffer.futex);
|
---|
[5e904dd] | 61 |
|
---|
| 62 | const char *s = buf;
|
---|
| 63 | while (true) {
|
---|
| 64 | const char *endl = memchr(s, '\n', size);
|
---|
| 65 | if (endl) {
|
---|
| 66 | size_t used = kio_buffer.used;
|
---|
| 67 |
|
---|
| 68 | size_t sz = min(KIO_BUFFER_SIZE - used, (size_t) (endl - s));
|
---|
| 69 | memcpy(&kio_buffer.data[used], s, sz);
|
---|
| 70 |
|
---|
| 71 | __SYSCALL3(SYS_KIO, KIO_WRITE,
|
---|
| 72 | (sysarg_t) &kio_buffer.data[0], used + sz);
|
---|
| 73 |
|
---|
| 74 | kio_buffer.used = 0;
|
---|
| 75 | size -= endl + 1 - s;
|
---|
| 76 | s = endl + 1;
|
---|
| 77 | } else {
|
---|
| 78 | size_t used = kio_buffer.used;
|
---|
| 79 | size_t sz = min(KIO_BUFFER_SIZE - used, size);
|
---|
| 80 | memcpy(&kio_buffer.data[used], s, sz);
|
---|
| 81 | kio_buffer.used += sz;
|
---|
| 82 | break;
|
---|
| 83 | }
|
---|
| 84 | }
|
---|
[a35b458] | 85 |
|
---|
[40abf56a] | 86 | futex_up(&kio_buffer.futex);
|
---|
[5e904dd] | 87 | if (nwritten)
|
---|
[6afc9d7] | 88 | *nwritten = size;
|
---|
[5e904dd] | 89 | return EOK;
|
---|
[2595dab] | 90 | }
|
---|
[b861b58] | 91 |
|
---|
[6fa9a99d] | 92 | void kio_update(void)
|
---|
[2595dab] | 93 | {
|
---|
[6fa9a99d] | 94 | (void) __SYSCALL3(SYS_KIO, KIO_UPDATE, (uintptr_t) NULL, 0);
|
---|
[2595dab] | 95 | }
|
---|
[b2951e2] | 96 |
|
---|
[6fa9a99d] | 97 | void kio_command(const void *buf, size_t size)
|
---|
[ec85df0] | 98 | {
|
---|
[6fa9a99d] | 99 | (void) __SYSCALL3(SYS_KIO, KIO_COMMAND, (sysarg_t) buf, (sysarg_t) size);
|
---|
[ec85df0] | 100 | }
|
---|
| 101 |
|
---|
[6fa9a99d] | 102 | /** Print formatted text to kio.
|
---|
[d8de5d3] | 103 | *
|
---|
| 104 | * @param fmt Format string
|
---|
| 105 | *
|
---|
| 106 | * \see For more details about format string see printf_core.
|
---|
| 107 | *
|
---|
| 108 | */
|
---|
[6fa9a99d] | 109 | int kio_printf(const char *fmt, ...)
|
---|
[d8de5d3] | 110 | {
|
---|
| 111 | va_list args;
|
---|
| 112 | va_start(args, fmt);
|
---|
[a35b458] | 113 |
|
---|
[6fa9a99d] | 114 | int ret = kio_vprintf(fmt, args);
|
---|
[a35b458] | 115 |
|
---|
[d8de5d3] | 116 | va_end(args);
|
---|
[a35b458] | 117 |
|
---|
[d8de5d3] | 118 | return ret;
|
---|
| 119 | }
|
---|
| 120 |
|
---|
[6fa9a99d] | 121 | static int kio_vprintf_str_write(const char *str, size_t size, void *data)
|
---|
[d8de5d3] | 122 | {
|
---|
[6afc9d7] | 123 | size_t wr;
|
---|
[a35b458] | 124 |
|
---|
[6afc9d7] | 125 | wr = 0;
|
---|
| 126 | (void) kio_write(str, size, &wr);
|
---|
[d8de5d3] | 127 | return str_nlength(str, wr);
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[6fa9a99d] | 130 | static int kio_vprintf_wstr_write(const wchar_t *str, size_t size, void *data)
|
---|
[d8de5d3] | 131 | {
|
---|
| 132 | size_t offset = 0;
|
---|
| 133 | size_t chars = 0;
|
---|
[6afc9d7] | 134 | size_t wr;
|
---|
[a35b458] | 135 |
|
---|
[d8de5d3] | 136 | while (offset < size) {
|
---|
| 137 | char buf[STR_BOUNDS(1)];
|
---|
| 138 | size_t sz = 0;
|
---|
[a35b458] | 139 |
|
---|
[d8de5d3] | 140 | if (chr_encode(str[chars], buf, &sz, STR_BOUNDS(1)) == EOK)
|
---|
[6afc9d7] | 141 | kio_write(buf, sz, &wr);
|
---|
[a35b458] | 142 |
|
---|
[d8de5d3] | 143 | chars++;
|
---|
| 144 | offset += sizeof(wchar_t);
|
---|
| 145 | }
|
---|
[a35b458] | 146 |
|
---|
[d8de5d3] | 147 | return chars;
|
---|
| 148 | }
|
---|
| 149 |
|
---|
[6fa9a99d] | 150 | /** Print formatted text to kio.
|
---|
[d8de5d3] | 151 | *
|
---|
| 152 | * @param fmt Format string
|
---|
| 153 | * @param ap Format parameters
|
---|
| 154 | *
|
---|
| 155 | * \see For more details about format string see printf_core.
|
---|
| 156 | *
|
---|
| 157 | */
|
---|
[6fa9a99d] | 158 | int kio_vprintf(const char *fmt, va_list ap)
|
---|
[d8de5d3] | 159 | {
|
---|
| 160 | printf_spec_t ps = {
|
---|
[6fa9a99d] | 161 | kio_vprintf_str_write,
|
---|
| 162 | kio_vprintf_wstr_write,
|
---|
[d8de5d3] | 163 | NULL
|
---|
| 164 | };
|
---|
[a35b458] | 165 |
|
---|
[d8de5d3] | 166 | return printf_core(fmt, &ps, ap);
|
---|
| 167 | }
|
---|
| 168 |
|
---|
[fadd381] | 169 | /** @}
|
---|
[b2951e2] | 170 | */
|
---|