[09b0b1fb] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Jiri Zarevucky
|
---|
[4f4b4e7] | 3 | * Copyright (c) 2011 Petr Koupy
|
---|
[09b0b1fb] | 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.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | /** @addtogroup libposix
|
---|
| 31 | * @{
|
---|
| 32 | */
|
---|
| 33 | /** @file
|
---|
| 34 | */
|
---|
| 35 |
|
---|
[491e1ee] | 36 | #define LIBPOSIX_INTERNAL
|
---|
[09b0b1fb] | 37 |
|
---|
[ab547063] | 38 | #include <assert.h>
|
---|
[4f4b4e7] | 39 | #include <errno.h>
|
---|
[1978a5f] | 40 | #include <bool.h>
|
---|
[4f4b4e7] | 41 |
|
---|
[9b1503e] | 42 | #include "internal/common.h"
|
---|
[09b0b1fb] | 43 | #include "stdio.h"
|
---|
[8b5fb5e] | 44 | #include "libc/io/printf_core.h"
|
---|
[ab547063] | 45 | #include "string.h"
|
---|
[8b5fb5e] | 46 | #include "libc/str.h"
|
---|
[1978a5f] | 47 | #include "sys/types.h"
|
---|
[4f4b4e7] | 48 |
|
---|
[1978a5f] | 49 | /* not the best of solutions, but freopen and ungetc will eventually
|
---|
[4f4b4e7] | 50 | * need to be implemented in libc anyway
|
---|
| 51 | */
|
---|
[ab547063] | 52 | #include "../c/generic/private/stdio.h"
|
---|
[09b0b1fb] | 53 |
|
---|
[8b5fb5e] | 54 | /** Clears the stream's error and end-of-file indicators.
|
---|
| 55 | *
|
---|
[1978a5f] | 56 | * @param stream Stream whose indicators shall be cleared.
|
---|
[8b5fb5e] | 57 | */
|
---|
| 58 | void posix_clearerr(FILE *stream)
|
---|
| 59 | {
|
---|
| 60 | stream->error = 0;
|
---|
| 61 | stream->eof = 0;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | /**
|
---|
[1978a5f] | 65 | * Generate a pathname for the controlling terminal.
|
---|
[8b5fb5e] | 66 | *
|
---|
[1978a5f] | 67 | * @param s Allocated buffer to which the pathname shall be put.
|
---|
| 68 | * @return Either s or static location filled with the requested pathname.
|
---|
[8b5fb5e] | 69 | */
|
---|
| 70 | char *posix_ctermid(char *s)
|
---|
| 71 | {
|
---|
| 72 | /* Currently always returns an error value (empty string). */
|
---|
| 73 | // TODO: return a real terminal path
|
---|
| 74 |
|
---|
| 75 | static char dummy_path[L_ctermid] = {'\0'};
|
---|
| 76 |
|
---|
| 77 | if (s == NULL) {
|
---|
| 78 | return dummy_path;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | s[0] = '\0';
|
---|
| 82 | return s;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
[59f799b] | 85 | /**
|
---|
[1978a5f] | 86 | * Push byte back into input stream.
|
---|
[59f799b] | 87 | *
|
---|
[1978a5f] | 88 | * @param c Byte to be pushed back.
|
---|
| 89 | * @param stream Stream to where the byte shall be pushed.
|
---|
| 90 | * @return Provided byte on succes or EOF if not possible.
|
---|
[59f799b] | 91 | */
|
---|
| 92 | int posix_ungetc(int c, FILE *stream)
|
---|
| 93 | {
|
---|
[1978a5f] | 94 | uint8_t b = (uint8_t) c;
|
---|
| 95 |
|
---|
| 96 | bool can_unget =
|
---|
| 97 | /* Provided character is legal. */
|
---|
| 98 | c != EOF &&
|
---|
| 99 | /* Stream is consistent. */
|
---|
| 100 | !stream->error &&
|
---|
| 101 | /* Stream is buffered. */
|
---|
| 102 | stream->btype != _IONBF &&
|
---|
| 103 | /* Last operation on the stream was a read operation. */
|
---|
| 104 | stream->buf_state == _bs_read &&
|
---|
| 105 | /* Stream buffer is already allocated (i.e. there was already carried
|
---|
| 106 | * out either write or read operation on the stream). This is probably
|
---|
| 107 | * redundant check but let's be safe. */
|
---|
| 108 | stream->buf != NULL &&
|
---|
| 109 | /* There is still space in the stream to retreat. POSIX demands the
|
---|
| 110 | * possibility to unget at least 1 character. It should be always
|
---|
| 111 | * possible, assuming the last operation on the stream read at least 1
|
---|
| 112 | * character, because the buffer is refilled in the lazily manner. */
|
---|
| 113 | stream->buf_tail > stream->buf;
|
---|
| 114 |
|
---|
| 115 | if (can_unget) {
|
---|
| 116 | --stream->buf_tail;
|
---|
| 117 | stream->buf_tail[0] = b;
|
---|
| 118 | stream->eof = false;
|
---|
| 119 | return (int) b;
|
---|
| 120 | } else {
|
---|
| 121 | return EOF;
|
---|
| 122 | }
|
---|
[59f799b] | 123 | }
|
---|
| 124 |
|
---|
[1978a5f] | 125 | /**
|
---|
| 126 | *
|
---|
| 127 | * @param lineptr
|
---|
| 128 | * @param n
|
---|
| 129 | * @param delimiter
|
---|
| 130 | * @param stream
|
---|
| 131 | * @return
|
---|
| 132 | */
|
---|
[8b5fb5e] | 133 | ssize_t posix_getdelim(char **restrict lineptr, size_t *restrict n,
|
---|
| 134 | int delimiter, FILE *restrict stream)
|
---|
| 135 | {
|
---|
| 136 | // TODO
|
---|
| 137 | not_implemented();
|
---|
| 138 | }
|
---|
| 139 |
|
---|
[1978a5f] | 140 | /**
|
---|
| 141 | *
|
---|
| 142 | * @param lineptr
|
---|
| 143 | * @param n
|
---|
| 144 | * @param stream
|
---|
| 145 | * @return
|
---|
| 146 | */
|
---|
[8b5fb5e] | 147 | ssize_t posix_getline(char **restrict lineptr, size_t *restrict n,
|
---|
| 148 | FILE *restrict stream)
|
---|
| 149 | {
|
---|
| 150 | // TODO
|
---|
| 151 | not_implemented();
|
---|
| 152 | }
|
---|
| 153 |
|
---|
[4f4b4e7] | 154 | /**
|
---|
[1978a5f] | 155 | * Reopen a file stream.
|
---|
[4f4b4e7] | 156 | *
|
---|
[1978a5f] | 157 | * @param filename Pathname of a file to be reopened or NULL for changing
|
---|
| 158 | * the mode of the stream.
|
---|
| 159 | * @param mode Mode to be used for reopening the file or changing current
|
---|
| 160 | * mode of the stream.
|
---|
| 161 | * @param stream Current stream associated with the opened file.
|
---|
| 162 | * @return On success, either a stream of the reopened file or the provided
|
---|
| 163 | * stream with a changed mode. NULL otherwise.
|
---|
[4f4b4e7] | 164 | */
|
---|
| 165 | FILE *posix_freopen(
|
---|
| 166 | const char *restrict filename,
|
---|
| 167 | const char *restrict mode,
|
---|
| 168 | FILE *restrict stream)
|
---|
[09b0b1fb] | 169 | {
|
---|
[ab547063] | 170 | assert(mode != NULL);
|
---|
| 171 | assert(stream != NULL);
|
---|
| 172 |
|
---|
| 173 | if (filename == NULL) {
|
---|
| 174 | // TODO
|
---|
| 175 |
|
---|
| 176 | /* print error to stderr as well, to avoid hard to find problems
|
---|
[4f4b4e7] | 177 | * with buggy apps that expect this to work
|
---|
| 178 | */
|
---|
| 179 | fprintf(stderr,
|
---|
| 180 | "ERROR: Application wants to use freopen() to change mode of opened stream.\n"
|
---|
| 181 | " libposix does not support that yet, the application may function improperly.\n");
|
---|
[ab547063] | 182 | errno = ENOTSUP;
|
---|
| 183 | return NULL;
|
---|
| 184 | }
|
---|
| 185 |
|
---|
| 186 | FILE* copy = malloc(sizeof(FILE));
|
---|
| 187 | if (copy == NULL) {
|
---|
| 188 | errno = ENOMEM;
|
---|
| 189 | return NULL;
|
---|
| 190 | }
|
---|
| 191 | memcpy(copy, stream, sizeof(FILE));
|
---|
[4f4b4e7] | 192 | fclose(copy); /* copy is now freed */
|
---|
[ab547063] | 193 |
|
---|
[4f4b4e7] | 194 | copy = fopen(filename, mode); /* open new stream */
|
---|
[ab547063] | 195 | if (copy == NULL) {
|
---|
| 196 | /* fopen() sets errno */
|
---|
| 197 | return NULL;
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | /* move the new stream to the original location */
|
---|
| 201 | memcpy(stream, copy, sizeof (FILE));
|
---|
| 202 | free(copy);
|
---|
| 203 |
|
---|
| 204 | /* update references in the file list */
|
---|
| 205 | stream->link.next->prev = &stream->link;
|
---|
| 206 | stream->link.prev->next = &stream->link;
|
---|
| 207 |
|
---|
| 208 | return stream;
|
---|
[09b0b1fb] | 209 | }
|
---|
| 210 |
|
---|
[1978a5f] | 211 | /**
|
---|
| 212 | *
|
---|
| 213 | * @param buf
|
---|
| 214 | * @param size
|
---|
| 215 | * @param mode
|
---|
| 216 | * @return
|
---|
| 217 | */
|
---|
[8b5fb5e] | 218 | FILE *posix_fmemopen(void *restrict buf, size_t size,
|
---|
| 219 | const char *restrict mode)
|
---|
| 220 | {
|
---|
| 221 | // TODO
|
---|
| 222 | not_implemented();
|
---|
| 223 | }
|
---|
| 224 |
|
---|
[1978a5f] | 225 | /**
|
---|
| 226 | *
|
---|
| 227 | * @param bufp
|
---|
| 228 | * @param sizep
|
---|
| 229 | * @return
|
---|
| 230 | */
|
---|
[8b5fb5e] | 231 | FILE *posix_open_memstream(char **bufp, size_t *sizep)
|
---|
| 232 | {
|
---|
| 233 | // TODO
|
---|
| 234 | not_implemented();
|
---|
| 235 | }
|
---|
| 236 |
|
---|
[4f4b4e7] | 237 | /**
|
---|
[1978a5f] | 238 | * Write error messages to standard error.
|
---|
[4f4b4e7] | 239 | *
|
---|
[1978a5f] | 240 | * @param s Error message.
|
---|
[4f4b4e7] | 241 | */
|
---|
[09b0b1fb] | 242 | void posix_perror(const char *s)
|
---|
| 243 | {
|
---|
[8b5fb5e] | 244 | if (s == NULL || s[0] == '\0') {
|
---|
| 245 | fprintf(stderr, "%s\n", posix_strerror(errno));
|
---|
| 246 | } else {
|
---|
| 247 | fprintf(stderr, "%s: %s\n", s, posix_strerror(errno));
|
---|
| 248 | }
|
---|
| 249 | }
|
---|
| 250 |
|
---|
| 251 | struct _posix_fpos {
|
---|
| 252 | off64_t offset;
|
---|
| 253 | };
|
---|
| 254 |
|
---|
| 255 | /** Restores stream a to position previously saved with fgetpos().
|
---|
| 256 | *
|
---|
| 257 | * @param stream Stream to restore
|
---|
| 258 | * @param pos Position to restore
|
---|
| 259 | * @return Zero on success, non-zero (with errno set) on failure
|
---|
| 260 | */
|
---|
| 261 | int posix_fsetpos(FILE *stream, const posix_fpos_t *pos)
|
---|
| 262 | {
|
---|
| 263 | return fseek(stream, pos->offset, SEEK_SET);
|
---|
| 264 | }
|
---|
| 265 |
|
---|
| 266 | /** Saves the stream's position for later use by fsetpos().
|
---|
| 267 | *
|
---|
| 268 | * @param stream Stream to save
|
---|
| 269 | * @param pos Place to store the position
|
---|
| 270 | * @return Zero on success, non-zero (with errno set) on failure
|
---|
| 271 | */
|
---|
| 272 | int posix_fgetpos(FILE *restrict stream, posix_fpos_t *restrict pos)
|
---|
| 273 | {
|
---|
| 274 | off64_t ret = ftell(stream);
|
---|
| 275 | if (ret == -1) {
|
---|
| 276 | return errno;
|
---|
| 277 | }
|
---|
| 278 | pos->offset = ret;
|
---|
| 279 | return 0;
|
---|
| 280 | }
|
---|
| 281 |
|
---|
| 282 | /**
|
---|
[1978a5f] | 283 | * Reposition a file-position indicator in a stream.
|
---|
[8b5fb5e] | 284 | *
|
---|
[1978a5f] | 285 | * @param stream Stream to seek in.
|
---|
| 286 | * @param offset Direction and amount of bytes to seek.
|
---|
| 287 | * @param whence From where to seek.
|
---|
| 288 | * @return Zero on success, -1 otherwise.
|
---|
[8b5fb5e] | 289 | */
|
---|
| 290 | int posix_fseek(FILE *stream, long offset, int whence)
|
---|
| 291 | {
|
---|
| 292 | return fseek(stream, (off64_t) offset, whence);
|
---|
[09b0b1fb] | 293 | }
|
---|
| 294 |
|
---|
[b08ef1fd] | 295 | /**
|
---|
[1978a5f] | 296 | * Reposition a file-position indicator in a stream.
|
---|
[b08ef1fd] | 297 | *
|
---|
[1978a5f] | 298 | * @param stream Stream to seek in.
|
---|
| 299 | * @param offset Direction and amount of bytes to seek.
|
---|
| 300 | * @param whence From where to seek.
|
---|
| 301 | * @return Zero on success, -1 otherwise.
|
---|
[b08ef1fd] | 302 | */
|
---|
| 303 | int posix_fseeko(FILE *stream, posix_off_t offset, int whence)
|
---|
| 304 | {
|
---|
[8b5fb5e] | 305 | return fseek(stream, (off64_t) offset, whence);
|
---|
| 306 | }
|
---|
| 307 |
|
---|
| 308 | /**
|
---|
[1978a5f] | 309 | * Discover current file offset in a stream.
|
---|
[8b5fb5e] | 310 | *
|
---|
[1978a5f] | 311 | * @param stream Stream for which the offset shall be retrieved.
|
---|
| 312 | * @return Current offset or -1 if not possible.
|
---|
[8b5fb5e] | 313 | */
|
---|
| 314 | long posix_ftell(FILE *stream)
|
---|
| 315 | {
|
---|
| 316 | return (long) ftell(stream);
|
---|
[b08ef1fd] | 317 | }
|
---|
| 318 |
|
---|
| 319 | /**
|
---|
[1978a5f] | 320 | * Discover current file offset in a stream.
|
---|
[b08ef1fd] | 321 | *
|
---|
[1978a5f] | 322 | * @param stream Stream for which the offset shall be retrieved.
|
---|
| 323 | * @return Current offset or -1 if not possible.
|
---|
[b08ef1fd] | 324 | */
|
---|
| 325 | posix_off_t posix_ftello(FILE *stream)
|
---|
| 326 | {
|
---|
[8b5fb5e] | 327 | return (posix_off_t) ftell(stream);
|
---|
| 328 | }
|
---|
| 329 |
|
---|
[1978a5f] | 330 | /**
|
---|
| 331 | * Print formatted output to the opened file.
|
---|
| 332 | *
|
---|
| 333 | * @param fildes File descriptor of the opened file.
|
---|
| 334 | * @param format Format description.
|
---|
| 335 | * @return Either the number of printed characters or negative value on error.
|
---|
| 336 | */
|
---|
[8b5fb5e] | 337 | int posix_dprintf(int fildes, const char *restrict format, ...)
|
---|
| 338 | {
|
---|
| 339 | va_list list;
|
---|
| 340 | va_start(list, format);
|
---|
| 341 | int result = posix_vdprintf(fildes, format, list);
|
---|
| 342 | va_end(list);
|
---|
| 343 | return result;
|
---|
| 344 | }
|
---|
| 345 |
|
---|
[1978a5f] | 346 | /**
|
---|
| 347 | * Write ordinary string to the opened file.
|
---|
| 348 | *
|
---|
| 349 | * @param str String to be written.
|
---|
| 350 | * @param size Size of the string (in bytes)..
|
---|
| 351 | * @param fd File descriptor of the opened file.
|
---|
| 352 | * @return The number of written characters.
|
---|
| 353 | */
|
---|
[8b5fb5e] | 354 | static int _dprintf_str_write(const char *str, size_t size, void *fd)
|
---|
| 355 | {
|
---|
| 356 | ssize_t wr = write(*(int *) fd, str, size);
|
---|
| 357 | return str_nlength(str, wr);
|
---|
| 358 | }
|
---|
| 359 |
|
---|
[1978a5f] | 360 | /**
|
---|
| 361 | * Write wide string to the opened file.
|
---|
| 362 | *
|
---|
| 363 | * @param str String to be written.
|
---|
| 364 | * @param size Size of the string (in bytes).
|
---|
| 365 | * @param fd File descriptor of the opened file.
|
---|
| 366 | * @return The number of written characters.
|
---|
| 367 | */
|
---|
[8b5fb5e] | 368 | static int _dprintf_wstr_write(const wchar_t *str, size_t size, void *fd)
|
---|
| 369 | {
|
---|
| 370 | size_t offset = 0;
|
---|
| 371 | size_t chars = 0;
|
---|
| 372 | size_t sz;
|
---|
| 373 | char buf[4];
|
---|
| 374 |
|
---|
| 375 | while (offset < size) {
|
---|
| 376 | sz = 0;
|
---|
| 377 | if (chr_encode(str[chars], buf, &sz, sizeof(buf)) != EOK) {
|
---|
| 378 | break;
|
---|
| 379 | }
|
---|
| 380 |
|
---|
| 381 | if (write(*(int *) fd, buf, sz) != (ssize_t) sz) {
|
---|
| 382 | break;
|
---|
| 383 | }
|
---|
| 384 |
|
---|
| 385 | chars++;
|
---|
| 386 | offset += sizeof(wchar_t);
|
---|
| 387 | }
|
---|
| 388 |
|
---|
| 389 | return chars;
|
---|
| 390 | }
|
---|
| 391 |
|
---|
[1978a5f] | 392 | /**
|
---|
| 393 | * Print formatted output to the opened file.
|
---|
| 394 | *
|
---|
| 395 | * @param fildes File descriptor of the opened file.
|
---|
| 396 | * @param format Format description.
|
---|
| 397 | * @param ap Print arguments.
|
---|
| 398 | * @return Either the number of printed characters or negative value on error.
|
---|
| 399 | */
|
---|
[8b5fb5e] | 400 | int posix_vdprintf(int fildes, const char *restrict format, va_list ap)
|
---|
| 401 | {
|
---|
| 402 | printf_spec_t spec = {
|
---|
| 403 | .str_write = _dprintf_str_write,
|
---|
| 404 | .wstr_write = _dprintf_wstr_write,
|
---|
| 405 | .data = &fildes
|
---|
| 406 | };
|
---|
| 407 |
|
---|
| 408 | return printf_core(format, &spec, ap);
|
---|
[b08ef1fd] | 409 | }
|
---|
| 410 |
|
---|
[59f799b] | 411 | /**
|
---|
[1978a5f] | 412 | * Print formatted output to the string.
|
---|
[59f799b] | 413 | *
|
---|
[1978a5f] | 414 | * @param s Output string.
|
---|
| 415 | * @param format Format description.
|
---|
| 416 | * @return Either the number of printed characters (excluding null byte) or
|
---|
| 417 | * negative value on error.
|
---|
[59f799b] | 418 | */
|
---|
| 419 | int posix_sprintf(char *s, const char *format, ...)
|
---|
| 420 | {
|
---|
[8b5fb5e] | 421 | va_list list;
|
---|
| 422 | va_start(list, format);
|
---|
| 423 | int result = posix_vsprintf(s, format, list);
|
---|
| 424 | va_end(list);
|
---|
| 425 | return result;
|
---|
[59f799b] | 426 | }
|
---|
| 427 |
|
---|
[823a929] | 428 | /**
|
---|
[1978a5f] | 429 | * Print formatted output to the string.
|
---|
[823a929] | 430 | *
|
---|
[1978a5f] | 431 | * @param s Output string.
|
---|
| 432 | * @param format Format description.
|
---|
| 433 | * @param ap Print arguments.
|
---|
| 434 | * @return Either the number of printed characters (excluding null byte) or
|
---|
| 435 | * negative value on error.
|
---|
[823a929] | 436 | */
|
---|
| 437 | int posix_vsprintf(char *s, const char *format, va_list ap)
|
---|
| 438 | {
|
---|
[8b5fb5e] | 439 | return vsnprintf(s, STR_NO_LIMIT, format, ap);
|
---|
| 440 | }
|
---|
| 441 |
|
---|
| 442 | /**
|
---|
[1978a5f] | 443 | * Convert formatted input from the stream.
|
---|
[8b5fb5e] | 444 | *
|
---|
[1978a5f] | 445 | * @param stream Input stream.
|
---|
| 446 | * @param format Format description.
|
---|
| 447 | * @return The number of converted output items or EOF on failure.
|
---|
[8b5fb5e] | 448 | */
|
---|
| 449 | int posix_fscanf(FILE *restrict stream, const char *restrict format, ...)
|
---|
| 450 | {
|
---|
| 451 | va_list list;
|
---|
| 452 | va_start(list, format);
|
---|
| 453 | int result = posix_vfscanf(stream, format, list);
|
---|
| 454 | va_end(list);
|
---|
| 455 | return result;
|
---|
| 456 | }
|
---|
| 457 |
|
---|
[1978a5f] | 458 | /**
|
---|
| 459 | * Convert formatted input from the stream.
|
---|
| 460 | *
|
---|
| 461 | * @param stream Input stream.
|
---|
| 462 | * @param format Format description.
|
---|
| 463 | * @param arg Output items.
|
---|
| 464 | * @return The number of converted output items or EOF on failure.
|
---|
| 465 | */
|
---|
[8b5fb5e] | 466 | int posix_vfscanf(FILE *restrict stream, const char *restrict format, va_list arg)
|
---|
| 467 | {
|
---|
| 468 | // TODO
|
---|
[823a929] | 469 | not_implemented();
|
---|
| 470 | }
|
---|
| 471 |
|
---|
[8b5fb5e] | 472 | /**
|
---|
[1978a5f] | 473 | * Convert formatted input from the standard input.
|
---|
[8b5fb5e] | 474 | *
|
---|
[1978a5f] | 475 | * @param format Format description.
|
---|
| 476 | * @return The number of converted output items or EOF on failure.
|
---|
[8b5fb5e] | 477 | */
|
---|
| 478 | int posix_scanf(const char *restrict format, ...)
|
---|
| 479 | {
|
---|
| 480 | va_list list;
|
---|
| 481 | va_start(list, format);
|
---|
| 482 | int result = posix_vscanf(format, list);
|
---|
| 483 | va_end(list);
|
---|
| 484 | return result;
|
---|
| 485 | }
|
---|
| 486 |
|
---|
| 487 | /**
|
---|
[1978a5f] | 488 | * Convert formatted input from the standard input.
|
---|
[8b5fb5e] | 489 | *
|
---|
[1978a5f] | 490 | * @param format Format description.
|
---|
| 491 | * @param arg Output items.
|
---|
| 492 | * @return The number of converted output items or EOF on failure.
|
---|
[8b5fb5e] | 493 | */
|
---|
| 494 | int posix_vscanf(const char *restrict format, va_list arg)
|
---|
| 495 | {
|
---|
| 496 | return posix_vfscanf(stdin, format, arg);
|
---|
| 497 | }
|
---|
| 498 |
|
---|
[59f799b] | 499 | /**
|
---|
[1978a5f] | 500 | * Convert formatted input from the string.
|
---|
[59f799b] | 501 | *
|
---|
[1978a5f] | 502 | * @param s Input string.
|
---|
| 503 | * @param format Format description.
|
---|
| 504 | * @return The number of converted output items or EOF on failure.
|
---|
[59f799b] | 505 | */
|
---|
| 506 | int posix_sscanf(const char *s, const char *format, ...)
|
---|
[8b5fb5e] | 507 | {
|
---|
| 508 | va_list list;
|
---|
| 509 | va_start(list, format);
|
---|
| 510 | int result = posix_vsscanf(s, format, list);
|
---|
| 511 | va_end(list);
|
---|
| 512 | return result;
|
---|
| 513 | }
|
---|
| 514 |
|
---|
| 515 | /**
|
---|
[1978a5f] | 516 | * Convert formatted input from the string.
|
---|
[8b5fb5e] | 517 | *
|
---|
[1978a5f] | 518 | * @param s Input string.
|
---|
| 519 | * @param format Format description.
|
---|
| 520 | * @param arg Output items.
|
---|
| 521 | * @return The number of converted output items or EOF on failure.
|
---|
[8b5fb5e] | 522 | */
|
---|
| 523 | int posix_vsscanf(
|
---|
| 524 | const char *restrict s, const char *restrict format, va_list arg)
|
---|
[59f799b] | 525 | {
|
---|
| 526 | // TODO
|
---|
| 527 | not_implemented();
|
---|
| 528 | }
|
---|
| 529 |
|
---|
[1978a5f] | 530 | /**
|
---|
| 531 | * Acquire file stream for the thread.
|
---|
| 532 | *
|
---|
| 533 | * @param file File stream to lock.
|
---|
| 534 | */
|
---|
[8b5fb5e] | 535 | void posix_flockfile(FILE *file)
|
---|
| 536 | {
|
---|
| 537 | /* dummy */
|
---|
| 538 | }
|
---|
| 539 |
|
---|
[1978a5f] | 540 | /**
|
---|
| 541 | * Acquire file stream for the thread (non-blocking).
|
---|
| 542 | *
|
---|
| 543 | * @param file File stream to lock.
|
---|
| 544 | * @return Zero for success and non-zero if the lock cannot be acquired.
|
---|
| 545 | */
|
---|
[8b5fb5e] | 546 | int posix_ftrylockfile(FILE *file)
|
---|
| 547 | {
|
---|
| 548 | /* dummy */
|
---|
| 549 | return 0;
|
---|
| 550 | }
|
---|
| 551 |
|
---|
[1978a5f] | 552 | /**
|
---|
| 553 | * Relinquish the ownership of the locked file stream.
|
---|
| 554 | *
|
---|
| 555 | * @param file File stream to unlock.
|
---|
| 556 | */
|
---|
[8b5fb5e] | 557 | void posix_funlockfile(FILE *file)
|
---|
| 558 | {
|
---|
| 559 | /* dummy */
|
---|
| 560 | }
|
---|
| 561 |
|
---|
[1978a5f] | 562 | /**
|
---|
| 563 | * Get a byte from a stream (thread-unsafe).
|
---|
| 564 | *
|
---|
| 565 | * @param stream Input file stream.
|
---|
| 566 | * @return Either read byte or EOF.
|
---|
| 567 | */
|
---|
[8b5fb5e] | 568 | int posix_getc_unlocked(FILE *stream)
|
---|
| 569 | {
|
---|
| 570 | return getc(stream);
|
---|
| 571 | }
|
---|
| 572 |
|
---|
[1978a5f] | 573 | /**
|
---|
| 574 | * Get a byte from the standard input stream (thread-unsafe).
|
---|
| 575 | *
|
---|
| 576 | * @return Either read byte or EOF.
|
---|
| 577 | */
|
---|
[8b5fb5e] | 578 | int posix_getchar_unlocked(void)
|
---|
| 579 | {
|
---|
| 580 | return getchar();
|
---|
| 581 | }
|
---|
| 582 |
|
---|
[1978a5f] | 583 | /**
|
---|
| 584 | * Put a byte on a stream (thread-unsafe).
|
---|
| 585 | *
|
---|
| 586 | * @param c Byte to output.
|
---|
| 587 | * @param stream Output file stream.
|
---|
| 588 | * @return Either written byte or EOF.
|
---|
| 589 | */
|
---|
[8b5fb5e] | 590 | int posix_putc_unlocked(int c, FILE *stream)
|
---|
| 591 | {
|
---|
| 592 | return putc(c, stream);
|
---|
| 593 | }
|
---|
| 594 |
|
---|
[1978a5f] | 595 | /**
|
---|
| 596 | * Put a byte on the standard output stream (thread-unsafe).
|
---|
| 597 | *
|
---|
| 598 | * @param c Byte to output.
|
---|
| 599 | * @return Either written byte or EOF.
|
---|
| 600 | */
|
---|
[8b5fb5e] | 601 | int posix_putchar_unlocked(int c)
|
---|
| 602 | {
|
---|
| 603 | return putchar(c);
|
---|
| 604 | }
|
---|
| 605 |
|
---|
[823a929] | 606 | /**
|
---|
[1978a5f] | 607 | * Remove a file.
|
---|
[823a929] | 608 | *
|
---|
[1978a5f] | 609 | * @param path Pathname of the file that shall be removed.
|
---|
| 610 | * @return Zero on success, -1 otherwise.
|
---|
[823a929] | 611 | */
|
---|
| 612 | int posix_remove(const char *path)
|
---|
| 613 | {
|
---|
[8b5fb5e] | 614 | // FIXME: unlink() and rmdir() seem to be equivalent at the moment,
|
---|
| 615 | // but that does not have to be true forever
|
---|
| 616 | return unlink(path);
|
---|
[823a929] | 617 | }
|
---|
| 618 |
|
---|
| 619 | /**
|
---|
| 620 | *
|
---|
| 621 | * @param s
|
---|
| 622 | * @return
|
---|
| 623 | */
|
---|
| 624 | char *posix_tmpnam(char *s)
|
---|
| 625 | {
|
---|
| 626 | // TODO: low priority, just a compile-time dependency of binutils
|
---|
| 627 | not_implemented();
|
---|
| 628 | }
|
---|
| 629 |
|
---|
[09b0b1fb] | 630 | /** @}
|
---|
| 631 | */
|
---|