-
Notifications
You must be signed in to change notification settings - Fork 0
/
Application.cpp
217 lines (188 loc) · 5.3 KB
/
Application.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
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
/**********************************
* FILE NAME: Application.cpp
*
* DESCRIPTION: Application layer class function definitions
**********************************/
#include "Application.h"
void handler(int sig) {
void *array[10];
size_t size;
// get void*'s for all entries on the stack
size = backtrace(array, 10);
// print out all the frames to stderr
fprintf(stderr, "Error: signal %d:\n", sig);
backtrace_symbols_fd(array, size, STDERR_FILENO);
exit(1);
}
/**********************************
* FUNCTION NAME: main
*
* DESCRIPTION: main function. Start from here
**********************************/
int main(int argc, char *argv[]) {
//signal(SIGSEGV, handler);
if ( argc != ARGS_COUNT ) {
cout<<"Configuration (i.e., *.conf) file File Required"<<endl;
return FAILURE;
}
// Create a new application object
Application *app = new Application(argv[1]);
// Call the run function
app->run();
// When done delete the application object
delete(app);
return SUCCESS;
}
/**
* Constructor of the Application class
*/
Application::Application(char *infile) {
int i;
par = new Params();
srand (time(NULL));
par->setparams(infile);
log = new Log(par);
en = new EmulNet(par);
mp1 = (MP1Node **) malloc(par->EN_GPSZ * sizeof(MP1Node *));
/*
* Init all nodes
*/
for( i = 0; i < par->EN_GPSZ; i++ ) {
Member *memberNode = new Member;
memberNode->inited = false;
Address *addressOfMemberNode = new Address();
Address joinaddr;
joinaddr = getjoinaddr();
addressOfMemberNode = (Address *) en->ENinit(addressOfMemberNode, par->PORTNUM);
mp1[i] = new MP1Node(memberNode, par, en, log, addressOfMemberNode);
log->LOG(&(mp1[i]->getMemberNode()->addr), "APP");
delete addressOfMemberNode;
}
}
/**
* Destructor
*/
Application::~Application() {
delete log;
delete en;
for ( int i = 0; i < par->EN_GPSZ; i++ ) {
delete mp1[i];
}
free(mp1);
delete par;
}
/**
* FUNCTION NAME: run
*
* DESCRIPTION: Main driver function of the Application layer
*/
int Application::run()
{
int i;
int timeWhenAllNodesHaveJoined = 0;
// boolean indicating if all nodes have joined
bool allNodesJoined = false;
srand(time(NULL));
// As time runs along
for( par->globaltime = 0; par->globaltime < TOTAL_RUNNING_TIME; ++par->globaltime ) {
// Run the membership protocol
mp1Run();
// Fail some nodes
fail();
}
// Clean up
en->ENcleanup();
for(i=0;i<=par->EN_GPSZ-1;i++) {
mp1[i]->finishUpThisNode();
}
return SUCCESS;
}
/**
* FUNCTION NAME: mp1Run
*
* DESCRIPTION: This function performs all the membership protocol functionalities
*/
void Application::mp1Run() {
int i;
// For all the nodes in the system
for( i = 0; i <= par->EN_GPSZ-1; i++) {
/*
* Receive messages from the network and queue them in the membership protocol queue
*/
if( par->getcurrtime() > (int)(par->STEP_RATE*i) && !(mp1[i]->getMemberNode()->bFailed) ) {
// Receive messages from the network and queue them
mp1[i]->recvLoop();
}
}
// For all the nodes in the system
for( i = par->EN_GPSZ - 1; i >= 0; i-- ) {
/*
* Introduce nodes into the distributed system
*/
if( par->getcurrtime() == (int)(par->STEP_RATE*i) ) {
// introduce the ith node into the system at time STEPRATE*i
mp1[i]->nodeStart(JOINADDR, par->PORTNUM);
cout<<i<<"-th introduced node is assigned with the address: "<<mp1[i]->getMemberNode()->addr.getAddress() << endl;
nodeCount += i;
}
/*
* Handle all the messages in your queue and send heartbeats
*/
else if( par->getcurrtime() > (int)(par->STEP_RATE*i) && !(mp1[i]->getMemberNode()->bFailed) ) {
// handle messages and send heartbeats
mp1[i]->nodeLoop();
#ifdef DEBUGLOG
if( (i == 0) && (par->globaltime % 500 == 0) ) {
log->LOG(&mp1[i]->getMemberNode()->addr, "@@time=%d", par->getcurrtime());
}
#endif
}
}
}
/**
* FUNCTION NAME: fail
*
* DESCRIPTION: This function controls the failure of nodes
*
* Note: this is used only by MP1
*/
void Application::fail() {
int i, removed;
// fail half the members at time t=400
if( par->DROP_MSG && par->getcurrtime() == 50 ) {
par->dropmsg = 1;
}
if( par->SINGLE_FAILURE && par->getcurrtime() == 100 ) {
removed = (rand() % par->EN_GPSZ);
#ifdef DEBUGLOG
log->LOG(&mp1[removed]->getMemberNode()->addr, "Node failed at time=%d", par->getcurrtime());
#endif
mp1[removed]->getMemberNode()->bFailed = true;
}
else if( par->getcurrtime() == 100 ) {
removed = rand() % par->EN_GPSZ/2;
for ( i = removed; i < removed + par->EN_GPSZ/2; i++ ) {
#ifdef DEBUGLOG
log->LOG(&mp1[i]->getMemberNode()->addr, "Node failed at time = %d", par->getcurrtime());
#endif
mp1[i]->getMemberNode()->bFailed = true;
}
}
if( par->DROP_MSG && par->getcurrtime() == 300) {
par->dropmsg=0;
}
}
/**
* FUNCTION NAME: getjoinaddr
*
* DESCRIPTION: This function returns the address of the coordinator
*/
Address Application::getjoinaddr(void){
//trace.funcEntry("Application::getjoinaddr");
Address joinaddr;
joinaddr.init();
*(int *)(&(joinaddr.addr))=1;
*(short *)(&(joinaddr.addr[4]))=0;
//trace.funcExit("Application::getjoinaddr", SUCCESS);
return joinaddr;
}