2012-09-28 18:36:46 -04:00
|
|
|
/*******************************************************************************
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2014-02-27 14:57:14 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2014.
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2013-07-11 12:22:58 -04:00
|
|
|
stdio/stdio.cpp
|
2013-07-10 09:26:01 -04:00
|
|
|
Sets up stdin, stdout, stderr.
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
*******************************************************************************/
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
|
2013-07-11 12:22:58 -04:00
|
|
|
#include <errno.h>
|
2014-08-03 18:24:30 -04:00
|
|
|
#include <pthread.h>
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
#include <stdio.h>
|
2014-02-27 14:57:14 -05:00
|
|
|
#include <unistd.h>
|
2013-07-11 12:22:58 -04:00
|
|
|
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
#include "fdio.h"
|
|
|
|
|
2014-02-27 14:57:14 -05:00
|
|
|
static struct fdio_state stdin_fdio = { NULL, 0 };
|
|
|
|
static struct fdio_state stdout_fdio = { NULL, 1 };
|
|
|
|
static struct fdio_state stderr_fdio = { NULL, 2 };
|
2011-12-29 19:06:27 -05:00
|
|
|
|
2014-08-03 18:24:30 -04:00
|
|
|
extern "C" {
|
2013-08-31 19:42:02 -04:00
|
|
|
|
2014-08-03 18:24:30 -04:00
|
|
|
extern FILE __stdin_file;
|
|
|
|
extern FILE __stdout_file;
|
|
|
|
extern FILE __stderr_file;
|
2013-08-31 19:42:02 -04:00
|
|
|
|
2014-08-03 18:24:30 -04:00
|
|
|
FILE __stdin_file =
|
2011-12-29 19:06:27 -05:00
|
|
|
{
|
2014-08-03 18:24:30 -04:00
|
|
|
/* buffersize = */ 0,
|
|
|
|
/* buffer = */ NULL,
|
|
|
|
/* user = */ &stdin_fdio,
|
|
|
|
/* free_user = */ NULL,
|
|
|
|
/* reopen_func = */ fdio_reopen,
|
|
|
|
/* read_func = */ fdio_read,
|
|
|
|
/* write_func = */ fdio_write,
|
|
|
|
/* seek_func = */ fdio_seek,
|
|
|
|
/* fileno_func = */ fdio_fileno,
|
|
|
|
/* close_func = */ fdio_close,
|
|
|
|
/* free_func = */ NULL,
|
|
|
|
/* file_lock = */ PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
|
|
|
|
/* fflush_indirect = */ NULL,
|
|
|
|
/* buffer_free_indirect = */ NULL,
|
|
|
|
/* prev = */ NULL,
|
|
|
|
/* next = */ &__stdout_file,
|
|
|
|
/* flags = */ _FILE_REGISTERED | _FILE_READABLE,
|
|
|
|
/* buffer_mode = */ -1,
|
|
|
|
/* offset_input_buffer = */ 0,
|
|
|
|
/* amount_input_buffered = */ 0,
|
|
|
|
/* amount_output_buffered = */ 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
FILE __stdout_file
|
2011-12-29 19:06:27 -05:00
|
|
|
{
|
2014-08-03 18:24:30 -04:00
|
|
|
/* buffersize = */ 0,
|
|
|
|
/* buffer = */ NULL,
|
|
|
|
/* user = */ &stdout_fdio,
|
|
|
|
/* free_user = */ NULL,
|
|
|
|
/* reopen_func = */ fdio_reopen,
|
|
|
|
/* read_func = */ fdio_read,
|
|
|
|
/* write_func = */ fdio_write,
|
|
|
|
/* seek_func = */ fdio_seek,
|
|
|
|
/* fileno_func = */ fdio_fileno,
|
|
|
|
/* close_func = */ fdio_close,
|
|
|
|
/* free_func = */ NULL,
|
|
|
|
/* file_lock = */ PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
|
|
|
|
/* fflush_indirect = */ NULL,
|
|
|
|
/* buffer_free_indirect = */ NULL,
|
|
|
|
/* prev = */ &__stdin_file,
|
|
|
|
/* next = */ &__stderr_file,
|
|
|
|
/* flags = */ _FILE_REGISTERED | _FILE_WRITABLE,
|
|
|
|
/* buffer_mode = */ -1,
|
|
|
|
/* offset_input_buffer = */ 0,
|
|
|
|
/* amount_input_buffered = */ 0,
|
|
|
|
/* amount_output_buffered = */ 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
FILE __stderr_file
|
|
|
|
{
|
|
|
|
/* buffersize = */ 0,
|
|
|
|
/* buffer = */ NULL,
|
|
|
|
/* user = */ &stderr_fdio,
|
|
|
|
/* free_user = */ NULL,
|
|
|
|
/* reopen_func = */ fdio_reopen,
|
|
|
|
/* read_func = */ fdio_read,
|
|
|
|
/* write_func = */ fdio_write,
|
|
|
|
/* seek_func = */ fdio_seek,
|
|
|
|
/* fileno_func = */ fdio_fileno,
|
|
|
|
/* close_func = */ fdio_close,
|
|
|
|
/* free_func = */ NULL,
|
|
|
|
/* file_lock = */ PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
|
|
|
|
/* fflush_indirect = */ NULL,
|
|
|
|
/* buffer_free_indirect = */ NULL,
|
|
|
|
/* prev = */ &__stdout_file,
|
|
|
|
/* next = */ NULL,
|
|
|
|
/* flags = */ _FILE_REGISTERED | _FILE_WRITABLE,
|
|
|
|
/* buffer_mode = */ _IONBF,
|
|
|
|
/* offset_input_buffer = */ 0,
|
|
|
|
/* amount_input_buffered = */ 0,
|
|
|
|
/* amount_output_buffered = */ 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
FILE* stdin = &__stdin_file;
|
|
|
|
FILE* stdout = &__stdout_file;
|
|
|
|
FILE* stderr = &__stderr_file;
|
|
|
|
|
|
|
|
} // extern "C"
|