[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 | //
|
---|
| 7 | // iostream.h --
|
---|
| 8 | //
|
---|
| 9 | // Author : Richard C. Bilson
|
---|
| 10 | // Created On : Wed May 27 17:56:53 2015
|
---|
| 11 | // Last Modified By : Peter A. Buhr
|
---|
[cf16f94] | 12 | // Last Modified On : Mon Nov 23 14:15:25 2015
|
---|
| 13 | // Update Count : 17
|
---|
[86bd7c1f] | 14 | //
|
---|
| 15 |
|
---|
[51b73452] | 16 | #ifndef IOSTREAM_H
|
---|
| 17 | #define IOSTREAM_H
|
---|
| 18 |
|
---|
[e56cfdb0] | 19 | #include "iterator.h"
|
---|
| 20 |
|
---|
[51b73452] | 21 | typedef unsigned long streamsize_type;
|
---|
| 22 |
|
---|
[134b86a] | 23 | context ostream( dtype ostype ) {
|
---|
[86bd7c1f] | 24 | ostype *write( ostype *, const char *, streamsize_type );
|
---|
| 25 | int fail( ostype * );
|
---|
[51b73452] | 26 | };
|
---|
| 27 |
|
---|
[134b86a] | 28 | context writeable( type T ) {
|
---|
[cf16f94] | 29 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, T );
|
---|
[51b73452] | 30 | };
|
---|
| 31 |
|
---|
| 32 | // implement writable for some intrinsic types
|
---|
| 33 |
|
---|
[cf16f94] | 34 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, char );
|
---|
| 35 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, int );
|
---|
| 36 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double );
|
---|
| 37 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char * );
|
---|
| 38 | forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const void * );
|
---|
| 39 |
|
---|
| 40 | forall( dtype ostype, dtype retostype | ostream( ostype ) | ostream( retostype ) ) retostype * ?|?( ostype *os, retostype * (* manip)(ostype*) );
|
---|
| 41 | forall( dtype ostype | ostream( ostype ) ) ostype * endl( ostype * );
|
---|
[e56cfdb0] | 42 |
|
---|
| 43 | // writes the range [begin, end) to the given stream
|
---|
| 44 | forall( type elt_type | writeable( elt_type ),
|
---|
| 45 | type iterator_type | iterator( iterator_type, elt_type ),
|
---|
| 46 | dtype os_type | ostream( os_type ) )
|
---|
| 47 | void write( iterator_type begin, iterator_type end, os_type *os );
|
---|
| 48 |
|
---|
| 49 | forall( type elt_type | writeable( elt_type ),
|
---|
| 50 | type iterator_type | iterator( iterator_type, elt_type ),
|
---|
| 51 | dtype os_type | ostream( os_type ) )
|
---|
| 52 | void write_reverse( iterator_type begin, iterator_type end, os_type *os );
|
---|
[51b73452] | 53 |
|
---|
[cf16f94] | 54 | //******************************************************************************
|
---|
[51b73452] | 55 |
|
---|
[134b86a] | 56 | context istream( dtype istype ) {
|
---|
[86bd7c1f] | 57 | istype *read( istype *, char *, streamsize_type );
|
---|
| 58 | istype *unread( istype *, char );
|
---|
| 59 | int fail( istype * );
|
---|
| 60 | int eof( istype * );
|
---|
[51b73452] | 61 | };
|
---|
| 62 |
|
---|
[134b86a] | 63 | context readable( type T ) {
|
---|
[cf16f94] | 64 | forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, T );
|
---|
[51b73452] | 65 | };
|
---|
| 66 |
|
---|
| 67 | forall( dtype istype | istream( istype ) )
|
---|
[cf16f94] | 68 | istype * ?|?( istype *, char * );
|
---|
[51b73452] | 69 |
|
---|
| 70 | forall( dtype istype | istream( istype ) )
|
---|
[cf16f94] | 71 | istype * ?|?( istype *, int * );
|
---|
[51b73452] | 72 |
|
---|
[134b86a] | 73 | #endif // IOSTREAM_H
|
---|
[86bd7c1f] | 74 |
|
---|
| 75 | // Local Variables: //
|
---|
| 76 | // tab-width: 4 //
|
---|
| 77 | // compile-command: "cfa iostream.c" //
|
---|
| 78 | // End: //
|
---|