Subversion Repositories eFlore/Applications.coel

Rev

Rev 1292 | Rev 1367 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1292 Rev 1329
Line 29... Line 29...
29
	public CollectionAsyncDao(Rafraichissable vueARafraichirCourrante) {
29
	public CollectionAsyncDao(Rafraichissable vueARafraichirCourrante) {
30
		vueARafraichir = vueARafraichirCourrante;
30
		vueARafraichir = vueARafraichirCourrante;
31
		utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
31
		utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
32
	}
32
	}
Line -... Line 33...
-
 
33
	
-
 
34
	/**
-
 
35
	 * 
-
 
36
	 * @param paginationProgressive : définit le mode de consultation de la base de données
-
 
37
	 * 			- True :	la consultation des données est progressive, ce qui signifie que la liste est chargée (paginée) au
-
 
38
	 * 						fur et à mesure de la consultation des données par l'utilisateur.
-
 
39
	 * 			- False :	la consultation des données est classique : un seul appel à la base de données est effectué, le retour
-
 
40
	 * 						est renvoyé à l'appelant
-
 
41
	 * 			// FIXME : si la taille de la liste est supérieure à la limite du JREST (150), ce deuxieme mode ne fonctionne pas
33
	
42
	 */
-
 
43
	public void selectionner(final boolean paginationProgressive, final String projetId, final String collectionId, final String nomCollection, final int start, final int nbElements) {
34
	public void selectionner(final String projetId, final String collectionId, final String nomCollection, final int start, final int nbElements) {
44
 
-
 
45
		// Ajout des paramètres et données à selectionner dans l'URL
35
		// Ajout des paramètres et données à selectionner dans l'URL
46
		String nom = (nomCollection == null) ? "%" : nomCollection+"%";
-
 
47
		String[] parametres = {projetId, collectionId, nom};
36
		String[] parametres = {projetId, collectionId, nomCollection};
48
		
37
		HashMap<String, String> restrictions = new HashMap<String, String>();
-
 
-
 
49
		HashMap<String, String> restrictions = new HashMap<String, String>();
38
		restrictions.put("start", String.valueOf(start*nbElements));
50
		
39
		if (nbElements != -1)	{
51
		if (nbElements != -1)	{
40
			restrictions.put("limit", String.valueOf(nbElements));
52
			restrictions.put("limit", String.valueOf(nbElements));
41
		}
53
		}
-
 
54
 
-
 
55
		/** GESTION DE LA REQUETE dans le cas d'une liste paginée progressive **/
-
 
56
		if (paginationProgressive) {
-
 
57
 
-
 
58
			/** DEFINITION DU TUPLE DE DEPART **/
-
 
59
			restrictions.put("start", String.valueOf(start));
-
 
60
			
-
 
61
			/** CONSTRUCTION DE LA REQUETE **/
-
 
62
    		final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
-
 
63
 
-
 
64
    		/** ENVOI DE LA REQUETE **/
-
 
65
    		rb.envoyerRequete(null, new JsonRestRequestCallback()
-
 
66
    		{
-
 
67
    			/** RECEPTION DE LA REPONSE **/
-
 
68
    			public void surReponse(JSONValue responseValue)
-
 
69
    			{
-
 
70
    				/** Dans le cas d'une liste paginée, vueARafraichir est un objet Proxy.
-
 
71
    				 * On retourne l'objet JSON au proxy afin que ce soit lui qui le traite **/
-
 
72
    				vueARafraichir.rafraichir(responseValue);
-
 
73
    			}
-
 
74
    		});
-
 
75
		}
-
 
76
		/** GESTION DE LA REQUETE dans le cas d'une liste NON paginée progressive **/
-
 
77
		else {
-
 
78
			
-
 
79
			/** DEFINITION DU TUPLE DE DEPART **/
-
 
80
			restrictions.put("start", String.valueOf(start*nbElements));
42
		
81
			
43
		final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
82
			final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
44
		
83
			
45
		rb.envoyerRequete(null, new JsonRestRequestCallback() {
84
			rb.envoyerRequete(null, new JsonRestRequestCallback() {
46
			@Override
85
				@Override
47
			public void surReponse(JSONValue responseValue) {
86
				public void surReponse(JSONValue responseValue) {
-
 
87
					if (responseValue != null) {
48
				if (responseValue != null) {
88
 
-
 
89
						JSONObject responseObject = responseValue.isObject();
49
					// Si la requête est un succès, reception d'un objet ou d'un tableau
90
 
-
 
91
						if (responseObject != null) {
-
 
92
							
50
					JSONArray responseArray = responseValue.isArray();
93
							// Si la réponse est un tableau, alors c'est une liste de collections qui a été retournée
51
					if (responseArray.get(1).isObject() != null) {
94
							if (responseObject.get("collections").isArray() != null) {
52
						final JSONObject reponse = responseArray.get(1).isObject();
95
								final JSONArray reponse = responseObject.get("collections").isArray();
53
						Collection collection = new Collection(reponse);
96
								CollectionListe collections = new CollectionListe(reponse, responseObject.get("nbElements").isNumber(), vueARafraichir);
54
						CollectionBotanique collectionBotanique = new CollectionBotanique(reponse);
97
								collections.setTaillePage(nbElements);
55
						collection.setBotanique(collectionBotanique);
98
								collections.setPageCourante(start);							
56
						
99
								
-
 
100
								vueARafraichir.rafraichir(collections);
57
						Information info = new Information("selection_collection");
101
								
58
						info.setDonnee(0, collection);
-
 
59
						vueARafraichir.rafraichir(info);
102
							// Si la réponse est un objet, alors c'est une unique collection qui a été retournée
60
					} else if (responseValue.isArray() != null) {
103
							} else if (responseObject.get("collections").isObject() != null) {
61
						final JSONArray reponse = responseArray.get(1).isArray();
104
								final JSONObject reponse = responseObject.get("collections").isObject();
62
						CollectionListe collections = new CollectionListe(reponse, responseArray.get(0).isNumber(), vueARafraichir);
105
								Collection collection = new Collection(reponse);
63
						collections.setTaillePage(nbElements);
106
								CollectionBotanique collectionBotanique = new CollectionBotanique(reponse);
64
						collections.setPageCourante(start);							
107
								collection.setBotanique(collectionBotanique);
-
 
108
								
-
 
109
								Information info = new Information("selection_collection");
65
						
110
								info.setDonnee(0, collection);
-
 
111
								vueARafraichir.rafraichir(info);
-
 
112
							}
-
 
113
						} else {
-
 
114
							GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
66
						vueARafraichir.rafraichir(collections);
115
						}
67
					} else {
-
 
68
						GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
-
 
69
					}
-
 
70
				} else {
116
					} else {
71
					// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
117
						// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
72
					if (collectionId == null) {
118
						if (collectionId == null) {
73
						CollectionListe collections = new CollectionListe(0);
119
							CollectionListe collections = new CollectionListe(0);
-
 
120
							vueARafraichir.rafraichir(collections);								
74
						vueARafraichir.rafraichir(collections);								
121
						}
75
					}
122
					}
76
				}
123
				}
77
			}
124
			});
78
		});
125
		}
Line 79... Line 126...
79
	}
126
	}
80
	
127
	
81
	public void ajouter(Collection collection) {		
128
	public void ajouter(Collection collection) {