-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpSearch.java
More file actions
285 lines (189 loc) · 5.58 KB
/
SpSearch.java
File metadata and controls
285 lines (189 loc) · 5.58 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
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
package example.progetto;
import peersim.util.*;
import peersim.core.*;
import peersim.config.*;
import peersim.cdsim.*;
import java.util.Random;
import peersim.transport.Transport;
import peersim.cdsim.CDProtocol;
import peersim.edsim.EDProtocol;
import peersim.vector.SingleValueHolder;
import java.util.*;
//tramite messaggi cerca un superpeer. ha un TTL dopo tot hops smette di propagarsi, ha una lista che gli impedisce di rivisitare i nodi visitati
public class SpSearch extends SingleValueHolder implements CDProtocol, EDProtocol {
//Members
int hops;
/** config parameter name for the cache size */
public static final String PAR_CACHE = "cache";
public String n;
//Stato della ricerca
boolean searching = false;
boolean trovato = false;
//Costruttore
public SpSearch(String n){
super(n);
this.n = n;
value = 0;
//Numero di hops massimi preso dal config
hops = Configuration.getInt(n+"."+PAR_CACHE);
}
//=============================== METODI =============================================================
//Mostra il valore degli Hops
public double showvalue()
{
return value;
}
//Resetta il valore degli Hops
public void resetvalue()
{
value=0;
}
//Controlla se sta cercando
public boolean isSearching()
{
return searching;
}
//Controlla se il superpeer é stato trovato
public boolean found()
{
return trovato;
}
//Trasforma un linkable in un Vector
public void linkToVector(Linkable a, Vector v) {
for (int i =0; i<a.degree();i++)
{
v.add(a.getNeighbor(i));
}
}
//Trasforma un vector in un Linkable
public void vectorToLink(Linkable a, Vector v){
for (int i =0; i<v.size();i++)
{
Node b = a.getNeighbor(i);
b =(Node)v.get(i);
}
}
//Trova la massima utilità in un vettore di nodi
public Node maxNodeVector (Vector spnew){
int max = 0;
for (int i= 0; i< spnew.size(); i++)
{
Node x = (Node)spnew.get(i);
Node maxnode = (Node)spnew.get(max);
DinElec mx = (DinElec)maxnode.getProtocol(2);
DinElec bx = (DinElec)x.getProtocol(2);
if (mx.showutility() < bx.showutility()) //Protocol 2 = DinElec
{
max = i;
}
}
return (Node)spnew.get(max);
}
//Trova la minima utilità in un vettore di nodi
public Node minNodeVector (Vector spnew){
int max = 0;
for (int i= 0; i< spnew.size(); i++)
{
Node x = (Node)spnew.get(i);
Node maxnode = (Node)spnew.get(max);
DinElec mx = (DinElec)maxnode.getProtocol(2);
DinElec bx = (DinElec)x.getProtocol(2);
if (mx.showutility() > bx.showutility()) //Protocol 2 = DinElec
{
max = i;
}
}
return (Node)spnew.get(max);
}
//====================== PROCESS EVENT =======================================================================================
/* OVERWIEV:
-Se il messaggio dice che il superpeer é stato trovato, Value prende il valore degli Hops utilizzati per trovarli e si segnala che il risultato é stato trovato
-Se il superpeer non é stato ancora trovato si controlla se il nodo attuale lo è
Se non lo é e ci sono hops rimanenti si prosegue la riserca.
Se non ci sono hops rimanenti si manda un messaggio al mittente con hops =-1
*/
public void processEvent(Node node, int pid, Object event ) {
SearchMessage mex = (SearchMessage) event;
//Se il superpeer é stato trovato
if (mex.found ==true)
{
value = hops-mex.hopsleft;
searching = false;
if (hops>=0)
{
trovato = true;
}
return;
}
//Se il superpeer non é stato troato
if (mex.found ==false)
{
Transport t = (Transport)node.getProtocol(FastConfig.getTransport(pid));
DinElec x =(DinElec)node.getProtocol(2);
//controlla se il nodo corrente é un superpeer
if (x.IsSuperPeer())
{
t.send(node,mex.mitt,new SearchMessage(true,--mex.hopsleft,node,mex.visite),pid);
}
else
{ //Se non lo é e ci sono hops rimasti si prosegue la ricerca
if (mex.hopsleft >=0)
{
Linkable linkablesp = (Linkable) node.getProtocol(0); // 0 é sp l'insieme dei vicini Sp
if (linkablesp.degree()>0)
{
//Sceglie il nodo con l'utility maggiore in sp che non é già stato visitato
Vector vsp = new Vector();
linkToVector(linkablesp,vsp);
//controlla se é già stato visitato
Node dest = maxNodeVector(vsp);
int i = 1;
while (mex.visite.contains(dest) && i<vsp.size())
{
vsp.remove(dest);
dest = maxNodeVector(vsp);
i++;
}
if(!dest.isUp()) return;
mex.visite.add(node);
t.send(node,dest,new SearchMessage(false,--mex.hopsleft,mex.mitt,mex.visite),pid);
value = 0;
}
}
else
{
//Non ci sono hops rimanenti, il superpeer non é stato trovato
t.send(node,mex.mitt,new SearchMessage(true,-1,mex.mitt,mex.visite),pid);
}
}
}
}
//============================================NEXT CYCLE =============================================================
public void nextCycle(Node node,int pid) //Invia un messaggio ad un vicino casuale in sp con la richiesta di farsi inviare Sp e Rp
{
Linkable linkablesp = (Linkable) node.getProtocol(0); // 0 é sp l'insieme dei vicini Sp
if (linkablesp.degree()>0 && searching ==false)
{
//Sceglie il nodo con l'utility maggiore in sp
Vector vsp = new Vector();
linkToVector(linkablesp,vsp);
Node dest = maxNodeVector(vsp);
if(!dest.isUp()) return;
Transport t = (Transport)node.getProtocol(FastConfig.getTransport(pid));
//Vettore Nodi Visitati?
Vector visite = new Vector();
t.send(node,dest,new SearchMessage(false,hops,node,visite),pid);
searching = true; //Sta Cercando
trovato = false;
resetvalue(); //Resetta il valore degli hops a 0
}
}
// CLONE
public SpSearch clone(){
String s = n;
SpSearch nw = new SpSearch(s);
nw.value = 0;
nw.hops = hops;
return nw;
}
}