[86bd7c1f] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
[bb82c03] | 7 | // fstream -- |
---|
[86bd7c1f] | 8 | // |
---|
[90c3b1c] | 9 | // Author : Peter A. Buhr |
---|
[86bd7c1f] | 10 | // Created On : Wed May 27 17:56:53 2015 |
---|
| 11 | // Last Modified By : Peter A. Buhr |
---|
[d395012] | 12 | // Last Modified On : Sat Jul 1 16:37:53 2017 |
---|
| 13 | // Update Count : 112 |
---|
[86bd7c1f] | 14 | // |
---|
| 15 | |
---|
[42dcae7] | 16 | #ifndef __FSTREAM_H__ |
---|
| 17 | #define __FSTREAM_H__ |
---|
[51b7345] | 18 | |
---|
[d3b7937] | 19 | #include "iostream" |
---|
[51b7345] | 20 | |
---|
[90c3b1c] | 21 | enum { separateSize = 16 }; |
---|
[53ba273] | 22 | struct ofstream { |
---|
[829c907] | 23 | void * file; |
---|
[8bc4ef8] | 24 | _Bool sepDefault; |
---|
[6152c81] | 25 | _Bool sepOnOff; |
---|
[d395012] | 26 | _Bool lastSepOn; |
---|
[829c907] | 27 | const char * sepCur; |
---|
[53ba273] | 28 | char separator[separateSize]; |
---|
[829c907] | 29 | char tupleSeparator[separateSize]; |
---|
[53ba273] | 30 | }; // ofstream |
---|
[90c3b1c] | 31 | |
---|
[9ebd778] | 32 | // private |
---|
[90c3b1c] | 33 | _Bool sepPrt( ofstream * ); |
---|
[53ba273] | 34 | void sepReset( ofstream * ); |
---|
| 35 | void sepReset( ofstream *, _Bool ); |
---|
[829c907] | 36 | const char * sepGetCur( ofstream * ); |
---|
| 37 | void sepSetCur( ofstream *, const char * ); |
---|
[d395012] | 38 | _Bool lastSepOn( ofstream * ); |
---|
[9ebd778] | 39 | |
---|
| 40 | // public |
---|
| 41 | void sepOn( ofstream * ); |
---|
| 42 | void sepOff( ofstream * ); |
---|
| 43 | _Bool sepDisable( ofstream * ); |
---|
| 44 | _Bool sepEnable( ofstream * ); |
---|
| 45 | |
---|
[90c3b1c] | 46 | const char * sepGet( ofstream * ); |
---|
[6152c81] | 47 | void sepSet( ofstream *, const char * ); |
---|
[829c907] | 48 | const char * sepGetTuple( ofstream * ); |
---|
| 49 | void sepSetTuple( ofstream *, const char * ); |
---|
[6152c81] | 50 | |
---|
[90c3b1c] | 51 | int fail( ofstream * ); |
---|
| 52 | int flush( ofstream * ); |
---|
| 53 | void open( ofstream *, const char * name, const char * mode ); |
---|
| 54 | void close( ofstream * ); |
---|
| 55 | ofstream * write( ofstream *, const char * data, unsigned long int size ); |
---|
[829c907] | 56 | int fmt( ofstream *, const char fmt[], ... ); |
---|
| 57 | |
---|
| 58 | void ?{}( ofstream * ); |
---|
[51b7345] | 59 | |
---|
[6ba0659] | 60 | extern ofstream * sout, * serr; |
---|
[51b7345] | 61 | |
---|
[134b86a] | 62 | // implement context istream |
---|
[53ba273] | 63 | struct ifstream { |
---|
[829c907] | 64 | void * file; |
---|
[53ba273] | 65 | }; // ifstream |
---|
[6ba0659] | 66 | |
---|
| 67 | int fail( ifstream * is ); |
---|
| 68 | int eof( ifstream * is ); |
---|
[90c3b1c] | 69 | void open( ifstream * is, const char * name, const char * mode ); |
---|
[6ba0659] | 70 | void close( ifstream * is ); |
---|
[90c3b1c] | 71 | ifstream * read( ifstream * is, char * data, unsigned long int size ); |
---|
[6ba0659] | 72 | ifstream * ungetc( ifstream * is, char c ); |
---|
[829c907] | 73 | int fmt( ifstream *, const char fmt[], ... ); |
---|
[51b7345] | 74 | |
---|
[829c907] | 75 | extern ifstream * sin; |
---|
[51b7345] | 76 | |
---|
[42dcae7] | 77 | #endif // __FSTREAM_H__ |
---|
[86bd7c1f] | 78 | |
---|
| 79 | // Local Variables: // |
---|
[d3b7937] | 80 | // mode: c // |
---|
[86bd7c1f] | 81 | // tab-width: 4 // |
---|
| 82 | // End: // |
---|