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