Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGPE-KML / src / org / gvsig / gpe / kml / bindings / geometries / PolygonTypeBinding.java @ 11435

History | View | Annotate | Download (3.95 KB)

1
package org.gvsig.gpe.kml.bindings.geometries;
2

    
3
import java.io.IOException;
4

    
5
import org.gvsig.gpe.kml.GPEKmlParser;
6
import org.gvsig.gpe.kml.KmlTags;
7
import org.gvsig.gpe.kml.exceptions.KmlBodyParseException;
8
import org.kxml2.io.KXmlParser;
9
import org.xmlpull.v1.XmlPullParser;
10
import org.xmlpull.v1.XmlPullParserException;
11

    
12
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
13
 *
14
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
15
 *
16
 * This program is free software; you can redistribute it and/or
17
 * modify it under the terms of the GNU General Public License
18
 * as published by the Free Software Foundation; either version 2
19
 * of the License, or (at your option) any later version.
20
 *
21
 * This program is distributed in the hope that it will be useful,
22
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 * GNU General Public License for more details.
25
 *
26
 * You should have received a copy of the GNU General Public License
27
 * along with this program; if not, write to the Free Software
28
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
29
 *
30
 * For more information, contact:
31
 *
32
 *  Generalitat Valenciana
33
 *   Conselleria d'Infraestructures i Transport
34
 *   Av. Blasco Ib??ez, 50
35
 *   46010 VALENCIA
36
 *   SPAIN
37
 *
38
 *      +34 963862235
39
 *   gvsig@gva.es
40
 *      www.gvsig.gva.es
41
 *
42
 *    or
43
 *
44
 *   IVER T.I. S.A
45
 *   Salamanca 50
46
 *   46005 Valencia
47
 *   Spain
48
 *
49
 *   +34 963163400
50
 *   dac@iver.es
51
 */
52
/* CVS MESSAGES:
53
 *
54
 * $Id: PolygonTypeBinding.java 11435 2007-05-02 11:46:50Z jorpiell $
55
 * $Log$
56
 * Revision 1.4  2007-05-02 11:46:50  jorpiell
57
 * Writing tests updated
58
 *
59
 * Revision 1.3  2007/04/20 08:38:59  jorpiell
60
 * Tests updating
61
 *
62
 * Revision 1.2  2007/04/14 16:08:07  jorpiell
63
 * Kml writing support added
64
 *
65
 * Revision 1.1  2007/04/13 13:16:21  jorpiell
66
 * Add KML reading support
67
 *
68
 * Revision 1.1  2007/03/07 08:19:10  jorpiell
69
 * Pasadas las clases de KML de libGPE-GML a libGPE-KML
70
 *
71
 * Revision 1.1  2007/02/28 11:48:31  csanchez
72
 * *** empty log message ***
73
 *
74
 * Revision 1.1  2007/02/20 10:53:20  jorpiell
75
 * A?adidos los proyectos de kml y gml antiguos
76
 *
77
 * Revision 1.1  2007/02/12 13:49:18  jorpiell
78
 * A?adido el driver de KML
79
 *
80
 *
81
 */
82
/**
83
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
84
 */
85
public class PolygonTypeBinding {
86

    
87
        public static Object parse(XmlPullParser parser,GPEKmlParser handler) throws KmlBodyParseException {
88
                boolean endFeature = false;
89
                int currentTag;                        
90
                Object polygon = null;
91
                
92
                String id = AGeometryTypeBinding.getID(parser, handler);
93
                
94
                try {
95
                        String tag = parser.getName();
96
                        currentTag = parser.getEventType();
97
                        
98
                        while (!endFeature){
99
                                switch(currentTag){
100
                                case KXmlParser.START_TAG:
101
                                        if (tag.compareTo(KmlTags.OUTERBOUNDARYIS) == 0){
102
                                                double[][] coordinates = OuterBoundaryIsBinding.parse(parser, handler);
103
                                                polygon = handler.getContentHandler().startPolygon(id,
104
                                                                coordinates[0],
105
                                                                coordinates[1],
106
                                                                coordinates[2],
107
                                                                KmlTags.DEFAULT_SRS);
108
                                        }else if (tag.compareTo(KmlTags.INNERBOUNDARYIS) == 0){
109
                                                double[][] coordinates = InnerBoundaryIsBinding.parse(parser, handler);
110
                                                Object innerPolygon = handler.getContentHandler().startInnerPolygon(null,
111
                                                                coordinates[0],
112
                                                                coordinates[1],
113
                                                                coordinates[2],
114
                                                                KmlTags.DEFAULT_SRS);
115
                                                handler.getContentHandler().endInnerPolygon(innerPolygon);
116
                                                handler.getContentHandler().addInnerPolygonToPolygon(innerPolygon,polygon);
117
                                        }
118
                                        break;
119
                                case KXmlParser.END_TAG:
120
                                        if (tag.compareTo(KmlTags.POLYGON) == 0){                                                
121
                                                endFeature = true;
122
                                                handler.getContentHandler().endPolygon(polygon);
123
                                        }
124
                                        break;
125
                                case KXmlParser.TEXT:                                        
126
                                        
127
                                        break;
128
                                }
129
                                if (!endFeature){                                        
130
                                        currentTag = parser.next();
131
                                        tag = parser.getName();
132
                                }
133
                        }                        
134
                } catch (XmlPullParserException e) {
135
                        throw new KmlBodyParseException(e);
136
                } catch (IOException e) {
137
                        throw new KmlBodyParseException(e);
138
                }        
139
                return polygon;
140
        }
141
}