File: CommandColorFileCreateMissingColors.cxx

package info (click to toggle)
caret 5.6.1.3~dfsg.1-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 23,352 kB
  • ctags: 27,394
  • sloc: cpp: 363,314; python: 6,718; ansic: 5,507; makefile: 227; sh: 9
file content (360 lines) | stat: -rw-r--r-- 12,945 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
/*LICENSE_START*/
/*
 *  Copyright 1995-2002 Washington University School of Medicine
 *
 *  http://brainmap.wustl.edu
 *
 *  This file is part of CARET.
 *
 *  CARET is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  CARET is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with CARET; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */
/*LICENSE_END*/

#include <iostream>
#include <set>
#include <vector>

#include <QFile>

#include "AreaColorFile.h"
#include "BorderColorFile.h"
#include "BorderFile.h"
#include "BorderProjectionFile.h"
#include "CellColorFile.h"
#include "CellFile.h"
#include "CellProjectionFile.h"
#include "CommandColorFileCreateMissingColors.h"
#include "FileFilters.h"
#include "FileUtilities.h"
#include "FociColorFile.h"
#include "FociFile.h"
#include "FociProjectionFile.h"
#include "PaintFile.h"
#include "ProgramParameters.h"
#include "ScriptBuilderParameters.h"
#include "SpecFile.h"
#include "VolumeFile.h"

/**
 * constructor.
 */
CommandColorFileCreateMissingColors::CommandColorFileCreateMissingColors()
   : CommandBase("-color-file-create-missing-colors",
                 "COLOR FILE CREATE MISSING COLORS")
{
}

/**
 * destructor.
 */
CommandColorFileCreateMissingColors::~CommandColorFileCreateMissingColors()
{
}

/**
 * get the script builder parameters.
 */
void 
CommandColorFileCreateMissingColors::getScriptBuilderParameters(ScriptBuilderParameters& paramsOut) const
{
   std::vector<QString> modeNames;
   modeNames.push_back("EXACT");
   modeNames.push_back("PARTIAL");
   
   QStringList colorFileFilters;
   colorFileFilters << FileFilters::getAreaColorFileFilter()
                    << FileFilters::getBorderColorFileFilter()
                    << FileFilters::getCellColorFileFilter()
                    << FileFilters::getFociColorFileFilter();
                    
   QStringList dataFileFilters;
   dataFileFilters << FileFilters::getBorderGenericFileFilter()
                   << FileFilters::getBorderProjectionFileFilter()
                   << FileFilters::getCellFileFilter()
                   << FileFilters::getCellProjectionFileFilter()
                   << FileFilters::getFociFileFilter()
                   << FileFilters::getFociProjectionFileFilter()
                   << FileFilters::getPaintFileFilter()
                   << FileFilters::getVolumePaintFileFilter();
   paramsOut.clear();
   paramsOut.addListOfItems("Mode", modeNames, modeNames);
   paramsOut.addMultipleFiles("Input Color File", colorFileFilters);
   paramsOut.addMultipleFiles("Output Color File", colorFileFilters);
   paramsOut.addMultipleFiles("Data File", dataFileFilters);
}

/**
 * get full help information.
 */
