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;
printXdim_ = 5.0;
printYdim_ = 3.0;
fontSize_ = 17;
while ((opt = getopt (argc, argv, "i:p:t:c:vdh")) != EOF)
{
switch (opt)
{
case 'i': // input file
fileName_ = optarg;
break;
case 'p': // projection
{
optind--;
/*
// Use the code below to get multiple entries for an option.
string comps("");
for( ;optind < argc && *argv[optind] != '-'; optind++){
if ( comps != "" ) comps = comps + " ";
comps = comps + string(argv[optind]);
}
argvComps_.push_back(comps);
*/
case 't': // triangular projection
argvComps_.push_back(optarg);
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
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 " << i << " components: " << argvComps_[i] << endl;
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
}
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;
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
}
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_;
}
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
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_;
}
float Profile :: printXdim(void)
{
return printXdim_;
}
float Profile :: printYdim(void)
{
return printYdim_;
}
int Profile :: fontSize(void)
{
return fontSize_;
}
416
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
}
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_;
}
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
void Profile :: printXdim(float d_)
{
printXdim_ = d_;
}
void Profile :: printYdim(float d_)
{
printYdim_ = d_;
}
void Profile :: fontSize(int f_)
{
fontSize_ = f_;
}
void Profile :: toggleTicMarks()
{
ticMarks_ += 1;
if ( ticMarks_ > 2 )
ticMarks_ = 0;
}
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
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: nplot -i <data-file> [ -c <color-list>] [-p <component-list>] [-t <component-list>] [...] \n\n";
if ( exitCode != -1 )
exit(exitCode);
}