[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 | // iostream --
|
---|
[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
|
---|
[9ebd778] | 12 | // Last Modified On : Mon May 15 18:08:44 2017
|
---|
| 13 | // Update Count : 105
|
---|
[86bd7c1f] | 14 | //
|
---|
| 15 |
|
---|
[90c3b1c] | 16 | #ifndef __IOSTREAM_H__
|
---|
| 17 | #define __IOSTREAM_H__
|
---|
[51b73452] | 18 |
|
---|
[d3b7937] | 19 | #include "iterator"
|
---|
[e56cfdb0] | 20 |
|
---|
[4040425] | 21 | trait ostream( dtype ostype ) {
|
---|
[9ebd778] | 22 | // private
|
---|
[3849857] | 23 | _Bool sepPrt( ostype * ); // return separator state (on/off)
|
---|
| 24 | void sepReset( ostype * ); // set separator state to default state
|
---|
| 25 | void sepReset( ostype *, _Bool ); // set separator and default state
|
---|
[829c907] | 26 | const char * sepGetCur( ostype * ); // get current separator string
|
---|
| 27 | void sepSetCur( ostype *, const char * ); // set current separator string
|
---|
[9ebd778] | 28 | // public
|
---|
| 29 | void sepOn( ostype * ); // turn separator state on
|
---|
| 30 | void sepOff( ostype * ); // turn separator state off
|
---|
| 31 | _Bool sepDisable( ostype * ); // set default state to off, and return previous state
|
---|
| 32 | _Bool sepEnable( ostype * ); // set default state to on, and return previous state
|
---|
| 33 |
|
---|
[bb82c03] | 34 | const char * sepGet( ostype * ); // get separator string
|
---|
[829c907] | 35 | void sepSet( ostype *, const char * ); // set separator to string (15 character maximum)
|
---|
| 36 | const char * sepGetTuple( ostype * ); // get tuple separator string
|
---|
| 37 | void sepSetTuple( ostype *, const char * ); // set tuple separator to string (15 character maximum)
|
---|
[3849857] | 38 |
|
---|
[86bd7c1f] | 39 | int fail( ostype * );
|
---|
[6ba0659] | 40 | int flush( ostype * );
|
---|
[90c3b1c] | 41 | void open( ostype * os, const char * name, const char * mode );
|
---|
| 42 | void close( ostype * os );
|
---|
| 43 | ostype * write( ostype *, const char *, unsigned long int );
|
---|
[829c907] | 44 | int fmt( ostype *, const char fmt[], ... );
|
---|
[51b73452] | 45 | };
|
---|
[90c3b1c] | 46 |
|
---|
[4040425] | 47 | trait writeable( otype T ) {
|
---|
[cf16f94] | 48 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, T );
|
---|
[51b73452] | 49 | };
|
---|
| 50 |
|
---|
[4e06c1e] | 51 | // implement writable for intrinsic types
|
---|
[51b73452] | 52 |
|
---|
[cf16f94] | 53 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, char );
|
---|
[1630f18] | 54 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, signed char );
|
---|
| 55 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned char );
|
---|
[90c3b1c] | 56 |
|
---|
| 57 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, short int );
|
---|
| 58 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned short int );
|
---|
[cf16f94] | 59 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, int );
|
---|
[784deab] | 60 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned int );
|
---|
| 61 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long int );
|
---|
| 62 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long long int );
|
---|
| 63 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned long int );
|
---|
| 64 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned long long int );
|
---|
[90c3b1c] | 65 |
|
---|
[d3b7937] | 66 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, float ); // FIX ME: should not be required
|
---|
[cf16f94] | 67 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double );
|
---|
[784deab] | 68 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long double );
|
---|
[90c3b1c] | 69 |
|
---|
[d3b7937] | 70 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, float _Complex );
|
---|
| 71 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double _Complex );
|
---|
| 72 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long double _Complex );
|
---|
[90c3b1c] | 73 |
|
---|
[cf16f94] | 74 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char * );
|
---|
| 75 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const void * );
|
---|
| 76 |
|
---|
[c443d1d] | 77 | // tuples
|
---|
| 78 | forall( dtype ostype, otype T, ttype Params | ostream( ostype ) | writeable( T ) | { ostype * ?|?( ostype *, Params ); } ) ostype * ?|?( ostype * os, T arg, Params rest );
|
---|
| 79 |
|
---|
[4e06c1e] | 80 | // manipulators
|
---|
[c443d1d] | 81 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, ostype * (*)( ostype * ) );
|
---|
[cf16f94] | 82 | forall( dtype ostype | ostream( ostype ) ) ostype * endl( ostype * );
|
---|
[90c3b1c] | 83 | forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * );
|
---|
| 84 | forall( dtype ostype | ostream( ostype ) ) ostype * sepOff( ostype * );
|
---|
[53ba273] | 85 | forall( dtype ostype | ostream( ostype ) ) ostype * sepDisable( ostype * );
|
---|
| 86 | forall( dtype ostype | ostream( ostype ) ) ostype * sepEnable( ostype * );
|
---|
[e56cfdb0] | 87 |
|
---|
| 88 | // writes the range [begin, end) to the given stream
|
---|
[4040425] | 89 | forall( otype elt_type | writeable( elt_type ), otype iterator_type | iterator( iterator_type, elt_type ), dtype os_type | ostream( os_type ) )
|
---|
[e56cfdb0] | 90 | void write( iterator_type begin, iterator_type end, os_type *os );
|
---|
| 91 |
|
---|
[4040425] | 92 | forall( otype elt_type | writeable( elt_type ), otype iterator_type | iterator( iterator_type, elt_type ), dtype os_type | ostream( os_type ) )
|
---|
[e56cfdb0] | 93 | void write_reverse( iterator_type begin, iterator_type end, os_type *os );
|
---|
[51b73452] | 94 |
|
---|
[6ba0659] | 95 | //---------------------------------------
|
---|
[51b73452] | 96 |
|
---|
[4040425] | 97 | trait istream( dtype istype ) {
|
---|
[86bd7c1f] | 98 | int fail( istype * );
|
---|
| 99 | int eof( istype * );
|
---|
[90c3b1c] | 100 | void open( istype * is, const char * name, const char * mode );
|
---|
| 101 | void close( istype * is );
|
---|
| 102 | istype * read( istype *, char *, unsigned long int );
|
---|
[6ba0659] | 103 | istype * ungetc( istype *, char );
|
---|
[829c907] | 104 | int fmt( istype *, const char fmt[], ... );
|
---|
[51b73452] | 105 | };
|
---|
| 106 |
|
---|
[4040425] | 107 | trait readable( otype T ) {
|
---|
[cf16f94] | 108 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, T );
|
---|
[51b73452] | 109 | };
|
---|
| 110 |
|
---|
[90c3b1c] | 111 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, char * );
|
---|
| 112 |
|
---|
| 113 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int * );
|
---|
| 114 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned short int * );
|
---|
| 115 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, int * );
|
---|
| 116 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned int * );
|
---|
| 117 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long int * );
|
---|
| 118 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long long int * );
|
---|
| 119 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long int * );
|
---|
| 120 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long long int * );
|
---|
| 121 |
|
---|
| 122 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float * );
|
---|
| 123 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double * );
|
---|
| 124 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double * );
|
---|
| 125 |
|
---|
| 126 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float _Complex * );
|
---|
| 127 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double _Complex * );
|
---|
| 128 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * );
|
---|
| 129 |
|
---|
[53ba273] | 130 | struct _Istream_cstrUC { char * s; };
|
---|
| 131 | _Istream_cstrUC cstr( char * );
|
---|
| 132 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrUC );
|
---|
[51b73452] | 133 |
|
---|
[53ba273] | 134 | struct _Istream_cstrC { char * s; int size; };
|
---|
| 135 | _Istream_cstrC cstr( char *, int size );
|
---|
| 136 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrC );
|
---|
[51b73452] | 137 |
|
---|
[17e5e2b] | 138 | #endif // __IOSTREAM_H
|
---|
| 139 |
|
---|
[86bd7c1f] | 140 | // Local Variables: //
|
---|
[d3b7937] | 141 | // mode: c //
|
---|
[86bd7c1f] | 142 | // tab-width: 4 //
|
---|
| 143 | // End: //
|
---|