-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskVerificationConnectedE22Succ.java
174 lines (135 loc) · 5.68 KB
/
TaskVerificationConnectedE22Succ.java
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
package ParcoursDeGrapheSansMemoireTotal;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Stack;
import java.util.concurrent.atomic.AtomicInteger;
import util.LockfreeQueue;
public class TaskVerificationConnectedE22Succ extends Thread{
HashMap<String,CoupleSucc> rempli; //boolean true si c'est un personnage
LockfreeQueue<TrioSucc> UrlEtPage;
LockfreeQueue<CoupleResultSucc> Verifier;
AtomicInteger N;
int GenerationCourante;
int NombreGeneration;
public TaskVerificationConnectedE22Succ(HashMap<String,CoupleSucc> rempli,LockfreeQueue<CoupleResultSucc> Verifier,LockfreeQueue<TrioSucc> UrlEtPage, AtomicInteger N,int NombreGeneration,int GenerationCourant) {
this.rempli = rempli;
this.UrlEtPage = UrlEtPage;
this.Verifier =Verifier;
this.N=N;
this.NombreGeneration=NombreGeneration;
this.GenerationCourante=GenerationCourant;
}
@Override
public void run() {
// TODO Auto-generated method stub
while (!this.N.compareAndSet(0, 0)){
if (UrlEtPage.isEmpty()){
try { // la méthode wait peut marcher avec synchronisation, on peut également commenter cette partie ...
synchronized(this.N){this.N.wait();} //mettre un temps limite pour le wait peut être plus rapide
continue;
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} } //... jusque là
TrioSucc T = UrlEtPage.take();
if (T==null){continue;}
Trio t=T.t;
LockfreeQueue<String> parents=T.parents;
String _url = t.url;
String page = t.page;
int generation=t.Generation;
if (generation>this.NombreGeneration){continue;}
synchronized(rempli){if(rempli.containsKey(_url)){
if(!rempli.get(_url).id.b){continue;}
}
if ((page.indexOf("Biographical information", 40000)>=0)&&page.indexOf("<h3 class=\"pi-data-label pi-secondary-font\">Species</h3>",30000)>=0) {
synchronized(rempli){
if(!rempli.containsKey(_url)) {
Couple c= new Couple(true,generation);
rempli.put(_url, new CoupleSucc(c,parents));
}
else{
CoupleSucc DejaVu=rempli.get(_url);
if((DejaVu.id.i==generation)&&!(generation==1)){
//System.out.println("je veux ajouter des parents à "+_url);
while(!parents.isEmpty()){
String pere= parents.take();
rempli.get(_url).parents.add(pere);
//System.out.println("je veux ajouter "+pere+" comme parent à "+_url);
}
}
continue;}}
if(generation==this.NombreGeneration){continue;}
int debut = page.indexOf("/wiki/Template:Character",0);
int fin = page.indexOf("div>In other languages</div>",debut);
String motini = "<a href=\"";
String motfin = "\" title=";
LockfreeQueue<String> RepererMotToAdd = LinkExtractE2.RepererMot2 (debut, fin, motini, motfin,page);
while(!RepererMotToAdd.isEmpty()) {
CoupleResult CR=new CoupleResult(RepererMotToAdd.take(),generation+1);
LockfreeQueue<String> queue=new LockfreeQueue<String>();
queue.add(_url);
Verifier.add(new CoupleResultSucc(CR,queue));
}
}
else {Couple c=new Couple(false,-1);
synchronized (rempli){rempli.put(_url, new CoupleSucc(c, new LockfreeQueue<String>()));}}
}
}
//Quand les readers ont fini, on dépile.
while (!UrlEtPage.isEmpty()){
if (UrlEtPage.isEmpty()){
try { // la méthode wait peut marcher avec synchronisation, on peut également commenter cette partie ...
synchronized(this.N){this.N.wait();} //mettre un temps limite pour le wait peut être plus rapide
continue;
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} } //... jusque là
TrioSucc T = UrlEtPage.take();
if (T==null){continue;}
Trio t=T.t;
LockfreeQueue<String> parents=T.parents;
String _url = t.url;
String page = t.page;
int generation=t.Generation;
if (generation>this.NombreGeneration){continue;}
synchronized(rempli){if(rempli.containsKey(_url)){
if(!rempli.get(_url).id.b){continue;}
}
if ((page.indexOf("Biographical information", 40000)>=0)&&page.indexOf("<h3 class=\"pi-data-label pi-secondary-font\">Species</h3>",30000)>=0) {
synchronized(rempli){
if(!rempli.containsKey(_url)) {
Couple c= new Couple(true,generation);
rempli.put(_url, new CoupleSucc(c,parents));
}
else{
CoupleSucc DejaVu=rempli.get(_url);
if((DejaVu.id.i==generation)&&!(generation==1)){
//System.out.println("je veux ajouter des parents à "+_url);
while(!parents.isEmpty()){
String pere= parents.take();
rempli.get(_url).parents.add(pere);
//System.out.println("je veux ajouter "+pere+" comme parent à "+_url);
}
}
continue;}}
if(generation==this.NombreGeneration){continue;}
int debut = page.indexOf("/wiki/Template:Character",0);
int fin = page.indexOf("div>In other languages</div>",debut);
String motini = "<a href=\"";
String motfin = "\" title=";
//System.out.println(_url+"de generation"+generation);
LockfreeQueue<String> RepererMotToAdd = LinkExtractE2.RepererMot2 (debut, fin, motini, motfin,page);
while(!RepererMotToAdd.isEmpty()) {
CoupleResult CR=new CoupleResult(RepererMotToAdd.take(),generation+1);
LockfreeQueue<String> queue=new LockfreeQueue<String>();
queue.add(_url);
Verifier.add(new CoupleResultSucc(CR,queue));
}
}
else {Couple c=new Couple(false,-1);
synchronized (rempli){rempli.put(_url, new CoupleSucc(c, new LockfreeQueue<String>()));}}
}
}}
}