-
Notifications
You must be signed in to change notification settings - Fork 2
/
ScorePlayer.cc
402 lines (334 loc) · 8.88 KB
/
ScorePlayer.cc
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
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999 The Regents of the University of California
// Permission to use, copy, modify, and distribute this software and
// its documentation for any purpose, without fee, and without a
// written agreement is hereby granted, provided that the above copyright
// notice and this paragraph and the following two paragraphs appear in
// all copies.
//
// IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
// DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
// LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
// EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
//
// THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON
// AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
// PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
//
//////////////////////////////////////////////////////////////////////////////
//
// BRASS source file
//
// SCORE visualization player
//
//////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <memory.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#include "ScorePlayer.h"
#include "ScoreStateGraph.h"
const char *DUMMY_NAME = "dummy.vcg";
bool gSplitCPU = true;
bool gNOCPU = false;
void runPlayer(FILE* fp, pid_t child_pid);
void makeDummyFile();
void show_env();
bool parseArg(char *str, int *number);
void PrintUsageAndDie();
int main (int argc, char *argv[])
{
char *filename = 0;
for (int i = 1; i < argc; i ++) {
if (argv[i][0] == '-') { // deal with options
if (!strcmp(argv[i], "-s") ||
!strcmp(argv[i], "-splitCPU")) {
gSplitCPU = true;
}
else if (!strcmp(argv[i], "-ns") ||
!strcmp(argv[i], "-nosplitCPU")) {
gSplitCPU = false;
}
else if (!strcmp(argv[i], "-no_cpu")) {
gNOCPU = true;
}
else {
PrintUsageAndDie();
}
}
else { // assume that this is a filename
if (filename)
PrintUsageAndDie();
filename = argv[i];
}
}
if (!filename)
PrintUsageAndDie();
ScorePlayer player;
if (player.Init(filename))
player.Run();
else {
exit(1);
}
//unlink ("./vcg.errors");
return 0;
}
void PrintUsageAndDie()
{
cerr << "ScorePlayer: use ScorePlayer [-s/-splitCPU] "
<< "[-ns/-nosplitCPU] <log.file.name>" << endl;
exit(1);
}
// Implementation of ScorePlayer
// release the memory occupied by the PlayerIndexItem's
ScorePlayer::~ScorePlayer()
{
for (unsigned int i = 0; i < index.size(); i ++)
delete index[i];
if (dataFile)
fclose(dataFile);
}
// Initialize the player:
// (1) open the file req'd
// (2) build index
// (3) fork off a separate process to run xvcg
// return true, if everything is successful, otherwise false
bool ScorePlayer::Init(char *filename)
{
if ((dataFile = fopen(filename, "r")) == NULL) {
cerr << "ScorePlayer: ERROR: unable to open " << filename << endl;
return false;
}
if (!BuildIndex())
return false;
if (index.size() == 0) {
cerr << "ScorePlayer: File is empty\n";
exit(0);
}
::makeDummyFile();
errno = 0;
child_pid = fork();
switch(child_pid) {
case -1: // error
cerr <<
"ScorePlayer: ERROR: unable to create a new process to run VCG: errno = ";
if (errno == EAGAIN) cerr << "EAGAIN\n";
else
if (errno == ENOMEM) cerr << "ENOMEM\n";
else
cerr << "--check yourselves--\n";
exit(1);
case 0: // child process
if (!freopen("./vcg.errors", "w", stderr))
cerr << "ScorePlayer: Unable to reassign stderr" << endl;
if (!freopen("./vcg.errors", "w", stdout))
cerr << "ScorePlayer: Unable to reassign stdout" << endl;
// execlp("/project/cs/brass/a/tools/free/vcg.1.30/bin/xvcg",
execlp("xvcg",
"xvcg", "-a", "1", DUMMY_NAME, (char*) NULL);
cerr << "ScorePlayer: ERROR: unable to exec xvcg" << endl;
exit(1);
default: // parent process
cerr << "Initializing ..... please wait .....";
sleep(5);
cerr << "done" << endl;
break;
}
currentFrame = 0;
return true;
}
// make a file that vcg must open
void makeDummyFile ()
{
FILE *fp;
if (!(fp = fopen(DUMMY_NAME, "w"))) {
cerr << "ScorePlayer: ERROR: unable to make dummy file" << endl;
exit(1);
}
fprintf(fp, "graph: { \nnode: {\n title: \"CPU\" }\n }\n");
fclose(fp);
}
bool ScorePlayer::BuildIndex()
{
rewind(dataFile);
index.clear();
while (!feof(dataFile)) {
PlayerIndexItem *item = new PlayerIndexItem;
ScoreStateGraph graph(0);
item->diskOffset = ftell(dataFile);
int ret_val;
if ((ret_val = graph.read(dataFile)) == READ_OK) {
item->timeSlice = graph.getCurrentTimeslice();
index.push_back(item);
}
else {
if (ret_val == READ_EOF)
return true; // if eof, we're done
else {
cerr << "ScorePlayer: Error reading the file, it may be corrupted" << endl;
return false; // error was encountered
}
}
}
return true;
}
bool ScorePlayer::Go(int frame_number)
{
if ((frame_number < 0) || ((unsigned int)frame_number > index.size()))
return false;
need_update = true;
currentFrame = frame_number;
return true;
}
bool ScorePlayer::Forward(int delta)
{
if ((unsigned int)(currentFrame+delta) >= index.size())
return false;
need_update = true;
currentFrame += delta;
return true;
}
bool ScorePlayer::Back(int delta)
{
if (currentFrame-delta < 0)
return false;
need_update = true;
currentFrame -= delta;
return true;
}
bool ScorePlayer::Search(unsigned int timeslice)
{
for (unsigned int i = 0; i < index.size(); i ++) {
if (index[i]->timeSlice == timeslice) {
need_update = true;
currentFrame = i;
return true;
}
// since the timeslices are ordered, there is no chance to find one
// if the following is true
if (index[i]->timeSlice > timeslice)
break;
}
return false;
}
void ScorePlayer::Display()
{
if (!need_update)
return;
need_update = false;
if (fseek(dataFile, index[currentFrame]->diskOffset, SEEK_SET)) {
cerr << "ScorePlayer: ERROR: Unable to seek file\n";
exit(1);
}
int ret_val;
ScoreStateGraph graph(0);
if ((ret_val = graph.read(dataFile)) != READ_OK) {
cerr << "ScorePlayer: ERROR: Problems reading file, ret_val = " <<
ret_val << endl;
exit(1);
}
FILE *vcg_fp;
if (!(vcg_fp = fopen(DUMMY_NAME, "w"))) {
cerr << "ScorePlayer: Error opening " << DUMMY_NAME << endl;
exit(1);
}
graph.writeVCG(vcg_fp, gSplitCPU, gNOCPU);
fclose(vcg_fp);
// make xvcg refresh
kill (child_pid, SIGUSR1);
}
void ScorePlayer::Run()
{
if (child_pid == 0)
return;
char command[100];
bool quit = false;
int i = 0;
while (!quit) {
Display();
fprintf(stdout, "Frame %d (%u) > ", currentFrame,
index[currentFrame]->timeSlice);
if (!fgets(command, 99, stdin))
continue;
switch(tolower(command[i])) {
case 'q':
quit = true;
break;
case 'g':
{ int pos;
if (parseArg(command+i+1, &pos))
Go(pos);
}
break;
case 'f':
{
int delta;
if(*(command+i+1) != '\n') {
if (parseArg(command+i+1, &delta))
Forward(delta);
}
else
Forward(1);
}
break;
case '\n':
Forward(1);
break;
case 'b':
{
int delta;
if(*(command+i+1) != '\n') {
if (parseArg(command+i+1, &delta))
Back(delta);
}
else
Back(1);
}
break;
case 's':
{ int slice;
if (parseArg(command+i+1, &slice))
Search(slice);
}
break;
case 'h':
printHelpMsg();
break;
default:
cerr << "Invalid command" << endl;
}
}
// this should close xcvg
kill (child_pid, SIGUSR2);
kill (child_pid, SIGKILL);
}
bool parseArg(char *str, int *number)
{
char *endptr;
*number = strtol(str, &endptr, 10);
if (endptr <= str) {
cerr << "ScorePlayer: ERROR: invalid argument" << endl;
return false;
}
else
return true;
}
void ScorePlayer::printHelpMsg()
{
static const char *helpMsg =
"q..........................Quit the ScorePlayer\n" \
"g<frame_number>............Go to the specified frame number\n" \
"f<increment>...............Forward by the specified number of frames (default 1)\n" \
"b<decrement>...............Back by the specified number of frames (default 1)\n" \
"s<slice_number>............Search for the frame with slice_number\n" \
"'Enter key'................Equivalent to f1 (forward by 1 frame)\n" \
"h..........................Print this help message\n";
fprintf(stdout, helpMsg);
}