resources.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 // # pragma once
33 #ifndef RACK_RESOURCES_H_
34 #define RACK_RESOURCES_H_
35 
36 #include <string>
37 
38 #include <drain/RegExp.h>
39 #include <drain/image/Image.h>
40 #include <drain/imageops/ImageModifierPack.h>
41 #include <drain/imageops/PaletteOp.h>
42 #include <drain/prog/CommandBankUtils.h>
43 #include <drain/util/Rectangle.h>
44 #include <drain/util/StatusFlags.h>
45 #include <drain/util/TreeOrdered.h>
46 //#include <drain/util/Variable.h>
47 
48 #include "hi5/Hi5.h"
49 #include "hi5/Hi5Read.h"
50 #include "data/DataSelector.h"
51 #include "data/PolarODIM.h"
52 #include "data/ProductConf.h"
53 #include "data/VariableFormatterODIM.h"
54 #include "radar/Composite.h"
55 #include "radar/RadarAccumulator.h"
56 
57 #include "resources-base.h"
58 
59 namespace rack {
60 
61 
62 
64 
67 class RackContext : public ProductConf, public drain::SmartContext, public GraphicsContext, public ImageContext, public AndreContext, public Hdf5Context {
68 
69 public:
70 
71 
72 
74  RackContext();
75 
77  RackContext(const RackContext & ctx);
78 
79  virtual
80  ~RackContext(){};
81 
82 
83  static
84  RackContext & getSharedContext(){
86  }
87 
88  // Consider validVariableRE as general init parameter?
89  static
91 
92  std::string getFormattedStatus(const std::string & s) const;
93 
94  // DataSelector superSelector;
95 
96  //static
97  //const drain::RegExp variableMapperSyntax;inputFilter
98  //drain::SingleFlagger<Reader::Mode>
99  // drain::SingleFlagger<hi5::Reader::Mode>
100  hi5::Reader::ModeFlagger inputFilter;
101 
103  std::string inputPrefix;
104 
106  std::string outputPrefix;
107 
108 
110  /*
111  std::string targetEncoding; // consider encodingRequest !
112  ODIMPathElem appendResults;
114  int outputDataVerbosity;
115  */
116 
117  // Accumulator for data in Cartesian coordinates
119 
120  // Experimental
121  bool guessDatasetGroup(const Hi5Tree & src, ODIMPathElem & pathElem) const;
122 
123  bool guessDatasetGroup(ODIMPathElem & pathElem){
124  Hi5Tree & src = getHi5(CURRENT);
125  return guessDatasetGroup(src, pathElem);
126  }
127 
128 
129 
134  //inline
135  //Hi5Tree & getHi5(h5_role::value_t filter);
136  // return getHi5Full(filter);
137  // }
138 
143  template <typename T, typename ...TT>
144  Hi5Tree & getHi5(const T &filter, const TT &... filters){
145 
146  T f(filter);
147  //Hi5Tree & dst = getHi5Full(f);
148  if (f != 0){
149  // return dst;
150  //Hi5Tree & dst = getHi5Full(f);
151  return getHi5Full(f);
152  }
153  else
154  return getHi5(filters...);
155  }
156 
157 
158 
159  //Hi5Tree & getHi5Full(h5_role::ivalue_t & filter);
160  Hi5Tree & getHi5Full(Hi5RoleFlagger::ivalue_t filter);
161 
162  inline
163  Hi5Tree & getHi5(){
164  return empty; // or current?
165  }
166 
173  Composite & getComposite(Hi5RoleFlagger::ivalue_t filter);
174 
175 
176  // Experimental
177  // ODIMPath currentPath;
178 
180  //static
181  ODIMPath findImage(const DataSelector & imageSelector);
182 
183  // static
184  ODIMPath findImage();
185 
187  // sstatic
188  const drain::image::Image & getCurrentGrayImage(); //RackContext & ctx);
189 
191  const drain::image::Image & getCurrentImage(); //RackContext & ctx);
192 
193 
195 
199  const drain::image::Image & updateCurrentImage(); //RackContext & ctx);
200 
202  drain::image::Image & getModifiableImage(); // (RackContext & ctx); // const DataSelector & selector
203 
204  void convertGrayImage(const drain::image::Image & srcImage); // RackContext & ctx,
205 
206  /*
207  virtual inline
208  drain::VariableMap & getStatusMap(bool update=true){
209  if (update){
210  Context::updateStatus(); // check if this should be moved under this->updateStatus() ? So this function could be removed.
211  updateStatus();
212  }
213  return statusMap;
214  };
215  */
216 
217  static
218  const VariableFormatterODIM<drain::Variable> variableFormatter;
219 
220  static
221  const VariableFormatterODIM<drain::FlexibleVariable> flexVariableFormatter;
222 
223 //private:
224 protected:
225 
226  virtual
227  void updateStatus() const final;
228  // Keep this class-specific.
229  //void updateStatus();
230 
231  // typedef drain::Cloner<Context,RackContext> ctx_cloner_t;
232 
233  // EXPERIMENTAL
234  static inline
235  RackContext & baseCtx() {
236  //return getContextCloner().getSourceOrig();
237  return drain::Static::get<RackContext>();
238  }
239 
240  /*
241  static inline
242  ctx_cloner_t & getContextCloner(){
243  return getCloner<RackContext>();
244  }
245  */
246 
247 };
248 
250 
253 class RackResources : public drain::SuperContextual<RackContext> {
254 
255 public:
256 
257  RackResources(); // : inputOk(true), dataOk(true), currentHi5(&inputHi5), currentPolarHi5(&inputHi5), currentImage(NULL), currentGrayImage(NULL) {};
258 
259  // Accumulator for data in polar coordinates
261 
262 
263 };
264 
267 
268 
269 
270 
271 } /* namespace rack */
272 
273 #endif /* RACKLET_H_ */
274 
275 // Rack
Definition: Context.h:211
A tool for expanding variables embedded in a std::string to literals.
Definition: StringMapper.h:275
Adds class-specific convenience functions.
Definition: Context.h:325
Class for multi-channel digital images. Supports dynamic typing with base types (char,...
Definition: Image.h:184
Definition: resources-base.h:54
Cartesian composite (mosaic) of data from several radars.
Definition: Composite.h:105
Definition: resources-image.h:211
Definition: resources-base.h:74
Definition: resources-image.h:277
Definition: ODIMPath.h:82
Shared properties for meteorological products and Cartesian products (composites and single-radar ima...
Definition: ProductConf.h:64
Resources provided separately for each thread.
Definition: resources.h:67
static const drain::StringMapper variableMapper
Definition: resources.h:90
Composite & getComposite(Hi5RoleFlagger::ivalue_t filter)
Definition: resources.cpp:149
drain::image::Image & getModifiableImage()
Return current image, if modifiable. Else, copy (convert).
Definition: resources.cpp:421
const drain::image::Image & getCurrentGrayImage()
Light and lazy.
Definition: resources.cpp:188
Composite composite
TODO: inherit from ProductBase.
Definition: resources.h:118
RackContext()
Initializes data and image pointers to default targets or NULL.
Definition: resources.cpp:42
const drain::image::Image & getCurrentImage()
Light and lazy.
Definition: resources.cpp:206
Hi5Tree & getHi5(const T &filter, const TT &... filters)
Definition: resources.h:144
std::string inputPrefix
Path prefix for input files. Move to resources?
Definition: resources.h:103
virtual void updateStatus() const final
Definition: resources.cpp:503
void convertGrayImage(const drain::image::Image &srcImage)
Definition: resources.cpp:385
const drain::image::Image & updateCurrentImage()
Ensures current image.
Definition: resources.cpp:325
std::string outputPrefix
Path prefix for output files. Move to resources?
Definition: resources.h:106
A container for shared resources applied by RackLets.
Definition: resources.h:253
Data array for creating composites and accumulated polar products (Surface rain fall or cluttermaps)
Definition: RadarAccumulator.h:61
Definition: DataSelector.cpp:44
RackResources & getResources()
Default instance.
Definition: resources.cpp:556