From f12bef0c3696f87c55210557fb3b056284e82494 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Fri, 20 Mar 2015 22:03:15 +0100 Subject: o Support for converting from millisecond timestamps to second timestamps. --- apps/sample-timestamp.cpp | 81 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 62 insertions(+), 19 deletions(-) diff --git a/apps/sample-timestamp.cpp b/apps/sample-timestamp.cpp index df4a89e..6672091 100644 --- a/apps/sample-timestamp.cpp +++ b/apps/sample-timestamp.cpp @@ -11,15 +11,44 @@ using namespace trygvis::apps; using namespace trygvis::soil_moisture; namespace po = boost::program_options; +enum class time_resolution { + SECONDS, + MILLISECONDS, +}; + +std::ostream& operator<<(std::ostream& os, time_resolution const& type) { + if (type == time_resolution::SECONDS) { + os << "seconds"; + } else if(type == time_resolution::MILLISECONDS) { + os << "milliseconds"; + } + + return os; +} + +std::istream& operator>>(std::istream& is, time_resolution & type) { + string s; + + is >> s; + + if(s == "seconds") { + type = time_resolution::SECONDS; + } else if(s == "milliseconds") { + type = time_resolution::MILLISECONDS; + } + + return is; +} + class TimestampFixingSampleOutputStream : public SampleOutputStream { public: - TimestampFixingSampleOutputStream(shared_ptr output, KeyDictionary &dict, string timestamp_name, string now_name, time_t start_time) : - timestamp_key(dict.indexOf(timestamp_name)), now_key(dict.indexOf(now_name)), start_time_(start_time), output_(output) { + TimestampFixingSampleOutputStream(shared_ptr output, KeyDictionary &dict, string timestamp_name, string relative_name, time_resolution input_time_resolution, time_t start_time) : + timestamp_key(dict.indexOf(timestamp_name)), relative_key(dict.indexOf(relative_name)), input_time_resolution_(input_time_resolution), start_time_(start_time), output_(output) { } virtual void write(SampleRecord const &sample) override { - o relative_time_o = sample.lexical_at(now_key); + o relative_time_o = sample.lexical_at(relative_key); if (!relative_time_o) { return; @@ -27,26 +56,35 @@ public: long relative_time = relative_time_o.get(); - string new_value = std::to_string(start_time_ + relative_time); + long updated_time; + if (input_time_resolution_ == time_resolution::SECONDS) { + updated_time = start_time_ + relative_time; + } else if (input_time_resolution_ == time_resolution::MILLISECONDS) { + updated_time = start_time_ + relative_time / 1000; + } + + string updated_value = std::to_string(updated_time); - SampleRecord updatedSample(sample); + SampleRecord updated_sample(sample); - updatedSample.set(timestamp_key, new_value); + updated_sample.set(timestamp_key, updated_value); - output_->write(updatedSample); + output_->write(updated_sample); }; private: - const SampleKey* now_key, *timestamp_key; + const SampleKey* relative_key, *timestamp_key; time_t start_time_; + time_resolution input_time_resolution_; shared_ptr output_; }; class sample_timestamp : public app { private: - string input_file, timestamp_name, now_name; - SampleKey* now_key; + string input_file, timestamp_name, relative_name; + time_resolution relative_resolution; + SampleKey* relative_key; public: sample_timestamp() : input_file("") { @@ -56,7 +94,8 @@ public: options ("help", "produce this help message") ("input", po::value(&input_file)->required()) - ("now-name", po::value(&now_name)->default_value("now")) + ("relative-name", po::value(&relative_name)->default_value("relative")) + ("relative-resolution", po::value(&relative_resolution)->default_value(time_resolution::SECONDS)) ("timestamp-name", po::value(×tamp_name)->default_value("timestamp")); } @@ -81,7 +120,7 @@ public: KeyDictionary dict; - now_key = dict.indexOf(now_name); + relative_key = dict.indexOf(relative_name); auto sample_buffer = make_shared(); auto parser = open_sample_input_stream(sample_buffer, dict); @@ -104,24 +143,28 @@ public: SampleRecord sample = *--sample_buffer->samples.end(); - o s = sample.at(now_key); + o s = sample.at(relative_key); if (!s) { - cerr << "Missing key '" + now_name + "'." << endl; + cerr << "Missing key '" + relative_name + "'." << endl; cerr << "keys: " << sample.to_string() << endl; return EXIT_FAILURE; } - long now; + long relative; try { - now = boost::lexical_cast(s.get()); + relative = boost::lexical_cast(s.get()); } catch (const boost::bad_lexical_cast &e) { cerr << "Bad integer value '" + s.get() + "'." << endl; return EXIT_FAILURE; } - time_t start_time = end_time - now; + if (relative_resolution == time_resolution::MILLISECONDS) { + relative /= 1000; + } + + time_t start_time = end_time - relative; cerr << "end_time " << end_time << endl; - cerr << "now " << now << endl; + cerr << "relative " << relative << endl; cerr << "start_time " << start_time << endl; // Restart the reading of the input file and add the adjusted timestamp @@ -134,7 +177,7 @@ public: unique_ptr unique_output_stream = open_sample_output_stream(shared_ptr(&cout, noop_deleter), dict, parser->type()); shared_ptr output_stream{std::move(unique_output_stream)}; - auto p = make_shared(output_stream, dict, timestamp_name, now_name, start_time); + shared_ptr p = make_shared(output_stream, dict, timestamp_name, relative_name, relative_resolution, start_time); parser = open_sample_input_stream(p, dict, parser->type()); int recordCount = 0; -- cgit v1.2.3