Statistics
| Revision:

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

History | View | Annotate | Download (2.7 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22

    
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 Iver T.I.  {{Task}}
26
*/
27
 
28
package org.gvsig.gpe.gml.parser.v2.features;
29

    
30
import java.io.IOException;
31

    
32
import javax.xml.namespace.QName;
33

    
34
import org.gvsig.gpe.gml.parser.GPEDefaultGmlParser;
35
import org.gvsig.gpe.gml.utils.GMLObject;
36
import org.gvsig.gpe.gml.utils.GMLTags;
37
import org.gvsig.gpe.xml.stream.EventType;
38
import org.gvsig.gpe.xml.stream.IXmlStreamReader;
39
import org.gvsig.gpe.xml.stream.XmlStreamException;
40
import org.gvsig.gpe.xml.utils.CompareUtils;
41

    
42
public class FeatureMembersTypeBinding {
43
        
44
        /**
45
         * It parses a feature
46
         * @param parser
47
         * The XML parser
48
         * @param handler
49
         * The GPE parser that contains the content handler and
50
         * the error handler
51
         * @return
52
         * A feature
53
         * @throws XmlStreamException
54
         * @throws IOException
55
         */
56
        public void parse(IXmlStreamReader parser,GPEDefaultGmlParser handler, Object layer) throws XmlStreamException, IOException {
57

    
58
        parser.require(EventType.START_ELEMENT, GMLTags.GML_FEATUREMEMBERS);
59
        
60
                boolean endFeatureMembers = false;
61
                EventType currentTag;                
62
                                                
63
                QName tag = parser.getElementName();
64
                currentTag = parser.getEventType();
65

    
66
                while (!endFeatureMembers){
67
                        switch(currentTag.getCode()){
68
                        case EventType.START_ELEMENT_CODE:
69
                                if (!CompareUtils.compareWithNamespace(tag, GMLTags.GML_FEATUREMEMBERS)){
70
                                        GMLObject object = (GMLObject)handler.getProfile().getFeatureTypeBinding().parse(parser, handler);
71
                                        if (object != null){
72
                                                handler.getContentHandler().addFeatureToLayer(object.getObject(), layer);
73
                                        }
74
                                }        
75
                                break;
76
                        case EventType.END_ELEMENT_CODE:
77
                                if (CompareUtils.compareWithNamespace(tag,GMLTags.GML_FEATUREMEMBERS)){                                                
78
                                        endFeatureMembers = true;                                        
79
                                }
80
                                break;
81
                        }
82
                        if (!endFeatureMembers){                                        
83
                                currentTag = parser.nextTag();
84
                                tag = parser.getElementName();
85
                        }
86
                }                                
87
        }
88
}
89