163 |
aurelien |
1 |
package org.tela_botanica.del.client.services;
|
|
|
2 |
|
|
|
3 |
import java.util.ArrayList;
|
1124 |
gduche |
4 |
import java.util.Iterator;
|
163 |
aurelien |
5 |
import java.util.List;
|
|
|
6 |
import java.util.Map;
|
227 |
aurelien |
7 |
import java.util.Set;
|
163 |
aurelien |
8 |
|
|
|
9 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
|
|
10 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
|
|
11 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
966 |
gduche |
12 |
import com.google.gwt.user.client.Window;
|
163 |
aurelien |
13 |
|
|
|
14 |
|
|
|
15 |
public class CalculVoteDeterminationService {
|
|
|
16 |
|
|
|
17 |
public static List<MoyenneVote> calculerVoteDeterminationPlusPopulaire(List<PropositionDetermination> propositions) {
|
|
|
18 |
List<MoyenneVote> pairesVotes = new ArrayList<MoyenneVote>();
|
|
|
19 |
|
|
|
20 |
for (PropositionDetermination proposition : propositions) {
|
|
|
21 |
pairesVotes.add(calculerVoteDetermination(proposition));
|
|
|
22 |
}
|
|
|
23 |
|
|
|
24 |
java.util.Collections.sort(pairesVotes);
|
|
|
25 |
|
|
|
26 |
return pairesVotes;
|
|
|
27 |
}
|
|
|
28 |
|
1124 |
gduche |
29 |
public static int getNombreTotalVotants(PropositionDetermination proposition) {
|
|
|
30 |
int nbVotants = 0;
|
|
|
31 |
List<PropositionDetermination> votes = proposition.getObservation().getPropositionDeterminations();
|
|
|
32 |
Iterator<PropositionDetermination> itVotes = votes.iterator();
|
|
|
33 |
while (itVotes.hasNext()) {
|
|
|
34 |
PropositionDetermination propositionCourante = itVotes.next();
|
|
|
35 |
nbVotants += propositionCourante.getVotesDeterminations().size();
|
|
|
36 |
}
|
|
|
37 |
return nbVotants;
|
|
|
38 |
}
|
|
|
39 |
|
1139 |
aurelien |
40 |
public static MoyenneVote calculerVoteDetermination(PropositionDetermination propositionDetermination) {
|
1124 |
gduche |
41 |
int nbVotants = getNombreTotalVotants(propositionDetermination);
|
1139 |
aurelien |
42 |
return calculerProportionVote(propositionDetermination, nbVotants);
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
public static MoyenneVote calculerMoyenneVoteDetermination(PropositionDetermination propositionDetermination, int nbVotants) {
|
|
|
46 |
return calculerProportionVote(propositionDetermination, nbVotants);
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
private static MoyenneVote calculerProportionVote(PropositionDetermination propositionDetermination, int nbVotants) {
|
227 |
aurelien |
50 |
Map<String,VoteDetermination> votes = propositionDetermination.getVotesDeterminations();
|
1124 |
gduche |
51 |
|
1098 |
aurelien |
52 |
double scoreVoteIdentifie = 0;
|
|
|
53 |
double scoreVoteAnonyme = 0;
|
163 |
aurelien |
54 |
|
1098 |
aurelien |
55 |
double scoreVote = 0;
|
|
|
56 |
|
1124 |
gduche |
57 |
|
163 |
aurelien |
58 |
if(votes.size() > 0) {
|
227 |
aurelien |
59 |
Set<String> cles = votes.keySet();
|
1098 |
aurelien |
60 |
|
227 |
aurelien |
61 |
for (String cle : cles) {
|
1098 |
aurelien |
62 |
String idAuteur = cle;
|
|
|
63 |
int valeurVote = votes.get(cle).getVote();
|
|
|
64 |
if(estUnAuteurIdentifie(idAuteur)) {
|
|
|
65 |
// un votant identifiant compte comme deux votants supplémentaires
|
|
|
66 |
// il a donc un vote 3 fois supérieur
|
1124 |
gduche |
67 |
scoreVoteIdentifie += valeurVote;
|
|
|
68 |
//nbVotants += 2;
|
1098 |
aurelien |
69 |
} else {
|
|
|
70 |
scoreVoteAnonyme += valeurVote;
|
|
|
71 |
}
|
163 |
aurelien |
72 |
}
|
|
|
73 |
|
1124 |
gduche |
74 |
scoreVote = ((scoreVoteAnonyme + scoreVoteIdentifie)/(nbVotants))*100;
|
163 |
aurelien |
75 |
} else {
|
|
|
76 |
scoreVote = -1;
|
|
|
77 |
}
|
|
|
78 |
|
1098 |
aurelien |
79 |
return new MoyenneVote((new Double(scoreVote)).intValue(), propositionDetermination);
|
163 |
aurelien |
80 |
}
|
1098 |
aurelien |
81 |
|
|
|
82 |
private static boolean estUnAuteurIdentifie(String idAuteur) {
|
|
|
83 |
boolean estIdentifie = true;
|
|
|
84 |
try {
|
|
|
85 |
int intIdAuteur = Integer.parseInt(idAuteur);
|
|
|
86 |
} catch (NumberFormatException nfe) {
|
|
|
87 |
estIdentifie = false;
|
|
|
88 |
}
|
|
|
89 |
return estIdentifie;
|
|
|
90 |
}
|
163 |
aurelien |
91 |
}
|