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);
14 this->targetClasses = std::vector<target>();
15 this->targetInstances = std::vector<target>();
19 colorMap::colorMap(uint32_t majV, uint32_t minV)
21 this->version = versionData(majV, minV);
22 this->targetClasses = std::vector<target>();
23 this->targetInstances = std::vector<target>();
26 colorMap::~colorMap(){
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;}
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;}
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;}
46 bool colorMap::operator!=(
const colorMap &other)
const{
47 return !(*
this==other);
52 bool colorMap::greaterVersion(
const colorMap &cMap1,
const colorMap &cMap2){
57 if(cMap1.getMajorV() > cMap2.getMajorV()){
61 else if(cMap1.getMajorV() == cMap2.getMajorV()){
63 if(cMap1.getMinorV() > cMap2.getMinorV()){
67 else if(cMap1.getMinorV() == cMap2.getMinorV()){
88 void colorMap::addTarget(target tarIn){
89 switch (tarIn.getType()){
90 case targetType::targetClass:
91 this->targetClasses.push_back(tarIn);
93 case targetType::targetInstance:
94 this->targetInstances.push_back(tarIn);
104 void colorMap::addTarget(target tarArray[],
int length){
105 for(
int i = 0; i < length; i++){
106 this->addTarget(tarArray[i]);
110 void colorMap::addTarget(std::vector<target> tarV){
112 this->targetClasses.reserve(s);
113 this->targetInstances.reserve(s);
115 for(
int i = 0; i < s; i++){
116 this->addTarget(tarV.at(i));
121 void colorMap::removeTarget(
const target &targetToRemove){
123 int tInd = this->findTargetInd(targetToRemove);
130 std::vector<target> *targetV;
131 switch(targetToRemove.getType()){
132 case targetType::targetClass:
133 targetV = &this->targetClasses;
135 case targetType::targetInstance:
136 targetV = &this->targetInstances;
144 targetV->erase(targetV->begin() + tInd);
147 int colorMap::findTargetInd(
const target &tIn){
149 std::vector<target> *targetV;
150 switch(tIn.getType()){
151 case targetType::targetClass:
152 targetV = &this->targetClasses;
154 case targetType::targetInstance:
155 targetV = &this->targetInstances;
163 bool isMatch =
false;
165 for(
unsigned int i = 0; i < targetV->size(); i++){
166 if(targetV->at(i) == tIn){
195 void colorMap::toFile(std::fstream &fs){
197 fs.write(startTag,strlen(startTag));
200 fs.write((
char*)&this->version._major,
sizeof(version._major));
201 fs.write((
char*)&this->version._minor,
sizeof(version._minor));
205 for(i = 0; i < this->targetClasses.size(); i++){
206 this->targetClasses.at(i).toFile(fs);
208 for(i = 0; i < this->targetInstances.size(); i++){
209 this->targetInstances.at(i).toFile(fs);
213 fs.write(endTag,endTagSize);
219 bool colorMap::fromFile(std::fstream &fs){
221 char* tempSTag =
new char[strlen(startTag)];
222 fs.read(tempSTag, startTagSize);
223 bool cont = !strncmp(startTag, tempSTag, startTagSize);
228 this->targetClasses.erase(targetClasses.begin(), targetClasses.end());
229 this->targetInstances.erase(targetInstances.begin(), targetInstances.end());
232 fs.read((
char*)(&this->version._major),
sizeof(this->version._major));
233 fs.read((
char*)(&this->version._minor),
sizeof(this->version._minor));
238 target tempTarget = target();
239 while(target::nextTargetExist(fs) && !fs.eof()){
241 if( target::nextTargetExist(fs) ){ tempTarget.fromFile(fs);}
242 switch (tempTarget.getType()){
243 case targetType::targetClass:
244 this->targetClasses.push_back(tempTarget);
247 case targetType::targetInstance:
248 this->targetInstances.push_back(tempTarget);
258 char* tempEndTag =
new char[endTagSize];
259 fs.read(tempEndTag, endTagSize);
260 cont = !strncmp(tempEndTag, endTag, endTagSize);
277 bool colorMap::nextColorMapExist(std::fstream &fs){
279 std::fstream::pos_type startPos = fs.tellg();
282 char* tempSTag =
new char[startTagSize];
283 fs.read(tempSTag, startTagSize);
284 bool exist = !strncmp(tempSTag, startTag, startTagSize);
303 void colorMap::setMajorV(uint32_t mV){
304 this->version._major = mV;
306 void colorMap::setMinorV(uint32_t mV){
307 this->version._minor = mV;
309 uint32_t colorMap::getMajorV()
const{
310 return this->version._major;
312 uint32_t colorMap::getMinorV()
const{
313 return this->version._minor;
315 versionData colorMap::getVersion()
const{
316 return this->version;
318 int colorMap::getNumTargets(targetType::types tType)
const{
321 case targetType::targetClass:
322 return this->targetClasses.size();
324 case targetType::targetInstance:
325 return this->targetInstances.size();
333 std::vector<target>
const *colorMap::getTargetList(targetType::types tType)
const{
335 case targetType::targetClass:
336 return &(this->targetClasses);
338 case targetType::targetInstance:
339 return &(this->targetInstances);
348 void colorMap::setTargetVector(
const std::vector<target> &inputVector){
351 targetType::types inputTType = inputVector.at(0).getType();
352 std::vector<target> *originalTargets;
355 case targetType::targetClass:
356 originalTargets = &(this->targetClasses);
358 case targetType::targetInstance:
359 originalTargets = &(this->targetInstances);
365 *originalTargets = inputVector;