Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsmemoryproviderutils.cpp 3 : : -------------------------- 4 : : begin : May 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsmemoryproviderutils.h" 19 : : #include "qgsfields.h" 20 : : #include "qgsvectorlayer.h" 21 : : #include <QUrl> 22 : : 23 : 0 : QString memoryLayerFieldType( QVariant::Type type ) 24 : : { 25 : 0 : switch ( type ) 26 : : { 27 : : case QVariant::Int: 28 : 0 : return QStringLiteral( "integer" ); 29 : : 30 : : case QVariant::LongLong: 31 : 0 : return QStringLiteral( "long" ); 32 : : 33 : : case QVariant::Double: 34 : 0 : return QStringLiteral( "double" ); 35 : : 36 : : case QVariant::String: 37 : 0 : return QStringLiteral( "string" ); 38 : : 39 : : case QVariant::Date: 40 : 0 : return QStringLiteral( "date" ); 41 : : 42 : : case QVariant::Time: 43 : 0 : return QStringLiteral( "time" ); 44 : : 45 : : case QVariant::DateTime: 46 : 0 : return QStringLiteral( "datetime" ); 47 : : 48 : : case QVariant::ByteArray: 49 : 0 : return QStringLiteral( "binary" ); 50 : : 51 : : case QVariant::Bool: 52 : 0 : return QStringLiteral( "boolean" ); 53 : : 54 : : default: 55 : 0 : break; 56 : : } 57 : 0 : return QStringLiteral( "string" ); 58 : 0 : } 59 : : 60 : 0 : QgsVectorLayer *QgsMemoryProviderUtils::createMemoryLayer( const QString &name, const QgsFields &fields, QgsWkbTypes::Type geometryType, const QgsCoordinateReferenceSystem &crs ) 61 : : { 62 : 0 : QString geomType = QgsWkbTypes::displayString( geometryType ); 63 : 0 : if ( geomType.isNull() ) 64 : 0 : geomType = QStringLiteral( "none" ); 65 : : 66 : 0 : QStringList parts; 67 : 0 : if ( crs.isValid() ) 68 : : { 69 : 0 : if ( !crs.authid().isEmpty() ) 70 : 0 : parts << QStringLiteral( "crs=%1" ).arg( crs.authid() ); 71 : : else 72 : 0 : parts << QStringLiteral( "crs=wkt:%1" ).arg( crs.toWkt( QgsCoordinateReferenceSystem::WKT_PREFERRED ) ); 73 : 0 : } 74 : 0 : for ( const auto &field : fields ) 75 : : { 76 : 0 : const QString lengthPrecision = QStringLiteral( "(%1,%2)" ).arg( field.length() ).arg( field.precision() ); 77 : 0 : parts << QStringLiteral( "field=%1:%2%3%4" ).arg( QString( QUrl::toPercentEncoding( field.name() ) ), 78 : 0 : memoryLayerFieldType( field.type() == QVariant::List || field.type() == QVariant::StringList ? field.subType() : field.type() ), 79 : : lengthPrecision, 80 : 0 : field.type() == QVariant::List || field.type() == QVariant::StringList ? QStringLiteral( "[]" ) : QString() ); 81 : 0 : } 82 : : 83 : 0 : QString uri = geomType + '?' + parts.join( '&' ); 84 : 0 : QgsVectorLayer::LayerOptions options{ QgsCoordinateTransformContext() }; 85 : 0 : options.skipCrsValidation = true; 86 : 0 : return new QgsVectorLayer( uri, name, QStringLiteral( "memory" ), options ); 87 : 0 : }