DataSelector.h
1 /*
2 
3 MIT License
4 
5 Copyright (c) 2017 FMI Open Development / Markus Peura, first.last@fmi.fi
6 
7 Permission is hereby granted, free of charge, to any person obtaining a copy
8 of this software and associated documentation files (the "Software"), to deal
9 in the Software without restriction, including without limitation the rights
10 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 copies of the Software, and to permit persons to whom the Software is
12 furnished to do so, subject to the following conditions:
13 
14 The above copyright notice and this permission notice shall be included in all
15 copies or substantial portions of the Software.
16 
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 SOFTWARE.
24 
25  */
26 /*
27 Part of Rack development has been done in the BALTRAD projects part-financed
28 by the European Union (European Regional Development Fund and European
29 Neighbourhood Partnership Instrument, Baltic Sea Region Programme 2007-2013)
30  */
31 
32 #ifndef RACK_DATASELECTOR
33 #define RACK_DATASELECTOR
34 
35 #include <set>
36 #include <list>
37 #include <map>
38 #include <stdexcept>
39 
40 #include <drain/RegExp.h>
41 #include <drain/Sprinter.h>
42 #include <drain/Type.h>
43 #include <drain/util/BeanLike.h>
44 #include <drain/util/Range.h>
45 #include <drain/util/ReferenceMap.h>
46 #include <drain/util/StringMatcherList.h>
47 //#include <drain/util/Variable.h>
48 
49 #include "ODIM.h"
50 #include "ODIMPathTools.h"
51 #include "ODIMPathMatcher.h"
52 #include "PolarODIM.h" // elangle
53 
54 
55 namespace rack {
56 
57 
58 struct DataOrder { //: public drain::BeanLike {
59 
60  enum Crit {DATA, ELANGLE, TIME}; // ALTITUDE
61  enum Oper {MIN, MAX};
62 
63  const char separator = ':';
64 
66  CritFlagger criterion;
67 
69  OperFlagger operation;
70 
71  template<typename ... TT>
72  void set(Crit crit, const TT &... args) {
73  criterion = crit;
74  set(args...);
75  };
76 
77  template<typename ... TT>
78  void set(Oper oper, const TT &... args) {
79  operation = oper;
80  set(args...);
81  };
82 
84  inline
85  void set(const std::string s) {
86  std::string s1, s2;
87  drain::StringTools::split2(s, s1, s2, separator);
88  criterion.set(s1);
89  operation.set(s2);
90  set();
91  };
92 
93  void set(){
94  str = criterion.str() + separator + operation.str();
95  }
96 
97  std::string str;
98 
99 };
100 
101 
102 inline
103 std::ostream & operator<<(std::ostream & ostr, const DataOrder & order){
104  ostr << order.str;
105  return ostr;
106 }
107 
109  // QuantitySelector,
112 class DataSelector: public drain::BeanLike {
113 public:
114 
115  friend class drain::ReferenceMap;
116 
118  enum Prf {SINGLE=1, DOUBLE=2, ANY=3};
119 
120  // TODO: string => ODIMPath
121  DataSelector(const std::string & path, const std::string & quantity,
122  unsigned int count = 1000, drain::Range<double> elangle = {-90.0, 90.0},
123  DataSelector::Prf prf=Prf::ANY //int dualPRF = 0,
124  //drain::Range<int> timespan={0,0}
125  );
126  // double elangleMin = -90.0, double elangleMax = 90.0);
127 
128  DataSelector(const std::string & parameters = "");
129 
131  // DataSelector(ODIMPathElem::group_t e, ODIMPathElem::group_t e2=ODIMPathElem::ROOT, ODIMPathElem::group_t e3=ODIMPathElem::ROOT);
132 
133  template<typename ... T>
134  DataSelector(const ODIMPathElem & elem, const T &... args): BeanLike(__FUNCTION__){ //, orderFlags(orderDict,':') {
135  init();
136  //pathMatcher.setElems(elem, rest...);
137  pathMatcher.set(elem, args...);
138  updateBean();
139  }
140 
141  // Either this or previous is unneeded?
142  template<typename ... T>
143  DataSelector(ODIMPathElem::group_t e, const T &... args): BeanLike(__FUNCTION__){ // , orderFlags(orderDict,':') {
144  init();
145  //pathMatcher.setElems(e, rest...);
146  pathMatcher.set(e, args...);
147  updateBean();
148  }
149 
150 
151  DataSelector(const DataSelector & selector);
152 
153  virtual ~DataSelector();
154 
155 
157  // * - \c index - integer value, only changing the \c index member. ???
167  // Experimental. Raise to beanlike?
169 
174  inline
175  bool consumeParameters(std::string & args){
176  if (args.empty()){
177  return false;
178  }
179  else {
180  setParameters(args);
181  args.clear();
182  return true;
183  }
184  }
185 
186  template<typename ... TT>
187  inline
188  void setPathMatcher(TT... args){
189  pathMatcher.set(args...);
190  }
191 
192  inline
193  const ODIMPathMatcher & getPathMatcher() const {
194  return pathMatcher;
195  }
196 
198  inline
200  return pathMatcher.trimHead(true);
201  }
202 
204  void setQuantities(const std::string & s); // , const std::string & separators = ","); // todo: rename (here only) quantities?
205 
206  void setQuantityRegExp(const std::string & s); // todo: rename (here only) quantities?
207 
208  inline
209  bool quantityIsSet() const {
210  return quantitySelector.isSet(); // || qualitySelector.isSet();
211  }
212 
214 
218  inline
219  const std::string & getQuantity() const {
220  return quantities;
221  }
222 
223  inline
224  const drain::KeySelector & getQuantitySelector() const {
225  return quantitySelector;
226  }
227 
228  /*
229  inline
230  const drain::KeySelector & getQualitySelector() const {
231  return qualitySelector;
232  }
233  */
234 
235  inline
236  void setMaxCount(unsigned int i){
237  count = i;
238  }
239 
240  inline
241  unsigned int getMaxCount() const {
242  return count;
243  }
244 
245 
246  inline
247  void setPrf(const std::string & s){
248  this->prf = s;
249  this->prfSelector.set(s);
250  }
251 
252  inline
253  void setPrf(Prf prf){
254  this->prfSelector.set(prf);
255  this->prf = this->prfSelector.str();
256  //this->updateBean();
257  }
258 
259  template<typename ... TT>
260  inline
261  void setOrder(const TT &... args) {
262  this->order.set(args...);
263  }
264 
265  inline
266  const DataOrder & getOrder() const {
267  return order;
268  }
269 
270 
272 
275  // void selectPaths(const Hi5Tree & src, std::list<ODIMPath> & pathContainer) const;
276 
277 
278 
280 
283  void reset(); // bool flexible = true "inclusive"
284 
285 
287  // TODO: perhaps semantics unclear. Consider separating to updateParameters/ deriveImplicitParameters etc.
298 
318  void getPaths(const Hi5Tree & src, std::list<ODIMPath> & pathContainer) const;
319 
320 
322 
327  bool getPath(const Hi5Tree & src, ODIMPath & path) const;
328 
329 
330 
333 
335  bool getLastPath(const Hi5Tree & src, ODIMPath & path, ODIMPathElem::group_t group = ODIMPathElem::DATA ) const;
336 
338  bool getNextPath(const Hi5Tree & src, ODIMPath & path, ODIMPathElem::group_t group = ODIMPathElem::DATA ) const;
339 
340 
341 
342 
344 
352  static
353  void swapData(Hi5Tree & src,const ODIMPathElem &srcElem, Hi5Tree & dst);
354 
356  static
357  void swapData(Hi5Tree & srcGroup, Hi5Tree & dst, ODIMPathElem::group_t groupType);
358 
359  // TODO add filter, allowing ODIMPathElem::group_t == QUALITY
360  static
361  void getTimeMap(const Hi5Tree & srcRoot, ODIMPathElemMap & m);
362 
364 
369 
370 protected:
371 
373 
377  virtual
378  void updateBean() const override;
379 
380 
382 
385  //mutable
386  std::string path; // temporary!
387 
388  mutable
389  ODIMPathMatcher pathMatcher;
390 
392  mutable
393  std::string quantities;
394 
395  mutable
396  drain::KeySelector quantitySelector;
397 
398  //mutable
399  //drain::KeySelector qualitySelector;
400 
401 
403  unsigned int count;
404 
405 
408 
409  mutable DataOrder order;
410 
412  std::string prf;
413 
414  mutable
416 
419 
421 
430  void updateQuantities() const; // todo: rename (here only) quantities?
431  // void updateQuantities(const std::string & separators = ",") const ;
432 
434  void init();
435 
436 
438 
442  bool collectPaths(const Hi5Tree & src, std::list<ODIMPath> & pathContainer, const ODIMPath & basepath = ODIMPath(), const std::string & parentQuantity="", ODIMPathElem::group_t filter = ODIMPathElem::ALL_GROUPS) const;
443 
444 
446  void prunePaths(const Hi5Tree & src, std::list<ODIMPath> & pathContainer) const;
447 
448 };
449 
450 std::ostream & operator<<(std::ostream & ostr, const DataSelector &selector);
451 
452 
453 
454 // Experimental
455 class DatasetSelector : public DataSelector {
456 
457 public:
458 
460  drain::Logger mout(__FILE__, __FUNCTION__);
461  parameters.delink("path");
462  mout.experimental<LOG_NOTICE>("not resetting DATASET" );
463  //pathMatcher.setElems(ODIMPathElem::DATASET);
464  }
465 
466 };
467 
468 // Experimental
469 /*
470 class ImageSelector : public DataSelector {
471 
472 public:
473 
474  ImageSelector() : DataSelector(ODIMPathElem::DATA | ODIMPathElem::QUALITY) {
475  parameters.link("path", dummy);
476  //parameters.delink("path");
477  // pathMatcher.setElems(ODIMPathElem::DATASET);
478  }
479 
480 
481  // Convert path and quantity strings to pathMatcher and quantity regexps, respectively.
482  virtual
483  void updateBean();
484 
485 private:
486 
487  std::string dummy;
488 
489 };
490 */
491 
492 } // rack::
493 
494 namespace drain {
495  DRAIN_TYPENAME(rack::DataSelector);
496 }
497 
498 #endif /* DATASELECTOR_H_ */
Something which has a name, a description and possibly some parameters of varying type.
Definition: BeanLike.h:60
void setParameters(std::initializer_list< Variable::init_pair_t > args)
Grants access to (if above hidden)
Definition: BeanLike.h:131
Flagger accepting values of enum type E.
Definition: EnumFlags.h:190
virtual void set(const key_t &key)
Sets one or several flags.
Definition: FlagBase.h:423
LogSourc e is the means for a function or any program segment to "connect" to a Log.
Definition: Log.h:310
Definition: Path.h:112
void trimHead(bool COMPLETE=false)
Removes leading empty elements. The resulting string presentation will not start with the separator.
Definition: Path.h:321
Definition: ReferenceMap.h:207
void delink(const std::string &key)
Removes an entry from the map.
Definition: ReferenceMap.h:342
virtual const key_t & str() const override
String corresponding the current value. Returns empty, if not found.
Definition: Flags.h:138
Utility for selecting a quantity label Applied by DataSelector.
Definition: StringMatcherList.h:52
static bool split2(const std::string &s, T1 &first, T2 &second, const C &separators, const std::string &trimChars=" \t\n")
Splits and trims a given std::string to a std Sequence.
Tool for selecting datasets based on paths, quantities and min/max elevations.
Definition: DataSelector.h:112
void init()
Sets the default values and sets references.
Definition: DataSelector.cpp:135
Prf
Pulse repetition frequency mode.
Definition: DataSelector.h:118
unsigned int count
The maximum length of the list of matching keys.
Definition: DataSelector.h:396
virtual void updateBean() const
Updates member objects with their corresponding variable values .
Definition: DataSelector.cpp:184
DataSelector(const ODIMPathElem &elem, const T &... args)
Inits pathmatcher.
Definition: DataSelector.h:134
static void swapData(Hi5Tree &src, const ODIMPathElem &srcElem, Hi5Tree &dst)
Swap branches such that dst gets a /dataset or /data with a new index.
void setQuantities(const std::string &s)
Sets basic quantities and quality quantities. These sets are separated by '/'.
std::string prf
Reject or accept VRAD(VH)
Definition: DataSelector.h:405
const std::string & getQuantity() const
Retrieve quantity list and regular expression, if defined.
Definition: DataSelector.h:219
std::string path
Regular expression of accepted paths, for example ".*‍/data$". Deprecated.
Definition: DataSelector.h:379
static void swapData(Hi5Tree &srcGroup, Hi5Tree &dst, ODIMPathElem::group_t groupType)
Like swapData(Hi5Tree & src,const ODIMPathElem &srcElem, Hi5Tree & dst), but src already at the level...
void updateQuantities() const
Continue path matching started with getMainPaths()
void getPaths(const Hi5Tree &src, std::list< ODIMPath > &pathContainer) const
Sets given parameters and implicitly determines missing parameters.
bool getNextPath(const Hi5Tree &src, ODIMPath &path, ODIMPathElem::group_t group=ODIMPathElem::DATA) const
Returns the a path with index one greater than the retrieved last path.
bool consumeParameters(std::string &args)
Sets parameters in predefined order or sets specified parameters. (Python style calling alternatives....
Definition: DataSelector.h:175
void trimPathMatcher()
"Drop leading slashes", ie. remove leading empty elements.
Definition: DataSelector.h:199
virtual void updateBean() const override
Traverses the parameters and updates the corresponding member objects.
void ensureDataGroup()
In path, ensure trailing DATA or QUANTITY element.
drain::Range< int > timespan
Time in seconds, compared to nominal time.
Definition: DataSelector.h:411
bool getPath(const Hi5Tree &src, ODIMPath &path) const
Returns the first path encountered with selector attributes and given groupFilter .
bool getLastPath(const Hi5Tree &src, ODIMPath &path, ODIMPathElem::group_t group=ODIMPathElem::DATA) const
Returns the last path encountered with selector attributes and given groupFilter .
void reset()
Collect paths with all the criteria: path, elevation(range), PRF, quantity...
void prunePaths(const Hi5Tree &src, std::list< ODIMPath > &pathContainer) const
Use #DataOrder::criterion DATA , TIME or ELANGLE and #DataOrder::order MIN or MAX to sort paths.
drain::Range< double > elangle
The minimum and maximum elevation angle (applicable with volume scan data only).
Definition: DataSelector.h:400
bool collectPaths(const Hi5Tree &src, std::list< ODIMPath > &pathContainer, const ODIMPath &basepath=ODIMPath(), const std::string &parentQuantity="") const
Collect paths (only) with criteria: path, elevation(range), PRF, quantity.
Definition: DataSelector.cpp:375
std::string quantities
Comma-separated list of conventional quantities, optionally followed by '/', and quality quantities.
Definition: DataSelector.h:386
Definition: DataSelector.h:452
Definition: ODIMPath.h:82
unsigned int group_t
In H5, "groups" correspond to directories or folders in file system.
Definition: ODIMPath.h:92
static const group_t ALL_GROUPS
User defined group, name stored as a separate string. Index allowed, but only catenated in the string...
Definition: ODIMPath.h:140
static const group_t DATA
Second level group, /data + digit .
Definition: ODIMPath.h:109
Structure for testing if a path matches a given sequence of path elements.
Definition: ODIMPathMatcher.h:185
Definition: DataSelector.cpp:1277
Definition: DataSelector.cpp:44
std::map< std::string, ODIMPathElem > ODIMPathElemMap
Definition: ODIMPath.h:465
Definition: DataSelector.h:58
void set(const std::string s)
Expects <crit>[:<oper>].
Definition: DataSelector.h:85