QGIS API Documentation
2.0.1-Dufour
|
This class reads data from a WFS server or alternatively from a GML file. More...
#include <qgsgml.h>
Signals | |
void | dataReadProgress (int progress) |
void | totalStepsUpdate (int totalSteps) |
void | dataProgressAndSteps (int progress, int totalSteps) |
Public Member Functions | |
QgsGml (const QString &typeName, const QString &geometryAttribute, const QgsFields &fields) | |
~QgsGml () | |
int | getFeatures (const QString &uri, QGis::WkbType *wkbType, QgsRectangle *extent=0) |
Does the Http GET request to the wfs server. | |
int | getFeatures (const QByteArray &data, QGis::WkbType *wkbType, QgsRectangle *extent=0) |
Read from GML data. | |
QMap< QgsFeatureId, QgsFeature * > | featuresMap () const |
Get parsed features for given type name. | |
QMap< QgsFeatureId, QString > | idsMap () const |
Get feature ids map. |
Private Types | |
enum | ParseMode { none, boundingBox, feature, attribute, geometry, coordinate, multiPoint, multiLine, multiPolygon } |
Private Slots | |
void | setFinished () |
void | handleProgressEvent (qint64 progress, qint64 totalSteps) |
Takes progress value and total steps and emit signals 'dataReadProgress' and 'totalStepUpdate'. |
Private Member Functions | |
void | startElement (const XML_Char *el, const XML_Char **attr) |
XML handler methods. | |
void | endElement (const XML_Char *el) |
void | characters (const XML_Char *chars, int len) |
int | readEpsgFromAttribute (int &epsgNr, const XML_Char **attr) const |
Reads attribute srsName="EpsgCrsId:...". | |
QString | readAttribute (const QString &attributeName, const XML_Char **attr) const |
Reads attribute as string. | |
int | createBBoxFromCoordinateString (QgsRectangle &bb, const QString &coordString) const |
Creates a rectangle from a coordinate string. | |
int | pointsFromCoordinateString (QList< QgsPoint > &points, const QString &coordString) const |
Creates a set of points from a coordinate string. | |
int | getPointWKB (unsigned char **wkb, int *size, const QgsPoint &) const |
int | getLineWKB (unsigned char **wkb, int *size, const QList< QgsPoint > &lineCoordinates) const |
int | getRingWKB (unsigned char **wkb, int *size, const QList< QgsPoint > &ringCoordinates) const |
int | createMultiLineFromFragments () |
Creates a multiline from the information in mCurrentWKBFragments and mCurrentWKBFragmentSizes. | |
int | createMultiPointFromFragments () |
int | createPolygonFromFragments () |
int | createMultiPolygonFromFragments () |
int | totalWKBFragmentSize () const |
Adds all the integers contained in mCurrentWKBFragmentSizes. | |
QWidget * | findMainWindow () const |
Returns pointer to main window or 0 if it does not exist. | |
void | calculateExtentFromFeatures () |
This function evaluates the layer bounding box from the features and sets it to mExtent. | |
ParseMode | modeStackTop () |
Get safely (if empty) top from mode stack. | |
ParseMode | modeStackPop () |
Safely (if empty) pop from mode stack. |
Static Private Member Functions | |
static void | start (void *data, const XML_Char *el, const XML_Char **attr) |
static void | end (void *data, const XML_Char *el) |
static void | chars (void *data, const XML_Char *chars, int len) |
Private Attributes | |
QString | mTypeName |
QString | mUri |
QgsRectangle | mExtent |
Bounding box of the layer. | |
QMap< QgsFeatureId, QgsFeature * > | mFeatures |
The features of the layer, map of feature maps for each feature type. | |
QMap< QgsFeatureId, QString > | mIdMap |
Stores the relation between provider ids and WFS server ids. | |
QString | mGeometryAttribute |
Name of geometry attribute. | |
QMap< QString, QPair< int, QgsField > > | mThematicAttributes |
QGis::WkbType * | mWkbType |
bool | mFinished |
True if the request is finished. | |
QStack< ParseMode > | mParseModeStack |
Keep track about the most important nested elements. | |
QString | mStringCash |
This contains the character data if an important element has been encountered. | |
QgsFeature * | mCurrentFeature |
QVector< QVariant > | mCurrentAttributes |
QString | mCurrentFeatureId |
int | mFeatureCount |
unsigned char * | mCurrentWKB |
The total WKB for a feature. | |
int | mCurrentWKBSize |
The total WKB size for a feature. | |
QgsRectangle | mCurrentExtent |
QList< QList< unsigned char * > > | mCurrentWKBFragments |
WKB intermediate storage during parsing. | |
QList< QList< int > > | mCurrentWKBFragmentSizes |
Similar to mCurrentWKB, but only the size. | |
QString | mAttributeName |
QgsApplication::endian_t | mEndian |
QString | mCoordinateSeparator |
Coordinate separator for coordinate strings. | |
QString | mTupleSeparator |
Tuple separator for coordinate strings. |
This class reads data from a WFS server or alternatively from a GML file.
It uses the expat XML parser and an event based model to keep performance high. The parsing starts when the first data arrives, it does not wait until the request is finished
|
private |
QgsGml::QgsGml | ( | const QString & | typeName, |
const QString & | geometryAttribute, | ||
const QgsFields & | fields | ||
) |
Definition at line 36 of file qgsgml.cpp.
References QgsApplication::endian(), mEndian, mThematicAttributes, mTypeName, and QgsFields::size().
QgsGml::~QgsGml | ( | ) |
Definition at line 63 of file qgsgml.cpp.
|
private |
This function evaluates the layer bounding box from the features and sets it to mExtent.
Less efficient compared to reading the bbox from the provider, so it is only done if the wfs server does not provider extent information.
Definition at line 854 of file qgsgml.cpp.
References QgsGeometry::boundingBox(), QgsFeature::geometry(), mExtent, mFeatures, and QgsRectangle::unionRect().
Referenced by getFeatures().
|
private |
Definition at line 500 of file qgsgml.cpp.
References attribute, coordinate, mParseModeStack, and mStringCash.
|
inlinestaticprivate |
Definition at line 109 of file qgsgml.h.
Referenced by getFeatures().
|
private |
Creates a rectangle from a coordinate string.
Definition at line 560 of file qgsgml.cpp.
References pointsFromCoordinateString(), and QgsRectangle::set().
Referenced by endElement().
|
private |
Creates a multiline from the information in mCurrentWKBFragments and mCurrentWKBFragmentSizes.
Assign the result. The multiline is in mCurrentWKB and mCurrentWKBSize. The function deletes the memory in mCurrentWKBFragments. Returns 0 in case of success.
Definition at line 684 of file qgsgml.cpp.
References mCurrentWKB, mCurrentWKBFragments, mCurrentWKBFragmentSizes, mCurrentWKBSize, mEndian, mWkbType, totalWKBFragmentSize(), and QGis::WKBMultiLineString.
Referenced by endElement().
|
private |
Definition at line 718 of file qgsgml.cpp.
References mCurrentWKB, mCurrentWKBFragments, mCurrentWKBFragmentSizes, mCurrentWKBSize, mEndian, mWkbType, totalWKBFragmentSize(), and QGis::WKBMultiPoint.
Referenced by endElement().
|
private |
Definition at line 785 of file qgsgml.cpp.
References mCurrentWKB, mCurrentWKBFragments, mCurrentWKBFragmentSizes, mCurrentWKBSize, mEndian, mWkbType, totalWKBFragmentSize(), QGis::WKBMultiPolygon, and QGis::WKBPolygon.
Referenced by endElement().
|
private |
Definition at line 753 of file qgsgml.cpp.
References mCurrentWKB, mCurrentWKBFragments, mCurrentWKBFragmentSizes, mCurrentWKBSize, mEndian, mWkbType, totalWKBFragmentSize(), and QGis::WKBPolygon.
Referenced by endElement().
|
signal |
Referenced by handleProgressEvent().
|
signal |
Referenced by getFeatures(), and handleProgressEvent().
|
inlinestaticprivate |
Definition at line 105 of file qgsgml.h.
Referenced by getFeatures().
|
private |
Definition at line 281 of file qgsgml.cpp.
References attribute, boundingBox, coordinate, createBBoxFromCoordinateString(), createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), feature, QgsGeometry::fromRect(), geometry, getLineWKB(), getPointWKB(), getRingWKB(), GML_NAMESPACE, QgsFeature::id(), QgsRectangle::isEmpty(), mAttributeName, mCurrentExtent, mCurrentFeature, mCurrentFeatureId, mCurrentWKB, mCurrentWKBFragments, mCurrentWKBFragmentSizes, mCurrentWKBSize, mFeatureCount, mFeatures, mGeometryAttribute, mIdMap, mParseModeStack, mStringCash, mThematicAttributes, mTypeName, multiLine, multiPoint, multiPolygon, mWkbType, none, NS_SEPARATOR, pointsFromCoordinateString(), QgsDebugMsg, QgsFeature::setAttribute(), QgsFeature::setGeometry(), QgsFeature::setGeometryAndOwnership(), QgsFeature::setValid(), QGis::WKBLineString, QGis::WKBMultiLineString, QGis::WKBMultiPoint, QGis::WKBMultiPolygon, QGis::WKBPoint, and QGis::WKBPolygon.
|
inline |
|
private |
Returns pointer to main window or 0 if it does not exist.
int QgsGml::getFeatures | ( | const QString & | uri, |
QGis::WkbType * | wkbType, | ||
QgsRectangle * | extent = 0 |
||
) |
Does the Http GET request to the wfs server.
uri | GML URL |
wkbType | wkbType to retrieve |
extent | retrieved extents |
Definition at line 67 of file qgsgml.cpp.
References calculateExtentFromFeatures(), chars(), QgsMessageLog::CRITICAL, dataReadProgress(), end(), handleProgressEvent(), QgsNetworkAccessManager::instance(), QgsRectangle::isEmpty(), QgsMessageLog::logMessage(), mExtent, mFinished, mTypeName, mUri, mWkbType, NS_SEPARATOR, setFinished(), QgsRectangle::setMinimal(), start(), totalStepsUpdate(), tr, and QGis::WKBNoGeometry.
int QgsGml::getFeatures | ( | const QByteArray & | data, |
QGis::WkbType * | wkbType, | ||
QgsRectangle * | extent = 0 |
||
) |
Read from GML data.
Constructor uri param is ignored
Definition at line 164 of file qgsgml.cpp.
References chars(), end(), mExtent, mWkbType, NS_SEPARATOR, QgsRectangle::setMinimal(), and start().
|
private |
Definition at line 629 of file qgsgml.cpp.
References mEndian, and QGis::WKBLineString.
Referenced by endElement().
|
private |
Definition at line 609 of file qgsgml.cpp.
References mEndian, QGis::WKBPoint, QgsPoint::x(), and QgsPoint::y().
Referenced by endElement().
|
private |
Definition at line 660 of file qgsgml.cpp.
Referenced by endElement().
|
privateslot |
Takes progress value and total steps and emit signals 'dataReadProgress' and 'totalStepUpdate'.
Definition at line 187 of file qgsgml.cpp.
References dataProgressAndSteps(), dataReadProgress(), and totalStepsUpdate().
Referenced by getFeatures().
|
inline |
|
inlineprivate |
|
inlineprivate |
|
private |
Creates a set of points from a coordinate string.
points | list that will contain the created points |
coordString | the text containing the coordinates |
Definition at line 578 of file qgsgml.cpp.
References mCoordinateSeparator, and mTupleSeparator.
Referenced by createBBoxFromCoordinateString(), and endElement().
|
private |
Reads attribute as string.
attributeName | |
attr |
Definition at line 546 of file qgsgml.cpp.
Referenced by startElement().
|
private |
Reads attribute srsName="EpsgCrsId:...".
epsgNr | result |
attr | attribute strings |
Definition at line 515 of file qgsgml.cpp.
Referenced by startElement().
|
privateslot |
|
inlinestaticprivate |
Definition at line 101 of file qgsgml.h.
Referenced by getFeatures().
|
private |
XML handler methods.
Definition at line 199 of file qgsgml.cpp.
References attribute, boundingBox, coordinate, feature, geometry, GML_NAMESPACE, mAttributeName, mCoordinateSeparator, mCurrentFeature, mCurrentFeatureId, mCurrentWKBFragments, mCurrentWKBFragmentSizes, mFeatureCount, mGeometryAttribute, mParseModeStack, mStringCash, mThematicAttributes, mTupleSeparator, mTypeName, multiLine, multiPoint, multiPolygon, none, NS_SEPARATOR, QgsDebugMsg, readAttribute(), readEpsgFromAttribute(), and QgsFeature::setAttributes().
|
signal |
Referenced by getFeatures(), and handleProgressEvent().
|
private |
Adds all the integers contained in mCurrentWKBFragmentSizes.
Definition at line 841 of file qgsgml.cpp.
References mCurrentWKBFragmentSizes.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), and createPolygonFromFragments().
|
private |
Definition at line 209 of file qgsgml.h.
Referenced by endElement(), and startElement().
|
private |
Coordinate separator for coordinate strings.
Usually ","
Definition at line 212 of file qgsgml.h.
Referenced by pointsFromCoordinateString(), and startElement().
|
private |
Definition at line 201 of file qgsgml.h.
Referenced by endElement().
|
private |
Definition at line 193 of file qgsgml.h.
Referenced by endElement(), and startElement().
|
private |
Definition at line 195 of file qgsgml.h.
Referenced by endElement(), and startElement().
|
private |
The total WKB for a feature.
Definition at line 198 of file qgsgml.h.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), and endElement().
|
private |
WKB intermediate storage during parsing.
For points and lines, no intermediate WKB is stored at all. For multipoints and multilines and polygons, only one nested list is used. For multipolygons, both nested lists are used
Definition at line 206 of file qgsgml.h.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), endElement(), and startElement().
|
private |
Similar to mCurrentWKB, but only the size.
Definition at line 208 of file qgsgml.h.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), endElement(), startElement(), and totalWKBFragmentSize().
|
private |
The total WKB size for a feature.
Definition at line 200 of file qgsgml.h.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), and endElement().
|
private |
Definition at line 210 of file qgsgml.h.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), getLineWKB(), getPointWKB(), and QgsGml().
|
private |
Bounding box of the layer.
Definition at line 172 of file qgsgml.h.
Referenced by calculateExtentFromFeatures(), and getFeatures().
|
private |
Definition at line 196 of file qgsgml.h.
Referenced by endElement(), and startElement().
|
private |
The features of the layer, map of feature maps for each feature type.
Definition at line 175 of file qgsgml.h.
Referenced by calculateExtentFromFeatures(), and endElement().
|
private |
True if the request is finished.
Definition at line 188 of file qgsgml.h.
Referenced by getFeatures(), and setFinished().
|
private |
Name of geometry attribute.
Definition at line 183 of file qgsgml.h.
Referenced by endElement(), and startElement().
|
private |
Stores the relation between provider ids and WFS server ids.
Definition at line 180 of file qgsgml.h.
Referenced by endElement().
|
private |
Keep track about the most important nested elements.
Definition at line 190 of file qgsgml.h.
Referenced by characters(), endElement(), and startElement().
|
private |
This contains the character data if an important element has been encountered.
Definition at line 192 of file qgsgml.h.
Referenced by characters(), endElement(), and startElement().
|
private |
Definition at line 185 of file qgsgml.h.
Referenced by endElement(), QgsGml(), and startElement().
|
private |
Tuple separator for coordinate strings.
Usually " "
Definition at line 214 of file qgsgml.h.
Referenced by pointsFromCoordinateString(), and startElement().
|
private |
Definition at line 168 of file qgsgml.h.
Referenced by endElement(), getFeatures(), QgsGml(), and startElement().
|
private |
Definition at line 169 of file qgsgml.h.
Referenced by getFeatures().
|
private |
Definition at line 186 of file qgsgml.h.
Referenced by createMultiLineFromFragments(), createMultiPointFromFragments(), createMultiPolygonFromFragments(), createPolygonFromFragments(), endElement(), and getFeatures().