QGIS API Documentation 3.43.0-Master (37eec98dbf6)
qgsgmlschema.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgmlschema.h
3 --------------------------------------
4 Date : Sun Sep 16 12:19:55 AKDT 2007
5 Copyright : (C) 2007 by Gary E. Sherman
6 Email : sherman at mrcc dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15#ifndef QGSGMLSCHEMA_H
16#define QGSGMLSCHEMA_H
17
18#include "qgis_core.h"
19#include <expat.h>
20#include "qgis_sip.h"
21#include "qgserror.h"
22#include "qgsfields.h"
23#include <list>
24#include <set>
25#include <stack>
26#include <QPair>
27#include <QByteArray>
28#include <QDomElement>
29#include <QStringList>
30#include <QStack>
31
32class QgsRectangle;
34class QgsFeature;
35
40class CORE_EXPORT QgsGmlFeatureClass
41{
42 public:
43
44 QgsGmlFeatureClass() = default;
45 QgsGmlFeatureClass( const QString &name, const QString &path );
46
47 QList<QgsField> &fields() { return mFields; }
48
49 int fieldIndex( const QString &name );
50
51 QString path() const { return mPath; }
52
53 QStringList &geometryAttributes() { return mGeometryAttributes; }
54
55 private:
56
63 QString mName;
64
65 //QString mElementName;
66
68 QString mPath;
69
70 /* Fields */
71 // Do not use QMap to keep original fields order. If it gets to performance,
72 // add a field index map
73 QList<QgsField> mFields;
74
75 /* Geometry attribute */
76 QStringList mGeometryAttributes;
77};
78
84class CORE_EXPORT QgsGmlSchema : public QObject
85{
86 Q_OBJECT
87 public:
89
91 bool parseXSD( const QByteArray &xml );
92
100 bool guessSchema( const QByteArray &data );
101
103 QStringList typeNames() const;
104
106 QList<QgsField> fields( const QString &typeName );
107
109 QStringList geometryAttributes( const QString &typeName );
110
112 QgsError error() const { return mError; }
113
114 private:
115
116 enum ParseMode
117 {
118 None,
119 BoundingBox,
120 FeatureMembers, // gml:featureMembers
121 FeatureMember, // gml:featureMember
122 Feature, // feature element containing attrs and geo (inside gml:featureMember)
123 Attribute,
124 Geometry
125 };
126
128 void startElement( const XML_Char *el, const XML_Char **attr );
129 void endElement( const XML_Char *el );
130 void characters( const XML_Char *chars, int len );
131 static void start( void *data, const XML_Char *el, const XML_Char **attr )
132 {
133 static_cast<QgsGmlSchema *>( data )->startElement( el, attr );
134 }
135 static void end( void *data, const XML_Char *el )
136 {
137 static_cast<QgsGmlSchema *>( data )->endElement( el );
138 }
139 static void chars( void *data, const XML_Char *chars, int len )
140 {
141 static_cast<QgsGmlSchema *>( data )->characters( chars, len );
142 }
143 // Add attribute or reset its type according to value of current feature
144 void addAttribute( const QString &name, const QString &value );
145
146 //helper routines
147
152 QString readAttribute( const QString &attributeName, const XML_Char **attr ) const;
153
155 QWidget *findMainWindow() const;
156
158 QList<QDomElement> domElements( const QDomElement &element, const QString &path );
159
161 QDomElement domElement( const QDomElement &element, const QString &path );
162
164 QList<QDomElement> domElements( QList<QDomElement> &elements, const QString &attr, const QString &attrVal );
165
167 QDomElement domElement( const QDomElement &element, const QString &path, const QString &attr, const QString &attrVal );
168
170 QString stripNS( const QString &name );
171
178 QString xsdComplexTypeGmlBaseType( const QDomElement &element, const QString &name );
179
181 bool xsdFeatureClass( const QDomElement &element, const QString &typeName, QgsGmlFeatureClass &featureClass );
182
183
185 ParseMode modeStackTop() { return mParseModeStack.isEmpty() ? None : mParseModeStack.top(); }
186
188 ParseMode modeStackPop() { return mParseModeStack.isEmpty() ? None : mParseModeStack.pop(); }
189
191 //std::stack<ParseMode> mParseModeStack;
192 QStack<ParseMode> mParseModeStack;
194 QString mStringCash;
195 QgsFeature *mCurrentFeature = nullptr;
196 QString mCurrentFeatureId;
197 int mFeatureCount = 0;
198 QString mAttributeName;
200 QString mCoordinateSeparator;
202 QString mTupleSeparator;
203
204 /* Schema information guessed/parsed from GML in getSchema() */
205
207 int mLevel = 0;
208
210 int mSkipLevel;
211
213 QStringList mParsePathStack;
214
215 QString mCurrentFeatureName;
216
217 // List of know geometries (Point, Multipoint,...)
218 QStringList mGeometryTypes;
219
220 /* Feature classes map with element paths as keys */
221 QMap<QString, QgsGmlFeatureClass> mFeatureClassMap;
222
223 /* Error set if something failed */
224 QgsError mError;
225};
226
227#endif
Represents a coordinate reference system (CRS).
A container for error messages.
Definition qgserror.h:81
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
Description of feature class in GML.
QString path() const
QStringList & geometryAttributes()
QList< QgsField > & fields()
QgsGmlFeatureClass()=default
Represents a GML schema.
QgsError error() const
Gets error if parseXSD() or guessSchema() failed.
A rectangle specified with double values.
const QString & typeName