QString 
CommandColorFileCreateMissingColors::getHelpInformation() const
{
   QString helpInfo =
      (indent3 + getShortDescription() + "\n"
       + indent6 + parameters->getProgramNameWithoutPath() + " " + getOperationSwitch() + "  \n"
       + indent9 + "<MODE> \n"
       + indent9 + "<input-color-file-name>\n"
       + indent9 + "<output-color-file-name>\n"
       + indent9 + "<data-file-name>\n"
       + indent9 + "\n"
       + indent9 + "Create random colors for names from the data file that do\n"
       + indent9 + "not have matching colors in the color file.\n"
       + indent9 + "\n"
       + indent9 + "\"MODE\" is one of:\n"
       + indent9 + "   EXACT    \n"
       + indent9 + "   PARTIAL \n"
       + indent9 + "\n"
       + indent9 + "If \"MODE\" is \"EXACT\", a new color is created if there\n"
       + indent9 + "is not a color name that exactly matches a name from the \n"
       + indent9 + "data file.\n"
       + indent9 + "\n"
       + indent9 + "If \"MODE\" is \"PARTIAL\", a new color is created for a \n"
       + indent9 + "name only if the name does not start with the name of a \n"
       + indent9 + "color.  For example, if the name is \"SUL.CeS\" and there \n"
       + indent9 + "is a color named \"SUL\", a new color is NOT created.\n"
       + indent9 + "\n"
       + indent9 + "New colors are added to the input color file and written\n"
       + indent9 + "to the output color file.  The input color file does not \n"
       + indent9 + "need to exist.  If there is not an input color file its\n"
       + indent9 + "name may be specified by two consecutive double quotes (\"\").\n"
       + indent9 + "\n"
       + indent9 + "The data file may be a:\n"
       + indent9 + "   Border File\n"
       + indent9 + "   Border Projection File\n"
       + indent9 + "   Cell File\n"
       + indent9 + "   Cell Projection File\n"
       + indent9 + "   Foci File\n"
       + indent9 + "   Foci Projection File\n"
       + indent9 + "   Paint File\n"
       + indent9 + "   Volume Paint File\n"
       + indent9 + "\n"
       + indent9 + "The valid color file extensions are:\n"
       + indent9 + "   Area Color:   " + SpecFile::getAreaColorFileExtension() + "\n"
       + indent9 + "   Border Color: " + SpecFile::getBorderColorFileExtension() + "\n"
       + indent9 + "   Cell Color:   " + SpecFile::getCellColorFileExtension() + "\n"
       + indent9 + "   Foci Color:   " + SpecFile::getFociColorFileExtension() + "\n"
       + indent9 + "\n");
      
   return helpInfo;
}

/**
 * execute the command.
 */
