123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- /* Copyright (C) 2016 Jeremiah Orians
- * This file is part of M2-Planet.
- *
- * M2-Planet is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * M2-Planet 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <stdlib.h>
- /* Required constants */
- /* For file I/O*/
- #define EOF 0xFFFFFFFF
- #define BUFSIZ 0x140000 /* 20MB */
- /* For lseek */
- #define SEEK_SET 0
- #define SEEK_CUR 1
- #define SEEK_END 2
- /* Actual format of FILE */
- struct __IO_FILE
- {
- int fd;
- int bufmode; /* O_RDONLY = 0, O_WRONLY = 1 */
- int bufpos;
- int file_pos;
- int buflen;
- char* buffer;
- };
- /* Now give us the FILE we all love */
- typedef struct __IO_FILE FILE;
- /* Required variables */
- FILE* stdin;
- FILE* stdout;
- FILE* stderr;
- void __init_io()
- {
- stdin = calloc(1, sizeof(FILE));
- stdin->fd = STDIN_FILENO;
- stdin->bufmode = O_RDONLY;
- stdin->buflen = 1;
- stdin->buffer = calloc(2, sizeof(char));
- stdout = calloc(1, sizeof(FILE));
- stdout->fd = STDOUT_FILENO;
- stdout->bufmode = O_WRONLY;
- stdout->buflen = 1;
- stdout->buffer = calloc(2, sizeof(char));
- stderr = calloc(1, sizeof(FILE));
- stderr->fd = STDERR_FILENO;
- stderr->bufmode = O_WRONLY;
- stderr->buflen = 1;
- stderr->buffer = calloc(2, sizeof(char));
- }
- /* Standard C functions */
- /* Getting */
- int fgetc(FILE* f)
- {
- /* Only read on read buffers */
- if(O_WRONLY == f->bufmode) return EOF;
- /* Deal with stdin */
- if(STDIN_FILENO == f->fd)
- {
- f->bufpos = 0;
- int r = read(f->fd, f->buffer, 1);
- /* Catch special case of STDIN gets nothing (AN EOF) */
- if(0 == r) return EOF;
- }
- /* Catch EOF */
- if(f->buflen <= f->bufpos) return EOF;
- /* Deal with standard case */
- int ret = f->buffer[f->bufpos];
- f->bufpos = f->bufpos + 1;
- return ret;
- }
- int getchar()
- {
- return fgetc(stdin);
- }
- char* fgets(char* str, int count, FILE* stream)
- {
- int i = 0;
- int ch;
- while(i < count)
- {
- ch = fgetc(stream);
- if(EOF == ch) break;
- str[i] = ch;
- i = i + 1;
- if('\n' == ch) break;
- }
- return str;
- }
- /* Putting */
- int fflush(FILE* stream);
- void fputc(char s, FILE* f)
- {
- /* Only write on write buffers */
- if(O_RDONLY == f->bufmode) return;
- /* Add to buffer */
- f->buffer[f->bufpos] = s;
- f->bufpos = f->bufpos + 1;
- /* Flush if full or '\n' */
- if(f->bufpos == f->buflen) fflush(f);
- else if('\n' == s) fflush(f);
- }
- void putchar(char s)
- {
- fputc(s, stdout);
- }
- int fputs(char const* str, FILE* stream)
- {
- while(0 != str[0])
- {
- fputc(str[0], stream);
- str = str + 1;
- }
- return 0;
- }
- int puts(char const* str)
- {
- fputs(str, stdout);
- fputc('\n', stdout);
- return 0;
- }
- /* File management */
- FILE* fopen(char const* filename, char const* mode)
- {
- int f;
- FILE* fi = calloc(1, sizeof(FILE));
- int size;
- if('w' == mode[0]) f = open(filename, O_WRONLY|O_CREAT|O_TRUNC , 00600);
- else f = open(filename, 0, 0); /* Everything else is a read */
- /* Negative numbers are error codes */
- if(0 > f)
- {
- return 0;
- }
- if('w' == mode[0])
- {
- /* Buffer as much as possible */
- fi->buffer = calloc(BUFSIZ, sizeof(char));
- fi->buflen = BUFSIZ;
- fi->bufmode = O_WRONLY;
- }
- else
- {
- /* Get enough buffer to read it all */
- size = lseek(f, 0, SEEK_END);
- fi->buffer = calloc(size + 1, sizeof(char));
- fi->buflen = size;
- fi->bufmode = O_RDONLY;
- /* Now read it all */
- lseek(f, 0, SEEK_SET);
- read(f, fi->buffer, size);
- }
- fi->fd = f;
- return fi;
- }
- int fflush(FILE* stream)
- {
- /* We only need to flush on writes */
- if(O_RDONLY == stream->bufmode) return 0;
- /* If nothing to flush */
- if(0 ==stream->bufpos) return 0;
- /* The actual flushing */
- int error = write(stream->fd, stream->buffer, stream->bufpos);
- /* Keep track of position */
- stream->file_pos = stream->file_pos + stream->bufpos;
- stream->bufpos = 0;
- return error;
- }
- int fclose(FILE* stream)
- {
- /* Deal with STDIN, STDOUT and STDERR */
- /* No close for you */
- if(2 >= stream->fd) return 0;
- /* We only need to flush on writes */
- if(O_WRONLY == stream->bufmode)
- {
- fflush(stream);
- }
- /* Need to keep the File Descriptor for a moment */
- int fd = stream->fd;
- /* Free up the buffer and struct used for FILE */
- free(stream->buffer);
- free(stream);
- /* Do the actual closing */
- return close(fd);
- }
- /* File Positioning */
- int ungetc(int ch, FILE* stream)
- {
- /* Deal with STDIN, STDOUT and STDERR */
- /* No ungetc for you */
- if(2 >= stream->fd) return EOF;
- /* You can't unget on a write stream! */
- if(O_WRONLY == stream->bufmode) return EOF;
- /* Don't underflow */
- if(0 == stream->bufpos) return EOF;
- /* Don't let crap be shoved into read stream */
- if(stream->buffer[stream->bufpos - 1] != ch) return EOF;
- stream->bufpos = stream->bufpos - 1;
- return ch;
- }
- long ftell(FILE* stream)
- {
- /* Deal with STDIN, STDOUT and STDERR */
- /* No ftell for you */
- if(2 >= stream->fd) return 0;
- /* Deal with buffered output */
- if(O_WRONLY == stream->bufmode) return stream->file_pos + stream->bufpos;
- /* Deal with read */
- return stream->bufpos;
- }
- int fseek(FILE* f, long offset, int whence)
- {
- /* Deal with STDIN, STDOUT and STDERR */
- /* No seek and destroy missions */
- if(2 >= f->fd) return 0;
- /* Deal with ugly case */
- if(O_WRONLY == f->bufmode)
- {
- fflush(f);
- return lseek(f->fd, offset, whence);
- }
- /* Deal with read mode */
- int pos;
- if(SEEK_SET == whence)
- {
- pos = offset;
- }
- else if(SEEK_CUR == whence)
- {
- pos = f->bufpos + offset;
- }
- else if(SEEK_END == whence)
- {
- pos = f->buflen + offset;
- }
- else return -1;
- if(pos < 0) return -1;
- if(pos > f->buflen) return -1;
- f->bufpos = pos;
- return pos;
- }
- void rewind(FILE* f)
- {
- fseek(f, 0, SEEK_SET);
- }
|