Ignore:
Timestamp:
Sep 2, 2023, 2:57:43 PM (14 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
34c6e1e6
Parents:
686912c
Message:

add reading fixed strings, seperate skip input manipulator, getline checks for delimiter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    r686912c r0f107e4  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Aug 31 11:27:56 2023
    13 // Update Count     : 1545
     12// Last Modified On : Sat Sep  2 14:42:01 2023
     13// Update Count     : 1561
    1414//
    1515
     
    922922        ISTYPE_VOID_IMPL( long double _Complex & )
    923923
    924         // istype & ?|?( istype & is, const char fmt[] ) {
    925         //      fmt( is, fmt, "" );
    926         //      return is;
    927         // } // ?|?
    928 
    929         // istype & ?|?( istype & is, char s[] ) {
    930         //      fmt( is, "%s", s );
    931         //      return is;
    932         // } // ?|?
    933         // ISTYPE_VOID_IMPL( char * )
     924        istype & ?|?( istype & is, const char fmt[] ) {
     925                fmt( is, fmt, "" );
     926                return is;
     927        } // ?|?
     928        ISTYPE_VOID_IMPL( const char * )
    934929
    935930        // manipulators
     
    962957
    963958forall( istype & | basic_istream( istype ) ) {
     959        istype & ?|?( istype & is, _Istream_Cskip f ) {
     960                // printf( "skip %s %d\n", f.scanset, f.wd );
     961                if ( f.scanset ) fmt( is, f.scanset, "" );              // no input arguments
     962                else for ( f.wd ) fmt( is, "%*c" );
     963                return is;
     964        }
     965        ISTYPE_VOID_IMPL( _Istream_Cskip )
     966
    964967        istype & ?|?( istype & is, _Istream_Cstr f ) {
    965                 // skip
    966                 if ( ! f.s ) {
    967                         // printf( "skip %s %d\n", f.scanset, f.wd );
    968                         if ( f.wd == -1 ) fmt( is, f.scanset, "" );     // no input arguments
    969                         else for ( f.wd ) fmt( is, "%*c" );
    970                         return is;
    971                 } // if
    972 
    973968                const char * scanset = f.scanset;
    974                 if ( f.flags.delimit ) scanset = f.delimit;             // getline ?
     969                if ( f.flags.delimiter ) scanset = f.delimiter; // getline ?
    975970
    976971                size_t len = 0;
     
    980975                fmtstr[0] = '%';
    981976                if ( f.flags.ignore ) { fmtstr[1] = '*'; start += 1; }
     977                // no maximum width necessary because text ignored => width is read width
    982978                if ( f.wd != -1 ) { start += sprintf( &fmtstr[start], "%d", f.wd ); }
    983979
     
    10051001                        throw (cstring_length){ &cstring_length_vt };
    10061002
    1007                 if ( f.flags.delimit ) {                                                // getline ?
     1003                if ( f.flags.delimiter ) {                                              // getline ?
    10081004                        if ( len == 0 ) f.s[0] = '\0';                          // empty read => argument unchanged => set empty
    1009                         if ( ! eof( is ) ) fmt( is, "%*c" );            // ignore delimiter
     1005                        if ( ! eof( is ) ) {                                            // ignore delimiter, may not be present because of width
     1006                                char delimiter;
     1007                                fmt( is, "%c", &delimiter );
     1008                                if ( delimiter != f.delimiter[0] ) ungetc( is, delimiter );
     1009                        } // if
    10101010                } //if
    10111011                return is;
Note: See TracChangeset for help on using the changeset viewer.