From 7c4d46ff4636c4c48cc9d2847d2d247d15bee309 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 28 May 2018 15:46:03 +0200 Subject: Fix localized /showIncludes parsing some more --- build2/cc/compile-rule.cxx | 38 +++++++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/build2/cc/compile-rule.cxx b/build2/cc/compile-rule.cxx index ea07a09..b06b03b 100644 --- a/build2/cc/compile-rule.cxx +++ b/build2/cc/compile-rule.cxx @@ -1391,21 +1391,37 @@ namespace build2 // // ...C1083: : 'd/h.hpp': // + // Plus, it seems the quote character could to be multi-byte. + // size_t p1 (l.find (':', p + 5)); size_t p2 (l.rfind (':')); - // Let's have as many sanity checks as we can think of. - // - if (p1 == string::npos || - p2 == string::npos || - (p2 - p1) < 5 || // At least ": 'x':". - l[p1 + 1] != ' ' || - l[p2 + 1] != ' ') - fail << "unable to parse /showIncludes include error line \"" - << l << '"'; + if (p1 != string::npos && + p2 != string::npos && + (p2 - p1) > 4 && // At least ": 'x':". + l[p1 + 1] == ' ' && + l[p2 + 1] == ' ') + { + p1 += 3; // First character of the path. + p2 -= 1; // One past last character of the path. + + // Skip any non-printable ASCII characters before/after (the mutli- + // byte quote case). + // + auto printable = [] (char c) { return c >= 0x20 && c <= 0x7e; }; + + for (; p1 != p2 && !printable (l[p1]); ++p1) ; + for (; p2 != p1 && !printable (l[p2 - 1]); --p2) ; + + if (p1 != p2) + { + good_error = true; + return string (l, p1 , p2 - p1); + } + } - good_error = true; - return string (l, p1 + 3 , p2 - p1 - 4); + fail << "unable to parse /showIncludes include error line \"" + << l << '"' << endf; } else { -- cgit v1.1