void 
CommandColorFileCreateMissingColors::executeCommand() throw (BrainModelAlgorithmException,
                                     CommandException,
                                     FileException,
                                     ProgramParametersException,
                                     StatisticException)
{
   //
   // Get parameters
   //
   const QString modeName = parameters->getNextParameterAsString("MODE");
   const QString inputColorFileName = 
      parameters->getNextParameterAsString("Input Color File Name");
   const QString outputColorFileName = 
      parameters->getNextParameterAsString("Output Color File Name");
   const QString dataFileName =
      parameters->getNextParameterAsString("Data File Name");
   checkForExcessiveParameters();
   
   //
   // Check mode
   //
   bool exactMatchFlag = false;
   if (modeName == "EXACT") {
      exactMatchFlag = true;
   }
   else if (modeName == "PARTIAL") {
      exactMatchFlag = false;
   }
   else {
      throw CommandException("\""
                             + modeName 
                             + " is not a valid mode.");
   }
   
   //
   // Check files
   //
   if (outputColorFileName.isEmpty()) {
      throw CommandException("Output Color File Name is empty.");
   }
   if (dataFileName.isEmpty()) {
      throw CommandException("Data File Name is empty.");
   }
   
   std::set<QString> names;
   
   //
   // Read the data file to get the names
   //
   if (dataFileName.endsWith(SpecFile::getBorderProjectionFileExtension())) {
      BorderProjectionFile bpf;
      bpf.readFile(dataFileName);
      const int numBorders = bpf.getNumberOfBorderProjections();
      for (int i = 0; i < numBorders; i++) {
         const BorderProjection* bp = bpf.getBorderProjection(i);
         names.insert(bp->getName());
      }
   }
   else if (dataFileName.endsWith(SpecFile::getBorderFileExtension())) {
      BorderFile bf;
      bf.readFile(dataFileName);
      const int numBorders = bf.getNumberOfBorders();
      for (int i = 0; i < numBorders; i++) {
         const Border* bp = bf.getBorder(i);
         names.insert(bp->getName());
      }
   }
   else if (dataFileName.endsWith(SpecFile::getCellFileExtension())) {
      CellFile cf;
      cf.readFile(dataFileName);
      const int numCells = cf.getNumberOfCells();
      for (int i = 0; i < numCells; i++) {
         const CellData* cd = cf.getCell(i);
         names.insert(cd->getName());
      }
   }
   else if (dataFileName.endsWith(SpecFile::getCellProjectionFileExtension())) {
      CellProjectionFile cpf;
      cpf.readFile(dataFileName);
      const int numCells = cpf.getNumberOfCellProjections();
      for (int i = 0; i < numCells; i++) {
         const CellProjection* cp = cpf.getCellProjection(i);
         names.insert(cp->getName());
      }
   }
   else if(dataFileName.endsWith(SpecFile::getFociProjectionFileExtension())) {
      FociProjectionFile fpf;
      fpf.readFile(dataFileName);
      const int numCells = fpf.getNumberOfCellProjections();
      for (int i = 0; i < numCells; i++) {
         const CellProjection* cp = fpf.getCellProjection(i);
         names.insert(cp->getName());
      }
   }
   else if(dataFileName.endsWith(SpecFile::getFociFileExtension())) {
      FociFile ff;
      ff.readFile(dataFileName);
      const int numCells = ff.getNumberOfCells();
      for (int i = 0; i < numCells; i++) {
         const CellData* cd = ff.getCell(i);
         names.insert(cd->getName());
      }
   }
   else if (dataFileName.endsWith(SpecFile::getPaintFileExtension())) {
      PaintFile pf;
      pf.readFile(dataFileName);
      const int num = pf.getNumberOfPaintNames();
      for (int i = 0; i < num; i++) {
         names.insert(pf.getPaintNameFromIndex(i));
      }
   }
   else if ((dataFileName.endsWith(SpecFile::getAnalyzeVolumeFileExtension())) ||
            (dataFileName.endsWith(SpecFile::getAfniVolumeFileExtension())) ||
            (dataFileName.endsWith(SpecFile::getWustlVolumeFileExtension())) ||
            (dataFileName.endsWith(SpecFile::getNiftiVolumeFileExtension())) ||
            (dataFileName.endsWith(SpecFile::getNiftiGzipVolumeFileExtension()))) {
      VolumeFile vf;
      vf.readFile(dataFileName);
      const int num = vf.getNumberOfRegionNames();
      for (int i = 0; i < num; i++) {
         names.insert(vf.getRegionNameFromIndex(i));
      }
   }
   else {
      throw CommandException(FileUtilities::basename(dataFileName)
                             + " does not end with a file extension matching "
                               " a supported data file type.");
   }
   
   //
   // Read the color file
   //
   ColorFile* colorFile = NULL;
   if (inputColorFileName.isEmpty() == false) {
      if (QFile::exists(inputColorFileName)) {
         if (inputColorFileName.endsWith(SpecFile::getAreaColorFileExtension())) {
            colorFile = new AreaColorFile;
         }
         else if (inputColorFileName.endsWith(SpecFile::getBorderColorFileExtension())) {
            colorFile = new BorderColorFile;
         }
         else if (inputColorFileName.endsWith(SpecFile::getCellColorFileExtension())) {
            colorFile = new CellColorFile;
         }
         else if (inputColorFileName.endsWith(SpecFile::getFociColorFileExtension())) {
            colorFile = new FociColorFile;
         }
         else {
            throw CommandException(FileUtilities::basename(inputColorFileName)
                                   + " does not end with a file extension matching "
                                     " a supported color file type.");
         }
         
         colorFile->readFile(inputColorFileName);
      }
   }
   
   //
   // Create color file if needed
   //
   if (colorFile == NULL) {
      if (outputColorFileName.endsWith(SpecFile::getAreaColorFileExtension())) {
         colorFile = new AreaColorFile;
      }
      else if (outputColorFileName.endsWith(SpecFile::getBorderColorFileExtension())) {
         colorFile = new BorderColorFile;
      }
      else if (outputColorFileName.endsWith(SpecFile::getCellColorFileExtension())) {
         colorFile = new CellColorFile;
      }
      else if (outputColorFileName.endsWith(SpecFile::getFociColorFileExtension())) {
         colorFile = new FociColorFile;
      }
      else {
         throw CommandException(FileUtilities::basename(outputColorFileName)
                                + " does not end with a file extension matching "
                                  " a supported color file type.");
      }
   }
   
   //
   // create the needed colors
   //
   const int numColors = colorFile->getNumberOfColors();
   std::vector<QString> nameVector(names.begin(), names.end());
   colorFile->generateColorsForNamesWithoutColors(nameVector, 
                                                  exactMatchFlag);
                                                  
   //
   // Write the color file
   //
   if (numColors != colorFile->getNumberOfColors()) {
      colorFile->writeFile(outputColorFileName);
   }
   else {
      std::cout << "No new colors were created, output color file not written." << std::endl;
   }
   
   delete colorFile;
}