aboutsummaryrefslogtreecommitdiff
path: root/libbutl/utility.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-05-10 23:19:39 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-05-10 23:22:28 +0300
commit3a623370a5b4069eaa34008f3b3c1ecd3b40218c (patch)
tree661237e06e84f7aa76ea2f949f9b01424fc0071e /libbutl/utility.cxx
parent166c3167bc608a63e2312930a9b722f8d697d2c5 (diff)
Fix operator<<(ostream, exception) to strip some more junk
Diffstat (limited to 'libbutl/utility.cxx')
-rw-r--r--libbutl/utility.cxx21
1 files changed, 17 insertions, 4 deletions
diff --git a/libbutl/utility.cxx b/libbutl/utility.cxx
index 4645b68..3606972 100644
--- a/libbutl/utility.cxx
+++ b/libbutl/utility.cxx
@@ -167,12 +167,25 @@ namespace std
// Strip the suffix for system_error thrown by
// throw_system_error(system_code) on Windows. For example for the
// ERROR_INVALID_DATA error code the original description will be
- // 'Invalid data. : Success' for MinGW libstdc++ and
- // 'Invalid data. : Success.' for msvcrt.
+ // 'Invalid data. : Success' or 'Invalid data. : No error' for MinGW
+ // libstdc++ and 'Invalid data. : Success.' or ". : The operation completed
+ // successfully." for msvcrt.
//
+ // Check if the string ends with the specified suffix and return its
+ // length if that's the case. So can be used as bool.
+ //
+ auto suffix = [s, n] (const char* v) -> size_t
+ {
+ size_t nv (string::traits_type::length (v));
+ return string::traits_type::compare (s + n - nv, v, nv) == 0 ? nv : 0;
+ };
+
+ size_t ns;
if (n >= 11 &&
- string::traits_type::compare (s + n - 11, ". : Success", 11) == 0)
- n -= 11;
+ ((ns = suffix (". : Success")) ||
+ (ns = suffix (". : No error")) ||
+ (ns = suffix (". : The operation completed successfully"))))
+ n -= ns;
// Lower-case the first letter if the beginning looks like a word (the
// second character is the lower-case letter or space).