source: libcfa/src/fstream.cfa@ 104a13e

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 104a13e was 9d362a0, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

simplify code

  • Property mode set to 100644
File size: 6.8 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//
[356189a]7// fstream.c --
[86bd7c1f]8//
[90c3b1c]9// Author : Peter A. Buhr
[86bd7c1f]10// Created On : Wed May 27 17:56:53 2015
[5d125e4]11// Last Modified By : Peter A. Buhr
[9d362a0]12// Last Modified On : Mon Dec 24 18:33:38 2018
13// Update Count : 304
[86bd7c1f]14//
15
[58b6d1b]16#include "fstream.hfa"
[51b73452]17
[90c3b1c]18#include <stdio.h> // vfprintf, vfscanf
19#include <stdlib.h> // exit
20#include <stdarg.h> // varargs
21#include <string.h> // strlen
22#include <float.h> // DBL_DIG, LDBL_DIG
23#include <complex.h> // creal, cimag
[91c389a]24#include <assert.h>
[51b73452]25
[53ba273]26#define IO_MSG "I/O error: "
[6ba0659]27
[5ea5b28]28void ?{}( ofstream & os, void * file, bool sepDefault, bool sepOnOff, bool nlOnOff, bool prt, const char * separator, const char * tupleSeparator ) {
[09687aa]29 os.file = file;
30 os.sepDefault = sepDefault;
31 os.sepOnOff = sepOnOff;
[200fcb3]32 os.nlOnOff = nlOnOff;
[5ea5b28]33 os.prt = prt;
[09687aa]34 sepSet( os, separator );
35 sepSetCur( os, sepGet( os ) );
36 sepSetTuple( os, tupleSeparator );
[0583064b]37}
38
[9ebd778]39// private
[93c2e0a]40bool sepPrt( ofstream & os ) { setNL( os, false ); return os.sepOnOff; }
[09687aa]41void sepReset( ofstream & os ) { os.sepOnOff = os.sepDefault; }
[93c2e0a]42void sepReset( ofstream & os, bool reset ) { os.sepDefault = reset; os.sepOnOff = os.sepDefault; }
[09687aa]43const char * sepGetCur( ofstream & os ) { return os.sepCur; }
44void sepSetCur( ofstream & os, const char * sepCur ) { os.sepCur = sepCur; }
[93c2e0a]45bool getNL( ofstream & os ) { return os.sawNL; }
46void setNL( ofstream & os, bool state ) { os.sawNL = state; }
[200fcb3]47bool getANL( ofstream & os ) { return os.nlOnOff; }
[5ea5b28]48bool getPrt( ofstream & os ) { return os.prt; }
49void setPrt( ofstream & os, bool state ) { os.prt = state; }
[829c907]50
[9ebd778]51// public
[8da74119]52void ?{}( ofstream & os ) { os.file = 0; }
[829c907]53
[09687aa]54void ?{}( ofstream & os, const char * name, const char * mode ) {
55 open( os, name, mode );
56}
[8da74119]57void ?{}( ofstream & os, const char * name ) {
58 open( os, name, "w" );
59}
[09687aa]60
61void sepOn( ofstream & os ) { os.sepOnOff = ! getNL( os ); }
62void sepOff( ofstream & os ) { os.sepOnOff = false; }
63
[93c2e0a]64bool sepDisable( ofstream & os ) {
65 bool temp = os.sepDefault;
[09687aa]66 os.sepDefault = false;
[53ba273]67 sepReset( os );
68 return temp;
69} // sepDisable
[6152c81]70
[93c2e0a]71bool sepEnable( ofstream & os ) {
72 bool temp = os.sepDefault;
[09687aa]73 os.sepDefault = true;
74 if ( os.sepOnOff ) sepReset( os ); // start of line ?
[53ba273]75 return temp;
76} // sepEnable
[90c3b1c]77
[200fcb3]78void nlOn( ofstream & os ) { os.nlOnOff = true; }
79void nlOff( ofstream & os ) { os.nlOnOff = false; }
80
[09687aa]81const char * sepGet( ofstream & os ) { return os.separator; }
82void sepSet( ofstream & os, const char * s ) {
[9ebd778]83 assert( s );
[09687aa]84 strncpy( os.separator, s, sepSize - 1 );
85 os.separator[sepSize - 1] = '\0';
[9ebd778]86} // sepSet
87
[09687aa]88const char * sepGetTuple( ofstream & os ) { return os.tupleSeparator; }
89void sepSetTuple( ofstream & os, const char * s ) {
[9ebd778]90 assert( s );
[09687aa]91 strncpy( os.tupleSeparator, s, sepSize - 1 );
92 os.tupleSeparator[sepSize - 1] = '\0';
[9ebd778]93} // sepSet
94
[09687aa]95int fail( ofstream & os ) {
[8da74119]96 return os.file == 0 || ferror( (FILE *)(os.file) );
[6ba0659]97} // fail
98
[09687aa]99int flush( ofstream & os ) {
100 return fflush( (FILE *)(os.file) );
[6ba0659]101} // flush
102
[09687aa]103void open( ofstream & os, const char * name, const char * mode ) {
[90c3b1c]104 FILE *file = fopen( name, mode );
[93c2e0a]105 #ifdef __CFA_DEBUG__
106 if ( file == 0 ) {
107 fprintf( stderr, IO_MSG "open output file \"%s\", ", name );
108 perror( 0 );
109 exit( EXIT_FAILURE );
110 } // if
111 #endif // __CFA_DEBUG__
[200fcb3]112 (os){ file, true, false, true, false, " ", ", " };
[6ba0659]113} // open
114
[8da74119]115void open( ofstream & os, const char * name ) {
116 open( os, name, "w" );
117} // open
118
[09687aa]119void close( ofstream & os ) {
120 if ( (FILE *)(os.file) == stdout || (FILE *)(os.file) == stderr ) return;
[6ba0659]121
[09687aa]122 if ( fclose( (FILE *)(os.file) ) == EOF ) {
[6ba0659]123 perror( IO_MSG "close output" );
[356189a]124 } // if
[6ba0659]125} // close
126
[91d766d]127ofstream & write( ofstream & os, const char * data, size_t size ) {
[6ba0659]128 if ( fail( os ) ) {
129 fprintf( stderr, "attempt write I/O on failed stream\n" );
130 exit( EXIT_FAILURE );
131 } // if
132
[09687aa]133 if ( fwrite( data, 1, size, (FILE *)(os.file) ) != size ) {
[6ba0659]134 perror( IO_MSG "write" );
135 exit( EXIT_FAILURE );
[839ccbb]136 } // if
[86bd7c1f]137 return os;
[839ccbb]138} // write
[51b73452]139
[09687aa]140int fmt( ofstream & os, const char format[], ... ) {
[5d125e4]141 va_list args;
[829c907]142 va_start( args, format );
[09687aa]143 int len = vfprintf( (FILE *)(os.file), format, args );
[90c3b1c]144 if ( len == EOF ) {
[09687aa]145 if ( ferror( (FILE *)(os.file) ) ) {
[90c3b1c]146 fprintf( stderr, "invalid write\n" );
147 exit( EXIT_FAILURE );
148 } // if
149 } // if
[5d125e4]150 va_end( args );
[b72bad4f]151
[9d362a0]152 setPrt( os, true ); // called in output cascade
[b72bad4f]153 sepReset( os ); // reset separator
[90c3b1c]154 return len;
[829c907]155} // fmt
156
[200fcb3]157static ofstream soutFile = { (FILE *)(&_IO_2_1_stdout_), true, false, true, false, " ", ", " };
[09687aa]158ofstream & sout = soutFile;
[200fcb3]159static ofstream serrFile = { (FILE *)(&_IO_2_1_stderr_), true, false, true, false, " ", ", " };
[09687aa]160ofstream & serr = serrFile;
[51b73452]161
[90c3b1c]162
[6ba0659]163//---------------------------------------
[51b73452]164
[09687aa]165// private
166void ?{}( ifstream & is, void * file ) {
167 is.file = file;
168}
169
170// public
[8da74119]171void ?{}( ifstream & is ) { is.file = 0; }
[51b73452]172
[8da74119]173void ?{}( ifstream & is, const char * name, const char * mode ) {
174 open( is, name, mode );
175}
[09687aa]176void ?{}( ifstream & is, const char * name ) {
[8da74119]177 open( is, name, "r" );
[09687aa]178}
179
180int fail( ifstream & is ) {
[8da74119]181 return is.file == 0 || ferror( (FILE *)(is.file) );
[6ba0659]182} // fail
183
[09687aa]184int eof( ifstream & is ) {
185 return feof( (FILE *)(is.file) );
[6ba0659]186} // eof
187
[8da74119]188void open( ifstream & is, const char * name, const char * mode ) {
189 FILE *file = fopen( name, mode );
[93c2e0a]190 #ifdef __CFA_DEBUG__
191 if ( file == 0 ) {
192 fprintf( stderr, IO_MSG "open input file \"%s\", ", name );
193 perror( 0 );
194 exit( EXIT_FAILURE );
195 } // if
196 #endif // __CFA_DEBUG__
[09687aa]197 is.file = file;
[90c3b1c]198} // open
[6ba0659]199
[8da74119]200void open( ifstream & is, const char * name ) {
201 open( is, name, "r" );
202} // open
203
[09687aa]204void close( ifstream & is ) {
205 if ( (FILE *)(is.file) == stdin ) return;
[90c3b1c]206
[09687aa]207 if ( fclose( (FILE *)(is.file) ) == EOF ) {
[90c3b1c]208 perror( IO_MSG "close input" );
[356189a]209 } // if
[90c3b1c]210} // close
211
[91d766d]212ifstream & read( ifstream & is, char * data, size_t size ) {
[6ba0659]213 if ( fail( is ) ) {
214 fprintf( stderr, "attempt read I/O on failed stream\n" );
215 exit( EXIT_FAILURE );
216 } // if
217
[09687aa]218 if ( fread( data, size, 1, (FILE *)(is.file) ) == 0 ) {
[6ba0659]219 perror( IO_MSG "read" );
220 exit( EXIT_FAILURE );
221 } // if
[86bd7c1f]222 return is;
[6ba0659]223} // read
[356189a]224
[09687aa]225ifstream &ungetc( ifstream & is, char c ) {
[6ba0659]226 if ( fail( is ) ) {
227 fprintf( stderr, "attempt ungetc I/O on failed stream\n" );
228 exit( EXIT_FAILURE );
229 } // if
[51b73452]230
[09687aa]231 if ( ungetc( c, (FILE *)(is.file) ) == EOF ) {
[6ba0659]232 perror( IO_MSG "ungetc" );
233 exit( EXIT_FAILURE );
234 } // if
235 return is;
236} // ungetc
[51b73452]237
[09687aa]238int fmt( ifstream & is, const char format[], ... ) {
[5d125e4]239 va_list args;
[51b73452]240
[829c907]241 va_start( args, format );
[09687aa]242 int len = vfscanf( (FILE *)(is.file), format, args );
[90c3b1c]243 if ( len == EOF ) {
[09687aa]244 if ( ferror( (FILE *)(is.file) ) ) {
[90c3b1c]245 fprintf( stderr, "invalid read\n" );
246 exit( EXIT_FAILURE );
247 } // if
248 } // if
[5d125e4]249 va_end( args );
[90c3b1c]250 return len;
[829c907]251} // fmt
[51b73452]252
253
[6ba0659]254static ifstream sinFile = { (FILE *)(&_IO_2_1_stdin_) };
[09687aa]255ifstream & sin = sinFile;
[86bd7c1f]256
257// Local Variables: //
258// tab-width: 4 //
259// End: //
Note: See TracBrowser for help on using the repository browser.