-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.cpp
More file actions
148 lines (116 loc) · 2.68 KB
/
master.cpp
File metadata and controls
148 lines (116 loc) · 2.68 KB
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
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <list>
#include <string>
#include <string.h>
#include <fstream>
#include <sstream>
#include <pvm3.h>
#define FILE_NAME_BASE "/home/inf85108/proc"
#define SLAVENAME "slave"
#include "joblist.h"
#include "tids.h"
using std::cout;
using std::cin;
using std::list;
using std::string;
using std::ifstream;
void parseFile(const string &filename, JobList &commands) {
ifstream file(filename.c_str());
list<Oper> commandList;
Oper newOper;
string line;
int 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("");
}
}
int main(int argc, char *argv[]) {
if (argc != 2) {
printf("Usage: %s <numb of slave>", argv[0]);
exit(1);
}
int slaveNum = atoi(argv[1]);
Tids tids(slaveNum);
pvm_spawn(SLAVENAME, NULL, PvmTaskDefault, "", tids.size(), tids.data());
init(tids);
string line;
while (1) {
cin >> line;
if (line == "start") {
char resume = 0;
pvm_initsend(PvmDataDefault);
pvm_pkbyte(&resume, 1, 1);
pvm_mcast(tids.data(), tids.size(), RESUME);
}
}
pvm_exit();
return 0;
}