source: libcfa/src/iostream.hfa @ 5454d77

Last change on this file since 5454d77 was 94d2544, checked in by Peter A. Buhr <pabuhr@…>, 12 months ago

formatting, create macros OSTYPE_VOID, OSTYPE_VOID_IMPL. ISTYPE_VOID, ISTYPE_VOID_IMPL to create companion void print routine

  • Property mode set to 100644
File size: 21.0 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//
[3c573e9]7// iostream.hfa --
[86bd7c1f]8//
[90c3b1c]9// Author           : Peter A. Buhr
[86bd7c1f]10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[94d2544]12// Last Modified On : Tue Jul 18 10:42:52 2023
13// Update Count     : 438
[86bd7c1f]14//
15
[53a6c2a]16#pragma once
[51b7345]17
[58b6d1b]18#include "iterator.hfa"
[e56cfdb0]19
[3c573e9]20
[8d321f9]21// *********************************** ostream ***********************************
[3c573e9]22
23
[8a97248]24forall( ostype & )
25trait basic_ostream {
[9ebd778]26        // private
[6c5d92f]27        bool sepPrt$( ostype & );                                                       // get separator state (on/off)
28        void sepReset$( ostype & );                                                     // set separator state to default state
29        void sepReset$( ostype &, bool );                                       // set separator and default state
30        const char * sepGetCur$( ostype & );                            // get current separator string
31        void sepSetCur$( ostype &, const char [] );                     // set current separator string
32        bool getNL$( ostype & );                                                        // check newline
33        void setNL$( ostype &, bool );                                          // saw newline
34        bool getANL$( ostype & );                                                       // get auto newline (on/off)
35        bool getPrt$( ostype & );                                                       // get fmt called in output cascade
36        void setPrt$( ostype &, bool );                                         // set fmt called in output cascade
[9ebd778]37        // public
[200fcb3]38        void nlOn( ostype & );                                                          // turn auto-newline state on
39        void nlOff( ostype & );                                                         // turn auto-newline state off
[09687aa]40
[f5d9c37]41        void sep( ostype & );                                                           // turn separator state on
42        void nosep( ostype & );                                                         // turn separator state off
43        bool sepOn( ostype & );                                                         // set default state to on, and return previous state
44        bool sepOff( ostype & );                                                        // set default state to off, and return previous state
[09687aa]45        const char * sepGet( ostype & );                                        // get separator string
[e3fea42]46        void sepSet( ostype &, const char [] );                         // set separator to string (15 character maximum)
[09687aa]47        const char * sepGetTuple( ostype & );                           // get tuple separator string
[e3fea42]48        void sepSetTuple( ostype &, const char [] );            // set tuple separator to string (15 character maximum)
[09687aa]49
[85d8153]50        void ends( ostype & );                                                          // end of output statement
51        int fmt( ostype &, const char format[], ... ) __attribute__(( format(printf, 2, 3) ));
52}; // basic_ostream
[a0bd9a2]53
[8a97248]54forall( ostype & | basic_ostream( ostype ) )
55trait ostream {
[85d8153]56        bool fail( ostype & );                                                          // operation failed?
[00e9be9]57        void clear( ostype & );
58        int flush( ostype & );
[85d8153]59        void open( ostype &, const char name[], const char mode[] );
60        void close( ostype & );
[e3fea42]61        ostype & write( ostype &, const char [], size_t );
[86f384b]62}; // ostream
[90c3b1c]63
[8a97248]64// forall( T )
65// trait writeable {
[fd54fef]66//      forall( ostype & | ostream( ostype ) ) ostype & ?|?( ostype &, T );
[e1780a2]67// }; // writeable
68
[8a97248]69forall( T, ostype & | ostream( ostype ) )
[dc9dd94]70trait writeable {
[09687aa]71        ostype & ?|?( ostype &, T );
[86f384b]72}; // writeable
[51b7345]73
[4e06c1e]74// implement writable for intrinsic types
[51b7345]75
[94d2544]76#define OSTYPE_VOID( T ) void ?|?( ostype &, T )
77#define OSTYPE_VOID_IMPL( T ) \
78        void ?|?( ostype & os, T t ) { \
79                (ostype &)(os | t); ends( os ); \
80        } // ?|?
81
[85d8153]82forall( ostype & | basic_ostream( ostype ) ) {
[93c2e0a]83        ostype & ?|?( ostype &, bool );
[94d2544]84        OSTYPE_VOID( bool );
[1e6e08de]85
[3ce0d440]86        ostype & ?|?( ostype &, char );
[94d2544]87        OSTYPE_VOID( char );
[3ce0d440]88        ostype & ?|?( ostype &, signed char );
[94d2544]89        OSTYPE_VOID( signed char );
[3ce0d440]90        ostype & ?|?( ostype &, unsigned char );
[94d2544]91        OSTYPE_VOID( unsigned char );
[09687aa]92
[3ce0d440]93        ostype & ?|?( ostype &, short int );
[94d2544]94        OSTYPE_VOID( short int );
[3ce0d440]95        ostype & ?|?( ostype &, unsigned short int );
[94d2544]96        OSTYPE_VOID( unsigned short int );
[3ce0d440]97        ostype & ?|?( ostype &, int );
[94d2544]98        OSTYPE_VOID( int );
[3ce0d440]99        ostype & ?|?( ostype &, unsigned int );
[94d2544]100        OSTYPE_VOID( unsigned int );
[3ce0d440]101        ostype & ?|?( ostype &, long int );
[94d2544]102        OSTYPE_VOID( long int );
[3ce0d440]103        ostype & ?|?( ostype &, long long int );
[94d2544]104        OSTYPE_VOID( long long int );
[3ce0d440]105        ostype & ?|?( ostype &, unsigned long int );
[94d2544]106        OSTYPE_VOID( unsigned long int );
[3ce0d440]107        ostype & ?|?( ostype &, unsigned long long int );
[94d2544]108        OSTYPE_VOID( unsigned long long int );
[ef3ac46]109        #if defined( __SIZEOF_INT128__ )
[bd5b443]110        ostype & ?|?( ostype &, int128 );
[94d2544]111        OSTYPE_VOID( int128 );
[bd5b443]112        ostype & ?|?( ostype &, unsigned int128 );
[94d2544]113        OSTYPE_VOID( unsigned int128 );
[ef3ac46]114        #endif // __SIZEOF_INT128__
[09687aa]115
[65240bb]116        ostype & ?|?( ostype &, float );
[94d2544]117        OSTYPE_VOID( float );
[3ce0d440]118        ostype & ?|?( ostype &, double );
[94d2544]119        OSTYPE_VOID( double );
[3ce0d440]120        ostype & ?|?( ostype &, long double );
[94d2544]121        OSTYPE_VOID( long double );
[09687aa]122
[3ce0d440]123        ostype & ?|?( ostype &, float _Complex );
[94d2544]124        OSTYPE_VOID( float _Complex );
[3ce0d440]125        ostype & ?|?( ostype &, double _Complex );
[94d2544]126        OSTYPE_VOID( double _Complex );
[3ce0d440]127        ostype & ?|?( ostype &, long double _Complex );
[94d2544]128        OSTYPE_VOID( long double _Complex );
[09687aa]129
[e3fea42]130        ostype & ?|?( ostype &, const char [] );
[94d2544]131        OSTYPE_VOID( const char [] );
[3ce0d440]132        // ostype & ?|?( ostype &, const char16_t * );
[ef3ac46]133        #if ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 ) // char32_t == wchar_t => ambiguous
[3ce0d440]134        // ostype & ?|?( ostype &, const char32_t * );
[ef3ac46]135        #endif // ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 )
[3ce0d440]136        // ostype & ?|?( ostype &, const wchar_t * );
137        ostype & ?|?( ostype &, const void * );
[94d2544]138        OSTYPE_VOID( const void * );
[3ce0d440]139
140        // manipulators
141        ostype & ?|?( ostype &, ostype & (*)( ostype & ) );
[94d2544]142        OSTYPE_VOID( ostype & (*)( ostype & ) );
[f5d9c37]143
[200fcb3]144        ostype & nl( ostype & );
145        ostype & nonl( ostype & );
[f5d9c37]146        ostype & nlOn( ostype & );
147        ostype & nlOff( ostype & );
148
149        ostype & sepVal( ostype & );
150        ostype & sepTupleVal( ostype & );
[3ce0d440]151        ostype & sep( ostype & );
[f5d9c37]152        ostype & nosep( ostype & );
[3ce0d440]153        ostype & sepOn( ostype & );
154        ostype & sepOff( ostype & );
[85d8153]155} // distribution
156
[c443d1d]157// tuples
[fd54fef]158forall( ostype &, T, Params... | writeable( T, ostype ) | { ostype & ?|?( ostype &, Params ); } ) {
[200fcb3]159        ostype & ?|?( ostype & os, T arg, Params rest );
160        void ?|?( ostype & os, T arg, Params rest );
161} // distribution
[c443d1d]162
[e56cfdb0]163// writes the range [begin, end) to the given stream
[fd54fef]164forall( ostype &, elt_type | writeable( elt_type, ostype ), iterator_type | iterator( iterator_type, elt_type ) ) {
[200fcb3]165        void write( iterator_type begin, iterator_type end, ostype & os );
166        void write_reverse( iterator_type begin, iterator_type end, ostype & os );
167} // distribution
[51b7345]168
[8d321f9]169// *********************************** manipulators ***********************************
[3c573e9]170
[a0bd9a2]171struct _Ostream_Flags {
[dc9dd94]172        unsigned char eng:1;                                                            // engineering notation
173        unsigned char neg:1;                                                            // val is negative
174        unsigned char pc:1;                                                                     // precision specified
175        unsigned char left:1;                                                           // left justify
176        unsigned char nobsdp:1;                                                         // base prefix / decimal point
177        unsigned char sign:1;                                                           // plus / minus sign
178        unsigned char pad0:1;                                                           // zero pad
[a0bd9a2]179};
180
[fd54fef]181forall( T )
[3c573e9]182struct _Ostream_Manip {
183        T val;                                                                                          // polymorphic base-type
[424dfc4]184        int wd, pc;                                                                                     // width, precision: signed for computations
[3c573e9]185        char base;                                                                                      // numeric base / floating-point style
186        union {
187                unsigned char all;
[a0bd9a2]188                _Ostream_Flags flags;
[3c573e9]189        };
190}; // _Ostream_Manip
191
[8d321f9]192// *********************************** integral ***********************************
[3c573e9]193
[61c7239]194// See 6.7.9. 19) The initialization shall occur in initializer list order, each initializer provided for a particular
195// subobject overriding any previously listed initializer for the same subobject; ***all subobjects that are not
196// initialized explicitly shall be initialized implicitly the same as objects that have static storage duration.***
197
[94d2544]198#define INTEGRAL_FMT_DECL( T, CODE ) \
[3c573e9]199static inline { \
[61c7239]200        _Ostream_Manip(T) bin( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'b', { .all : 0 } }; } \
201        _Ostream_Manip(T) oct( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'o', { .all : 0 } }; } \
202        _Ostream_Manip(T) hex( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'x', { .all : 0 } }; } \
[891b827]203        _Ostream_Manip(T) wd( unsigned int w, T val ) { return (_Ostream_Manip(T))@{ val, w, 0, CODE, { .all : 0 } }; } \
[424dfc4]204        _Ostream_Manip(T) wd( unsigned int w, unsigned int pc, T val ) { return (_Ostream_Manip(T))@{ val, w, pc, CODE, { .flags.pc : true } }; } \
[891b827]205        _Ostream_Manip(T) & wd( unsigned int w, _Ostream_Manip(T) & fmt ) { fmt.wd = w; return fmt; } \
[424dfc4]206        _Ostream_Manip(T) & wd( unsigned int w, unsigned int pc, _Ostream_Manip(T) & fmt ) { fmt.wd = w; fmt.pc = pc; fmt.flags.pc = true; return fmt; } \
[3c573e9]207        _Ostream_Manip(T) & left( _Ostream_Manip(T) & fmt ) { fmt.flags.left = true; return fmt; } \
208        _Ostream_Manip(T) & upcase( _Ostream_Manip(T) & fmt ) { if ( fmt.base == 'x' || fmt.base == 'b' ) fmt.base -= 32; /* upper case */ return fmt; } \
209        _Ostream_Manip(T) & nobase( _Ostream_Manip(T) & fmt ) { fmt.flags.nobsdp = true; return fmt; } \
210        _Ostream_Manip(T) & pad0( _Ostream_Manip(T) & fmt ) { fmt.flags.pad0 = true; return fmt; } \
[61c7239]211        _Ostream_Manip(T) sign( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, CODE, { .flags.sign : true } }; } \
[3c573e9]212        _Ostream_Manip(T) & sign( _Ostream_Manip(T) & fmt ) { fmt.flags.sign = true; return fmt; } \
[04396aa]213} /* distribution */ \
[85d8153]214forall( ostype & | basic_ostream( ostype ) ) { \
[3c573e9]215        ostype & ?|?( ostype & os, _Ostream_Manip(T) f ); \
216        void ?|?( ostype & os, _Ostream_Manip(T) f ); \
[61c7239]217} // ?|?
[3c573e9]218
[94d2544]219INTEGRAL_FMT_DECL( signed char, 'd' )
220INTEGRAL_FMT_DECL( unsigned char, 'u' )
221INTEGRAL_FMT_DECL( signed short int, 'd' )
222INTEGRAL_FMT_DECL( unsigned short int, 'u' )
223INTEGRAL_FMT_DECL( signed int, 'd' )
224INTEGRAL_FMT_DECL( unsigned int, 'u' )
225INTEGRAL_FMT_DECL( signed long int, 'd' )
226INTEGRAL_FMT_DECL( unsigned long int, 'u' )
227INTEGRAL_FMT_DECL( signed long long int, 'd' )
228INTEGRAL_FMT_DECL( unsigned long long int, 'u' )
[bd5b443]229#if defined( __SIZEOF_INT128__ )
[94d2544]230INTEGRAL_FMT_DECL( int128, 'd' )
231INTEGRAL_FMT_DECL( unsigned int128, 'u' )
[2b22b5c4]232#endif // __SIZEOF_INT128__
[3c573e9]233
[8d321f9]234// *********************************** floating point ***********************************
[3c573e9]235
236// Default suffix for values with no fraction is "."
[94d2544]237#define FLOATING_POINT_FMT_DECL( T ) \
[3c573e9]238static inline { \
[61c7239]239        _Ostream_Manip(T) hex( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'a', { .all : 0 } }; } \
240        _Ostream_Manip(T) sci( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'e', { .all : 0 } }; } \
[fd4c009]241        _Ostream_Manip(T) eng( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'g', { .flags.eng : true } }; } \
242        _Ostream_Manip(T) wd( unsigned int w, T val ) { return (_Ostream_Manip(T))@{ val, w, 0, 'g', { .all : 0 } }; } \
[424dfc4]243        _Ostream_Manip(T) wd( unsigned int w, unsigned int pc, T val ) { return (_Ostream_Manip(T))@{ val, w, pc, 'f', { .flags.pc : true } }; } \
244        _Ostream_Manip(T) ws( unsigned int w, unsigned int pc, T val ) { return (_Ostream_Manip(T))@{ val, w, pc, 'g', { .flags.pc : true } }; } \
[fd4c009]245        _Ostream_Manip(T) & wd( unsigned int w, _Ostream_Manip(T) & fmt ) { if ( fmt.flags.eng ) fmt.base = 'f'; fmt.wd = w; return fmt; } \
[424dfc4]246        _Ostream_Manip(T) & wd( unsigned int w, unsigned int pc, _Ostream_Manip(T) & fmt ) { if ( fmt.flags.eng ) fmt.base = 'f'; fmt.wd = w; fmt.pc = pc; fmt.flags.pc = true; return fmt; } \
247        _Ostream_Manip(T) & ws( unsigned int w, unsigned int pc, _Ostream_Manip(T) & fmt ) { fmt.wd = w; fmt.pc = pc; fmt.flags.pc = true; return fmt; } \
[3c573e9]248        _Ostream_Manip(T) & left( _Ostream_Manip(T) & fmt ) { fmt.flags.left = true; return fmt; } \
[61c7239]249        _Ostream_Manip(T) upcase( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'G', { .all : 0 } }; } \
[3c573e9]250        _Ostream_Manip(T) & upcase( _Ostream_Manip(T) & fmt ) { fmt.base -= 32; /* upper case */ return fmt; } \
251        _Ostream_Manip(T) & pad0( _Ostream_Manip(T) & fmt ) { fmt.flags.pad0 = true; return fmt; } \
[61c7239]252        _Ostream_Manip(T) sign( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'g', { .flags.sign : true } }; } \
[3c573e9]253        _Ostream_Manip(T) & sign( _Ostream_Manip(T) & fmt ) { fmt.flags.sign = true; return fmt; } \
[61c7239]254        _Ostream_Manip(T) nodp( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'g', { .flags.nobsdp : true } }; } \
[3c573e9]255        _Ostream_Manip(T) & nodp( _Ostream_Manip(T) & fmt ) { fmt.flags.nobsdp = true; return fmt; } \
[fd4c009]256        _Ostream_Manip(T) unit( T val ) { return (_Ostream_Manip(T))@{ val, 1, 0, 'g', { .flags.nobsdp : true } }; } \
257        _Ostream_Manip(T) & unit( _Ostream_Manip(T) & fmt ) { fmt.flags.nobsdp = true; return fmt; } \
[04396aa]258} /* distribution */ \
[85d8153]259forall( ostype & | basic_ostream( ostype ) ) { \
[3c573e9]260        ostype & ?|?( ostype & os, _Ostream_Manip(T) f ); \
261        void ?|?( ostype & os, _Ostream_Manip(T) f ); \
[61c7239]262} // ?|?
[3c573e9]263
[94d2544]264FLOATING_POINT_FMT_DECL( double )
265FLOATING_POINT_FMT_DECL( long double )
[3c573e9]266
[8d321f9]267// *********************************** character ***********************************
[3c573e9]268
269static inline {
[04396aa]270        _Ostream_Manip(char) bin( char c ) { return (_Ostream_Manip(char))@{ c, 1, 0, 'b', { .all : 0 } }; }
271        _Ostream_Manip(char) oct( char c ) { return (_Ostream_Manip(char))@{ c, 1, 0, 'o', { .all : 0 } }; }
272        _Ostream_Manip(char) hex( char c ) { return (_Ostream_Manip(char))@{ c, 1, 0, 'x', { .all : 0 } }; }
273        _Ostream_Manip(char) wd( unsigned int w, char c ) { return (_Ostream_Manip(char))@{ c, w, 0, 'c', { .all : 0 } }; }
[891b827]274        _Ostream_Manip(char) & wd( unsigned int w, _Ostream_Manip(char) & fmt ) { fmt.wd = w; return fmt; }
[3c573e9]275        _Ostream_Manip(char) & left( _Ostream_Manip(char) & fmt ) { fmt.flags.left = true; return fmt; }
276        _Ostream_Manip(char) & upcase( _Ostream_Manip(char) & fmt ) { if ( fmt.base == 'x' || fmt.base == 'b' ) fmt.base -= 32; /* upper case */ return fmt; }
277        _Ostream_Manip(char) & nobase( _Ostream_Manip(char) & fmt ) { fmt.flags.nobsdp = true; return fmt; }
278} // distribution
[85d8153]279forall( ostype & | basic_ostream( ostype ) ) {
[3c573e9]280        ostype & ?|?( ostype & os, _Ostream_Manip(char) f );
281        void ?|?( ostype & os, _Ostream_Manip(char) f );
[61c7239]282} // ?|?
[3c573e9]283
[8d321f9]284// *********************************** C string ***********************************
[3c573e9]285
286static inline {
[e3fea42]287        _Ostream_Manip(const char *) bin( const char s[] ) { return (_Ostream_Manip(const char *))@{ s, 1, 0, 'b', { .all : 0 } }; }
288        _Ostream_Manip(const char *) oct( const char s[] ) { return (_Ostream_Manip(const char *))@{ s, 1, 0, 'o', { .all : 0 } }; }
289        _Ostream_Manip(const char *) hex( const char s[] ) { return (_Ostream_Manip(const char *))@{ s, 1, 0, 'x', { .all : 0 } }; }
290        _Ostream_Manip(const char *) wd( unsigned int w, const char s[] ) { return (_Ostream_Manip(const char *))@{ s, w, 0, 's', { .all : 0 } }; }
[424dfc4]291        _Ostream_Manip(const char *) wd( unsigned int w, unsigned int pc, const char s[] ) { return (_Ostream_Manip(const char *))@{ s, w, pc, 's', { .flags.pc : true } }; }
[891b827]292        _Ostream_Manip(const char *) & wd( unsigned int w, _Ostream_Manip(const char *) & fmt ) { fmt.wd = w; return fmt; }
[424dfc4]293        _Ostream_Manip(const char *) & wd( unsigned int w, unsigned int pc, _Ostream_Manip(const char *) & fmt ) { fmt.wd = w; fmt.pc = pc; fmt.flags.pc = true; return fmt; }
[3c573e9]294        _Ostream_Manip(const char *) & left( _Ostream_Manip(const char *) & fmt ) { fmt.flags.left = true; return fmt; }
295        _Ostream_Manip(const char *) & nobase( _Ostream_Manip(const char *) & fmt ) { fmt.flags.nobsdp = true; return fmt; }
296} // distribution
[85d8153]297forall( ostype & | basic_ostream( ostype ) ) {
[3c573e9]298        ostype & ?|?( ostype & os, _Ostream_Manip(const char *) f );
299        void ?|?( ostype & os, _Ostream_Manip(const char *) f );
[61c7239]300} // ?|?
[3c573e9]301
302
[8d321f9]303// *********************************** istream ***********************************
[3c573e9]304
[51b7345]305
[94d2544]306#define ISTYPE_VOID( T ) void ?|?( istype &, T )
307#define ISTYPE_VOID_IMPL( T ) \
308        void ?|?( istype & is, T & t ) { \
309                (istype &)(is | t); ends( is ); \
310        } // ?|?
311
[8a97248]312forall( istype & )
313trait basic_istream {
[c8371b5]314        // private
315        bool getANL$( istype & );                                                       // get scan newline (on/off)
316        // public
[0efb269]317        void nlOn( istype & );                                                          // read newline
318        void nlOff( istype & );                                                         // scan newline
[e474cf09]319        void ends( istype & os );                                                       // end of output statement
[ef3ac46]320        int fmt( istype &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) ));
321        istype & ungetc( istype &, char );
[00e9be9]322        bool eof( istype & );
[ef3ac46]323}; // basic_istream
324
[8a97248]325forall( istype & | basic_istream( istype ) )
326trait istream {
[ef3ac46]327        bool fail( istype & );
[00e9be9]328        void clear( istype & );
[e3fea42]329        void open( istype & is, const char name[] );
[09687aa]330        void close( istype & is );
[00e9be9]331        istype & read( istype &, char [], size_t );
[86f384b]332}; // istream
[51b7345]333
[8a97248]334forall( T )
335trait readable {
[fd54fef]336        forall( istype & | istream( istype ) ) istype & ?|?( istype &, T );
[86f384b]337}; // readable
[51b7345]338
[ef3ac46]339forall( istype & | basic_istream( istype ) ) {
[93c2e0a]340        istype & ?|?( istype &, bool & );
[94d2544]341        ISTYPE_VOID( bool & );
[3ce0d440]342
343        istype & ?|?( istype &, char & );
[94d2544]344        ISTYPE_VOID( char & );
[3ce0d440]345        istype & ?|?( istype &, signed char & );
[94d2544]346        ISTYPE_VOID( signed char & );
[3ce0d440]347        istype & ?|?( istype &, unsigned char & );
[94d2544]348        ISTYPE_VOID( unsigned char & );
[3ce0d440]349
350        istype & ?|?( istype &, short int & );
[94d2544]351        ISTYPE_VOID( short int & );
[3ce0d440]352        istype & ?|?( istype &, unsigned short int & );
[94d2544]353        ISTYPE_VOID( unsigned short int & );
[3ce0d440]354        istype & ?|?( istype &, int & );
[94d2544]355        ISTYPE_VOID( int & );
[3ce0d440]356        istype & ?|?( istype &, unsigned int & );
[94d2544]357        ISTYPE_VOID( unsigned int & );
[3ce0d440]358        istype & ?|?( istype &, long int & );
[94d2544]359        ISTYPE_VOID( long int & );
[3ce0d440]360        istype & ?|?( istype &, unsigned long int & );
[94d2544]361        ISTYPE_VOID( unsigned long int & );
[21baa40]362        istype & ?|?( istype &, long long int & );
[94d2544]363        ISTYPE_VOID( long long int & );
[3ce0d440]364        istype & ?|?( istype &, unsigned long long int & );
[94d2544]365        ISTYPE_VOID( unsigned long long int & );
[ef3ac46]366        #if defined( __SIZEOF_INT128__ )
[21baa40]367        istype & ?|?( istype &, int128 & );
[94d2544]368        ISTYPE_VOID( int128 & );
[21baa40]369        istype & ?|?( istype &, unsigned int128 & );
[94d2544]370        ISTYPE_VOID( unsigned int128 & );
[ef3ac46]371        #endif // __SIZEOF_INT128__
[3ce0d440]372
373        istype & ?|?( istype &, float & );
[94d2544]374        ISTYPE_VOID( float & );
[3ce0d440]375        istype & ?|?( istype &, double & );
[94d2544]376        ISTYPE_VOID( double & );
[3ce0d440]377        istype & ?|?( istype &, long double & );
[94d2544]378        ISTYPE_VOID( long double & );
[3ce0d440]379
380        istype & ?|?( istype &, float _Complex & );
[94d2544]381        ISTYPE_VOID( float _Complex & );
[3ce0d440]382        istype & ?|?( istype &, double _Complex & );
[94d2544]383        ISTYPE_VOID( double _Complex & );
[3ce0d440]384        istype & ?|?( istype &, long double _Complex & );
[94d2544]385        ISTYPE_VOID( long double _Complex & );
[3ce0d440]386
[e3fea42]387//      istype & ?|?( istype &, const char [] );
[e474cf09]388        istype & ?|?( istype &, char [] );
389        void ?|?( istype &, char [] );
[61c7239]390
[3ce0d440]391        // manipulators
392        istype & ?|?( istype &, istype & (*)( istype & ) );
[94d2544]393        ISTYPE_VOID( istype & (*)( istype & ) );
[200fcb3]394        istype & nl( istype & is );
[3c5dee4]395        istype & nlOn( istype & );
396        istype & nlOff( istype & );
[ef3ac46]397} // distribution
398
[8d321f9]399// *********************************** manipulators ***********************************
[51b7345]400
[3c573e9]401struct _Istream_Cstr {
[61c7239]402        char * s;
403        const char * scanset;
[3c573e9]404        int wd;                                                                                         // width
[61c7239]405        union {
406                unsigned char all;
407                struct {
408                        unsigned char ignore:1;                                         // do not change input argument
409                        unsigned char inex:1;                                           // include/exclude characters in scanset
410                } flags;
411        };
412}; // _Istream_Cstr
413
[04396aa]414static inline {
[e3fea42]415        _Istream_Cstr skip( const char scanset[] ) { return (_Istream_Cstr){ 0p, scanset, -1, { .all : 0 } }; }
[424dfc4]416        _Istream_Cstr skip( unsigned int n ) { return (_Istream_Cstr){ 0p, 0p, n, { .all : 0 } }; }
[e3fea42]417        _Istream_Cstr incl( const char scanset[], char * s ) { return (_Istream_Cstr){ s, scanset, -1, { .flags.inex : false } }; }
418        _Istream_Cstr & incl( const char scanset[], _Istream_Cstr & fmt ) { fmt.scanset = scanset; fmt.flags.inex = false; return fmt; }
419        _Istream_Cstr excl( const char scanset[], char * s ) { return (_Istream_Cstr){ s, scanset, -1, { .flags.inex : true } }; }
420        _Istream_Cstr & excl( const char scanset[], _Istream_Cstr & fmt ) { fmt.scanset = scanset; fmt.flags.inex = true; return fmt; }
[b81fd95]421        _Istream_Cstr ignore( char s[] ) { return (_Istream_Cstr)@{ s, 0p, -1, { .flags.ignore : true } }; }
[04396aa]422        _Istream_Cstr & ignore( _Istream_Cstr & fmt ) { fmt.flags.ignore = true; return fmt; }
[e3fea42]423        _Istream_Cstr wdi( unsigned int w, char s[] ) { return (_Istream_Cstr)@{ s, 0p, w, { .all : 0 } }; }
[dc5072f]424        _Istream_Cstr & wdi( unsigned int w, _Istream_Cstr & fmt ) { fmt.wd = w; return fmt; }
[04396aa]425} // distribution
[ef3ac46]426forall( istype & | basic_istream( istype ) ) {
[e474cf09]427        istype & ?|?( istype & is, _Istream_Cstr f );
428        void ?|?( istype & is, _Istream_Cstr f );
429}
[86a8be5]430
431struct _Istream_Char {
432        bool ignore;                                                                            // do not change input argument
433}; // _Istream_Char
434
[04396aa]435static inline {
[2c60c644]436        _Istream_Char ignore( const char ) { return (_Istream_Char)@{ true }; }
[04396aa]437        _Istream_Char & ignore( _Istream_Char & fmt ) { fmt.ignore = true; return fmt; }
438} // distribution
[ef3ac46]439forall( istype & | basic_istream( istype ) ) {
[e474cf09]440        istype & ?|?( istype & is, _Istream_Char f );
441        void ?|?( istype & is, _Istream_Char f );
442}
[3c573e9]443
[fd54fef]444forall( T & | sized( T ) )
[3c573e9]445struct _Istream_Manip {
446        T & val;                                                                                        // polymorphic base-type
447        int wd;                                                                                         // width
[61c7239]448        bool ignore;                                                                            // do not change input argument
[3c573e9]449}; // _Istream_Manip
450
[94d2544]451#define INPUT_FMT_DECL( T ) \
[04396aa]452static inline { \
453        _Istream_Manip(T) ignore( const T & val ) { return (_Istream_Manip(T))@{ (T &)val, -1, true }; } \
454        _Istream_Manip(T) & ignore( _Istream_Manip(T) & fmt ) { fmt.ignore = true; return fmt; } \
455        _Istream_Manip(T) wdi( unsigned int w, T & val ) { return (_Istream_Manip(T))@{ val, w, false }; } \
[dc5072f]456        _Istream_Manip(T) & wdi( unsigned int w, _Istream_Manip(T) & fmt ) { fmt.wd = w; return fmt; } \
[04396aa]457} /* distribution */ \
[ef3ac46]458forall( istype & | basic_istream( istype ) ) { \
[3c573e9]459        istype & ?|?( istype & is, _Istream_Manip(T) f ); \
[e474cf09]460        void ?|?( istype & is, _Istream_Manip(T) f ); \
[61c7239]461} // ?|?
[3c573e9]462
[94d2544]463INPUT_FMT_DECL( signed char )
464INPUT_FMT_DECL( unsigned char )
465INPUT_FMT_DECL( signed short int )
466INPUT_FMT_DECL( unsigned short int )
467INPUT_FMT_DECL( signed int )
468INPUT_FMT_DECL( unsigned int )
469INPUT_FMT_DECL( signed long int )
470INPUT_FMT_DECL( unsigned long int )
471INPUT_FMT_DECL( signed long long int )
472INPUT_FMT_DECL( unsigned long long int )
473
474INPUT_FMT_DECL( float )
475INPUT_FMT_DECL( double )
476INPUT_FMT_DECL( long double )
477
478INPUT_FMT_DECL( float _Complex )
479INPUT_FMT_DECL( double _Complex )
480INPUT_FMT_DECL( long double _Complex )
[3c573e9]481
482
[8d321f9]483// *********************************** time ***********************************
[3c573e9]484
[10a97ad]485
[200fcb3]486#include <time_t.hfa>                                                                   // Duration (constructors) / Time (constructors)
[10a97ad]487
[fd54fef]488forall( ostype & | ostream( ostype ) ) {
[200fcb3]489        ostype & ?|?( ostype & os, Duration dur );
490        void ?|?( ostype & os, Duration dur );
491        ostype & ?|?( ostype & os, Time time );
492        void ?|?( ostype & os, Time time );
493} // distribution
[10a97ad]494
[86bd7c1f]495// Local Variables: //
496// tab-width: 4 //
497// End: //
Note: See TracBrowser for help on using the repository browser.