source: libcfa/src/iostream.cfa @ 038a0bd

ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
Last change on this file since 038a0bd was b5f17e1, checked in by Peter A. Buhr <pabuhr@…>, 2 years ago

support locale for digit separator in floating-point numbers

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