Changeset dbff8ec for libcfa/src/iostream.cfa
- Timestamp:
- Jul 10, 2024, 3:39:37 AM (9 months ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/iostream.cfa ¶
rbb336a6 rdbff8ec 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Feb 12 09:26:05202413 // Update Count : 196612 // Last Modified On : Mon Jul 8 23:45:06 2024 13 // Update Count : 2018 14 14 // 15 15 … … 772 772 773 773 774 #define FALSE "false" 775 #define TRUE "true" 776 774 777 forall( istype & | basic_istream( istype ) ) { 775 778 istype & ?|?( istype & is, bool & b ) { 776 779 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; 785 789 } // if 786 790 return is; … … 940 944 } // ?|? 941 945 942 istype & ?|?( istype & is, const char fmt[] ) { 946 istype & ?|?( istype & is, const char fmt[] ) { // match text 943 947 if ( eof( is ) ) throwResume ExceptionInst( missing_data ); 944 948 size_t len = strlen( fmt ); … … 946 950 strcpy( fmtstr, fmt ); // copy format and add %n 947 951 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 ); 951 956 return is; 952 957 } // ?|?
Note: See TracChangeset
for help on using the changeset viewer.