From a98325e9d1d69408358b699b19a9f200822bcdfd Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Fri, 3 Dec 2021 11:28:24 +0000 Subject: [PATCH] src/Aircraft/replay-internal.cxx: include file size in tape preview information. --- src/Aircraft/replay-internal.cxx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/Aircraft/replay-internal.cxx b/src/Aircraft/replay-internal.cxx index 5d82f7eb0..0921efdf1 100644 --- a/src/Aircraft/replay-internal.cxx +++ b/src/Aircraft/replay-internal.cxx @@ -38,6 +38,7 @@ #include #include +#include #include @@ -1809,6 +1810,32 @@ bool loadTapeContinuous( return ok; } + +struct NumberCommasHelper : std::numpunct +{ + virtual char do_thousands_sep() const + { + return ','; + } + + virtual std::string do_grouping() const + { + return "\03"; + } +}; + +static std::locale s_comma_locale(std::locale(), new NumberCommasHelper()); + +/* Returns number as string with commas every 3 digits. */ +static std::string numberCommas(size_t n) +{ + std::stringstream buffer; + buffer.imbue(s_comma_locale); + buffer << n; + return buffer.str(); +} + + /** Read a flight recorder tape with given filename from disk. * Copies MetaData's "meta" node into MetaMeta out-param. * Actual data and signal configuration is not read when in "Preview" mode. @@ -1841,6 +1868,9 @@ FGReplayInternal::loadTape( ); return false; } + size_t file_size = filename.sizeInBytes(); + meta_meta.setLongValue("tape-size", file_size); + meta_meta.setStringValue("tape-size-str", numberCommas(file_size)); m_continuous->m_in_config = new SGPropertyNode; int e = loadContinuousHeader(filename.str(), &in, m_continuous->m_in_config); if (e == 0)