source: src/libcfa/iostream.c@ 60401b76

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 60401b76 was 1630f18, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

print signed and unsigned char

  • Property mode set to 100644
File size: 10.2 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//
[a5a71d0]7// iostream.c --
[86bd7c1f]8//
[90c3b1c]9// Author : Peter A. Buhr
[86bd7c1f]10// Created On : Wed May 27 17:56:53 2015
[e24f13a]11// Last Modified By : Peter A. Buhr
[1630f18]12// Last Modified On : Fri Feb 24 21:09:59 2017
13// Update Count : 307
[86bd7c1f]14//
[51b73452]15
[d3b7937]16#include "iostream"
17
[51b73452]18extern "C" {
19#include <stdio.h>
[839ccbb]20#include <string.h> // strlen
[52f85e0]21#include <float.h> // DBL_DIG, LDBL_DIG
[d3b7937]22#include <complex.h> // creal, cimag
[51b73452]23}
24
25forall( dtype ostype | ostream( ostype ) )
[cf16f94]26ostype * ?|?( ostype *os, char c ) {
[90c3b1c]27 prtfmt( os, "%c", c );
[53ba273]28 sepOff( os );
[90c3b1c]29 return os;
30} // ?|?
31
[1630f18]32forall( dtype ostype | ostream( ostype ) )
33ostype * ?|?( ostype *os, signed char c ) {
34 prtfmt( os, "%hhd", c );
35 sepOff( os );
36 return os;
37} // ?|?
38
39forall( dtype ostype | ostream( ostype ) )
40ostype * ?|?( ostype *os, unsigned char c ) {
41 prtfmt( os, "%hhu", c );
42 sepOff( os );
43 return os;
44} // ?|?
45
[90c3b1c]46forall( dtype ostype | ostream( ostype ) )
47ostype * ?|?( ostype *os, short int si ) {
[53ba273]48 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]49 prtfmt( os, "%hd", si );
50 return os;
51} // ?|?
52
53forall( dtype ostype | ostream( ostype ) )
54ostype * ?|?( ostype *os, unsigned short int usi ) {
[53ba273]55 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]56 prtfmt( os, "%hu", usi );
57 return os;
[cf16f94]58} // ?|?
[51b73452]59
60forall( dtype ostype | ostream( ostype ) )
[cf16f94]61ostype * ?|?( ostype *os, int i ) {
[53ba273]62 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]63 prtfmt( os, "%d", i );
64 return os;
[784deab]65} // ?|?
66
67forall( dtype ostype | ostream( ostype ) )
[90c3b1c]68ostype * ?|?( ostype *os, unsigned int ui ) {
[53ba273]69 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]70 prtfmt( os, "%u", ui );
71 return os;
[784deab]72} // ?|?
73
74forall( dtype ostype | ostream( ostype ) )
[90c3b1c]75ostype * ?|?( ostype *os, long int li ) {
[53ba273]76 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]77 prtfmt( os, "%ld", li );
78 return os;
[784deab]79} // ?|?
80
81forall( dtype ostype | ostream( ostype ) )
[90c3b1c]82ostype * ?|?( ostype *os, unsigned long int uli ) {
[53ba273]83 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]84 prtfmt( os, "%lu", uli );
85 return os;
[784deab]86} // ?|?
87
88forall( dtype ostype | ostream( ostype ) )
[90c3b1c]89ostype * ?|?( ostype *os, long long int lli ) {
[53ba273]90 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]91 prtfmt( os, "%lld", lli );
92 return os;
[784deab]93} // ?|?
94
95forall( dtype ostype | ostream( ostype ) )
[90c3b1c]96ostype * ?|?( ostype *os, unsigned long long int ulli ) {
[53ba273]97 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]98 prtfmt( os, "%llu", ulli );
99 return os;
[cf16f94]100} // ?|?
[51b73452]101
[d3b7937]102forall( dtype ostype | ostream( ostype ) )
103ostype * ?|?( ostype *os, float f ) {
[53ba273]104 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]105 prtfmt( os, "%g", f );
106 return os;
[d3b7937]107} // ?|?
108
[51b73452]109forall( dtype ostype | ostream( ostype ) )
[cf16f94]110ostype * ?|?( ostype *os, double d ) {
[53ba273]111 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]112 prtfmt( os, "%.*lg", DBL_DIG, d );
113 return os;
[cf16f94]114} // ?|?
[134b86a]115
116forall( dtype ostype | ostream( ostype ) )
[90c3b1c]117ostype * ?|?( ostype *os, long double ld ) {
[53ba273]118 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]119 prtfmt( os, "%.*Lg", LDBL_DIG, ld );
120 return os;
[cf16f94]121} // ?|?
[51b73452]122
[d3b7937]123forall( dtype ostype | ostream( ostype ) )
[90c3b1c]124ostype * ?|?( ostype *os, float _Complex fc ) {
125 os | crealf( fc );
[53ba273]126 _Bool temp = sepDisable( os ); // disable separators within complex value
127 if ( cimagf( fc ) >= 0 ) os | '+'; // negative value prints '-'
128 os | cimagf( fc ) | 'i';
129 sepReset( os, temp ); // reset separator
[90c3b1c]130 return os;
[d3b7937]131} // ?|?
132
133forall( dtype ostype | ostream( ostype ) )
[90c3b1c]134ostype * ?|?( ostype *os, double _Complex dc ) {
135 os | creal( dc );
[53ba273]136 _Bool temp = sepDisable( os ); // disable separators within complex value
137 if ( cimag( dc ) >= 0 ) os | '+'; // negative value prints '-'
138 os | cimag( dc ) | 'i';
139 sepReset( os, temp ); // reset separator
[90c3b1c]140 return os;
[d3b7937]141} // ?|?
142
143forall( dtype ostype | ostream( ostype ) )
[90c3b1c]144ostype * ?|?( ostype *os, long double _Complex ldc ) {
145 os | creall( ldc );
[53ba273]146 _Bool temp = sepDisable( os ); // disable separators within complex value
147 if ( cimagl( ldc ) >= 0 ) os | '+'; // negative value prints '-'
148 os | cimagl( ldc ) | 'i';
149 sepReset( os, temp ); // reset separator
[90c3b1c]150 return os;
[d3b7937]151} // ?|?
152
[e56cfdb0]153forall( dtype ostype | ostream( ostype ) )
[90c3b1c]154ostype * ?|?( ostype *os, const char *cp ) {
[b63e376]155 enum { Open = 1, Close, OpenClose };
[53ba273]156 static const unsigned char mask[256] = {
[b63e376]157 // opening delimiters
158 ['('] : Open, ['['] : Open, ['{'] : Open,
[e945826]159 ['$'] : Open, [(unsigned char)'£'] : Open, [(unsigned char)'¥'] : Open,
160 [(unsigned char)'¡'] : Open, [(unsigned char)'¿'] : Open, [(unsigned char)'«'] : Open,
[b63e376]161 // closing delimiters
162 [','] : Close, ['.'] : Close, [':'] : Close, [';'] : Close, ['!'] : Close, ['?'] : Close,
163 [')'] : Close, [']'] : Close, ['}'] : Close,
[53ba273]164 ['%'] : Close, [(unsigned char)'¢'] : Close, [(unsigned char)'»'] : Close,
[b63e376]165 // opening-closing delimiters
166 ['\''] : OpenClose, ['`'] : OpenClose, ['"'] : OpenClose,
[e945826]167 [' '] : OpenClose, ['\f'] : OpenClose, ['\n'] : OpenClose, ['\r'] : OpenClose, ['\t'] : OpenClose, ['\v'] : OpenClose, // isspace
[b63e376]168 }; // mask
169
[b72bad4f]170 if ( cp[0] == '\0' ) { sepOff( os ); return os; } // null string => no separator
171
[53ba273]172 // first character IS NOT spacing or closing punctuation => add left separator
173 unsigned char ch = cp[0]; // must make unsigned
174 if ( sepPrt( os ) && mask[ ch ] != Close && mask[ ch ] != OpenClose ) {
[90c3b1c]175 prtfmt( os, "%s", sepGet( os ) );
176 } // if
[b72bad4f]177
178 // if string starts line, must reset to determine open state because separator is off
179 sepReset( os ); // reset separator
180
[b63e376]181 // last character IS spacing or opening punctuation => turn off separator for next item
[b72bad4f]182 unsigned int len = strlen( cp ), posn = len - 1;
[53ba273]183 ch = cp[posn]; // must make unsigned
[b72bad4f]184 if ( sepPrt( os ) && mask[ ch ] != Open && mask[ ch ] != OpenClose ) {
[90c3b1c]185 sepOn( os );
[b72bad4f]186 } else {
187 sepOff( os );
[90c3b1c]188 } // if
189 return write( os, cp, len );
[784deab]190} // ?|?
191
192forall( dtype ostype | ostream( ostype ) )
[90c3b1c]193ostype * ?|?( ostype *os, const void *p ) {
[53ba273]194 if ( sepPrt( os ) ) prtfmt( os, "%s", sepGet( os ) );
[90c3b1c]195 prtfmt( os, "%p", p );
196 return os;
[cf16f94]197} // ?|?
198
199
[a5a71d0]200forall( dtype ostype | ostream( ostype ) )
[4e06c1e]201ostype * ?|?( ostype * os, ostype * (* manip)( ostype * ) ) {
[90c3b1c]202 return manip( os );
203} // ?|?
[cf16f94]204
[a5a71d0]205forall( dtype ostype | ostream( ostype ) )
[cf16f94]206ostype * endl( ostype * os ) {
[90c3b1c]207 os | '\n';
[6ba0659]208 flush( os );
[90c3b1c]209 sepOff( os );
[6ba0659]210 return os;
[cf16f94]211} // endl
[e56cfdb0]212
[a5a71d0]213forall( dtype ostype | ostream( ostype ) )
[90c3b1c]214ostype * sepOn( ostype * os ) {
215 sepOn( os );
216 return os;
217} // sepOn
218
[a5a71d0]219forall( dtype ostype | ostream( ostype ) )
[90c3b1c]220ostype * sepOff( ostype * os ) {
221 sepOff( os );
222 return os;
223} // sepOff
224
[70a06f6]225forall( dtype ostype | ostream( ostype ) )
[53ba273]226ostype * sepEnable( ostype * os ) {
227 sepEnable( os );
228 return os;
229} // sepEnable
230
[70a06f6]231forall( dtype ostype | ostream( ostype ) )
[53ba273]232ostype * sepDisable( ostype * os ) {
233 sepDisable( os );
234 return os;
235} // sepDisable
236
[6ba0659]237//---------------------------------------
238
[4040425]239forall( otype elttype | writeable( elttype ), otype iteratortype | iterator( iteratortype, elttype ), dtype ostype | ostream( ostype ) )
[90c3b1c]240void write( iteratortype begin, iteratortype end, ostype *os ) {
241 void print( elttype i ) { os | i; }
[e56cfdb0]242 for_each( begin, end, print );
[cf16f94]243} // ?|?
[e56cfdb0]244
[4040425]245forall( otype elttype | writeable( elttype ), otype iteratortype | iterator( iteratortype, elttype ), dtype ostype | ostream( ostype ) )
[90c3b1c]246void write_reverse( iteratortype begin, iteratortype end, ostype *os ) {
247 void print( elttype i ) { os | i; }
[e56cfdb0]248 for_each_reverse( begin, end, print );
[cf16f94]249} // ?|?
[e56cfdb0]250
[6ba0659]251//---------------------------------------
[e56cfdb0]252
[51b73452]253forall( dtype istype | istream( istype ) )
[90c3b1c]254istype * ?|?( istype * is, char * c ) {
255 scanfmt( is, "%c", c );
256 return is;
257} // ?|?
258
259forall( dtype istype | istream( istype ) )
260istype * ?|?( istype * is, short int * si ) {
261 scanfmt( is, "%hd", si );
262 return is;
263} // ?|?
264
265forall( dtype istype | istream( istype ) )
266istype * ?|?( istype * is, unsigned short int * usi ) {
267 scanfmt( is, "%hu", usi );
268 return is;
269} // ?|?
270
271forall( dtype istype | istream( istype ) )
272istype * ?|?( istype * is, int * i ) {
273 scanfmt( is, "%d", i );
274 return is;
275} // ?|?
276
277forall( dtype istype | istream( istype ) )
278istype * ?|?( istype * is, unsigned int * ui ) {
279 scanfmt( is, "%u", ui );
280 return is;
281} // ?|?
282
283forall( dtype istype | istream( istype ) )
284istype * ?|?( istype * is, long int * li ) {
285 scanfmt( is, "%ld", li );
286 return is;
[cf16f94]287} // ?|?
[51b73452]288
289forall( dtype istype | istream( istype ) )
[90c3b1c]290istype * ?|?( istype * is, unsigned long int * ulli ) {
291 scanfmt( is, "%lu", ulli );
292 return is;
293} // ?|?
294
295forall( dtype istype | istream( istype ) )
296istype * ?|?( istype * is, long long int * lli ) {
297 scanfmt( is, "%lld", lli );
298 return is;
299} // ?|?
300
301forall( dtype istype | istream( istype ) )
302istype * ?|?( istype * is, unsigned long long int * ulli ) {
303 scanfmt( is, "%llu", ulli );
304 return is;
305} // ?|?
306
307
308forall( dtype istype | istream( istype ) )
309istype * ?|?( istype * is, float * f ) {
310 scanfmt( is, "%f", f );
311 return is;
[cf16f94]312} // ?|?
[86bd7c1f]313
[90c3b1c]314forall( dtype istype | istream( istype ) )
315istype * ?|?( istype * is, double * d ) {
316 scanfmt( is, "%lf", d );
317 return is;
318} // ?|?
319
320forall( dtype istype | istream( istype ) )
321istype * ?|?( istype * is, long double * ld ) {
322 scanfmt( is, "%Lf", ld );
323 return is;
324} // ?|?
325
326
327forall( dtype istype | istream( istype ) )
328istype * ?|?( istype * is, float _Complex * fc ) {
329 float re, im;
330 scanfmt( is, "%g%gi", &re, &im );
331 *fc = re + im * _Complex_I;
332 return is;
333} // ?|?
334
335forall( dtype istype | istream( istype ) )
336istype * ?|?( istype * is, double _Complex * dc ) {
337 double re, im;
338 scanfmt( is, "%lf%lfi", &re, &im );
339 *dc = re + im * _Complex_I;
340 return is;
[cf16f94]341} // ?|?
[51b73452]342
343forall( dtype istype | istream( istype ) )
[90c3b1c]344istype * ?|?( istype * is, long double _Complex * ldc ) {
345 long double re, im;
346 scanfmt( is, "%Lf%Lfi", &re, &im );
347 *ldc = re + im * _Complex_I;
348 return is;
[cf16f94]349} // ?|?
[86bd7c1f]350
[e24f13a]351_Istream_cstrUC cstr( char * str ) { return (_Istream_cstrUC){ str }; }
[90c3b1c]352forall( dtype istype | istream( istype ) )
[53ba273]353istype * ?|?( istype * is, _Istream_cstrUC cstr ) {
354 scanfmt( is, "%s", cstr.s );
[90c3b1c]355 return is;
[53ba273]356} // cstr
[90c3b1c]357
[e24f13a]358_Istream_cstrC cstr( char * str, int size ) { return (_Istream_cstrC){ str, size }; }
[90c3b1c]359forall( dtype istype | istream( istype ) )
[53ba273]360istype * ?|?( istype * is, _Istream_cstrC cstr ) {
[90c3b1c]361 char buf[16];
[53ba273]362 sprintf( buf, "%%%ds", cstr.size );
363 scanfmt( is, buf, cstr.s );
[90c3b1c]364 return is;
[53ba273]365} // cstr
[90c3b1c]366
[86bd7c1f]367// Local Variables: //
368// tab-width: 4 //
369// compile-command: "cfa iostream.c" //
370// End: //
Note: See TracBrowser for help on using the repository browser.