Palette.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 #ifndef DRAIN_PALETTE
32 #define DRAIN_PALETTE
33 
34 #include <drain/UniTuple.h>
35 #include "ImageFile.h"
36 #include "Geometry.h"
37 #include "TreeSVG.h"
38 
39 #include "drain/util/BeanLike.h"
40 // #include "drain/util/Dictionary.h" // temporary ?
41 #include "drain/util/JSON.h"
42 #include "drain/util/Dictionary.h"
43 #include "Legend.h"
44 #include "PaletteEntry.h"
45 
46 
47 namespace drain
48 {
49 
50 
51 namespace image
52 {
53 
54 
58 class Palette : public ImageCodeMap<PaletteEntry> {
59 
60 public:
61 
62  static
63  const SprinterLayout cppLayout2;
64 
66  inline
67  Palette() : ImageCodeMap<PaletteEntry>(), refinement(0) {
68  };
69 
71 
75  Palette(std::initializer_list<std::pair<Variable, PaletteEntry> > inits);
76 
92  const value_type & getEntryByCode(const std::string & code, bool lenient=true) const;
93 
95  inline
96  const key_type getValueByCode(const std::string & code, bool lenient=true) const {
97  const value_type & entry = getEntryByCode(code, lenient);
98  return entry.first;
99  }
100 
101  void reset();
102 
104  void addEntry(double min, double red=0.0, double green=0.0, double blue=0.0, const std::string &id="", const std::string & label =""); // alpha?
105 
107 
110  void load(const std::string & filename, bool flexible = false);
111 
113  void loadTXT(std::istream & ifstr);
114 
116  void loadJSON(std::istream & ifstr);
117 
118  void write(const std::string & filename) const;
119 
120  void exportTXT(std::ostream & ostr, char separator='\t', char separator2=0) const;
121 
122  //void exportJSON(drain::JSONtree::tree_t & json) const;
123  void exportJSON(drain::JSONtree2 & json) const;
124 
125  // Export formatted
126  void exportFMT(std::ostream & ostr, const std::string & format) const;
127 
129  void exportSVGLegend(TreeSVG & svg, bool up = true) const;
130 
132 
138 
141  // void convertJSON(const drain::JSONtree::tree_t & json);
142 
143  const ChannelGeometry & getChannels() const {
144  update();
145  return channels;
146  }
147 
149  std::string title;
150 
152  // std::string id; ?
153 
155  typedef std::map<std::string,PaletteEntry> spec_t;
156  spec_t specialCodes; // To be read from palette
157 
159  void refine(size_t n=0);
160 
161  // typedef drain::Dictionary<key_t, std::string> dict_t;
162 
164 
166 
169  size_t refinement;
170 
171  // Metadata - for example, the file path of a loaded palette.
172  std::string comment;
173 
174 protected:
175 
177  // dict_t dictionary; // deprecating!
178 
179 
180  void update() const;
181 
183  void importJSON(const drain::JSONtree2 & json);
184 
185  mutable
186  ChannelGeometry channels;
187 
188 
189 };
190 
191 
192 inline
193 std::ostream & operator<<(std::ostream &ostr, const Palette & p){
194  p.exportTXT(ostr);
195  return ostr;
196 }
197 
198 
199 
200 
201 class PaletteMap : public std::map<std::string,drain::image::Palette> {
202 
203 public:
204 
205  inline
206  Palette & get(const std::string & key){
207  if (aliases.hasKey(key)){
208  return (*this)[aliases.getValue(key)];
209  }
210  else {
211  return (*this)[key];
212  }
213  }
214 
215  inline
216  void addAlias(const std::string & key, const std::string & aliasKey){
217  aliases.add(aliasKey,key);
218  }
219 
220 // protected:
221 
223  // std::map<std::string,std::string> aliasMap;
224 
225 };
226 
227 } // image::
228 
229 template <>
230 std::ostream & drain::Sprinter::toStream(std::ostream & ostr, const drain::image::Palette & map, const drain::SprinterLayout & layout);
231 
232 } // drain::
233 
234 
235 #endif
static std::ostream & toStream(std::ostream &ostr, const std::initializer_list< T > &x, const SprinterLayout &layout=defaultLayout)
New (experimental)
Definition: Sprinter.h:420
Definition: DataSelector.cpp:1277
Definition: Sprinter.h:137