Statistics
| Revision:

root / branches / v1_9_0 / libGPE-GML / src / org / gvsig / gpe / gml / parser / v2 / geometries / MultiGeometryPropertyTypeBinding.java @ 53

History | View | Annotate | Download (4.29 KB)

1
package org.gvsig.gpe.gml.parser.v2.geometries;
2

    
3
import java.io.IOException;
4

    
5
import javax.xml.namespace.QName;
6

    
7
import org.gvsig.gpe.gml.parser.GPEDefaultGmlParser;
8
import org.gvsig.gpe.gml.utils.GMLTags;
9
import org.gvsig.gpe.xml.stream.EventType;
10
import org.gvsig.gpe.xml.stream.IXmlStreamReader;
11
import org.gvsig.gpe.xml.stream.XmlStreamException;
12
import org.gvsig.gpe.xml.utils.CompareUtils;
13

    
14
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
15
 *
16
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
17
 *
18
 * This program is free software; you can redistribute it and/or
19
 * modify it under the terms of the GNU General Public License
20
 * as published by the Free Software Foundation; either version 2
21
 * of the License, or (at your option) any later version.
22
 *
23
 * This program is distributed in the hope that it will be useful,
24
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
 * GNU General Public License for more details.
27
 *
28
 * You should have received a copy of the GNU General Public License
29
 * along with this program; if not, write to the Free Software
30
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
31
 *
32
 * For more information, contact:
33
 *
34
 *  Generalitat Valenciana
35
 *   Conselleria d'Infraestructures i Transport
36
 *   Av. Blasco Ib??ez, 50
37
 *   46010 VALENCIA
38
 *   SPAIN
39
 *
40
 *      +34 963862235
41
 *   gvsig@gva.es
42
 *      www.gvsig.gva.es
43
 *
44
 *    or
45
 *
46
 *   IVER T.I. S.A
47
 *   Salamanca 50
48
 *   46005 Valencia
49
 *   Spain
50
 *
51
 *   +34 963163400
52
 *   dac@iver.es
53
 */
54
/* CVS MESSAGES:
55
 *
56
 * $Id:MultiGeometryPropertyTypeBinding.java 371 2008-01-10 09:30:19Z jpiera $
57
 * $Log$
58
 * Revision 1.1  2007/05/15 07:30:38  jorpiell
59
 * Add the geometryProperties tags
60
 *
61
 *
62
 */
63
/**
64
 * It parses a gml:multiGeometryProperty object. Example:
65
 * <p>
66
 * <pre>
67
 * <code> 
68
 * &lt;multiGeometryProperty&gt;
69
 * &lt;MultiGeometry gid="c731" srsName="http://www.opengis.net/gml/srs/epsg.xml#4326"&gt;
70
 * &lt;geometryMember&gt;
71
 * &lt;Point gid="P6776"&gt;
72
 * &lt;coord&gt;&lt;X&gt;50.0&lt;/X&gt;&lt;Y&gt;50.0&lt;/Y&gt;&lt;/coord&gt;
73
 * &lt;/Point&gt;
74
 * &lt;/geometryMember&gt;
75
 * &lt;geometryMember&gt;
76
 * &lt;LineString gid="L21216"&gt;
77
 * &lt;coord&gt;&lt;X&gt;0.0&lt;/X&gt;&lt;Y&gt;0.0&lt;/Y&gt;&lt;/coord&gt;
78
 * &lt;coord&gt;&lt;X&gt;0.0&lt;/X&gt;&lt;Y&gt;50.0&lt;/Y&gt;&lt;/coord&gt;
79
 * &lt;coord&gt;&lt;X&gt;100.0&lt;/X&gt;&lt;Y&gt;50.0&lt;/Y&gt;&lt;/coord&gt;
80
 * &lt;/LineString&gt;
81
 * &lt;/geometryMember&gt;
82
 * &lt;geometryMember&gt;
83
 * &lt;Polygon gid="_877789"&gt;
84
 * &lt;outerBoundaryIs&gt;
85
 * &lt;LinearRing&gt;
86
 * &lt;coordinates&gt;0.0,0.0 100.0,0.0 50.0,100.0 0.0,0.0&lt;/coordinates&gt;
87
 * &lt;/LinearRing&gt;
88
 * &lt;/outerBoundaryIs&gt;
89
 * &lt;/Polygon&gt;
90
 * &lt;/geometryMember&gt;
91
 * &lt;MultiGeometry&gt;
92
 * &lt;/multiGeometryProperty&gt;
93
 * </code>
94
 * </pre>
95
 * </p> 
96
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
97
 */
98
public class MultiGeometryPropertyTypeBinding extends GeometryBinding{
99
        
100
        /**
101
         * It parses the gml:multiGeometryProperty tag
102
         * @param parser
103
         * The XML parser
104
         * @param handler
105
         * The GPE parser that contains the content handler and
106
         * the error handler
107
         * @return
108
         * A multigeometry
109
         * @throws XmlStreamException
110
         * @throws IOException
111
         */
112
        public Object parse(IXmlStreamReader parser,GPEDefaultGmlParser handler) throws XmlStreamException, IOException {
113
            
114
            parser.require(EventType.START_ELEMENT, GMLTags.GML_MULTIGEOMETRYPROPERTY);
115
            
116
                boolean endFeature = false;
117
                EventType currentTag;
118
                Object multiGeometry = null;                
119
                
120
                super.setAtributtes(parser, handler.getErrorHandler());
121
                
122
                QName tag = parser.getElementName();
123
                currentTag = parser.getEventType();
124

    
125
                while (!endFeature){
126
                        switch(currentTag.getCode()){
127
                        case EventType.START_ELEMENT_CODE:
128
                                        if (CompareUtils.compareWithNamespace(tag,GMLTags.GML_MULTIGEOMETRY)){
129
                                                multiGeometry = handler.getProfile().getGeometryMemberTypeBinding().
130
                                                parse(parser, handler);
131
                                        }
132
                                        break;
133
                                case EventType.END_ELEMENT_CODE:
134
                                        if (CompareUtils.compareWithNamespace(tag,GMLTags.GML_MULTIGEOMETRYPROPERTY)){                                                
135
                                                endFeature = true;                                                        
136
                                        }
137
                                        break;
138
                                }
139
                                if (!endFeature){                                        
140
                                        currentTag = parser.nextTag();
141
                                        tag = parser.getElementName();
142
                                }
143
                        }                        
144
                return multiGeometry;        
145
        }
146
}
147