Newer
Older
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
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
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
443
444
445
446
447
448
449
450
451
452
453
454
455
#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_ = "";
nComps_ = 0;
nSteps_ = 0;
gridSize_ = 0;
legendPos_ = 0;
decoration_ = true;
grid_ = false;
verbose_ = false;
debug_ = false;
index_ = 0;
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);
argvType_.push_back(PROJECTION);
break;
case 't': // triangular projection
argvComps_.push_back(optarg);
argvType_.push_back(TRIANGLE);
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;
}
}
// 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, ":"));
components_.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: " << components_[i]->name() << endl;
cout << " Min: " << components_[i]->min() << endl;
cout << " Max: " << components_[i]->max() << endl;
}
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)
{
return argvType_[i];
}
int Profile :: nProjs()
{
return argvComps_.size();
}
int Profile :: nComps()
{
return nComps_;
}
int Profile :: nSteps()
{
return nSteps_;
}
int Profile :: gridSize()
{
return gridSize_;
}
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_;
}
int Profile :: index()
{
return index_;
}
float Profile :: border()
{
return border_;
}
float Profile :: lineWidth()
{
return lineWidth_;
}
string Profile :: frame(int i)
{
return frame_[i];
}
void Profile :: decoration(bool d_)
{
decoration_ = d_;
}
void Profile :: grid(bool g_)
{
grid_ = g_;
}
void Profile :: index(int i_)
{
index_ = i_;
}
void Profile :: border(float b_)
{
border_ = b_;
}
void Profile :: lineWidth(float b_)
{
lineWidth_ = b_;
}
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> [-p <components>] [-t <components>] [...] \n\n";
if ( exitCode != -1 )
exit(exitCode);
}
vector <Component *> Profile :: components(void)
{
return components_;
}
Component * Profile :: component(int i)
{
return components_[i];
}