HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
colormap.cpp
1 #include "colormap.h"
2 
3 const char *colorMap::startTag = "<CMAP_START>\n\0";
4 const char *colorMap::endTag = "<CMAP_END>\n\0";
5 const int colorMap::startTagSize = strlen(colorMap::startTag);
6 const int colorMap::endTagSize = strlen(colorMap::endTag);
7 
8 //note, find the number of character of tag with std::strlen(char*)
9 
10 
11 //colorMap::colorMap():colorHMO(colorMapHierarchy::staticMetaObject)
12 colorMap::colorMap()
13 {
14  this->targetClasses = std::vector<target>();
15  this->targetInstances = std::vector<target>();
16 }
17 
18 //colorMap::colorMap(int majV, int minV) : colorHMO(colorMapHierarchy::staticMetaObject)
19 colorMap::colorMap(uint32_t majV, uint32_t minV)
20 {
21  this->version = versionData(majV, minV);
22  this->targetClasses = std::vector<target>();
23  this->targetInstances = std::vector<target>();
24 
25 }
26 colorMap::~colorMap(){
27 
28 }
29 
30 bool colorMap::operator==(const colorMap &other) const{
31  if(this->version != other.getVersion()){return false;}
32  if(this->getNumTargets(targetType::targetClass) != other.getNumTargets(targetType::targetClass)){return false;}
33  if(this->getNumTargets(targetType::targetInstance) != other.getNumTargets(targetType::targetInstance)){return false;}
34 
35  targetType::types currType = targetType::targetClass;
36  for(int i = 0; i < this->getNumTargets(currType); i++){
37  if(this->getTargetList(currType)->at(i) != other.getTargetList(currType)->at(i)){return false;}
38  }
39  currType = targetType::targetInstance;
40  for(int i = 0; i < this->getNumTargets(currType); i++){
41  if(this->getTargetList(currType)->at(i) != other.getTargetList(currType)->at(i)){return false;}
42  }
43 
44  return true;
45 }
46 bool colorMap::operator!=(const colorMap &other) const{
47  return !(*this==other);
48 }
49 
50 
51 
52 bool colorMap::greaterVersion(const colorMap &cMap1, const colorMap &cMap2){
53  //The highest value of colorMap.version.major should be first
54  //followed by that the minor version
55  //To follow 'strict weak ordering' for all x, it is not the case that x < x
56 
57  if(cMap1.getMajorV() > cMap2.getMajorV()){
58  //major is greater,
59  return true;
60  }
61  else if(cMap1.getMajorV() == cMap2.getMajorV()){
62  //major is equal, check minor
63  if(cMap1.getMinorV() > cMap2.getMinorV()){
64  //major values equal, minor1 greater than minor2
65  return true;
66  }
67  else if(cMap1.getMinorV() == cMap2.getMinorV()){
68  //definitions equal, return false in order to follow strict ordering
69  return false;
70  }
71  else{
72  //major values equal, minor1 less than minor2
73  return false;
74  }
75  }
76  else{
77  //major1 is less than major2
78  return false;
79  }
80 
81 }
82 
83 
84 
85 
86 // ******************* START TARGETS ***********//
87 
88 void colorMap::addTarget(target tarIn){
89  switch (tarIn.getType()){
90  case targetType::targetClass:
91  this->targetClasses.push_back(tarIn);
92  break;
93  case targetType::targetInstance:
94  this->targetInstances.push_back(tarIn);
95  break;
96  default:
97  {
98 
99  }
100 // qDebug() << "color map addTarget case not handled" << tarIn.getType();
101  }
102 }
103 
104 void colorMap::addTarget(target tarArray[], int length){
105  for(int i = 0; i < length; i++){
106  this->addTarget(tarArray[i]);
107  }
108 }
109 
110 void colorMap::addTarget(std::vector<target> tarV){
111  int s = tarV.size();
112  this->targetClasses.reserve(s);
113  this->targetInstances.reserve(s);
114 
115  for(int i = 0; i < s; i++){
116  this->addTarget(tarV.at(i));
117  }
118 
119 }
120 
121 void colorMap::removeTarget(const target &targetToRemove){
122  //Find index
123  int tInd = this->findTargetInd(targetToRemove);
124  if (tInd < 0){
125 // qDebug() << "Error in colorMap::removeTarget(target&). Target invalid";
126  return;
127  }
128 
129  //Find the target list
130  std::vector<target> *targetV;
131  switch(targetToRemove.getType()){
132  case targetType::targetClass:
133  targetV = &this->targetClasses;
134  break;
135  case targetType::targetInstance:
136  targetV = &this->targetInstances;
137  break;
138  default:
139 // qDebug() << "Error in colorMap::findTargetInd(target &). Unknown target type: "
140 // << targetToRemove.getType();
141  return;
142  }
143 
144  targetV->erase(targetV->begin() + tInd);
145 }
146 
147 int colorMap::findTargetInd(const target &tIn){
148  //Find the target list
149  std::vector<target> *targetV;
150  switch(tIn.getType()){
151  case targetType::targetClass:
152  targetV = &this->targetClasses;
153  break;
154  case targetType::targetInstance:
155  targetV = &this->targetInstances;
156  break;
157  default:
158 // qDebug() << "Error in colorMap::findTargetInd(target &). Unknown target type ";
159  return -1;
160  }
161 
162  //Find the index
163  bool isMatch = false;
164  int index = -1;
165  for(unsigned int i = 0; i < targetV->size(); i++){
166  if(targetV->at(i) == tIn){
167  isMatch = true;
168  index = i;
169  break;
170  }
171 
172  }
173 
174  if(!isMatch){
175  //No match found, return -1
176  return -1;
177  }
178  else{
179  //Match found
180  return index;
181  }
182 
183 }
184 
185 
186 
187 
188 
189 // ******************* END TARGETS ***********//
190 
191 
192 
193 // ******************* START PARSING ***********//
194 
195 void colorMap::toFile(std::fstream &fs){
196  //Start tag for color map data
197  fs.write(startTag,strlen(startTag));
198 
199  //Major and Minor
200  fs.write((char*)&this->version._major,sizeof(version._major));
201  fs.write((char*)&this->version._minor,sizeof(version._minor));
202 
203  //Target classes
204  unsigned int i;
205  for(i = 0; i < this->targetClasses.size(); i++){
206  this->targetClasses.at(i).toFile(fs);
207  }
208  for(i = 0; i < this->targetInstances.size(); i++){
209  this->targetInstances.at(i).toFile(fs);
210  }
211 
212  //End tag
213  fs.write(endTag,endTagSize);
214  fs.flush();
215 
216 }
217 
218 
219 bool colorMap::fromFile(std::fstream &fs){
220  //check for the start tag
221  char* tempSTag = new char[strlen(startTag)];
222  fs.read(tempSTag, startTagSize);
223  bool cont = !strncmp(startTag, tempSTag, startTagSize); //strncmp returns 0 if the strings are equal, hence the !
224 // if(!cont){qDebug() << "Color map start tag not found"; return false;}
225  delete tempSTag;
226 
227  //Initialize vectors of targets
228  this->targetClasses.erase(targetClasses.begin(), targetClasses.end());
229  this->targetInstances.erase(targetInstances.begin(), targetInstances.end());
230 
231  //Start tag received successful, parse members
232  fs.read((char*)(&this->version._major), sizeof(this->version._major));
233  fs.read((char*)(&this->version._minor), sizeof(this->version._minor));
234 
235  //populate target list
236  int cC = 0; //target class counter (class definition)
237  int iC = 0; //target instance counter (instance definition)
238  target tempTarget = target();
239  while(target::nextTargetExist(fs) && !fs.eof()){
240  // qDebug() << "Next target exist" << target::nextTargetExist(fs) << "EOF " << fs.eof();
241  if( target::nextTargetExist(fs) ){ tempTarget.fromFile(fs);} //get next target
242  switch (tempTarget.getType()){
243  case targetType::targetClass:
244  this->targetClasses.push_back(tempTarget);
245  cC++;
246  break;
247  case targetType::targetInstance:
248  this->targetInstances.push_back(tempTarget);
249  iC++;
250  default:
251 // qDebug() << "Target of unkown type " << tempTarget.getType() << "not recorded in color map object";
252  break;
253  }
254  }
255 // qDebug() << "Color Map: number targets" << cC+iC;
256 
257  //read past the end tag
258  char* tempEndTag = new char[endTagSize];
259  fs.read(tempEndTag, endTagSize);
260  cont = !strncmp(tempEndTag, endTag, endTagSize); //returns 0 if matches
261  if(!cont){
262  //if end tag is missing/wrong
263 // qDebug() << "Improper target tag" << QString::fromLatin1(endTag);
264 // qDebug() << "bool" << (strncmp(tempEndTag, endTag, endTagSize));
265 // qDebug() << "\tRead tag: " << QString::fromLatin1(tempEndTag);
266 // qDebug() << "\tStored tag: " << QString::fromLatin1(endTag);
267  }
268  delete tempEndTag;
269 
270  //sort the vectors of targets
271 
272  return cont;
273 }
274 
275 
276 
277 bool colorMap::nextColorMapExist(std::fstream &fs){
278  // qDebug() << "Start color map exist";
279  std::fstream::pos_type startPos = fs.tellg(); //read in current pos
280  // qDebug() << "\tcurrent pos " << (int)startPos;
281 
282  char* tempSTag = new char[startTagSize]; //read in start tag
283  fs.read(tempSTag, startTagSize);
284  bool exist = !strncmp(tempSTag, startTag, startTagSize);
285  // qDebug() << "\tMatch found" << exist;
286 
287  fs.seekg(startPos); //return stream to start state
288  // qDebug() << "\tcurrent pos " << fs.tellg() << "Is good: " << fs.good();
289 
290  delete tempSTag;
291  return exist;
292 }
293 
294 
295 
296 
297 
298 // ******************* END PARSING ***********//
299 
300 
301 
302 // ******************* START GET/SET ***********//
303 void colorMap::setMajorV(uint32_t mV){
304  this->version._major = mV;
305 }
306 void colorMap::setMinorV(uint32_t mV){
307  this->version._minor = mV;
308 }
309 uint32_t colorMap::getMajorV() const{
310  return this->version._major;
311 }
312 uint32_t colorMap::getMinorV() const{
313  return this->version._minor;
314 }
315 versionData colorMap::getVersion() const{
316  return this->version;
317 }
318 int colorMap::getNumTargets(targetType::types tType) const{
319  //Select the target list
320  switch(tType){
321  case targetType::targetClass:
322  return this->targetClasses.size();
323  break;
324  case targetType::targetInstance:
325  return this->targetInstances.size();
326  break;
327  default:
328 // qDebug() << "Unkown target type at colorMap::toQComboBox " << tType;
329  return -1;
330  break;
331  }
332 }
333 std::vector<target> const *colorMap::getTargetList(targetType::types tType) const{
334  switch(tType){
335  case targetType::targetClass:
336  return &(this->targetClasses);
337  break;
338  case targetType::targetInstance:
339  return &(this->targetInstances);
340  break;
341  default:
342 // qDebug() << "Unknown target type in colorMap::getTargetList " << tType;
343  return NULL;
344  break;
345  }
346 }
347 
348 void colorMap::setTargetVector(const std::vector<target> &inputVector){
349 // qDebug() << "Enter colorMap::setTargetVector, new vector has " << inputVector.size() << "targets";
350  //Find what target type it is
351  targetType::types inputTType = inputVector.at(0).getType();
352  std::vector<target> *originalTargets;
353 
354  switch(inputTType){
355  case targetType::targetClass:
356  originalTargets = &(this->targetClasses);
357  break;
358  case targetType::targetInstance:
359  originalTargets = &(this->targetInstances);
360  break;
361  default:
362 // qDebug() << "Error in colorMap::setTargetVector unkown target type";
363  break;
364  }
365  *originalTargets = inputVector;
366 }
367 
368 // ******************* END GET/SET ***********//
369 
370