@@ -673,20 +673,27 @@ static bool parseMemLimit(const char* line, intx& value, int& bytes_read, char*
673
673
return true ;
674
674
}
675
675
676
- static bool parseEnumValueAsUintx (enum CompileCommand option, const char * line, uintx& value, int & bytes_read, char * errorbuf, const int buf_size) {
677
- if (option == CompileCommand::MemStat) {
678
- if (strncasecmp (line, " collect" , 7 ) == 0 ) {
679
- value = (uintx)MemStatAction::collect;
680
- } else if (strncasecmp (line, " print" , 5 ) == 0 ) {
681
- value = (uintx)MemStatAction::print;
682
- print_final_memstat_report = true ;
683
- } else {
684
- jio_snprintf (errorbuf, buf_size, " MemStat: invalid value expected 'collect' or 'print' (omitting value means 'collect')" );
685
- }
686
- return true ; // handled
676
+ static bool parseMemStat (const char * line, uintx& value, int & bytes_read, char * errorbuf, const int buf_size) {
677
+
678
+ #define IF_ENUM_STRING (S, CMD ) \
679
+ if (strncasecmp (line, S, strlen (S)) == 0 ) { \
680
+ bytes_read += (int )strlen (S); \
681
+ CMD \
682
+ return true ; \
687
683
}
684
+
685
+ IF_ENUM_STRING (" collect" , {
686
+ value = (uintx)MemStatAction::collect;
687
+ });
688
+ IF_ENUM_STRING (" print" , {
689
+ value = (uintx)MemStatAction::print;
690
+ print_final_memstat_report = true ;
691
+ });
692
+ #undef IF_ENUM_STRING
693
+
694
+ jio_snprintf (errorbuf, buf_size, " MemStat: invalid option" );
695
+
688
696
return false ;
689
- #undef HANDLE_VALUE
690
697
}
691
698
692
699
static void scan_value (enum OptionType type, char * line, int & total_bytes_read,
@@ -714,11 +721,13 @@ static void scan_value(enum OptionType type, char* line, int& total_bytes_read,
714
721
}
715
722
} else if (type == OptionType::Uintx) {
716
723
uintx value;
717
- // Is it a named enum?
718
- bool success = parseEnumValueAsUintx (option, line, value, bytes_read, errorbuf, buf_size);
719
- if (!success) {
720
- // Is it a raw number?
721
- success = (sscanf (line, " " UINTX_FORMAT " %n" , &value, &bytes_read) == 1 );
724
+ bool success = false ;
725
+ if (option == CompileCommand::MemStat) {
726
+ // Special parsing for MemStat
727
+ success = parseMemStat (line, value, bytes_read, errorbuf, buf_size);
728
+ } else {
729
+ // parse as raw number
730
+ success = sscanf (line, " " UINTX_FORMAT " %n" , &value, &bytes_read) == 1 ;
722
731
}
723
732
if (success) {
724
733
total_bytes_read += bytes_read;
0 commit comments