Ignore:
Timestamp:
Jul 10, 2024, 3:39:37 AM (9 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
725f777f
Parents:
bb336a6 (diff), f3811df (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified libcfa/src/iostream.cfa

    rbb336a6 rdbff8ec  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Feb 12 09:26:05 2024
    13 // Update Count     : 1966
     12// Last Modified On : Mon Jul  8 23:45:06 2024
     13// Update Count     : 2018
    1414//
    1515
     
    772772
    773773
     774#define FALSE "false"
     775#define TRUE "true"
     776
    774777forall( istype & | basic_istream( istype ) ) {
    775778        istype & ?|?( istype & is, bool & b ) {
    776779                if ( eof( is ) ) throwResume ExceptionInst( missing_data );
    777                 char val[6];
    778                 int args = fmt( is, "%5s", val );
    779                 if ( ! eof( is ) && args != 1 ) throwResume ExceptionInst( missing_data );
    780                 if ( strcmp( val, "true" ) == 0 ) b = true;
    781                 else if ( strcmp( val, "false" ) == 0 ) b = false;
    782                 else {
    783                         fprintf( stderr, "invalid Boolean constant\n" );
    784                         abort();                                                                        // cannot use abort stream
     780                int len = -1;                                                                   // len not set if no match
     781                // Optional leading whitespace at start of strings.
     782                fmt( is, " " FALSE "%n", &len );                                // try false
     783                if ( len != sizeof( FALSE ) - 1 ) {                             // remove null terminate
     784                        fmt( is, " " TRUE "%n", &len );                         // try true
     785                        if ( len != sizeof( TRUE ) - 1 ) throwResume ExceptionInst( missing_data );
     786                        b = true;
     787                } else {
     788                        b = false;
    785789                } // if
    786790                return is;
     
    940944        } // ?|?
    941945
    942         istype & ?|?( istype & is, const char fmt[] ) {
     946        istype & ?|?( istype & is, const char fmt[] ) {         // match text
    943947                if ( eof( is ) ) throwResume ExceptionInst( missing_data );
    944948                size_t len = strlen( fmt );
     
    946950                strcpy( fmtstr, fmt );                                                  // copy format and add %n
    947951                strcpy( &fmtstr[len], "%n" );
    948                 int len2 = -1;
    949                 fmt( is, fmtstr, &len2 );
    950                 if ( ! eof( is ) && len2 == -1 ) throwResume ExceptionInst( missing_data );
     952                len = -1;
     953                // scanf cursor does not move if no match
     954                fmt( is, fmtstr, &len );
     955                if ( ! eof( is ) && len == -1 ) throwResume ExceptionInst( missing_data );
    951956                return is;
    952957        } // ?|?
Note: See TracChangeset for help on using the changeset viewer.