source: libcfa/src/iostream.cfa @ 3d2852a

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 3d2852a was 3d2852a, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

more work on manipulators for int128 numbers

  • Property mode set to 100644
File size: 34.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//
[b117e0c]7// iostream.cfa --
[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
[3d2852a]12// Last Modified On : Wed Apr 22 10:50:46 2020
13// Update Count     : 933
[86bd7c1f]14//
[51b7345]15
[58b6d1b]16#include "iostream.hfa"
[d3b7937]17
[51b7345]18extern "C" {
19#include <stdio.h>
[53a6c2a]20#include <stdbool.h>                                                                    // true/false
[e59e663]21#include <stdint.h>                                                                             // UINT64_MAX
[200fcb3]22//#include <string.h>                                                                   // strlen, strcmp
[44574f2]23extern size_t strlen (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
[3c573e9]24extern int strcmp (const char *__s1, const char *__s2) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
25extern char *strcpy (char *__restrict __dest, const char *__restrict __src) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
26extern void *memcpy (void *__restrict __dest, const void *__restrict __src, size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
[52f85e0]27#include <float.h>                                                                              // DBL_DIG, LDBL_DIG
[b2ac656]28#include <math.h>                                                                               // isfinite
[d3b7937]29#include <complex.h>                                                                    // creal, cimag
[3c573e9]30} // extern "C"
[51b7345]31
[7fd71c7]32#include <bitmanip.hfa>                                                                 // fms
33
[61c7239]34
[65240bb]35//*********************************** ostream ***********************************
[61c7239]36
37
[3ce0d440]38forall( dtype ostype | ostream( ostype ) ) {
[17a1b21]39        ostype & ?|?( ostype & os, zero_t ) {
[d1a9ff5]40                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[17a1b21]41                fmt( os, "%d", 0n );
42                return os;
43        } // ?|?
44        void ?|?( ostype & os, zero_t z ) {
[65240bb]45                (ostype &)(os | z); ends( os );
[17a1b21]46        } // ?|?
47
48        ostype & ?|?( ostype & os, one_t ) {
[d1a9ff5]49                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[17a1b21]50                fmt( os, "%d", 1n );
51                return os;
52        } // ?|?
53        void ?|?( ostype & os, one_t o ) {
[65240bb]54                (ostype &)(os | o); ends( os );
[17a1b21]55        } // ?|?
56
[93c2e0a]57        ostype & ?|?( ostype & os, bool b ) {
[d1a9ff5]58                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]59                fmt( os, "%s", b ? "true" : "false" );
60                return os;
61        } // ?|?
[200fcb3]62        void ?|?( ostype & os, bool b ) {
[65240bb]63                (ostype &)(os | b); ends( os );
[200fcb3]64        } // ?|?
[51b7345]65
[200fcb3]66        ostype & ?|?( ostype & os, char c ) {
67                fmt( os, "%c", c );
[d1a9ff5]68                if ( c == '\n' ) $setNL( os, true );
[200fcb3]69                return sepOff( os );
70        } // ?|?
71        void ?|?( ostype & os, char c ) {
[65240bb]72                (ostype &)(os | c); ends( os );
[3ce0d440]73        } // ?|?
74
[200fcb3]75        ostype & ?|?( ostype & os, signed char sc ) {
[d1a9ff5]76                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[200fcb3]77                fmt( os, "%hhd", sc );
[3ce0d440]78                return os;
79        } // ?|?
[200fcb3]80        void ?|?( ostype & os, signed char sc ) {
[65240bb]81                (ostype &)(os | sc); ends( os );
[200fcb3]82        } // ?|?
[3ce0d440]83
[200fcb3]84        ostype & ?|?( ostype & os, unsigned char usc ) {
[d1a9ff5]85                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[200fcb3]86                fmt( os, "%hhu", usc );
[3ce0d440]87                return os;
88        } // ?|?
[200fcb3]89        void ?|?( ostype & os, unsigned char usc ) {
[65240bb]90                (ostype &)(os | usc); ends( os );
[200fcb3]91        } // ?|?
[3ce0d440]92
93        ostype & ?|?( ostype & os, short int si ) {
[d1a9ff5]94                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]95                fmt( os, "%hd", si );
96                return os;
97        } // ?|?
[200fcb3]98        void & ?|?( ostype & os, short int si ) {
[65240bb]99                (ostype &)(os | si); ends( os );
[200fcb3]100        } // ?|?
[3ce0d440]101
102        ostype & ?|?( ostype & os, unsigned short int usi ) {
[d1a9ff5]103                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]104                fmt( os, "%hu", usi );
105                return os;
106        } // ?|?
[200fcb3]107        void & ?|?( ostype & os, unsigned short int usi ) {
[65240bb]108                (ostype &)(os | usi); ends( os );
[200fcb3]109        } // ?|?
[3ce0d440]110
111        ostype & ?|?( ostype & os, int i ) {
[d1a9ff5]112                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]113                fmt( os, "%d", i );
114                return os;
115        } // ?|?
[200fcb3]116        void & ?|?( ostype & os, int i ) {
[65240bb]117                (ostype &)(os | i); ends( os );
[200fcb3]118        } // ?|?
[3ce0d440]119
120        ostype & ?|?( ostype & os, unsigned int ui ) {
[d1a9ff5]121                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]122                fmt( os, "%u", ui );
123                return os;
124        } // ?|?
[200fcb3]125        void & ?|?( ostype & os, unsigned int ui ) {
[65240bb]126                (ostype &)(os | ui); ends( os );
[200fcb3]127        } // ?|?
[3ce0d440]128
129        ostype & ?|?( ostype & os, long int li ) {
[d1a9ff5]130                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]131                fmt( os, "%ld", li );
132                return os;
133        } // ?|?
[200fcb3]134        void & ?|?( ostype & os, long int li ) {
[65240bb]135                (ostype &)(os | li); ends( os );
[200fcb3]136        } // ?|?
[3ce0d440]137
138        ostype & ?|?( ostype & os, unsigned long int uli ) {
[d1a9ff5]139                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]140                fmt( os, "%lu", uli );
141                return os;
142        } // ?|?
[200fcb3]143        void & ?|?( ostype & os, unsigned long int uli ) {
[65240bb]144                (ostype &)(os | uli); ends( os );
[200fcb3]145        } // ?|?
[3ce0d440]146
147        ostype & ?|?( ostype & os, long long int lli ) {
[d1a9ff5]148                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]149                fmt( os, "%lld", lli );
150                return os;
151        } // ?|?
[200fcb3]152        void & ?|?( ostype & os, long long int lli ) {
[65240bb]153                (ostype &)(os | lli); ends( os );
[200fcb3]154        } // ?|?
[3ce0d440]155
156        ostype & ?|?( ostype & os, unsigned long long int ulli ) {
[d1a9ff5]157                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]158                fmt( os, "%llu", ulli );
159                return os;
160        } // ?|?
[200fcb3]161        void & ?|?( ostype & os, unsigned long long int ulli ) {
[65240bb]162                (ostype &)(os | ulli); ends( os );
[200fcb3]163        } // ?|?
[3ce0d440]164
[bd5b443]165#if defined( __SIZEOF_INT128__ )
166        //      UINT64_MAX 18_446_744_073_709_551_615_ULL
167        #define P10_UINT64 10_000_000_000_000_000_000_ULL       // 19 zeroes
168
169        static void base10_128( ostype & os, unsigned int128 val ) {
170                if ( val > UINT64_MAX ) {
171                        base10_128( os, val / P10_UINT64 );                     // recursive
172                        fmt( os, "%.19lu", (uint64_t)(val % P10_UINT64) );
173                } else {
174                        fmt( os, "%lu", (uint64_t)val );
175                } // if
176        } // base10_128
177
178        static void base10_128( ostype & os, int128 val ) {
179                if ( val < 0 ) {
180                        fmt( os, "-" );                                                         // leading negative sign
181                        val = -val;
182                } // if
183                base10_128( os, (unsigned int128)val );                 // print zero/positive value
184        } // base10_128
185
186        ostype & ?|?( ostype & os, int128 llli ) {
[e59e663]187                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[bd5b443]188                base10_128( os, llli );
189                return os;
190        } // ?|?
191        void & ?|?( ostype & os, int128 llli ) {
192                (ostype &)(os | llli); ends( os );
193        } // ?|?
194
195        ostype & ?|?( ostype & os, unsigned int128 ullli ) {
[e59e663]196                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[bd5b443]197                base10_128( os, ullli );
198                return os;
199        } // ?|?
200        void & ?|?( ostype & os, unsigned int128 ullli ) {
201                (ostype &)(os | ullli); ends( os );
202        } // ?|?
203#endif // __SIZEOF_INT128__
204
[e63326b]205        #define PrintWithDP( os, format, val, ... ) \
206                { \
207                        enum { size = 48 }; \
208                        char buf[size]; \
209                        int len = snprintf( buf, size, format, ##__VA_ARGS__, val ); \
210                        fmt( os, "%s", buf ); \
211                        if ( isfinite( val ) ) {                                        /* if number, always print decimal point */ \
212                                for ( int i = 0;; i += 1 ) { \
213                                        if ( i == len ) { fmt( os, "." ); break; } \
214                                        if ( buf[i] == '.' ) break; \
215                                } /* for */ \
216                        } /* if */ \
217                }
[b2ac656]218
[3ce0d440]219        ostype & ?|?( ostype & os, float f ) {
[d1a9ff5]220                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[e63326b]221                PrintWithDP( os, "%g", f );
[3ce0d440]222                return os;
223        } // ?|?
[200fcb3]224        void & ?|?( ostype & os, float f ) {
[65240bb]225                (ostype &)(os | f); ends( os );
[200fcb3]226        } // ?|?
[3ce0d440]227
228        ostype & ?|?( ostype & os, double d ) {
[d1a9ff5]229                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[e63326b]230                PrintWithDP( os, "%.*lg", d, DBL_DIG );
[3ce0d440]231                return os;
232        } // ?|?
[200fcb3]233        void & ?|?( ostype & os, double d ) {
[65240bb]234                (ostype &)(os | d); ends( os );
[200fcb3]235        } // ?|?
[3ce0d440]236
237        ostype & ?|?( ostype & os, long double ld ) {
[d1a9ff5]238                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[e63326b]239                PrintWithDP( os, "%.*Lg", ld, LDBL_DIG );
[3ce0d440]240                return os;
241        } // ?|?
[200fcb3]242        void & ?|?( ostype & os, long double ld ) {
[65240bb]243                (ostype &)(os | ld); ends( os );
[200fcb3]244        } // ?|?
[3ce0d440]245
246        ostype & ?|?( ostype & os, float _Complex fc ) {
[d1a9ff5]247                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[b2ac656]248//              os | crealf( fc ) | nonl;
[3c573e9]249                PrintWithDP( os, "%g", crealf( fc ) );
250                PrintWithDP( os, "%+g", cimagf( fc ) );
[3c5dee4]251                fmt( os, "i" );
[3ce0d440]252                return os;
253        } // ?|?
[200fcb3]254        void & ?|?( ostype & os, float _Complex fc ) {
[65240bb]255                (ostype &)(os | fc); ends( os );
[200fcb3]256        } // ?|?
[3ce0d440]257
258        ostype & ?|?( ostype & os, double _Complex dc ) {
[d1a9ff5]259                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[b2ac656]260//              os | creal( dc ) | nonl;
[3c573e9]261                PrintWithDP( os, "%.*lg", creal( dc ), DBL_DIG );
262                PrintWithDP( os, "%+.*lg", cimag( dc ), DBL_DIG );
[3c5dee4]263                fmt( os, "i" );
[3ce0d440]264                return os;
265        } // ?|?
[200fcb3]266        void & ?|?( ostype & os, double _Complex dc ) {
[65240bb]267                (ostype &)(os | dc); ends( os );
[200fcb3]268        } // ?|?
[3ce0d440]269
270        ostype & ?|?( ostype & os, long double _Complex ldc ) {
[d1a9ff5]271                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[b2ac656]272//              os | creall( ldc ) || nonl;
[3c573e9]273                PrintWithDP( os, "%.*Lg", creall( ldc ), LDBL_DIG );
274                PrintWithDP( os, "%+.*Lg", cimagl( ldc ), LDBL_DIG );
[3c5dee4]275                fmt( os, "i" );
[3ce0d440]276                return os;
277        } // ?|?
[200fcb3]278        void & ?|?( ostype & os, long double _Complex ldc ) {
[65240bb]279                (ostype &)(os | ldc); ends( os );
[200fcb3]280        } // ?|?
[3ce0d440]281
[e3fea42]282        ostype & ?|?( ostype & os, const char str[] ) {
[3ce0d440]283                enum { Open = 1, Close, OpenClose };
284                static const unsigned char mask[256] @= {
285                        // opening delimiters, no space after
286                        ['('] : Open, ['['] : Open, ['{'] : Open,
[ad72c8b]287                        ['='] : Open, ['$'] : Open, [(unsigned char)'£'] : Open, [(unsigned char)'¥'] : Open,
288                        [(unsigned char)'¡'] : Open, [(unsigned char)'¿'] : Open, [(unsigned char)'«'] : Open,
[3ce0d440]289                        // closing delimiters, no space before
290                        [','] : Close, ['.'] : Close, [';'] : Close, ['!'] : Close, ['?'] : Close,
[ad72c8b]291                        ['%'] : Close, [(unsigned char)'¢'] : Close, [(unsigned char)'»'] : Close,
[3ce0d440]292                        [')'] : Close, [']'] : Close, ['}'] : Close,
293                        // opening-closing delimiters, no space before or after
294                        ['\''] : OpenClose, ['`'] : OpenClose, ['"'] : OpenClose, [':'] : OpenClose,
295                        [' '] : OpenClose, ['\f'] : OpenClose, ['\n'] : OpenClose, ['\r'] : OpenClose, ['\t'] : OpenClose, ['\v'] : OpenClose, // isspace
296                }; // mask
297
298          if ( str[0] == '\0' ) { sepOff( os ); return os; } // null string => no separator
299
300                // first character IS NOT spacing or closing punctuation => add left separator
301                unsigned char ch = str[0];                                              // must make unsigned
[d1a9ff5]302                if ( $sepPrt( os ) && mask[ ch ] != Close && mask[ ch ] != OpenClose ) {
303                        fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]304                } // if
305
306                // if string starts line, must reset to determine open state because separator is off
[d1a9ff5]307                $sepReset( os );                                                                // reset separator
[3ce0d440]308
309                // last character IS spacing or opening punctuation => turn off separator for next item
310                size_t len = strlen( str );
311                ch = str[len - 1];                                                              // must make unsigned
[d1a9ff5]312                if ( $sepPrt( os ) && mask[ ch ] != Open && mask[ ch ] != OpenClose ) {
[3ce0d440]313                        sepOn( os );
314                } else {
315                        sepOff( os );
316                } // if
[d1a9ff5]317                if ( ch == '\n' ) $setNL( os, true );                   // check *AFTER* $sepPrt call above as it resets NL flag
[3ce0d440]318                return write( os, str, len );
319        } // ?|?
[e3fea42]320
321        void ?|?( ostype & os, const char str[] ) {
[65240bb]322                (ostype &)(os | str); ends( os );
[200fcb3]323        } // ?|?
[3ce0d440]324
325//      ostype & ?|?( ostype & os, const char16_t * str ) {
[d1a9ff5]326//              if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]327//              fmt( os, "%ls", str );
328//              return os;
329//      } // ?|?
[d3b7937]330
[3ce0d440]331// #if ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 ) // char32_t == wchar_t => ambiguous
332//      ostype & ?|?( ostype & os, const char32_t * str ) {
[d1a9ff5]333//              if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]334//              fmt( os, "%ls", str );
335//              return os;
336//      } // ?|?
337// #endif // ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 )
[d3b7937]338
[3ce0d440]339//      ostype & ?|?( ostype & os, const wchar_t * str ) {
[d1a9ff5]340//              if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]341//              fmt( os, "%ls", str );
342//              return os;
343//      } // ?|?
344
345        ostype & ?|?( ostype & os, const void * p ) {
[d1a9ff5]346                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3ce0d440]347                fmt( os, "%p", p );
348                return os;
349        } // ?|?
[200fcb3]350        void ?|?( ostype & os, const void * p ) {
[65240bb]351                (ostype &)(os | p); ends( os );
[200fcb3]352        } // ?|?
[3ce0d440]353
354        // manipulators
355        ostype & ?|?( ostype & os, ostype & (* manip)( ostype & ) ) {
[9d362a0]356                (ostype &)(manip( os ));
[200fcb3]357                return os;
358        } // ?|?
359        void ?|?( ostype & os, ostype & (* manip)( ostype & ) ) {
[9d362a0]360                (ostype &)(manip( os ));
[d1a9ff5]361                if ( $getPrt( os ) ) ends( os );                                // something printed ?
362                $setPrt( os, false );                                                   // turn off
[3ce0d440]363        } // ?|?
364
365        ostype & sep( ostype & os ) {
[9d362a0]366                return (ostype &)(os | sepGet( os ));
[3ce0d440]367        } // sep
368
369        ostype & sepTuple( ostype & os ) {
[200fcb3]370                return os | sepGetTuple( os );
[3ce0d440]371        } // sepTuple
372
[200fcb3]373        ostype & nl( ostype & os ) {
[9d362a0]374                (ostype &)(os | '\n');
[d1a9ff5]375                $setPrt( os, false );                                                   // turn off
376                $setNL( os, true );
[3ce0d440]377                flush( os );
[200fcb3]378                return sepOff( os );                                                    // prepare for next line
379        } // nl
380
381        ostype & nonl( ostype & os ) {
[d1a9ff5]382                $setPrt( os, false );                                                   // turn off
[3ce0d440]383                return os;
[200fcb3]384        } // nonl
[3ce0d440]385
386        ostype & sepOn( ostype & os ) {
[200fcb3]387                sepOn( os );                                                                    // call void returning
[3ce0d440]388                return os;
389        } // sepOn
390
391        ostype & sepOff( ostype & os ) {
[200fcb3]392                sepOff( os );                                                                   // call void returning
[3ce0d440]393                return os;
394        } // sepOff
[6de9f4a]395
[3ce0d440]396        ostype & sepEnable( ostype & os ) {
[200fcb3]397                sepEnable( os );                                                                // call void returning
[3ce0d440]398                return os;
399        } // sepEnable
[b6dc097]400
[3ce0d440]401        ostype & sepDisable( ostype & os ) {
[200fcb3]402                sepDisable( os );                                                               // call void returning
[3ce0d440]403                return os;
404        } // sepDisable
[cf16f94]405
[200fcb3]406        ostype & nlOn( ostype & os ) {
407                nlOn( os );                                                                             // call void returning
408                return os;
409        } // nlOn
410
411        ostype & nlOff( ostype & os ) {
412                nlOff( os );                                                                    // call void returning
413                return os;
414        } // nlOff
415} // distribution
[cf16f94]416
[c443d1d]417// tuples
[200fcb3]418forall( dtype ostype, otype T, ttype Params | writeable( T, ostype ) | { ostype & ?|?( ostype &, Params ); } ) {
419        ostype & ?|?( ostype & os, T arg, Params rest ) {
[9d362a0]420                (ostype &)(os | arg);                                                   // print first argument
[d1a9ff5]421                $sepSetCur( os, sepGetTuple( os ) );                    // switch to tuple separator
[9d362a0]422                (ostype &)(os | rest);                                                  // print remaining arguments
[d1a9ff5]423                $sepSetCur( os, sepGet( os ) );                                 // switch to regular separator
[200fcb3]424                return os;
425        } // ?|?
426        void ?|?( ostype & os, T arg, Params rest ) {
[65240bb]427                // (ostype &)(?|?( os, arg, rest )); ends( os );
[9d362a0]428                (ostype &)(os | arg);                                                   // print first argument
[d1a9ff5]429                $sepSetCur( os, sepGetTuple( os ) );                    // switch to tuple separator
[9d362a0]430                (ostype &)(os | rest);                                                  // print remaining arguments
[d1a9ff5]431                $sepSetCur( os, sepGet( os ) );                                 // switch to regular separator
[65240bb]432                ends( os );
[200fcb3]433        } // ?|?
434} // distribution
[c443d1d]435
[61c7239]436// writes the range [begin, end) to the given stream
437forall( dtype ostype, otype elt_type | writeable( elt_type, ostype ), otype iterator_type | iterator( iterator_type, elt_type ) ) {
438        void write( iterator_type begin, iterator_type end, ostype & os ) {
439                void print( elt_type i ) { os | i; }
440                for_each( begin, end, print );
441        } // ?|?
442
443        void write_reverse( iterator_type begin, iterator_type end, ostype & os ) {
444                void print( elt_type i ) { os | i; }
445                for_each_reverse( begin, end, print );
446        } // ?|?
447} // distribution
448
[65240bb]449//*********************************** manipulators ***********************************
[3c573e9]450
[65240bb]451//*********************************** integral ***********************************
[3c573e9]452
453static const char * shortbin[] = { "0", "1", "10", "11", "100", "101", "110", "111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111" };
454static const char * longbin[]  = { "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111" };
455
456// Default prefix for non-decimal prints is 0b, 0, 0x.
457#define IntegralFMTImpl( T, CODE, IFMTNP, IFMTP ) \
458forall( dtype ostype | ostream( ostype ) ) { \
459        ostype & ?|?( ostype & os, _Ostream_Manip(T) f ) { \
[d1a9ff5]460                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); \
[3c573e9]461\
462                if ( f.base == 'b' || f.base == 'B' ) {                 /* bespoke binary format */ \
[7fd71c7]463                        int bits = high1( f.val );                                      /* position of most significant bit */ \
464                        if ( bits == 0 ) bits = 1;                                      /* 0 value => force one bit to print */ \
[3c573e9]465                        int spaces = f.wd - bits;                                       /* can be negative */ \
466                        if ( ! f.flags.nobsdp ) { spaces -= 2; }        /* base prefix takes space */ \
467                        /* printf( "%d %d\n", bits, spaces ); */ \
468                        if ( ! f.flags.left ) {                                         /* right justified ? */ \
469                                /* Note, base prefix then zero padding or spacing then prefix. */ \
470                                if ( f.flags.pad0 || f.flags.pc ) { \
471                                        if ( ! f.flags.nobsdp ) { fmt( os, "0%c", f.base ); } \
472                                        if ( f.flags.pc ) spaces = f.pc - bits; \
473                                        if ( spaces > 0 ) fmt( os, "%0*d", spaces, 0 ); /* zero pad */ \
474                                } else { \
475                                        if ( spaces > 0 ) fmt( os, "%*s", spaces, " " ); /* space pad */ \
476                                        if ( ! f.flags.nobsdp ) { fmt( os, "0%c", f.base ); } \
477                                } /* if */ \
478                        } else if ( ! f.flags.nobsdp ) { \
479                                fmt( os, "0%c", f.base ); \
480                        } /* if */ \
481                        int shift = (bits - 1) / 4 * 4; /* floor( bits - 1, 4 ) */ \
482                        typeof( f.val ) temp = f.val; \
483                        fmt( os, "%s", shortbin[(temp >> shift) & 0xf] ); \
484                        for () { \
485                                shift -= 4; \
486                          if ( shift < 0 ) break; \
487                                temp = f.val; \
488                                fmt( os, "%s", longbin[(temp >> shift) & 0xf] ); \
489                        } /* for */ \
490                        if ( f.flags.left && spaces > 0 ) fmt( os, "%*s", spaces, " " ); \
491                        return os; \
492                } /* if  */ \
493\
494                char fmtstr[sizeof(IFMTP)];                                             /* sizeof includes '\0' */ \
495                if ( ! f.flags.pc ) memcpy( &fmtstr, IFMTNP, sizeof(IFMTNP) ); \
496                else memcpy( &fmtstr, IFMTP, sizeof(IFMTP) ); \
497                int star = 4;                                                                   /* position before first '*' */ \
498\
499                /* Insert flags into spaces before '*', from right to left. */ \
500                if ( ! f.flags.nobsdp ) { fmtstr[star] = '#'; star -= 1; } \
501                if ( f.flags.left ) { fmtstr[star] = '-'; star -= 1; } \
502                if ( f.flags.sign && f.base == CODE ) { fmtstr[star] = '+'; star -= 1; } \
503                if ( f.flags.pad0 && ! f.flags.pc ) { fmtstr[star] = '0'; star -= 1; } \
504                fmtstr[star] = '%'; \
505\
506                if ( ! f.flags.pc ) {                                                   /* no precision */ \
507                        fmtstr[sizeof(IFMTNP)-2] = f.base;                      /* sizeof includes '\0' */ \
[bd5b443]508                        /* printf( "%s %c %c\n", &fmtstr[star], f.base, CODE ); */ \
[3c573e9]509                        fmt( os, &fmtstr[star], f.wd, f.val ); \
510                } else {                                                                                /* precision */ \
511                        fmtstr[sizeof(IFMTP)-2] = f.base;                       /* sizeof includes '\0' */ \
[bd5b443]512                        /* printf( "%s %c %c\n", &fmtstr[star], f.base, CODE ); */ \
[3c573e9]513                        fmt( os, &fmtstr[star], f.wd, f.pc, f.val ); \
514                } /* if */ \
515                return os; \
516        } /* ?|? */ \
[65240bb]517        void ?|?( ostype & os, _Ostream_Manip(T) f ) { (ostype &)(os | f); ends( os ); } \
[3c573e9]518} // distribution
519
520IntegralFMTImpl( signed char, 'd', "%    *hh ", "%    *.*hh " )
521IntegralFMTImpl( unsigned char, 'u', "%    *hh ", "%    *.*hh " )
522IntegralFMTImpl( signed short int, 'd', "%    *h ", "%    *.*h " )
523IntegralFMTImpl( unsigned short int, 'u', "%    *h ", "%    *.*h " )
524IntegralFMTImpl( signed int, 'd', "%    * ", "%    *.* " )
525IntegralFMTImpl( unsigned int, 'u', "%    * ", "%    *.* " )
526IntegralFMTImpl( signed long int, 'd', "%    *l ", "%    *.*l " )
527IntegralFMTImpl( unsigned long int, 'u', "%    *l ", "%    *.*l " )
528IntegralFMTImpl( signed long long int, 'd', "%    *ll ", "%    *.*ll " )
529IntegralFMTImpl( unsigned long long int, 'u', "%    *ll ", "%    *.*ll " )
530
[bd5b443]531
532#if defined( __SIZEOF_INT128__ )
533// Default prefix for non-decimal prints is 0b, 0, 0x.
534#define IntegralFMTImpl128( T, SIGNED, CODE, IFMTNP, IFMTP ) \
535forall( dtype ostype | ostream( ostype ) ) \
[852a2f06]536static void base10_128( ostype & os, _Ostream_Manip(T) f ) { \
537        if ( f.val > UINT64_MAX ) { \
538                unsigned long long int lsig = f.val % P10_UINT64; \
539                f.val /= P10_UINT64; /* msig */ \
540                base10_128( os, f ); /* recursion */ \
541                _Ostream_Manip(unsigned long long int) fmt @= { lsig, 0, 19, 'u', { .all : 0 } }; \
542                fmt.flags.nobsdp = true; \
543                /* printf( "fmt1 %c %lld %d\n", fmt.base, fmt.val, fmt.all ); */ \
[bd5b443]544                sepOff( os ); \
[852a2f06]545                (ostype &)(os | fmt); \
[bd5b443]546        } else { \
[852a2f06]547                /* printf( "fmt2 %c %lld %d\n", f.base, (unsigned long long int)f.val, f.all ); */ \
548                _Ostream_Manip(SIGNED long long int) fmt @= { (SIGNED long long int)f.val, f.wd, f.pc, f.base, { .all : f.all } }; \
549                (ostype &)(os | fmt); \
[bd5b443]550        } /* if */ \
[852a2f06]551} /* base10_128 */ \
[bd5b443]552forall( dtype ostype | ostream( ostype ) ) { \
553        ostype & ?|?( ostype & os, _Ostream_Manip(T) f ) { \
[e59e663]554                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); \
[bd5b443]555\
[dd7c6520]556                if ( f.base == 'b' | f.base == 'B' | f.base == 'o' | f.base == 'x' | f.base == 'X' ) { \
[bd5b443]557                        unsigned long long int msig = (unsigned long long int)(f.val >> 64); \
558                        unsigned long long int lsig = (unsigned long long int)(f.val); \
559                        _Ostream_Manip(SIGNED long long int) fmt @= { msig, f.wd, f.pc, f.base, { .all : f.all } }; \
560                        _Ostream_Manip(unsigned long long int) fmt2 @= { lsig, 0, 0, f.base, { .all : 0 } }; \
561                        if ( msig == 0 ) { \
562                                fmt.val = lsig; \
563                                (ostype &)(os | fmt); \
564                        } else { \
565                                fmt2.flags.pad0 = fmt2.flags.nobsdp = true;     \
[dd7c6520]566                                if ( f.base == 'b' | f.base == 'B' ) { \
[7fd71c7]567                                        if ( fmt.flags.pc && fmt.pc > 64 ) fmt.pc -= 64; \
568                                        if ( fmt.flags.left ) { \
569                                                fmt2.wd = fmt.wd; \
570                                                if ( fmt2.wd <= 64 ) { \
571                                                        fmt2.wd = 64; \
572                                                } else { \
573                                                        if ( fmt.pc > 0 ) { \
574                                                                fmt2.wd -= fmt.pc; \
575                                                        } else { \
576                                                                fmt2.wd = fmt.wd - high1( msig ); \
577                                                        } /* if */ \
578                                                        if ( ! fmt.flags.nobsdp ) fmt2.wd -= 2; \
579                                                        if ( fmt2.wd < 0 ) fmt2.wd = 0; \
580                                                        fmt2.flags.left = true; \
581                                                        fmt.wd = 0; \
582                                                } /* if */ \
583                                                printf( "left %d %d %x\n", f.wd, f.pc, f.all ); \
584                                                printf( "left %d %d %x\n", fmt.wd, fmt.pc, fmt.all ); \
585                                        } else { \
586                                                fmt2.wd = 64; \
587                                                if ( fmt.wd > 64 ) fmt.wd -= 64; \
588                                                printf( "left %d %d %x\n", f.wd, f.pc, f.all ); \
589                                                printf( "left %d %d %x\n", fmt.wd, fmt.pc, fmt.all ); \
590                                        } /* if */ \
591                                        fmt2.pc = 64; fmt2.flags.pc = true;     \
592                                        printf( "left %d %d %x\n", fmt2.wd, fmt2.pc, fmt2.all ); \
[bd5b443]593                                        (ostype &)(os | fmt | "" | fmt2); \
594                                } else if ( f.base == 'o' ) { \
[7fd71c7]595                                        if ( fmt.flags.pc && fmt.pc > 21 ) fmt.pc -= 21; \
596                                        if ( fmt.flags.left ) { \
[3d2852a]597                                                fmt.flags.left = false; \
598                                                fmt.wd = 1; \
599                                                fmt.val = (unsigned long long int)fmt.val >> 2; \
600                                                fmt2.wd = 1; \
601                                                fmt2.val = ((msig & 0x3) << 1) + 1; \
602                                                (ostype &)(os | fmt | "" | fmt2); \
603                                                sepOff( os ); \
604                                                fmt2.flags.left = true; \
605                                                fmt2.wd = f.wd - ( ceiling( high1( fmt.val ), 3 ) + 1 ); \
606                                                fmt2.flags.pc = true; fmt2.pc = 21; \
607                                                if ( ! fmt.flags.nobsdp ) { fmt2.wd -= 1; } \
608                                                fmt2.val = lsig & 0x7fffffffffffffff; \
609                                                (ostype &)(os | fmt2); \
[7fd71c7]610                                        } else { \
611                                                fmt.val = (unsigned long long int)fmt.val >> 2; \
612                                                if ( fmt.wd > 21 ) fmt.wd -= 21; \
613                                                if ( ! fmt.flags.nobsdp ) { if ( fmt.pc < fmt.wd ) fmt.wd -= 1; else fmt.pc -= 1; } \
614                                                fmt2.wd = 1; \
615                                                fmt2.val = ((msig & 0x3) << 1) + 1; \
616                                                (ostype &)(os | fmt | "" | fmt2); \
617                                                sepOff( os ); \
618                                                fmt2.wd = 21; \
619                                                fmt2.val = lsig & 0x7fffffffffffffff; \
620                                                (ostype &)(os | fmt2); \
621                                        } /* if */ \
[bd5b443]622                                } else { \
[7fd71c7]623                                        if ( fmt.flags.pc && fmt.pc > 16 ) fmt.pc -= 16; \
624                                        if ( fmt.flags.left ) { \
625                                                fmt2.wd = fmt.wd; \
626                                                if ( fmt2.wd <= 16 ) { \
627                                                        fmt2.wd = 16; \
628                                                } else { \
629                                                        if ( fmt.pc > 0 ) { \
630                                                                fmt2.wd -= fmt.pc; \
631                                                        } else { \
632                                                                fmt2.wd = fmt.wd - ceiling2( high1( msig ), 4 ) / 4; \
633                                                        } /* if */ \
634                                                        if ( ! fmt.flags.nobsdp ) fmt2.wd -= 2; \
635                                                        if ( fmt2.wd < 0 ) fmt2.wd = 0; \
636                                                        fmt2.flags.left = true; \
637                                                        fmt.wd = 0; \
638                                                } /* if */ \
[bd5b443]639                                        } else { \
[852a2f06]640                                                fmt2.wd = 16; \
[7fd71c7]641                                                if ( fmt.wd > 16 ) fmt.wd -= 16; \
[bd5b443]642                                        } /* if */ \
[7fd71c7]643                                        fmt2.pc = 16; fmt2.flags.pc = true; \
[bd5b443]644                                        (ostype &)(os | fmt | "" | fmt2); \
645                                } /* if */ \
646                        } /* if */ \
647                } else { \
[852a2f06]648                        if ( CODE == 'd' ) { \
649                                if ( f.val < 0 )  { fmt( os, "-" ); sepOff( os ); f.val = -f.val; f.flags.sign = false; } \
650                        } /* if */ \
[bd5b443]651                        base10_128( os, f ); \
652                } /* if */ \
653                return os; \
654        } /* ?|? */ \
655        void ?|?( ostype & os, _Ostream_Manip(T) f ) { (ostype &)(os | f); ends( os ); } \
656} // distribution
657
658IntegralFMTImpl128( int128, signed, 'd', "%    *ll ", "%    *.*ll " )
659IntegralFMTImpl128( unsigned int128, unsigned, 'u', "%    *ll ", "%    *.*ll " )
660#endif // __SIZEOF_INT128__
661
[65240bb]662//*********************************** floating point ***********************************
[3c573e9]663
664#define PrintWithDP2( os, format, val, ... ) \
665        { \
666                enum { size = 48 }; \
667                char buf[size]; \
668                int bufbeg = 0, i, len = snprintf( buf, size, format, ##__VA_ARGS__, val ); \
669                if ( isfinite( val ) && (f.base != 'g' || f.pc != 0) ) { /* if number, print decimal point */ \
670                        for ( i = 0; i < len && buf[i] != '.' && buf[i] != 'e' && buf[i] != 'E'; i += 1 ); /* decimal point or scientific ? */ \
671                        if ( i == len && ! f.flags.nobsdp ) { \
672                                if ( ! f.flags.left ) { \
673                                        buf[i] = '.'; buf[i + 1] = '\0'; \
[4f37255]674                                        if ( buf[0] == ' ' ) bufbeg = 1;        /* decimal point within width */ \
[3c573e9]675                                } else { \
676                                        for ( i = 0; i < len && buf[i] != ' '; i += 1 ); /* trailing blank ? */ \
677                                        buf[i] = '.'; \
678                                        if ( i == len ) buf[i + 1] = '\0'; \
679                                } /* if */ \
680                        } /* if */ \
681                } /* if */ \
682                fmt( os, "%s", &buf[bufbeg] ); \
683        }
684
685#define FloatingPointFMTImpl( T, DFMTNP, DFMTP ) \
686forall( dtype ostype | ostream( ostype ) ) { \
687        ostype & ?|?( ostype & os, _Ostream_Manip(T) f ) { \
[d1a9ff5]688                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); \
[3c573e9]689                char fmtstr[sizeof(DFMTP)];                                             /* sizeof includes '\0' */ \
690                if ( ! f.flags.pc ) memcpy( &fmtstr, DFMTNP, sizeof(DFMTNP) ); \
691                else memcpy( &fmtstr, DFMTP, sizeof(DFMTP) ); \
692                int star = 4;                                                                   /* position before first '*' */ \
693\
694                /* Insert flags into spaces before '*', from right to left. */ \
695                if ( f.flags.left ) { fmtstr[star] = '-'; star -= 1; } \
696                if ( f.flags.sign ) { fmtstr[star] = '+'; star -= 1; } \
697                if ( f.flags.pad0 ) { fmtstr[star] = '0'; star -= 1; } \
698                fmtstr[star] = '%'; \
699\
700                if ( ! f.flags.pc ) {                                                   /* no precision */ \
701                        fmtstr[sizeof(DFMTNP)-2] = f.base;                      /* sizeof includes '\0' */ \
702                        /* printf( "%g %d %s\n", f.val, f.wd, &fmtstr[star]); */ \
703                        PrintWithDP2( os, &fmtstr[star], f.val, f.wd ) \
704                } else {                                                                                /* precision */ \
705                        fmtstr[sizeof(DFMTP)-2] = f.base;                       /* sizeof includes '\0' */ \
706                        /* printf( "%g %d %d %s\n", f.val, f.wd, f.pc, &fmtstr[star] ); */ \
707                        PrintWithDP2( os, &fmtstr[star], f.val, f.wd, f.pc ) \
708                } /* if */ \
709                return os; \
710        } /* ?|? */ \
[e3fea42]711\
[65240bb]712        void ?|?( ostype & os, _Ostream_Manip(T) f ) { (ostype &)(os | f); ends( os ); } \
[3c573e9]713} // distribution
714
715FloatingPointFMTImpl( double, "%    * ", "%    *.* " )
716FloatingPointFMTImpl( long double, "%    *L ", "%    *.*L " )
717
[65240bb]718//*********************************** character ***********************************
[3c573e9]719
720forall( dtype ostype | ostream( ostype ) ) {
721        ostype & ?|?( ostype & os, _Ostream_Manip(char) f ) {
[4f37255]722                if ( f.base != 'c' ) {                                                  // bespoke binary/octal/hex format
[3c573e9]723                        _Ostream_Manip(unsigned char) fmtuc @= { f.val, f.wd, f.pc, f.base, {'\0'} };
724                        fmtuc.flags.pc = f.flags.pc;
725                        fmtuc.flags.nobsdp = f.flags.nobsdp;
726//                      os | fmtuc | nonl;
727                        (ostype &)(os | fmtuc);
728                        return os;
729                } // if
730
[d1a9ff5]731                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3c573e9]732
733                #define CFMTNP "% * "
[4f37255]734                char fmtstr[sizeof(CFMTNP)];                                    // sizeof includes '\0'
[3c573e9]735                memcpy( &fmtstr, CFMTNP, sizeof(CFMTNP) );
[4f37255]736                int star = 1;                                                                   // position before first '*'
[3c573e9]737
738                // Insert flags into spaces before '*', from right to left.
739                if ( f.flags.left ) { fmtstr[star] = '-'; star -= 1; }
740                fmtstr[star] = '%';
741
[4f37255]742                fmtstr[sizeof(CFMTNP)-2] = f.base;                              // sizeof includes '\0'
[3c573e9]743                // printf( "%d %s\n", f.wd, &fmtstr[star] );
744                fmt( os, &fmtstr[star], f.wd, f.val );
745                return os;
746        } // ?|?
[e3fea42]747
[65240bb]748        void ?|?( ostype & os, _Ostream_Manip(char) f ) { (ostype &)(os | f); ends( os ); }
[3c573e9]749} // distribution
750
[65240bb]751//*********************************** C string ***********************************
[3c573e9]752
753forall( dtype ostype | ostream( ostype ) ) {
754        ostype & ?|?( ostype & os, _Ostream_Manip(const char *) f ) {
755                if ( ! f.val ) return os;                                               // null pointer ?
756
757                if ( f.base != 's' ) {                                                  // bespoke binary/octal/hex format
758                        _Ostream_Manip(unsigned char) fmtuc @= { 0, f.wd, f.pc, f.base, {'\0'} };
759                        fmtuc.flags.pc = f.flags.pc;
760                        fmtuc.flags.nobsdp = f.flags.nobsdp;
761                        for ( unsigned int i = 0; f.val[i] != '\0'; i += 1 ) {
762                                fmtuc.val = f.val[i];
763//                              os | fmtuc | nonl;
764                                (ostype &)(os | fmtuc);
765                        } // for
766                        return os;
767                } // if
768
[d1a9ff5]769                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
[3c573e9]770
771                #define SFMTNP "% * "
772                #define SFMTP "% *.* "
773                char fmtstr[sizeof(SFMTP)];                                             // sizeof includes '\0'
774                if ( ! f.flags.pc ) memcpy( &fmtstr, SFMTNP, sizeof(SFMTNP) );
775                else memcpy( &fmtstr, SFMTP, sizeof(SFMTP) );
776                int star = 1;                                                                   // position before first '*'
777
778                // Insert flags into spaces before '*', from right to left.
779                if ( f.flags.left ) { fmtstr[star] = '-'; star -= 1; }
780                fmtstr[star] = '%';
781
782                if ( ! f.flags.pc ) {                                                   // no precision
783                        // printf( "%d %s\n", f.wd, &fmtstr[star] );
784                        fmtstr[sizeof(SFMTNP)-2] = f.base;                      // sizeof includes '\0'
785                        fmt( os, &fmtstr[star], f.wd, f.val );
786                } else {                                                                                // precision
787                        fmtstr[sizeof(SFMTP)-2] = f.base;                       // sizeof includes '\0'
788                        // printf( "%d %d %s\n", f.wd, f.pc, &fmtstr[star] );
789                        fmt( os, &fmtstr[star], f.wd, f.pc, f.val );
790                } // if
791                return os;
792        } // ?|?
[e3fea42]793
[65240bb]794        void ?|?( ostype & os, _Ostream_Manip(const char *) f ) { (ostype &)(os | f); ends( os ); }
[3c573e9]795} // distribution
796
797
[65240bb]798//*********************************** istream ***********************************
[3c573e9]799
[e56cfdb0]800
[3ce0d440]801forall( dtype istype | istream( istype ) ) {
[93c2e0a]802        istype & ?|?( istype & is, bool & b ) {
[3ce0d440]803                char val[6];
804                fmt( is, "%5s", val );
805                if ( strcmp( val, "true" ) == 0 ) b = true;
806                else if ( strcmp( val, "false" ) == 0 ) b = false;
807                else {
[93c2e0a]808                        fprintf( stderr, "invalid Boolean constant\n" );
[4f37255]809                        abort();                                                                        // cannot use abort stream
[3ce0d440]810                } // if
811                return is;
812        } // ?|?
813
814        istype & ?|?( istype & is, char & c ) {
[0efb269]815                char temp;
816                for () {
[4f37255]817                        fmt( is, "%c", &temp );                                         // must pass pointer through varg to fmt
[0efb269]818                        // do not overwrite parameter with newline unless appropriate
819                        if ( temp != '\n' || getANL( is ) ) { c = temp; break; }
820                        if ( eof( is ) ) break;
821                } // for
[3ce0d440]822                return is;
823        } // ?|?
824
825        istype & ?|?( istype & is, signed char & sc ) {
[3c573e9]826                fmt( is, "%hhi", &sc );
[3ce0d440]827                return is;
828        } // ?|?
829
830        istype & ?|?( istype & is, unsigned char & usc ) {
[3c573e9]831                fmt( is, "%hhi", &usc );
[3ce0d440]832                return is;
833        } // ?|?
834
835        istype & ?|?( istype & is, short int & si ) {
[3c573e9]836                fmt( is, "%hi", &si );
[3ce0d440]837                return is;
838        } // ?|?
839
840        istype & ?|?( istype & is, unsigned short int & usi ) {
[3c573e9]841                fmt( is, "%hi", &usi );
[3ce0d440]842                return is;
843        } // ?|?
844
845        istype & ?|?( istype & is, int & i ) {
[3c573e9]846                fmt( is, "%i", &i );
[3ce0d440]847                return is;
848        } // ?|?
849
850        istype & ?|?( istype & is, unsigned int & ui ) {
[3c573e9]851                fmt( is, "%i", &ui );
[3ce0d440]852                return is;
853        } // ?|?
854
855        istype & ?|?( istype & is, long int & li ) {
[3c573e9]856                fmt( is, "%li", &li );
[3ce0d440]857                return is;
858        } // ?|?
859
860        istype & ?|?( istype & is, unsigned long int & ulli ) {
[3c573e9]861                fmt( is, "%li", &ulli );
[3ce0d440]862                return is;
863        } // ?|?
864
865        istype & ?|?( istype & is, long long int & lli ) {
[3c573e9]866                fmt( is, "%lli", &lli );
[3ce0d440]867                return is;
868        } // ?|?
869
870        istype & ?|?( istype & is, unsigned long long int & ulli ) {
[3c573e9]871                fmt( is, "%lli", &ulli );
[3ce0d440]872                return is;
873        } // ?|?
874
875
876        istype & ?|?( istype & is, float & f ) {
877                fmt( is, "%f", &f );
878                return is;
879        } // ?|?
880
881        istype & ?|?( istype & is, double & d ) {
882                fmt( is, "%lf", &d );
883                return is;
884        } // ?|?
885
886        istype & ?|?( istype & is, long double & ld ) {
887                fmt( is, "%Lf", &ld );
888                return is;
889        } // ?|?
890
891
892        istype & ?|?( istype & is, float _Complex & fc ) {
893                float re, im;
[3c573e9]894                fmt( is, "%f%fi", &re, &im );
[3ce0d440]895                fc = re + im * _Complex_I;
896                return is;
897        } // ?|?
898
899        istype & ?|?( istype & is, double _Complex & dc ) {
900                double re, im;
901                fmt( is, "%lf%lfi", &re, &im );
902                dc = re + im * _Complex_I;
903                return is;
904        } // ?|?
905
906        istype & ?|?( istype & is, long double _Complex & ldc ) {
907                long double re, im;
908                fmt( is, "%Lf%Lfi", &re, &im );
909                ldc = re + im * _Complex_I;
910                return is;
911        } // ?|?
912
[e3fea42]913        // istype & ?|?( istype & is, const char fmt[] ) {
[dc5072f]914        //      fmt( is, fmt, "" );
915        //      return is;
916        // } // ?|?
[04396aa]917
918        istype & ?|?( istype & is, char * s ) {
919                fmt( is, "%s", s );
920                return is;
921        } // ?|?
922
[3ce0d440]923        // manipulators
924        istype & ?|?( istype & is, istype & (* manip)( istype & ) ) {
925                return manip( is );
926        } // ?|?
927
[200fcb3]928        istype & nl( istype & is ) {
[3c5dee4]929                fmt( is, "%*[^\n]" );                                                   // ignore characters to newline
[3ce0d440]930                return is;
[200fcb3]931        } // nl
[0efb269]932
933        istype & nlOn( istype & is ) {
934                nlOn( is );                                                                             // call void returning
935                return is;
936        } // nlOn
937
938        istype & nlOff( istype & is ) {
939                nlOff( is );                                                                    // call void returning
940                return is;
941        } // nlOff
[3ce0d440]942} // distribution
[44574f2]943
[65240bb]944//*********************************** manipulators ***********************************
[3c573e9]945
946forall( dtype istype | istream( istype ) )
[61c7239]947istype & ?|?( istype & is, _Istream_Cstr f ) {
948        // skip xxx
949        if ( ! f.s ) {
[dc5072f]950                // printf( "skip %s %d\n", f.scanset, f.wd );
[4f37255]951                if ( f.wd == -1 ) fmt( is, f.scanset, "" );             // no input arguments
[dc5072f]952                else for ( f.wd ) fmt( is, "%*c" );
[61c7239]953                return is;
954        } // if
955        size_t len = 0;
956        if ( f.scanset ) len = strlen( f.scanset );
957        char fmtstr[len + 16];
958        int start = 1;
959        fmtstr[0] = '%';
960        if ( f.flags.ignore ) { fmtstr[1] = '*'; start += 1; }
961        if ( f.wd != -1 ) { start += sprintf( &fmtstr[start], "%d", f.wd ); }
962        // cstr %s, %*s, %ws, %*ws
963        if ( ! f.scanset ) {
964                fmtstr[start] = 's'; fmtstr[start + 1] = '\0';
965                // printf( "cstr %s\n", fmtstr );
966                fmt( is, fmtstr, f.s );
967                return is;
968        } // if
969        // incl %[xxx],  %*[xxx],  %w[xxx],  %*w[xxx]
970        // excl %[^xxx], %*[^xxx], %w[^xxx], %*w[^xxx]
971        fmtstr[start] = '['; start += 1;
972        if ( f.flags.inex ) { fmtstr[start] = '^'; start += 1; }
973        strcpy( &fmtstr[start], f.scanset );                            // copy includes '\0'
974        len += start;
975        fmtstr[len] = ']'; fmtstr[len + 1] = '\0';
976        // printf( "incl/excl %s\n", fmtstr );
977        fmt( is, fmtstr, f.s );
[3c573e9]978        return is;
[61c7239]979} // ?|?
[3c573e9]980
[86a8be5]981forall( dtype istype | istream( istype ) )
982istype & ?|?( istype & is, _Istream_Char f ) {
983        fmt( is, "%*c" );                                                                       // argument variable unused
984        return is;
985} // ?|?
986
[3c573e9]987#define InputFMTImpl( T, CODE ) \
988forall( dtype istype | istream( istype ) ) \
989istype & ?|?( istype & is, _Istream_Manip(T) f ) { \
990        enum { size = 16 }; \
991        char fmtstr[size]; \
[86a8be5]992        if ( f.wd == -1 ) { \
[3c573e9]993                snprintf( fmtstr, size, "%%%s%s", f.ignore ? "*" : "", CODE ); \
994        } else { \
995                snprintf( fmtstr, size, "%%%s%d%s", f.ignore ? "*" : "", f.wd, CODE ); \
996        } /* if */ \
997        /* printf( "%d %s %p\n", f.wd, fmtstr, &f.val ); */ \
998        fmt( is, fmtstr, &f.val ); \
999        return is; \
[61c7239]1000} // ?|?
[3c573e9]1001
1002InputFMTImpl( signed char, "hhi" )
1003InputFMTImpl( unsigned char, "hhi" )
1004InputFMTImpl( signed short int, "hi" )
1005InputFMTImpl( unsigned short int, "hi" )
1006InputFMTImpl( signed int, "i" )
1007InputFMTImpl( unsigned int, "i" )
1008InputFMTImpl( signed long int, "li" )
1009InputFMTImpl( unsigned long int, "li" )
1010InputFMTImpl( signed long long int, "lli" )
1011InputFMTImpl( unsigned long long int, "lli" )
1012
1013InputFMTImpl( float, "f" )
1014InputFMTImpl( double, "lf" )
1015InputFMTImpl( long double, "Lf" )
1016
[61c7239]1017forall( dtype istype | istream( istype ) )
1018istype & ?|?( istype & is, _Istream_Manip(float _Complex) fc ) {
1019        float re, im;
1020        _Istream_Manip(float) fmtuc @= { re, fc.wd, fc.ignore };
1021        is | fmtuc;
1022        &fmtuc.val = &im;
1023        is | fmtuc;
1024        if ( ! fc.ignore ) fc.val = re + im * _Complex_I;       // re/im are uninitialized for ignore
1025        return is;
1026} // ?|?
1027
1028forall( dtype istype | istream( istype ) )
1029istype & ?|?( istype & is, _Istream_Manip(double _Complex) dc ) {
1030        double re, im;
1031        _Istream_Manip(double) fmtuc @= { re, dc.wd, dc.ignore };
1032        is | fmtuc;
1033        &fmtuc.val = &im;
1034        is | fmtuc;
1035        if ( ! dc.ignore ) dc.val = re + im * _Complex_I;       // re/im are uninitialized for ignore
1036        return is;
1037} // ?|?
1038
1039forall( dtype istype | istream( istype ) )
1040istype & ?|?( istype & is, _Istream_Manip(long double _Complex) ldc ) {
1041        long double re, im;
1042        _Istream_Manip(long double) fmtuc @= { re, ldc.wd, ldc.ignore };
1043        is | fmtuc;
1044        &fmtuc.val = &im;
1045        is | fmtuc;
1046        if ( ! ldc.ignore ) ldc.val = re + im * _Complex_I;     // re/im are uninitialized for ignore
1047        return is;
1048} // ?|?
[3c573e9]1049
[86bd7c1f]1050// Local Variables: //
1051// tab-width: 4 //
[084520f]1052// compile-command: "cfa iostream.cfa" //
[86bd7c1f]1053// End: //
Note: See TracBrowser for help on using the repository browser.