OOPS
oops/base/PostTimer.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #include "oops/base/PostTimer.h"
12 
13 #include <algorithm>
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #include "eckit/config/LocalConfiguration.h"
19 #include "oops/util/abor1_cpp.h"
20 #include "oops/util/DateTime.h"
21 #include "oops/util/Duration.h"
22 #include "oops/util/Logger.h"
23 
24 namespace oops {
25 // -----------------------------------------------------------------------------
27  : options_(), bgn_(), end_(), start_(), finish_() {}
28 // -----------------------------------------------------------------------------
29 PostTimer::PostTimer(const eckit::Configuration & conf)
30  : options_(), bgn_(), end_(), start_(), finish_() {
31  options_.deserialize(conf);
32 }
33 // -----------------------------------------------------------------------------
34 PostTimer::PostTimer(const util::DateTime & start, const util::DateTime & finish,
35  const util::Duration & freq)
36  : options_(), bgn_(), end_(),
37  start_(new util::DateTime(start)), finish_(new util::DateTime(finish)) {
38  // setup config with passed frequency to init the options
39  eckit::LocalConfiguration conf;
40  conf.set("frequency", freq.toString());
41  options_.deserialize(conf);
42 }
43 // -----------------------------------------------------------------------------
44 void PostTimer::initialize(const util::DateTime & bgn, const util::DateTime & end) {
45  // TODO(someone): this can be simplified after weak-constraint subwindow
46  // refactoring (start_ and finish_ can be removed; bgn_ and end_ changed to ptr)
47  util::DateTime start(bgn);
48  if (start_) {
49  start = *start_;
50  }
51  bgn_ = start;
52  util::DateTime finish(end);
53  if (finish_) {
54  finish = *finish_;
55  }
56  end_ = finish;
57  // increase bgn_ value if needed
58  bgn_ += options_.first;
59 }
60 // -----------------------------------------------------------------------------
61 bool PostTimer::itIsTime(const util::DateTime & now) {
62  bool doit = false;
63 
64  const util::Duration & freq = options_.frequency;
65  const std::vector<util::DateTime> & steps = options_.steps;
66 
67  if (now >= bgn_ && now <= end_) {
68  // use at every step, and no prespecified steps?
69  doit = (freq.toSeconds() == 0 && steps.empty());
70  // frequency specified?
71  if (!doit && freq.toSeconds() > 0) {
72  const util::Duration dt = now - bgn_;
73  doit = (dt >= util::Duration(0) && dt % freq == 0);
74  }
75  // steps are prespecified?
76  if (!doit && !steps.empty()) {
77  auto it = find(steps.begin(), steps.end(), now);
78  doit = (it != steps.end());
79  }
80  }
81 
82  Log::trace() << "In PostTimer:itIsTime, time = " << now << ", doit = " << doit << std::endl;
83  return doit;
84 }
85 // -----------------------------------------------------------------------------
86 } // namespace oops
PostTimer()
util::DateTime bgn_
std::unique_ptr< util::DateTime > start_
bool itIsTime(const util::DateTime &)
PostTimerParameters options_
std::unique_ptr< util::DateTime > finish_
util::DateTime end_
void initialize(const util::DateTime &, const util::DateTime &)
oops::Parameter< std::vector< util::DateTime > > steps
specifies at which times to call PostProcessor
oops::Parameter< util::Duration > frequency
frequency of calling the PostProcessor (default = 0 – call at every step)
oops::Parameter< util::Duration > first
constrols delta for the first call of PostProcessor (first call will happen at begin+first)
The namespace for the main oops code.
Definition: TLML95.h:34