Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | 12x 12x 12x 12x 12x 22x 22x 22x 1x 1x 14x 14x 12x 8x 8x 8x 28x 1x 2x 2x 2x 2x 4x 4x 4x 4x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 8x 10x 10x 1x 10x 10x 10x | import Logger from "../Utils/LoggerByDefault"; import RequestHeader from "./XLS/RequestHeader"; import Request from "./XLS/Request"; import AbstractService from "./XLS/AbstractService"; /** * @classdesc * * standard OpenLS * standard XLS * (version 1.2) * * Réfs : * - {@link http://schemas.opengis.net/ols/1.2/} * - {@link http://www.opengeospatial.org/standards/ols} * - {@link http://wxs.ign.fr/schemas/} * * * Création du template XLS (avec gestion des namespaces) * ------------------------ * ``` * balise xsd : element name="XLS" attribute name="version" [(attribute ref="lang")] * ``` * * Exemple : * ``` * <XLS xmlns="http://www.opengis.net/xls" version="1.2"> * < (ref. OLS) /> * </XLS> * ``` * ``` * <xls:XLS xmlns:xls="http://www.opengis.net/xls" version="1.2"> * <xls: (ref. OLS) /> * </xls:XLS> * ``` * * Création des templates OLS pour LocationUtilityService * ------------------------------------------------------ * * Exemple : * * ``` * <RequestHeader srsName="epsg:4326"/> * <Request maximumResponses="26" methodName="GeocodeRequest" requestID="uid1349081498314_388" version="1.2"> * <GeocodeRequest> * <Address countryCode="PositionOfInterest"> * <freeFormAddress>saint mandé</freeFormAddress> * </Address> * </GeocodeRequest> * </Request> * ``` * ``` * <RequestHeader sessionID="" /> * <Request methodName="ReverseGeocodeRequest" version="1.2" requestID="" maximumResponses="10"> * <ReverseGeocodeRequest> * <Position> * <gml:Point xmlns:gml="http://www.opengis.net/gml"> * <gml:pos>50.347775 3.205098</gml:pos> * </gml:Point> * </Position> * <ReverseGeocodePreference>StreetAddress</ReverseGeocodePreference> * </ReverseGeocodeRequest> * </Request> * ``` * ``` * Geocodage direct (balise xsd) : * element ref="RequestHeader" [ (attribute name="clientName" attribute name="clientPassword" attribute name="sessionID" attribute name="srsName" attribute name="MSID") ] * element name="Request" attribute name="methodName" attribute name="version" attribute name="requestID" [ attribute name="maximumResponses" ] * element name="GeocodeRequest" attribute name="returnFreeForm" * element ref="xls:Address" * ``` * ``` * Geocodage inverse (balise xsd) : * element ref="RequestHeader" [ (attribute name="clientName" attribute name="clientPassword" attribute name="sessionID" attribute name="srsName" attribute name="MSID") ] * element name="Request" attribute name="methodName" attribute name="version" attribute name="requestID" [ attribute name="maximumResponses" ] * element name="ReverseGeocodeRequest" * element ref="xls:Position" * element name="ReverseGeocodePreference" (enumeration) * ``` * * Il existe 3 sous ensembles d'objets : * - RequestHeader * - Request * - ReverseGeocodeRequest, GeocodeRequest * * GeocodeRequest est composé d'un objet {@link Gp.Services.Geocode.Response.GeocodeLocation}. * ReverseGeocodeRequest est composé d'un objet {@link Gp.Services.ReverseGeocode.Response.ReverseGeocodeLocation}. * * Les locations font appels aux objets suivants qui possèdent des attributs spécifiques * en fonction du type de table de geocodage interrogé : * - StreetAddress * - CadastralParcel * - PositionOfInterest * - Administratif * * * et des élements sous jacents tels que : * - ReverseGeocodePreference -> tables de geocodages : * - StreetAddress * - CadastralParcel * - PositionOfInterest * - Administratif (une balise par table) * - Position -> standard GML 3.2.1 * - Address -> cf. ci-dessous * * ``` * Position (balise xsd) : * ex. <Position><gml:Point xmlns:gml="http://www.opengis.net/gml"><gml:pos>50.347775 3.205098</gml:pos></gml:Point></Position> * ex. <Position><gml:CircleByCenterPoint xmlns:gml="http://www.opengis.net/gml"><gml:pos>48.85978570614691 2.2913572761128878</gml:pos><gml:radius>1000</gml:radius></gml:CircleByCenterPoint></Position> * (au choix) * element ref="gml:Point" * element ref="gml:CircleByCenterPoint" * element ref="gml:Polygon" * element ref="gml:MultiPolygon" * les autres elemennts ne sont pas implémentés (QoP, Speed, Direction, Time, ...) * * Address (balise xsd) : * ex. <Address countryCode="StreetAddress"><freeFormAddress>1 r de paris saint denis</freeFormAddress></Address> * attribute name="countryCode" * element name="freeFormAddress" * element ref="xls:Place" * element ref="gml:Envelope" * ou * ex. <Address countryCode="StreetAddress"><StreetAddress><Street>1 rue Marconi</Street></StreetAddress><Place type="Municipality">Metz</Place><PostalCode>57000</PostalCode></Address> * attribute name="countryCode" * element ref="xls:StreetAddress" * element ref="xls:PostalCode" * element ref="xls:Place" * element ref="gml:Envelope" * * Place (balise xsd) : * ex. <Place type="Municipality">Metz</Place> * attribute name="type" * enumeration value="CountrySubdivision" * enumeration value="CountrySecondarySubdivision" * enumeration value="Municipality" * enumeration value="MunicipalitySubdivision" * enumeration value="choume-banchi-go" * enumeration value="Qualite" * enumeration value="Departement" * enumeration value="Bbox" * enumeration value="Commune" * enumeration value="Territoire" * enumeration value="Importance" * enumeration value="Nature" * (la liste n'est pas exhaustives...) * * StreetAddress (balise xsd) : * ex. <StreetAddress><Street>1 rue Marconi</Street></StreetAddress> * attribute name="locator" * element name="xls:Building" * element ref="xls:Street" * * Street (balise xsd) : * ex. <Street>1 rue Marconi</Street> * attribute name="officialName" (...) * * Building (balise xsd) : * ex. <Building number="800"/> * attribute name="number" attribute name="subdivision" attribute name="buildingName" * * PostalCode (balise xsd) : * ex. <PostalCode>77182</PostalCode> * * ``` * * Requête * ------- * * 2 modes de requête sur les services : GET ou POST. * * Le mode GET n'est que l'encodage du XML en param (qxml) de la requête (donc pas d'implementation particulière ?) * * Modèle de classes * ----------------- * * ``` * ________ XLS ____________ * / | \ * RequestHeader AbstractService Request * ^ * ______|________________________ * (extends) / \ (extends) * LocationUtilityService RouteService * | | * ___________|___________ (...) * / \ * GeocodeRequest ReverseGeocodeRequest * | | * | _____|______ * | / \ * Address Preference Position * | * / \ * Place StreetAddress * | * / \ * Street Building * ``` * * @example * // encapsule un objet 'LocationUtilityService' * // dans une coquille XSL (avec/sans namespace) * xsl = new XSL (); * xsl.namespace = false; * xsl.srsName = "epsg:4326"; * xsl.maximumResponses = 26; * // methodName fournit par l'objet 'lus' * // requestID est calculé * xsl.setService (lus); * xsl.build (); * // out -> * // <XLS xmlns="http://www.opengis.net/xls" version="1.2"> * // <RequestHeader srsName="epsg:4326"/> * // <Request maximumResponses="26" methodName="GeocodeRequest" requestID="uid1349081498314_388" version="1.2"> * // < (ref. LocationUtilityService ou vide) /> * // </Request> * // </XLS> * * * @constructor * @alias Gp.Formats.XLS * @param {Object} options - options du constructeur * @param {Object} options.srsName - identifiant du Systeme de Coordonnees * @param {String} options.maximumResponses - nombre de reponses max d'une requete * @param {Function} options.onsuccess - function callback success (TODO) * @param {Function} options.onerror - function callback error (TODO) * * @private */ function XLS (options) { this.logger = Logger.getLogger(); this.logger.trace("[Constructeur XLS()]"); Iif (!(this instanceof XLS)) { throw new TypeError("XLS constructor cannot be called as a function."); } // options par defaut this.options = { srsName : "EPSG:4326", maximumResponses : 25 }; // et on ajoute les options en paramètre aux options par défaut for (var opt in options) { Eif (options.hasOwnProperty(opt)) { Eif (options[opt]) { this.options[opt] = options[opt]; } } } } /** * Version */ XLS.VERSION = "1.2"; XLS.prototype = { /** * @lends module:XLS# */ /** * request (out) * @type {String} */ requestString : null, /** * namespace * Surcharge les balises XLS d'un prefixe. * Par defaut, false * @type {Boolean} */ namespace : false, /** * Objet Service * LocationUtilityService ou RouteService * @type {AbstractService} */ oService : null, /** * Constructeur (alias) */ constructor : XLS, /** * Template de la requête. * substitution des valeurs suivantes : * __VERSION__, __NAMESPACE__, __SCHEMALOCATION__ * __REQUESTHEADER__, __REQUEST__ */ template : "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<XLS version=\"__VERSION__\"\n" + "__NAMESPACE__ \n" + "__SCHEMALOCATION__>\n" + "__REQUESTHEADER__\n" + "__REQUEST__\n" + "</XLS>\n", /** * Namespace par defaut. * * @returns {String} namespace */ namespaceByDefault : function () { var ns = [ "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"", "xmlns:xls=\"http://www.opengis.net/xls\"", "xmlns:gml=\"http://www.opengis.net/gml\"" ]; return ns.join(" "); }, /** * Schemalocation par defaut * * @returns {String} schemaLocation */ schemaLocationByDefault : function () { return "xsi:schemaLocation=\"http://www.opengis.net/xls http://schemas.opengis.net/ols/1.2/olsAll.xsd\""; }, /** * Setter Service * Ajout d'un objet de type LocationUtilityService (LUS) ou RouteService * * @param {Object} oService - GeoceodeRequest / ReverseGeocodeRequest ou RouteRequest */ setService : function (oService) { Iif (!oService) { this.logger.trace("L'objet de type Service XSL n'est pas encore defini !?"); return; } Eif (oService instanceof AbstractService) { this.oService = oService; } else { this.logger.error("L'objet n'est pas du type 'LocationUtilityService' ou 'RouteService' !?"); } }, /** * Getter Service * Retourne un objet de type LocationUtilityService (LUS) ou RouteService * ex. GeoceodeRequest / ReverseGeocodeRequest ou RouteRequest * * @returns {Object} service (LocationUtilityService|RouteService) */ getService : function () { return this.oService; } }; /** * Ajout d'un prefixe de namespace * * @todo impl. l'ajout de namespace * @param {Object} ns - ex. {key:xls, url:http://www.opengis.net/xls} * @param {String} request - requête * @returns {String} requête */ XLS.prototype.addNamespace = function (ns, request) { // INFO // on recherche la clef dans les namespaces par defaut. // si la clef n'existe pas dans les namespaceByDefault (), on l'ajoute. // on surcharge toutes les balises, ex. XLS -> xls:XLS // sauf celles qui sont déjà prefixées ! var keyNS = ns.key; // var urlNS = ns.url; // TODO not yet implemented ! // recherche la clef dans les namespaces par defaut var bFound = false; var allNS = this.namespaceByDefault().split(" "); for (var index = 0; index < allNS.length; index++) { var element = allNS[index]; var map = element.split("="); var key = map[0]; // var url = map[1]; // TODO not yet implemented ! if (key === "xmlns:" + keyNS) { bFound = true; break; } } // TODO // si on a une nouvelle clef, on l'ajoute... Iif (!bFound) { this.logger.warn("L'ajout d'un nouvel namespace n'est pas encore implémenté !"); return request; } // surcharge toutes les balises var regex; var subst; // regex balise ouvrante regex = /<(\w+[\s>])/g; subst = "<" + keyNS + ":$1"; request = request.replace(regex, subst); // regex balise fermante regex = /<\/(\w+[\s>])/g; subst = "</" + keyNS + ":$1"; request = request.replace(regex, subst); this.logger.trace("namespace", request); return request; }; /** * Construction de la requête * @returns {String} requête */ XLS.prototype.build = function () { // out -> // <XLS xmlns="http://www.opengis.net/xls" version="1.2"> // <RequestHeader srsName="epsg:4326"/> // <Request maximumResponses="26" methodName="GeocodeRequest" requestID="uid1349081498314_388" version="1.2"> // < (ref. LocationUtilityService ou vide) /> // </Request> // </XLS> // as t on un objet de type Service XLS à disposition ? var bService = !!this.getService(); var template = ""; template = this.template; template = template.replace(/__VERSION__/g, XLS.VERSION); template = template.replace(/__NAMESPACE__/g, this.namespaceByDefault); template = template.replace(/__SCHEMALOCATION__/g, this.schemaLocationByDefault); // header var oHeader = new RequestHeader({ srsName : this.options.srsName }); template = template.replace(/__REQUESTHEADER__/g, oHeader.toString()); // request var oRequest = new Request({ maximumResponses : this.options.maximumResponses, version : XLS.VERSION, // FIXME même version ? methodName : bService ? this.getService().CLASSTYPE : null }); template = template.replace(/__REQUEST__/g, oRequest.toString()); // objet lus ou route if (bService) { // INFO : clef __REQUESTSERVICE__ dispo dans l'objet 'Request' template = template.replace(/<!-- __REQUESTSERVICE__ -->/g, this.getService().toString()); } Iif (!template) { this.logger.warn("traduction tmpl : empty request !?"); return; } // ajout d'un namespace if (this.namespace) { // ajout de xls par defaut template = this.addNamespace({ key : "xls", url : "http://www.opengis.net/xls" }, template); } this.requestString = template; this.logger.trace("traduction tmpl", template); // on retourne qqchose ! return this.requestString; }; export default XLS; |