Newer
Older
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <stdlib.h>
#include <Profile.h>
#include <getopt.h>
#include <string.h>
Profile :: Profile(int argc, char **argv)
{
int opt;
fileName_ = "";
title_ = "";
legendPos_ = 0;
decoration_ = true;
grid_ = false;
verbose_ = false;
debug_ = false;
border_ = 0.00;
lineWidth_ = 1.5;
while ((opt = getopt (argc, argv, "i:p:t:c:vdh")) != EOF)
{
switch (opt)
{
case 'i': // input file
fileName_ = optarg;
break;
case 'p': // projection
argvComps_.push_back(optarg);
break;
case 't': // triangular projection
argvComps_.push_back(optarg);
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
break;
case 'c': // color
extractColors(optarg);
break;
case 'v': // verbose
verbose_ = true;
break;
case 'd': // debug
debug_ = true;
break;
case 'h': // help
printUsage (EXIT_SUCCESS);
break;
case '?':
if (optopt == 'i' || optopt == 'p' || optopt == 'm' || isprint (optopt))
{
printUsage (EXIT_FAILURE);
}
}
}
if ( argvComps_.size() == 0 )
{
cerr << "Please, enter at least on projection to plot." << endl;
printUsage(EXIT_FAILURE);
}
if ( argvColors_.size() == 0 )
{
extractColors("green:blue:red:purple:yellow:pink:lightblue");
}
if ( readFile() )
{
cerr << "Wrong file format - '" << fileName_ << "'" << endl;
printUsage(EXIT_FAILURE);
}
if ( verbose_ )
{
cout << endl;
cout << "Input data file name: " << fileName_ << endl;
cout << "Title: " << title_ << endl;
cout << "Grid size: " << gridSize_ << endl;
cout << "No components: " << nComps_ << endl;
cout << "No projection: " << argvComps_.size() << endl;
for ( int i = 0; i < argvComps_.size(); i++ )
{
cout << " Projection components " << i << ": " << argvComps_[i] << endl;
}
cout << endl;
cout << endl;
}
}
int Profile :: extractComponents (void)
{
FILE *inputFile = fopen ( fileName_.c_str(), "r" );
bool reading = true;
char ch, buffer[1024], title[50];
char *line, *str;
int info = 0, value, i;
if ( inputFile != NULL )
{
while (reading)
{
ch = fgetc (inputFile);
if (ch == 10) // return character
{
ch = fgetc (inputFile);
if (ch == 10) reading = false; // if return character again stop reading
}
// Extract plot informations: components, number of plots and grid dimension
if ( ch == 58 && info < 5 ) // ':' character
{
if ( info == 0 )
fscanf (inputFile, "%s", title);
else
fscanf (inputFile, "%d", &value);
switch (info)
{
case 0: // Physics name
info++;
//strcpy (title_, title);
title_ = title;
break;
case 1: // Componentes
info++;
nComps_ = value;
break;
case 2: // Plot steps
info++;
nSteps_ = value;
break;
case 3: // Grid size
info++;
gridSize_ = value;
break;
case 4: // Line that preceds the list of component informations
info++;
break;
}
}
if ( argvColors_.size() < nComps_ )
{
cerr << "Number of colors is less then number of components." << endl;
printUsage(EXIT_FAILURE);
}
// Extract component informations
if ( ch == 58 && info == 5 ) // start reading component informations
{
for (i = 0; i < nComps_; i++)
{
line = fgets (buffer, sizeof (buffer), inputFile);
str = strtok (line, ":"); // first entry is an unused comment
str = strtok (NULL, ":"); // component name
string compName(str);
float min = atof (strtok (NULL, ":"));
float max = atof (strtok (NULL, ":"));
inputComps_.push_back(new Component(compName, min, max, argvColors_[i]));
}
}
}
fclose ( inputFile );
}
else
{
cout << "ERROR opening file: " << fileName_ << endl;
}
if ( verbose_ )
{
cout << "Title: " << title_ << endl;
cout << "Componentes: " << nComps_ << endl;
cout << "Plot steps: " << nSteps_ << endl;
cout << "Grid size: " << gridSize_ << endl << endl;
for (i = 0; i < nComps_; i++)
{
cout << "Component Object " << i+1 << endl;
cout << " Name: " << inputComps_[i]->name() << endl;
cout << " Min: " << inputComps_[i]->min() << endl;
cout << " Max: " << inputComps_[i]->max() << endl;
cout << " Color: " << inputComps_[i]->color() << endl;
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
}
cout << endl;
}
return 0;
}
void Profile :: extractColors(string c)
{
// Strip color names
stringstream ss (c);
while ( ss.good() )
{
string substr;
getline (ss, substr, ':');
argvColors_.push_back(substr);
}
}
//-------------------------------------------
int Profile :: readFile()
{
vector <string> fileStr;
string str;
extractComponents();
/*
THIS CODE WILL BE USED TO READ THE ROLE CONTENT OF THE INPUT FILE SO
GNUPLOT WILL RECEIVE THE CURVE COORDS NOT THE INPUT FILE ITSELF.
ifstream In(fileName_.c_str());
while ( ! In.eof() )
{
getline (In, str);
fileStr.push_back(str);
}
*/
return 0;
}
string Profile :: fileName()
{
return fileName_;
}
string Profile :: title()
{
return title_;
}
string Profile :: argvComp(int i)
{
return argvComps_[i];
}
argvOpt Profile :: argvType(int i)
{
}
int Profile :: nProjs()
{
return argvComps_.size();
}
vector <Component *> & Profile :: inputComps(void)
{
return inputComps_;
}
Component * Profile :: inputComp(int i)
{
return inputComps_[i];
}
int Profile :: nComps()
{
return nComps_;
}
int Profile :: nSteps()
{
return nSteps_;
}
int Profile :: gridSize()
{
return gridSize_;
}
int Profile :: index()
{
return index_;
}
int Profile :: ticMarks()
{
return ticMarks_;
}
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
int Profile :: legendPos()
{
return legendPos_;
}
string Profile :: legend()
{
switch (legendPos_) {
case 0:
return "right";
break;
case 1:
return "left";
break;
case 2:
return "off";
break;
}
}
bool Profile :: decoration()
{
return decoration_;
}
bool Profile :: grid()
{
return grid_;
}
bool Profile :: verbose()
{
return verbose_;
}
bool Profile :: debug()
{
return debug_;
}
float Profile :: border()
{
return border_;
}
float Profile :: lineWidth()
{
return lineWidth_;
}
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
}
void Profile :: decoration(bool d_)
{
decoration_ = d_;
}
void Profile :: grid(bool g_)
{
grid_ = g_;
}
void Profile :: border(float b_)
{
border_ = b_;
}
void Profile :: lineWidth(float b_)
{
lineWidth_ = b_;
}
void Profile :: toggleTicMarks()
{
ticMarks_ += 1;
if ( ticMarks_ > 2 )
ticMarks_ = 0;
}
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
void Profile :: toggleLegend()
{
legendPos_ += 1;
if ( legendPos_ > 2 )
legendPos_ = 0;
}
void Profile :: toggleDecoration()
{
if ( decoration_ )
decoration_ = false;
else
decoration_ = true;
}
void Profile :: toggleGrid()
{
if ( grid() )
{
cout << "- GRID ON()" << endl;
}
else
{
cout << "- GRID OFF()" << endl;
}
if ( grid_ )
grid_ = false;
else
grid_ = true;
}
void Profile :: toggleVerbose()
{
if ( verbose_ )
verbose_ = false;
else
verbose_ = true;
}
void Profile :: printUsage(int exitCode = -1)
{
cerr << "\n Usage: %s -i <data-file> [ -c <color-list>] [-p <component-list>] [-t <component-list>] [...] \n\n";
if ( exitCode != -1 )
exit(exitCode);
}