HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
target.cpp
1 #include "target.h"
2 
3 
4 const char *target::startTag = "<TSTART>\n\0";
5 const char *target::endTag = "<TEND>\n\0";
6 const int target::startTagSize = strlen(target::startTag);
7 const int target::endTagSize = strlen(target::endTag);
8 
9 const int target::maxTitleSize = 255;
10 const int target::maxDescSize = 255;
11 
12 
13 
14 target::target(){
15 
16 }
17 target::~target(){
18 
19 }
20 
21 
22 target::target(uint8_t r, uint8_t g, uint8_t b, std::string titleIn, targetType::types typeIn){
23  this->r = r;
24  this->g = g;
25  this->b = b;
26  this->setTitle(titleIn);
27  this->setDescription("No Description");
28  this->type = typeIn;
29 }
30 
31 bool target::operator == (const target& other) const{
32  //Check type
33  if(this->getType() != other.getType()){return false;}
34 
35  //Check colors
36  if(this->getR() != other.getR()){return false;}
37  if(this->getG() != other.getG()){return false;}
38  if(this->getB() != other.getB()){return false;}
39 
40  //Check title/description
41  if( this->getTitle() != other.getTitle()){return false;}
42  if( this->getDescription() != other.getDescription()){return false;};
43 
44  //Passed all checks
45  return true;
46 }
47 
48 bool target::operator !=(const target& other) const{
49  return !(*this == other);
50 }
51 
52 
53 void target::toFile(std::fstream &fs){
54 // std::fstream::pos_type outPosStart = fs.tellp(); //current output position
55 
56  //Start tag
57  fs.write(startTag, startTagSize);
58 
59  //members
60  fs.write((char*)&titleLen, sizeof(titleLen));
61  fs.write(title,titleLen); //write +1 for the termination char
62  fs.write((char*)&descLen, sizeof(descLen));
63  fs.write(description,descLen); //write +1 for the termination char (IMPORTANT)
64  fs.write((char*)&r, sizeof(r));
65  fs.write((char*)&g, sizeof(g));
66  fs.write((char*)&b, sizeof(g));
67  fs.write((char*)&type, sizeof(type));
68 
69  //End tag
70  fs.write(endTag, endTagSize);
71 // std::fstream::pos_type inPosEnd = fs.tellg(); //current input pos
72 
73 }
74 
75 
76 bool target::fromFile(std::fstream &fs){
77  // qDebug() << "ENTER fromFile target";
78 
79  //Find start
80  char* tempStart = new char[startTagSize];
81  fs.read(tempStart, startTagSize);
82  bool cont = !strncmp(tempStart, startTag, startTagSize);
83  delete tempStart;
84  // qDebug() << "\tCont" << cont;
85  if(!cont){return cont;}
86 
87  //Title Length
88  fs.read((char*)&(this->titleLen), sizeof(titleLen));
89  // qDebug() << "\ttitle length" << this->titleLen;
90 
91  //Title value
92  this->title = new char[titleLen];
93  fs.read(this->title, this->titleLen);
94  // qDebug() << "\ttitle" << QString::fromLatin1(this->title);
95 
96  //Description Length
97  fs.read((char*)&(this->descLen), sizeof(descLen));
98  // qDebug() << "\tdesc length" << this->descLen;
99 
100  //Description Value
101  this->description = new char[descLen];
102  fs.read(this->description, this->descLen);
103  // qDebug() << "\tdesc" << QString::fromLatin1(this->description);
104 
105  //RGB
106  fs.read((char*)&this->r, sizeof(this->r));
107  fs.read((char*)&this->g, sizeof(this->g));
108  fs.read((char*)&this->b, sizeof(this->b));
109  // qDebug() << "\tRGB" << (int) r << (int) g << (int) b;
110 
111  //Type tag
112  fs.read((char*)&this->type, sizeof(this->type));
113  // qDebug() << "\ttype" << this->type;
114 
115  //Read past end tag
116  char* tempEnd = new char[endTagSize];
117  fs.read(tempEnd, endTagSize);
118  cont = !strncmp(tempEnd, endTag, endTagSize); //returns 0 if matches
119 
120  delete tempEnd;
121 
122  return false;
123 }
124 
125 
126 bool target::nextTargetExist(std::fstream &fs){
127  std::fstream::pos_type startPos = fs.tellg(); //store current input pos
128 
129  char* tempSTag = new char[startTagSize]; //read in start tag
130  fs.read(tempSTag, startTagSize);
131  bool exist = !strncmp(tempSTag, startTag, startTagSize);
132 
133  fs.seekg(startPos); //return stream to start state
134 
135  delete tempSTag;
136  return exist;
137 }
138 
139 
140 
141 
142 
143 
144 
145 
146 // ******************* START GET/SET ***********//
147 void target::setTitle(std::string titIn){
148  if(this->title == NULL){delete this->title;} //delete if not null
149  this->titleLen = titIn.size() + 1; //+1 for null char
150  this->title = new char[this->titleLen];
151  strncpy(this->title, titIn.data(), this->titleLen);
152 
153 }
154 void target::setDescription(std::string descIn){
155  if(this->description == NULL){delete this->description;} //delete if not null
156  this->descLen = descIn.size() + 1; //+1 for null char
157  this->description = new char[descLen];
158  strncpy(this->description, descIn.data(), this->descLen);
159 }
160 void target::setType(targetType::types typIn){
161  this->type = typIn;
162 }
163 void target::setR(uint8_t u8In){
164  this->r = u8In;
165 }
166 void target::setG(uint8_t u8In){
167  this->g = u8In;
168 }
169 void target::setB(uint8_t u8In){
170  this->b = u8In;
171 }
172 
173 std::string target::getTitle() const{
174  std::shared_ptr<char> p(title, &free);
175  std::string title_string(p.get());
176  return title_string;
177 }
178 std::string target::getDescription() const{
179  std::shared_ptr<char> p(description, &free);
180  std::string desc_string(p.get());
181  return desc_string;
182 }
183 targetType::types target::getType() const{
184  return this->type;
185 }
186 
187 uint8_t target::getR() const{ return this->r;}
188 uint8_t target::getG() const{ return this->g;}
189 uint8_t target::getB() const{ return this->b;}
190 
191 
192 
193 
194 // ******************* END GET/SET ***********//
195