source: src/libcfa/iostream@ 6c6455f

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 6c6455f was 9ebd778, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

code formatting

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[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]21trait 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]47trait 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]53forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, char );
[1630f18]54forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, signed char );
55forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned char );
[90c3b1c]56
57forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, short int );
58forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned short int );
[cf16f94]59forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, int );
[784deab]60forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned int );
61forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long int );
62forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long long int );
63forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned long int );
64forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned long long int );
[90c3b1c]65
[d3b7937]66forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, float ); // FIX ME: should not be required
[cf16f94]67forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double );
[784deab]68forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long double );
[90c3b1c]69
[d3b7937]70forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, float _Complex );
71forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double _Complex );
72forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long double _Complex );
[90c3b1c]73
[cf16f94]74forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char * );
75forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const void * );
76
[c443d1d]77// tuples
78forall( 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]81forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, ostype * (*)( ostype * ) );
[cf16f94]82forall( dtype ostype | ostream( ostype ) ) ostype * endl( ostype * );
[90c3b1c]83forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * );
84forall( dtype ostype | ostream( ostype ) ) ostype * sepOff( ostype * );
[53ba273]85forall( dtype ostype | ostream( ostype ) ) ostype * sepDisable( ostype * );
86forall( dtype ostype | ostream( ostype ) ) ostype * sepEnable( ostype * );
[e56cfdb0]87
88// writes the range [begin, end) to the given stream
[4040425]89forall( otype elt_type | writeable( elt_type ), otype iterator_type | iterator( iterator_type, elt_type ), dtype os_type | ostream( os_type ) )
[e56cfdb0]90void write( iterator_type begin, iterator_type end, os_type *os );
91
[4040425]92forall( otype elt_type | writeable( elt_type ), otype iterator_type | iterator( iterator_type, elt_type ), dtype os_type | ostream( os_type ) )
[e56cfdb0]93void write_reverse( iterator_type begin, iterator_type end, os_type *os );
[51b73452]94
[6ba0659]95//---------------------------------------
[51b73452]96
[4040425]97trait 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]107trait readable( otype T ) {
[cf16f94]108 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, T );
[51b73452]109};
110
[90c3b1c]111forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, char * );
112
113forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int * );
114forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned short int * );
115forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, int * );
116forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned int * );
117forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long int * );
118forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long long int * );
119forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long int * );
120forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long long int * );
121
122forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float * );
123forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double * );
124forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double * );
125
126forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float _Complex * );
127forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double _Complex * );
128forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * );
129
[53ba273]130struct _Istream_cstrUC { char * s; };
131_Istream_cstrUC cstr( char * );
132forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrUC );
[51b73452]133
[53ba273]134struct _Istream_cstrC { char * s; int size; };
135_Istream_cstrC cstr( char *, int size );
136forall( 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: //
Note: See TracBrowser for help on using the repository browser.