-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.cpp
113 lines (91 loc) · 2.19 KB
/
init.cpp
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
#include <cstdio>
#include <cstdlib>
#include <list>
#include <string>
#include <string.h>
#include <fstream>
#include <sstream>
using std::list;
using std::string;
using std::ifstream;
#include <pvm3.h>
#include "joblist.h"
#include "init.h"
#define FILE_NAME_BASE "/home/C/Studia/PR/halter/proc"
//#define FILE_NAME_BASE "/home/C/Studia/PR/halter/proc"
void parseFile(const string &filename, JobList &commands) {
ifstream file(filename.c_str());
list<Oper> commandList;
Oper newOper;
string line;
unsigned space;
char command[10];
int arg;
if (!file.is_open()) {
printf("Error: nie udalo sie otworzyc pliku '%s'.\n", filename.c_str());
exit(1);
}
while (! file.eof()) {
getline(file, line);
space = line.find(' ');
// Parsowanie lini
if (space != string::npos)
sscanf(line.c_str(), "%s %d", command, &arg);
else
strcpy(command, line.c_str());
// Parsowanie instrukcji
if (strcmp(command, "SET") == 0) {
newOper.instr = SET;
newOper.arg = arg;
}
else if (strcmp(command, "GET") == 0) {
newOper.instr = GET;
newOper.arg = arg;
}
else if (strcmp(command, "REGSET") == 0) {
newOper.instr = REGSET;
newOper.arg = arg;
}
else if (strcmp(command, "INC") == 0) {
newOper.instr = INC;
newOper.arg = arg;
}
else if (strcmp(command, "ADD") == 0) {
newOper.instr = ADD;
newOper.arg = arg;
}
else if (strcmp(command, "PRINT") == 0) {
newOper.instr = PRINT;
newOper.arg = -1;
}
else if (strcmp(command, "WAIT") == 0) {
newOper.instr = WAIT;
newOper.arg = -1;
}
else
continue;
commandList.push_back(newOper);
}
file.close();
// Przepisywanie zawartości listy do wektora
commands.assign(commandList.begin(), commandList.end());
}
void init(Tids &tids) {
std::ostringstream ss;
JobList proc;
int jobNum;
int slaveNum = tids.size();
for (int i = 0; i < slaveNum; ++i) {
ss << i;
parseFile(FILE_NAME_BASE + ss.str(), proc);
pvm_initsend(PvmDataDefault);
pvm_pkint(&i, 1, 1);
pvm_pkint(&slaveNum, 1, 1);
pvm_pkint(tids.data(), tids.size(), 1);
jobNum = proc.size();
pvm_pkint(&jobNum, 1, 1);
pvm_pkbyte((char *) proc.data(), sizeof(Oper) * proc.size(), 1);
pvm_send(tids[i], INIT);
ss.str("");
}
}