source: src/libcfa/iostream@ ff2d7341

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 ff2d7341 was 17e5e2b, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

Added proper include guards to cfa headers so they can be added to the c++ include path without issues

  • Property mode set to 100644
File size: 6.1 KB
Line 
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 --
8//
9// Author : Peter A. Buhr
10// Created On : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Jul 12 18:01:09 2016
13// Update Count : 93
14//
15
16#ifdef __CFORALL__
17
18#ifndef __IOSTREAM_H__
19#define __IOSTREAM_H__
20
21#include "iterator"
22
23trait ostream( dtype ostype ) {
24 _Bool sepPrt( ostype * ); // return separator state (on/off)
25 void sepOn( ostype * ); // turn separator state on
26 void sepOff( ostype * ); // turn separator state off
27 void sepReset( ostype * ); // set separator state to default state
28 void sepReset( ostype *, _Bool ); // set separator and default state
29 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum)
30 const char * sepGet( ostype * ); // get separator string
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
34 int fail( ostype * );
35 int flush( ostype * );
36 void open( ostype * os, const char * name, const char * mode );
37 void close( ostype * os );
38 ostype * write( ostype *, const char *, unsigned long int );
39 int prtfmt( ostype *, const char fmt[], ... );
40};
41
42trait writeable( otype T ) {
43 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, T );
44};
45
46// implement writable for intrinsic types
47
48forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, char );
49
50forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, short int );
51forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned short int );
52forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, int );
53forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned int );
54forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long int );
55forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long long int );
56forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned long int );
57forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, unsigned long long int );
58
59forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, float ); // FIX ME: should not be required
60forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double );
61forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long double );
62
63forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, float _Complex );
64forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, double _Complex );
65forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, long double _Complex );
66
67forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char * );
68forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const void * );
69
70forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, ostype * (*)( ostype * ) );
71// manipulators
72forall( dtype ostype | ostream( ostype ) ) ostype * endl( ostype * );
73forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * );
74forall( dtype ostype | ostream( ostype ) ) ostype * sepOff( ostype * );
75forall( dtype ostype | ostream( ostype ) ) ostype * sepDisable( ostype * );
76forall( dtype ostype | ostream( ostype ) ) ostype * sepEnable( ostype * );
77
78// writes the range [begin, end) to the given stream
79forall( otype elt_type | writeable( elt_type ), otype iterator_type | iterator( iterator_type, elt_type ), dtype os_type | ostream( os_type ) )
80void write( iterator_type begin, iterator_type end, os_type *os );
81
82forall( otype elt_type | writeable( elt_type ), otype iterator_type | iterator( iterator_type, elt_type ), dtype os_type | ostream( os_type ) )
83void write_reverse( iterator_type begin, iterator_type end, os_type *os );
84
85//---------------------------------------
86
87trait istream( dtype istype ) {
88 int fail( istype * );
89 int eof( istype * );
90 void open( istype * is, const char * name, const char * mode );
91 void close( istype * is );
92 istype * read( istype *, char *, unsigned long int );
93 istype * ungetc( istype *, char );
94 int scanfmt( istype *, const char fmt[], ... );
95};
96
97trait readable( otype T ) {
98 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, T );
99};
100
101forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, char * );
102
103forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int * );
104forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned short int * );
105forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, int * );
106forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned int * );
107forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long int * );
108forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long long int * );
109forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long int * );
110forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned long long int * );
111
112forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float * );
113forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double * );
114forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double * );
115
116forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, float _Complex * );
117forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, double _Complex * );
118forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * );
119
120struct _Istream_cstrUC { char * s; };
121_Istream_cstrUC cstr( char * );
122forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrUC );
123
124struct _Istream_cstrC { char * s; int size; };
125_Istream_cstrC cstr( char *, int size );
126forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrC );
127
128#endif // __IOSTREAM_H
129
130#else
131#include_next <iostream>
132#endif //__CFORALL__
133
134// Local Variables: //
135// mode: c //
136// tab-width: 4 //
137// End: //
Note: See TracBrowser for help on using the repository browser.