QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
52 #include <QDomDocument>
53 #include <QDomElement>
54 #include <QDomImplementation>
59 #include <QTextStream>
62 #include <QStandardPaths>
64 #include <QRegularExpression>
73 return QStringLiteral(
".qmd" );
76 return QStringLiteral(
".qml" );
82 const QString &lyrname,
83 const QString &source )
84 : mDataSource( source )
85 , mLayerName( lyrname )
88 , mUndoStack( new QUndoStack( this ) )
89 , mUndoStackStyles( new QUndoStack( this ) )
91 , mRefreshTimer( new QTimer( this ) )
96 connect( mRefreshTimer, &QTimer::timeout,
this, [ = ] {
triggerRepaint(
true ); } );
108 delete mStyleManager;
116 for (
const QString &s : constStyles )
157 if (
flags == mFlags )
166 return Qgis::MapLayerProperties();
208 if ( urls.isEmpty() )
211 urls.prepend( newItem );
217 urls.prepend( newItem );
224 if ( mServerProperties->metadataUrls().isEmpty() )
226 return QLatin1String();
230 return mServerProperties->metadataUrls().first().url;
236 QList<QgsMapLayerServerProperties::MetadataUrl> urls = mServerProperties->metadataUrls();
237 if ( urls.isEmpty() )
240 urls.prepend( newItem );
246 urls.prepend( newItem );
248 mServerProperties->setMetadataUrls( urls );
253 if ( mServerProperties->metadataUrls().isEmpty() )
255 return QLatin1String();
259 return mServerProperties->metadataUrls().first().type;
265 QList<QgsMapLayerServerProperties::MetadataUrl> urls = mServerProperties->metadataUrls();
266 if ( urls.isEmpty() )
269 urls.prepend( newItem );
275 urls.prepend( newItem );
277 mServerProperties->setMetadataUrls( urls );
282 if ( mServerProperties->metadataUrls().isEmpty() )
288 return mServerProperties->metadataUrls().first().format;
349 mnl = layerElement.namedItem( QStringLiteral(
"provider" ) );
350 mne = mnl.toElement();
351 provider = mne.text();
354 mnl = layerElement.namedItem( QStringLiteral(
"datasource" ) );
355 mne = mnl.toElement();
359 const thread_local QRegularExpression rx(
"authcfg=([a-z]|[A-Z]|[0-9]){7}" );
372 mnl = layerElement.namedItem( QStringLiteral(
"layername" ) );
373 mne = mnl.toElement();
378 const QDomNode srsNode = layerElement.namedItem( QStringLiteral(
"srs" ) );
397 mnl = layerElement.namedItem( QStringLiteral(
"id" ) );
398 if ( ! mnl.isNull() )
400 mne = mnl.toElement();
401 if ( ! mne.isNull() && mne.text().length() > 10 )
408 mnl = layerElement.namedItem( QStringLiteral(
"layername" ) );
409 mne = mnl.toElement();
412 setName( context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1" ).arg( layerElement.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), mne.text() ) );
415 layerError = !
readXml( layerElement, context );
424 const QDomElement shortNameElem = layerElement.firstChildElement( QStringLiteral(
"shortname" ) );
425 if ( !shortNameElem.isNull() )
431 const QDomElement titleElem = layerElement.firstChildElement( QStringLiteral(
"title" ) );
432 if ( !titleElem.isNull() )
434 mTitle = titleElem.text();
438 const QDomElement abstractElem = layerElement.firstChildElement( QStringLiteral(
"abstract" ) );
439 if ( !abstractElem.isNull() )
445 const QDomElement keywordListElem = layerElement.firstChildElement( QStringLiteral(
"keywordList" ) );
446 if ( !keywordListElem.isNull() )
449 for ( QDomNode n = keywordListElem.firstChild(); !n.isNull(); n = n.nextSibling() )
451 kwdList << n.toElement().text();
457 const QDomElement dataUrlElem = layerElement.firstChildElement( QStringLiteral(
"dataUrl" ) );
458 if ( !dataUrlElem.isNull() )
461 mDataUrlFormat = dataUrlElem.attribute( QStringLiteral(
"format" ), QString() );
465 const QDomElement legendUrlElem = layerElement.firstChildElement( QStringLiteral(
"legendUrl" ) );
466 if ( !legendUrlElem.isNull() )
469 mLegendUrlFormat = legendUrlElem.attribute( QStringLiteral(
"format" ), QString() );
473 const QDomElement attribElem = layerElement.firstChildElement( QStringLiteral(
"attribution" ) );
474 if ( !attribElem.isNull() )
477 mAttributionUrl = attribElem.attribute( QStringLiteral(
"href" ), QString() );
486 const QDomElement metaUrlElem = layerElement.firstChildElement( QStringLiteral(
"metadataUrl" ) );
487 if ( !metaUrlElem.isNull() )
489 const QString url = metaUrlElem.text();
490 const QString
type = metaUrlElem.attribute( QStringLiteral(
"type" ), QString() );
491 const QString format = metaUrlElem.attribute( QStringLiteral(
"format" ), QString() );
493 mServerProperties->setMetadataUrls( QList<QgsMapLayerServerProperties::MetadataUrl>() << newItem );
498 const QDomElement metadataElem = layerElement.firstChildElement( QStringLiteral(
"resourceMetadata" ) );
501 setAutoRefreshInterval( layerElement.attribute( QStringLiteral(
"autoRefreshTime" ), QStringLiteral(
"0" ) ).toInt() );
502 setAutoRefreshEnabled( layerElement.attribute( QStringLiteral(
"autoRefreshEnabled" ), QStringLiteral(
"0" ) ).toInt() );
504 setRefreshOnNotifyEnabled( layerElement.attribute( QStringLiteral(
"refreshOnNotifyEnabled" ), QStringLiteral(
"0" ) ).toInt() );
507 if (
mReadFlags & QgsMapLayer::ReadFlag::FlagTrustLayerMetadata )
509 const QDomNode wgs84ExtentNode = layerElement.namedItem( QStringLiteral(
"wgs84extent" ) );
510 if ( !wgs84ExtentNode.isNull() )
514 mLegendPlaceholderImage = layerElement.attribute( QStringLiteral(
"legendPlaceholderImage" ) );
522 Q_UNUSED( layer_node )
529 const QDomNode extentNode = layer_node.namedItem( QStringLiteral(
"extent" ) );
530 if ( !extentNode.isNull() )
548 layerElement.setAttribute( QStringLiteral(
"autoRefreshTime" ), QString::number( mRefreshTimer->interval() ) );
549 layerElement.setAttribute( QStringLiteral(
"autoRefreshEnabled" ), mRefreshTimer->isActive() ? 1 : 0 );
554 QDomElement layerId = document.createElement( QStringLiteral(
"id" ) );
555 const QDomText layerIdText = document.createTextNode(
id() );
556 layerId.appendChild( layerIdText );
558 layerElement.appendChild( layerId );
561 QDomElement dataSource = document.createElement( QStringLiteral(
"datasource" ) );
563 const QDomText dataSourceText = document.createTextNode( src );
564 dataSource.appendChild( dataSourceText );
565 layerElement.appendChild( dataSource );
568 QDomElement layerName = document.createElement( QStringLiteral(
"layername" ) );
569 const QDomText layerNameText = document.createTextNode(
name() );
570 layerName.appendChild( layerNameText );
571 layerElement.appendChild( layerName );
576 QDomElement layerShortName = document.createElement( QStringLiteral(
"shortname" ) );
577 const QDomText layerShortNameText = document.createTextNode(
mShortName );
578 layerShortName.appendChild( layerShortNameText );
579 layerElement.appendChild( layerShortName );
585 QDomElement layerTitle = document.createElement( QStringLiteral(
"title" ) );
586 const QDomText layerTitleText = document.createTextNode(
mTitle );
587 layerTitle.appendChild( layerTitleText );
588 layerElement.appendChild( layerTitle );
594 QDomElement layerAbstract = document.createElement( QStringLiteral(
"abstract" ) );
595 const QDomText layerAbstractText = document.createTextNode(
mAbstract );
596 layerAbstract.appendChild( layerAbstractText );
597 layerElement.appendChild( layerAbstract );
601 const QStringList keywordStringList =
keywordList().split(
',' );
602 if ( !keywordStringList.isEmpty() )
604 QDomElement layerKeywordList = document.createElement( QStringLiteral(
"keywordList" ) );
605 for (
int i = 0; i < keywordStringList.size(); ++i )
607 QDomElement layerKeywordValue = document.createElement( QStringLiteral(
"value" ) );
608 const QDomText layerKeywordText = document.createTextNode( keywordStringList.at( i ).trimmed() );
609 layerKeywordValue.appendChild( layerKeywordText );
610 layerKeywordList.appendChild( layerKeywordValue );
612 layerElement.appendChild( layerKeywordList );
616 const QString aDataUrl =
dataUrl();
617 if ( !aDataUrl.isEmpty() )
619 QDomElement layerDataUrl = document.createElement( QStringLiteral(
"dataUrl" ) );
620 const QDomText layerDataUrlText = document.createTextNode( aDataUrl );
621 layerDataUrl.appendChild( layerDataUrlText );
622 layerDataUrl.setAttribute( QStringLiteral(
"format" ),
dataUrlFormat() );
623 layerElement.appendChild( layerDataUrl );
628 if ( !aLegendUrl.isEmpty() )
630 QDomElement layerLegendUrl = document.createElement( QStringLiteral(
"legendUrl" ) );
631 const QDomText layerLegendUrlText = document.createTextNode( aLegendUrl );
632 layerLegendUrl.appendChild( layerLegendUrlText );
633 layerLegendUrl.setAttribute( QStringLiteral(
"format" ),
legendUrlFormat() );
634 layerElement.appendChild( layerLegendUrl );
639 if ( !aAttribution.isEmpty() )
641 QDomElement layerAttribution = document.createElement( QStringLiteral(
"attribution" ) );
642 const QDomText layerAttributionText = document.createTextNode( aAttribution );
643 layerAttribution.appendChild( layerAttributionText );
644 layerAttribution.setAttribute( QStringLiteral(
"href" ),
attributionUrl() );
645 layerElement.appendChild( layerAttribution );
651 QDomElement stamp = document.createElement( QStringLiteral(
"timestamp" ) );
652 const QDomText stampText = document.createTextNode(
timestamp().toString( Qt::ISODate ) );
653 stamp.appendChild( stampText );
654 layerElement.appendChild( stamp );
657 layerElement.appendChild( layerName );
664 QDomElement mySrsElement = document.createElement( QStringLiteral(
"srs" ) );
665 mCRS.
writeXml( mySrsElement, document );
666 layerElement.appendChild( mySrsElement );
669 QDomElement myMetadataElem = document.createElement( QStringLiteral(
"resourceMetadata" ) );
671 layerElement.appendChild( myMetadataElem );
673 layerElement.setAttribute( QStringLiteral(
"legendPlaceholderImage" ), mLegendPlaceholderImage );
676 return writeXml( layerElement, document, context );
683 const QMetaEnum metaEnum = QMetaEnum::fromType<QgsMapLayer::StyleCategories>();
684 const QString categoriesKeys( metaEnum.valueToKeys(
static_cast<int>( categories ) ) );
685 layerElement.setAttribute( QStringLiteral(
"styleCategories" ), categoriesKeys );
690 layerElement.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
691 layerElement.setAttribute( QStringLiteral(
"maxScale" ), QString::number(
maximumScale() ) );
692 layerElement.setAttribute( QStringLiteral(
"minScale" ), QString::number(
minimumScale() ) );
699 QDomElement renderer3DElem = document.createElement( QStringLiteral(
"renderer-3d" ) );
700 renderer3DElem.setAttribute( QStringLiteral(
"type" ), m3DRenderer->
type() );
701 m3DRenderer->
writeXml( renderer3DElem, context );
702 layerElement.appendChild( renderer3DElem );
710 QDomElement layerFlagsElem = document.createElement( QStringLiteral(
"flags" ) );
711 const auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
712 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
714 const bool flagValue = mFlags.testFlag( it.key() );
715 QDomElement flagElem = document.createElement( it.value() );
716 flagElem.appendChild( document.createTextNode( QString::number( flagValue ) ) );
717 layerFlagsElem.appendChild( flagElem );
719 layerElement.appendChild( layerFlagsElem );
722 if ( categories.testFlag(
Temporal ) )
725 properties->writeXml( layerElement, document, context );
731 properties->writeXml( layerElement, document, context );
736 QDomElement notesElem = document.createElement( QStringLiteral(
"userNotes" ) );
738 layerElement.appendChild( notesElem );
751 Q_UNUSED( layer_node )
784 mCustomProperties.
readXml( layerNode, keyStartsWith );
786 for (
const QString &key : mCustomProperties.
keys() )
788 if ( !oldKeys.
contains( key ) || mCustomProperties.
value( key ) != oldKeys.
value( key ) )
797 mCustomProperties.
writeXml( layerNode, doc );
802 const QDomElement styleMgrElem = layerNode.firstChildElement( QStringLiteral(
"map-layer-style-manager" ) );
803 if ( !styleMgrElem.isNull() )
804 mStyleManager->
readXml( styleMgrElem );
806 mStyleManager->
reset();
813 QDomElement styleMgrElem = doc.createElement( QStringLiteral(
"map-layer-style-manager" ) );
814 mStyleManager->
writeXml( styleMgrElem );
815 layerNode.appendChild( styleMgrElem );
825 void QgsMapLayer::connectNotify(
const char *signal )
834 return !mScaleBasedVisibility ||
836 && ( mMaxScale == 0 || scale < mMaxScale ) );
841 return mScaleBasedVisibility;
846 return mRefreshTimer->isActive();
851 return mRefreshTimer->interval();
858 mRefreshTimer->stop();
859 mRefreshTimer->setInterval( 0 );
863 mRefreshTimer->setInterval( interval );
871 mRefreshTimer->stop();
872 else if ( mRefreshTimer->interval() > 0 )
873 mRefreshTimer->start();
901 mScaleBasedVisibility = enabled;
911 return QStringList();
959 QString layerName(
name );
960 layerName.replace(
'_',
' ' );
965 QString QgsMapLayer::baseURI( PropertyType type )
const
977 myURI = components[
"path"].toString();
980 QFileInfo myFileInfo( myURI );
983 if ( myFileInfo.exists() )
986 if ( myURI.endsWith( QLatin1String(
".gz" ), Qt::CaseInsensitive ) )
988 else if ( myURI.endsWith( QLatin1String(
".zip" ), Qt::CaseInsensitive ) )
990 else if ( myURI.endsWith( QLatin1String(
".tar" ), Qt::CaseInsensitive ) )
992 else if ( myURI.endsWith( QLatin1String(
".tar.gz" ), Qt::CaseInsensitive ) )
994 else if ( myURI.endsWith( QLatin1String(
".tgz" ), Qt::CaseInsensitive ) )
996 myFileInfo.setFile( myURI );
1010 return baseURI( PropertyType::Metadata );
1021 QString errorMessage;
1024 return tr(
"Successfully saved default layer metadata" );
1026 return errorMessage;
1047 return baseURI( PropertyType::Style );
1057 return loadNamedPropertyFromDatabase( db, uri, qmd, PropertyType::Metadata );
1062 return loadNamedPropertyFromDatabase( db, uri, qml, PropertyType::Style );
1065 bool QgsMapLayer::loadNamedPropertyFromDatabase(
const QString &db,
const QString &uri, QString &xml,
QgsMapLayer::PropertyType type )
1067 QgsDebugMsgLevel( QStringLiteral(
"db = %1 uri = %2" ).arg( db, uri ), 4 );
1069 bool resultFlag =
false;
1077 QgsDebugMsgLevel( QStringLiteral(
"Trying to load style or metadata for \"%1\" from \"%2\"" ).arg( uri, db ), 4 );
1079 if ( db.isEmpty() || !QFile( db ).exists() )
1082 myResult = database.
open_v2( db, SQLITE_OPEN_READONLY,
nullptr );
1083 if ( myResult != SQLITE_OK )
1092 mySql = QStringLiteral(
"select qmd from tbl_metadata where metadata=?" );
1096 mySql = QStringLiteral(
"select qml from tbl_styles where style=?" );
1100 statement = database.
prepare( mySql, myResult );
1101 if ( myResult == SQLITE_OK )
1103 QByteArray param = uri.toUtf8();
1105 if ( sqlite3_bind_text( statement.get(), 1, param.data(), param.length(), SQLITE_STATIC ) == SQLITE_OK &&
1106 sqlite3_step( statement.get() ) == SQLITE_ROW )
1108 xml = QString::fromUtf8(
reinterpret_cast< const char *
>( sqlite3_column_text( statement.get(), 0 ) ) );
1118 return loadNamedProperty( uri, PropertyType::Style, resultFlag, categories );
1121 QString QgsMapLayer::loadNamedProperty(
const QString &uri,
QgsMapLayer::PropertyType type,
bool &resultFlag, StyleCategories categories )
1126 if ( uri.isEmpty() )
1129 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
1133 QString myErrorMessage;
1135 QFile myFile( uri );
1136 if ( myFile.open( QFile::ReadOnly ) )
1140 resultFlag = myDocument.setContent( &myFile, &myErrorMessage, &line, &column );
1142 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1159 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
1162 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1167 myErrorMessage = tr(
"Style not found in database" );
1178 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
1181 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1186 myErrorMessage = tr(
"Metadata not found in database" );
1196 return myErrorMessage;
1204 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1209 myErrorMessage = tr(
"Loading metadata file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1212 return myErrorMessage;
1217 const QDomElement myRoot = document.firstChildElement( QStringLiteral(
"qgis" ) );
1218 if ( myRoot.isNull() )
1220 errorMessage = tr(
"Root <qgis> element could not be found" );
1229 const QDomElement myRoot = myDocument.firstChildElement( QStringLiteral(
"qgis" ) );
1230 if ( myRoot.isNull() )
1232 myErrorMessage = tr(
"Root <qgis> element could not be found" );
1237 const QgsProjectVersion fileVersion( myRoot.attribute( QStringLiteral(
"version" ) ) );
1240 if ( thisVersion > fileVersion )
1257 if ( importLayerGeometryType != QgsWkbTypes::GeometryType::UnknownGeometry && vl->
geometryType() != importLayerGeometryType )
1259 myErrorMessage = tr(
"Cannot apply style with symbology to layer with a different geometry type" );
1266 return readSymbology( myRoot, myErrorMessage, context, categories );
1271 QDomImplementation DomImplementation;
1272 const QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral(
"qgis" ), QStringLiteral(
"http://mrcc.com/qgis.dtd" ), QStringLiteral(
"SYSTEM" ) );
1273 QDomDocument myDocument( documentType );
1275 QDomElement myRootNode = myDocument.createElement( QStringLiteral(
"qgis" ) );
1276 myRootNode.setAttribute( QStringLiteral(
"version" ),
Qgis::version() );
1277 myDocument.appendChild( myRootNode );
1281 errorMsg = QObject::tr(
"Could not save metadata" );
1290 QDomImplementation DomImplementation;
1291 const QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral(
"qgis" ), QStringLiteral(
"http://mrcc.com/qgis.dtd" ), QStringLiteral(
"SYSTEM" ) );
1292 QDomDocument myDocument( documentType );
1294 QDomElement myRootNode = myDocument.createElement( QStringLiteral(
"qgis" ) );
1295 myRootNode.setAttribute( QStringLiteral(
"version" ),
Qgis::version() );
1296 myDocument.appendChild( myRootNode );
1298 if ( !
writeSymbology( myRootNode, myDocument, errorMsg, context, categories ) )
1300 errorMsg = QObject::tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1311 const QgsVectorLayer *vl = qobject_cast<const QgsVectorLayer *>(
this );
1312 const QString geoType = QString::number( vl->
geometryType() );
1315 QDomElement layerGeometryType = myDocument.createElement( QStringLiteral(
"layerGeometryType" ) );
1316 const QDomText
type = myDocument.createTextNode( geoType );
1318 layerGeometryType.appendChild(
type );
1319 myRootNode.appendChild( layerGeometryType );
1345 QString QgsMapLayer::saveNamedProperty(
const QString &uri,
QgsMapLayer::PropertyType type,
bool &resultFlag, StyleCategories categories )
1353 if ( vlayer && vlayer->
providerType() == QLatin1String(
"ogr" ) )
1355 QStringList theURIParts = uri.split(
'|' );
1356 filename = theURIParts[0];
1358 else if ( vlayer && vlayer->
providerType() == QLatin1String(
"gpx" ) )
1360 QStringList theURIParts = uri.split(
'?' );
1361 filename = theURIParts[0];
1363 else if ( vlayer && vlayer->
providerType() == QLatin1String(
"delimitedtext" ) )
1365 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1367 if ( filename.isEmpty() )
1375 QString myErrorMessage;
1376 QDomDocument myDocument;
1389 const QFileInfo myFileInfo( filename );
1392 const QFileInfo myDirInfo( myFileInfo.path() );
1393 if ( !myDirInfo.isWritable() )
1395 return tr(
"The directory containing your dataset needs to be writable!" );
1401 QFile myFile( myFileName );
1402 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1404 QTextStream myFileStream( &myFile );
1406 myDocument.save( myFileStream, 2 );
1412 return tr(
"Created default metadata file as %1" ).arg( myFileName );
1415 return tr(
"Created default style file as %1" ).arg( myFileName );
1425 return tr(
"ERROR: Failed to created default metadata file as %1. Check file permissions and retry." ).arg( myFileName );
1428 return tr(
"ERROR: Failed to created default style file as %1. Check file permissions and retry." ).arg( myFileName );
1434 const QString qml = myDocument.toString();
1441 if ( myResult != SQLITE_OK )
1443 return tr(
"User database could not be opened." );
1446 QByteArray param0 = uri.toUtf8();
1447 QByteArray param1 = qml.toUtf8();
1453 mySql = QStringLiteral(
"create table if not exists tbl_metadata(metadata varchar primary key,qmd varchar)" );
1457 mySql = QStringLiteral(
"create table if not exists tbl_styles(style varchar primary key,qml varchar)" );
1461 statement = database.
prepare( mySql, myResult );
1462 if ( myResult == SQLITE_OK )
1464 if ( sqlite3_step( statement.get() ) != SQLITE_DONE )
1470 return tr(
"The metadata table could not be created." );
1473 return tr(
"The style table could not be created." );
1481 mySql = QStringLiteral(
"insert into tbl_metadata(metadata,qmd) values (?,?)" );
1485 mySql = QStringLiteral(
"insert into tbl_styles(style,qml) values (?,?)" );
1488 statement = database.
prepare( mySql, myResult );
1489 if ( myResult == SQLITE_OK )
1491 if ( sqlite3_bind_text( statement.get(), 1, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1492 sqlite3_bind_text( statement.get(), 2, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1493 sqlite3_step( statement.get() ) == SQLITE_DONE )
1499 myErrorMessage = tr(
"The metadata %1 was saved to database" ).arg( uri );
1503 myErrorMessage = tr(
"The style %1 was saved to database" ).arg( uri );
1515 mySql = QStringLiteral(
"update tbl_metadata set qmd=? where metadata=?" );
1519 mySql = QStringLiteral(
"update tbl_styles set qml=? where style=?" );
1522 statement = database.
prepare( mySql, myResult );
1523 if ( myResult == SQLITE_OK )
1525 if ( sqlite3_bind_text( statement.get(), 2, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1526 sqlite3_bind_text( statement.get(), 1, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1527 sqlite3_step( statement.get() ) == SQLITE_DONE )
1533 myErrorMessage = tr(
"The metadata %1 was updated in the database." ).arg( uri );
1537 myErrorMessage = tr(
"The style %1 was updated in the database." ).arg( uri );
1547 myErrorMessage = tr(
"The metadata %1 could not be updated in the database." ).arg( uri );
1551 myErrorMessage = tr(
"The style %1 could not be updated in the database." ).arg( uri );
1562 myErrorMessage = tr(
"The metadata %1 could not be inserted into database." ).arg( uri );
1566 myErrorMessage = tr(
"The style %1 could not be inserted into database." ).arg( uri );
1573 return myErrorMessage;
1583 QDomDocument myDocument = QDomDocument();
1585 const QDomNode header = myDocument.createProcessingInstruction( QStringLiteral(
"xml" ), QStringLiteral(
"version=\"1.0\" encoding=\"UTF-8\"" ) );
1586 myDocument.appendChild( header );
1588 const QgsVectorLayer *vlayer = qobject_cast<const QgsVectorLayer *>(
this );
1589 const QgsRasterLayer *rlayer = qobject_cast<const QgsRasterLayer *>(
this );
1590 if ( !vlayer && !rlayer )
1592 errorMsg = tr(
"Could not save symbology because:\n%1" )
1593 .arg( tr(
"Only vector and raster layers are supported" ) );
1598 QDomElement root = myDocument.createElementNS( QStringLiteral(
"http://www.opengis.net/sld" ), QStringLiteral(
"StyledLayerDescriptor" ) );
1599 QDomElement layerNode;
1602 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.1.0" ) );
1603 root.setAttribute( QStringLiteral(
"xsi:schemaLocation" ), QStringLiteral(
"http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/StyledLayerDescriptor.xsd" ) );
1604 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
1605 root.setAttribute( QStringLiteral(
"xmlns:se" ), QStringLiteral(
"http://www.opengis.net/se" ) );
1606 root.setAttribute( QStringLiteral(
"xmlns:xlink" ), QStringLiteral(
"http://www.w3.org/1999/xlink" ) );
1607 root.setAttribute( QStringLiteral(
"xmlns:xsi" ), QStringLiteral(
"http://www.w3.org/2001/XMLSchema-instance" ) );
1608 myDocument.appendChild( root );
1611 layerNode = myDocument.createElement( QStringLiteral(
"NamedLayer" ) );
1612 root.appendChild( layerNode );
1619 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.0.0" ) );
1620 root.setAttribute( QStringLiteral(
"xmlns:gml" ), QStringLiteral(
"http://www.opengis.net/gml" ) );
1621 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
1622 root.setAttribute( QStringLiteral(
"xmlns:sld" ), QStringLiteral(
"http://www.opengis.net/sld" ) );
1623 myDocument.appendChild( root );
1626 layerNode = myDocument.createElement( QStringLiteral(
"UserLayer" ) );
1627 root.appendChild( layerNode );
1633 props[ QStringLiteral(
"scaleMinDenom" ) ] = QString::number( mMinScale );
1634 props[ QStringLiteral(
"scaleMaxDenom" ) ] = QString::number( mMaxScale );
1639 if ( !vlayer->
writeSld( layerNode, myDocument, errorMsg, props ) )
1641 errorMsg = tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1648 if ( !rlayer->
writeSld( layerNode, myDocument, errorMsg, props ) )
1650 errorMsg = tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1660 const QgsMapLayer *mlayer = qobject_cast<const QgsMapLayer *>(
this );
1663 QDomDocument myDocument;
1665 if ( !errorMsg.isNull() )
1673 if ( mlayer->
providerType() == QLatin1String(
"ogr" ) )
1675 QStringList theURIParts = uri.split(
'|' );
1676 filename = theURIParts[0];
1678 else if ( mlayer->
providerType() == QLatin1String(
"gpx" ) )
1680 QStringList theURIParts = uri.split(
'?' );
1681 filename = theURIParts[0];
1683 else if ( mlayer->
providerType() == QLatin1String(
"delimitedtext" ) )
1685 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1687 if ( filename.isEmpty() )
1695 const QFileInfo myFileInfo( filename );
1696 if ( myFileInfo.exists() || filename.endsWith( QLatin1String(
".sld" ), Qt::CaseInsensitive ) )
1698 const QFileInfo myDirInfo( myFileInfo.path() );
1699 if ( !myDirInfo.isWritable() )
1701 return tr(
"The directory containing your dataset needs to be writable!" );
1705 const QString myFileName = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() +
".sld";
1707 QFile myFile( myFileName );
1708 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1710 QTextStream myFileStream( &myFile );
1712 myDocument.save( myFileStream, 2 );
1715 return tr(
"Created default style file as %1" ).arg( myFileName );
1720 return tr(
"ERROR: Failed to created SLD style file as %1. Check file permissions and retry." ).arg( filename );
1727 QDomDocument myDocument;
1731 QString myErrorMessage;
1733 QFile myFile( uri );
1734 if ( myFile.open( QFile::ReadOnly ) )
1737 resultFlag = myDocument.setContent( &myFile,
true, &myErrorMessage, &line, &column );
1739 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1744 myErrorMessage = tr(
"Unable to open file %1" ).arg( uri );
1749 return myErrorMessage;
1753 const QDomElement myRoot = myDocument.firstChildElement( QStringLiteral(
"StyledLayerDescriptor" ) );
1754 if ( myRoot.isNull() )
1756 myErrorMessage = QStringLiteral(
"Error: StyledLayerDescriptor element not found in %1" ).arg( uri );
1758 return myErrorMessage;
1763 const QDomElement namedLayerElem = myRoot.firstChildElement( QStringLiteral(
"NamedLayer" ) );
1764 if ( namedLayerElem.isNull() )
1766 myErrorMessage = QStringLiteral(
"Info: NamedLayer element not found." );
1768 return myErrorMessage;
1772 resultFlag =
readSld( namedLayerElem, errorMsg );
1775 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, errorMsg );
1776 return myErrorMessage;
1785 Q_UNUSED( errorMessage )
1787 Q_UNUSED( categories )
1796 Q_UNUSED( errorMessage )
1798 Q_UNUSED( categories )
1804 bool loadDefaultStyleFlag )
1808 QgsDataProvider::ReadFlags
flags = QgsDataProvider::ReadFlags();
1809 if ( loadDefaultStyleFlag )
1824 QgsDataProvider::ReadFlags
flags = QgsDataProvider::ReadFlags();
1825 if ( loadDefaultStyleFlag )
1846 setDataSourcePrivate( dataSource, baseName, provider, options,
flags );
1853 void QgsMapLayer::setDataSourcePrivate(
const QString &dataSource,
const QString &baseName,
const QString &provider,
1856 Q_UNUSED( dataSource )
1857 Q_UNUSED( baseName )
1858 Q_UNUSED( provider )
1870 QgsMapLayer::StyleCategories categories )
1877 QDomElement renderer3DElem = layerElement.firstChildElement( QStringLiteral(
"renderer-3d" ) );
1878 if ( !renderer3DElem.isNull() )
1880 const QString type3D = renderer3DElem.attribute( QStringLiteral(
"type" ) );
1900 setScaleBasedVisibility( layerElement.attribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).toInt() == 1 );
1901 if ( layerElement.hasAttribute( QStringLiteral(
"minimumScale" ) ) )
1904 setMaximumScale( layerElement.attribute( QStringLiteral(
"minimumScale" ) ).toDouble() );
1905 setMinimumScale( layerElement.attribute( QStringLiteral(
"maximumScale" ) ).toDouble() );
1909 setMaximumScale( layerElement.attribute( QStringLiteral(
"maxScale" ) ).toDouble() );
1910 setMinimumScale( layerElement.attribute( QStringLiteral(
"minScale" ) ).toDouble() );
1917 const QDomElement flagsElem = layerElement.firstChildElement( QStringLiteral(
"flags" ) );
1918 LayerFlags
flags = mFlags;
1919 const auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
1920 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
1922 const QDomNode flagNode = flagsElem.namedItem( it.value() );
1923 if ( flagNode.isNull() )
1925 const bool flagValue = flagNode.toElement().text() ==
"1" ? true :
false;
1926 if (
flags.testFlag( it.key() ) && !flagValue )
1928 else if ( !
flags.testFlag( it.key() ) && flagValue )
1934 if ( categories.testFlag(
Temporal ) )
1939 properties->readXml( layerElement.toElement(), context );
1947 properties->readXml( layerElement.toElement(), context );
1950 if ( categories.testFlag(
Notes ) )
1952 const QDomElement notesElem = layerElement.firstChildElement( QStringLiteral(
"userNotes" ) );
1953 if ( !notesElem.isNull() )
1955 const QString notes = notesElem.attribute( QStringLiteral(
"value" ) );
1968 return mUndoStackStyles;
1973 return mCustomProperties.
keys();
1978 if ( !mCustomProperties.
contains( key ) || mCustomProperties.
value( key ) != value )
1980 mCustomProperties.
setValue( key, value );
1988 for (
const QString &key : mCustomProperties.
keys() )
1996 return mCustomProperties;
2001 return mCustomProperties.
value( value, defaultValue );
2007 if ( mCustomProperties.
contains( key ) )
2009 mCustomProperties.
remove( key );
2046 const QString path = sourceParts.value( QStringLiteral(
"path" ) ).toString();
2047 if ( path.isEmpty() )
2051 const QStringList tempPaths = QStandardPaths::standardLocations( QStandardPaths::TempLocation );
2052 for (
const QString &tempPath : tempPaths )
2054 if ( path.startsWith( tempPath ) )
2080 mLegend->setParent(
this );
2094 return mStyleManager;
2099 if ( renderer == m3DRenderer )
2103 m3DRenderer = renderer;
2116 if ( mRepaintRequestedFired )
2118 mRepaintRequestedFired =
true;
2120 mRepaintRequestedFired =
false;
2156 bool QgsMapLayer::isReadOnly()
const
2163 return mOriginalXmlProperties;
2174 const QString uuid = QUuid::createUuid().toString();
2176 QString
id = layerName +
'_' + uuid.mid( 1, uuid.length() - 2 );
2183 id.replace( QRegularExpression(
"[\\W]" ), QStringLiteral(
"_" ) );
2204 QSet<QgsMapLayerDependency> deps;
2205 const auto constODeps = oDeps;
2221 if ( !lDataProvider )
2239 if (
QgsMapLayerStore *store = qobject_cast<QgsMapLayerStore *>( parent() ) )
2241 return qobject_cast<QgsProject *>( store->parent() );
2246 void QgsMapLayer::onNotified(
const QString &message )
2259 if ( ! forceRecalculate && ! mWgs84Extent.
isNull() )
2263 else if ( ! mExtent.
isNull() )
2266 transformer.setBallparkTransformsAreAppropriate(
true );
2269 wgs84Extent = transformer.transformBoundingBox( mExtent );
2280 void QgsMapLayer::updateExtent(
const QgsRectangle &extent )
const
2288 if (
mReadFlags & QgsMapLayer::ReadFlag::FlagTrustLayerMetadata )
2297 if (
mReadFlags & QgsMapLayer::ReadFlag::FlagTrustLayerMetadata )
2305 QString
metadata = QStringLiteral(
"<h1>" ) + tr(
"General" ) + QStringLiteral(
"</h1>\n<hr>\n" ) + QStringLiteral(
"<table class=\"list-view\">\n" );
2308 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Name" ) + QStringLiteral(
"</td><td>" ) +
name() + QStringLiteral(
"</td></tr>\n" );
2311 bool isLocalPath =
false;
2316 if ( uriComponents.contains( QStringLiteral(
"path" ) ) )
2318 path = uriComponents[QStringLiteral(
"path" )].toString();
2319 QFileInfo fi( path );
2323 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Path" ) + QStringLiteral(
"</td><td>%1" ).arg( QStringLiteral(
"<a href=\"%1\">%2</a>" ).arg( QUrl::fromLocalFile( path ).toString(), QDir::toNativeSeparators( path ) ) ) + QStringLiteral(
"</td></tr>\n" );
2325 QDateTime lastModified = fi.lastModified();
2326 QString lastModifiedFileName;
2330 qint64 fileSize = fi.size();
2331 if ( !sidecarFiles.isEmpty() )
2333 lastModifiedFileName = fi.fileName();
2334 QStringList sidecarFileNames;
2335 for (
const QString &sidecarFile : sidecarFiles )
2337 QFileInfo sidecarFi( sidecarFile );
2338 fileSize += sidecarFi.size();
2339 if ( sidecarFi.lastModified() > lastModified )
2341 lastModified = sidecarFi.lastModified();
2342 lastModifiedFileName = sidecarFi.fileName();
2344 sidecarFileNames << sidecarFi.fileName();
2346 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + ( sidecarFiles.size() > 1 ? tr(
"Sidecar files" ) : tr(
"Sidecar file" ) ) + QStringLiteral(
"</td><td>%1" ).arg( sidecarFileNames.join( QLatin1String(
", " ) ) ) + QStringLiteral(
"</td></tr>\n" );
2348 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + ( !sidecarFiles.isEmpty() ? tr(
"Total size" ) : tr(
"Size" ) ) + QStringLiteral(
"</td><td>%1" ).arg(
QgsFileUtils::representFileSize( fileSize ) ) + QStringLiteral(
"</td></tr>\n" );
2350 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Last modified" ) + QStringLiteral(
"</td><td>%1" ).arg( QLocale().toString( fi.lastModified() ) ) + ( !lastModifiedFileName.isEmpty() ? QStringLiteral(
" (%1)" ).arg( lastModifiedFileName ) : QString() ) + QStringLiteral(
"</td></tr>\n" );
2353 if ( uriComponents.contains( QStringLiteral(
"url" ) ) )
2355 const QString url = uriComponents[QStringLiteral(
"url" )].toString();
2356 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"URL" ) + QStringLiteral(
"</td><td>%1" ).arg( QStringLiteral(
"<a href=\"%1\">%2</a>" ).arg( QUrl( url ).toString(), url ) ) + QStringLiteral(
"</td></tr>\n" );
2362 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Source" ) + QStringLiteral(
"</td><td>%1" ).arg(
publicSource() != path ?
publicSource() : path ) + QStringLiteral(
"</td></tr>\n" );
2366 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Provider" ) + QStringLiteral(
"</td><td>%1" ).arg(
dataProvider()->
name() ) + QStringLiteral(
"</td></tr>\n" );
2368 metadata += QLatin1String(
"</table>\n<br><br>" );
2374 QString
metadata = QStringLiteral(
"<h1>" ) + tr(
"Coordinate Reference System (CRS)" ) + QStringLiteral(
"</h1>\n<hr>\n" );
2375 metadata += QLatin1String(
"<table class=\"list-view\">\n" );
2380 metadata += QStringLiteral(
"<tr><td colspan=\"2\" class=\"highlight\">" ) + tr(
"Unknown" ) + QStringLiteral(
"</td></tr>\n" );
2386 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Units" ) + QStringLiteral(
"</td><td>" )
2387 + (
c.isGeographic() ? tr(
"Geographic (uses latitude and longitude for coordinates)" ) :
QgsUnitTypes::toString(
c.mapUnits() ) )
2388 + QStringLiteral(
"</td></tr>\n" );
2393 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Method" ) + QStringLiteral(
"</td><td>" ) + operation.
description() + QStringLiteral(
"</td></tr>\n" );
2398 const QString celestialBody =
c.celestialBodyName();
2399 if ( !celestialBody.isEmpty() )
2401 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Celestial body" ) + QStringLiteral(
"</td><td>" ) + celestialBody + QStringLiteral(
"</td></tr>\n" );
2409 QString accuracyString;
2411 if (
c.isDynamic() && std::isnan(
c.coordinateEpoch() ) )
2413 accuracyString = tr(
"Based on a dynamic CRS, but no coordinate epoch is set. Coordinates are ambiguous and of limited accuracy." );
2423 if ( !ensemble.
code().isEmpty() )
2424 id = QStringLiteral(
"<i>%1</i> (%2:%3)" ).arg( ensemble.
name(), ensemble.
authority(), ensemble.
code() );
2426 id = QStringLiteral(
"<i>%</i>”" ).arg( ensemble.
name() );
2430 accuracyString = tr(
"Based on %1, which has a limited accuracy of <b>at best %2 meters</b>." ).arg(
id ).arg( ensemble.
accuracy() );
2434 accuracyString = tr(
"Based on %1, which has a limited accuracy." ).arg(
id );
2443 if ( !accuracyString.isEmpty() )
2445 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Accuracy" ) + QStringLiteral(
"</td><td>" ) + accuracyString + QStringLiteral(
"</td></tr>\n" );
2449 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Reference" ) + QStringLiteral(
"</td><td>%1</td></tr>\n" ).arg(
c.isDynamic() ? tr(
"Dynamic (relies on a datum which is not plate-fixed)" ) : tr(
"Static (relies on a datum which is plate-fixed)" ) );
2452 if ( !std::isnan(
c.coordinateEpoch() ) )
2454 metadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Coordinate epoch" ) + QStringLiteral(
"</td><td>%1</td></tr>\n" ).arg(
c.coordinateEpoch() );
2458 metadata += QLatin1String(
"</table>\n<br><br>\n" );
QStringList styles() const
Returns list of all defined style names.
void setAbstract(const QString &abstract)
Sets the abstract of the layer used by QGIS Server in GetCapabilities request.
QString crsHtmlMetadata() const
Returns a HTML fragment containing the layer's CRS metadata, for use in the htmlMetadata() method.
QgsCoordinateReferenceSystem crs
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
void flagsChanged()
Emitted when layer's flags have been modified.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
void dependenciesChanged()
Emitted when dependencies are changed.
virtual QString loadSldStyle(const QString &uri, bool &resultFlag)
Attempts to style the layer using the formatting from an SLD type file.
void request3DUpdate()
Signal emitted when a layer requires an update in any 3D maps.
bool hasAutoRefreshEnabled() const
Returns true if auto refresh is enabled for the layer.
virtual void resolveReferences(QgsProject *project)
Resolve references to other layers (kept as layer IDs after reading XML) into layer objects.
static QString version()
Version string.
QString attributionUrl() const
Returns the attribution URL of the layer used by QGIS Server in GetCapabilities request.
int open(const QString &path)
Opens the database at the specified file path.
Contains information about the context in which a coordinate transform is executed.
QString refreshOnNotifyMessage() const
Returns the message that should be notified by the provider to triggerRepaint.
virtual bool writeXml(QDomNode &layer_node, QDomDocument &document, const QgsReadWriteContext &context) const
Called by writeLayerXML(), used by children to write state specific to them to project files.
static QString capitalize(const QString &string, Qgis::Capitalization capitalization)
Converts a string by applying capitalization rules to the string.
@ FlagTrustLayerMetadata
Trust layer metadata. Improves layer load time by skipping expensive checks like primary key unicity,...
Q_DECL_DEPRECATED void setMetadataUrl(const QString &metaUrl)
Sets the metadata URL of the layer used by QGIS Server in GetCapabilities request.
void configChanged()
Emitted whenever the configuration is changed.
@ FlagReadExtentFromXml
Read extent from xml and skip get extent from provider.
bool writeLayerXml(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores state in DOM node.
QString dataUrlFormat() const
Returns the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
Setting options for creating vector data providers.
bool saveLayerMetadata(const QString &providerKey, const QString &uri, const QgsLayerMetadata &metadata, QString &errorMessage) SIP_THROW(QgsNotSupportedException)
Saves metadata to the layer corresponding to the specified uri.
static CUSTOM_CRS_VALIDATION customCrsValidation()
Gets custom function.
static QString generateId(const QString &layerName)
Generates an unique identifier for this layer, the generate ID is prefixed by layerName.
The class is used as a container of context for various read/write operations on other objects.
Abstract base class for spatial data provider implementations.
@ VectorLayer
Vector layer.
double mLayerOpacity
Layer opacity.
#define QgsDebugMsgLevel(str, level)
virtual QString type() const =0
Returns unique identifier of the renderer class (used to identify subclass)
void setFlags(QgsMapLayer::LayerFlags flags)
Returns the flags for this layer.
sqlite3_statement_unique_ptr prepare(const QString &sql, int &resultCode) const
Prepares a sql statement, returning the result.
Base class for storage of map layer elevation properties.
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
Q_INVOKABLE void setCustomProperty(const QString &key, const QVariant &value)
Set a custom property for layer.
void setRefreshOnNotifyEnabled(bool enabled)
Set whether provider notification is connected to triggerRepaint.
Base class for all renderers that may to participate in 3D view.
bool mIsRefreshOnNofifyEnabled
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
virtual bool loadNamedStyleFromDatabase(const QString &db, const QString &uri, QString &qml)
Retrieve a named style for this layer from a sqlite database.
@ Symbology3D
3D symbology
virtual QSet< QgsMapLayerDependency > dependencies() const
Gets the list of dependencies.
bool isRefreshOnNotifyEnabled() const
Returns true if the refresh on provider nofification is enabled.
static QgsCoordinateReferenceSystem fromOgcWmsCrs(const QString &ogcCrs)
Creates a CRS from a given OGC WMS-format Coordinate Reference System string.
virtual Qgis::MapLayerProperties properties() const
Returns the map layer properties of this layer.
virtual bool importNamedStyle(QDomDocument &doc, QString &errorMsg, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Import the properties of this layer from a QDomDocument.
@ AnnotationLayer
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
virtual QStringList subLayers() const
Returns the sublayers of this layer.
@ FlagTrustDataSource
Trust datasource config (primary key unicity, geometry type and srid, etc). Improves provider load ti...
bool loadNamedMetadataFromDatabase(const QString &db, const QString &uri, QString &qmd)
Retrieve a named metadata for this layer from a sqlite database.
QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the layer.
QgsMapLayerType
Types of layers that can be added to a map.
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
void setCustomProperties(const QgsObjectCustomProperties &properties)
Set custom properties for layer.
Q_DECL_DEPRECATED void setMetadataUrlType(const QString &metaUrlType)
Set the metadata type of the layer used by QGIS Server in GetCapabilities request MetadataUrlType ind...
QgsError is container for error messages (report). It may contain chain (sort of traceback) of error ...
The QgsMapLayerLegend class is abstract interface for implementations of legends for one map layer.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
static QString formatLayerName(const QString &name)
A convenience function to capitalize and format a layer name.
CONSTLATIN1STRING geoEpsgCrsAuthId()
Geographic coord sys from EPSG authority.
static QgsProject * instance()
Returns the QgsProject singleton instance.
static T readFlagAttribute(const QDomElement &element, const QString &attributeName, T defaultValue)
Read a flag value from an attribute of the element.
An interface for classes which can visit style entity (e.g. symbol) nodes (using the visitor pattern)...
PropertyType
Maplayer has a style and a metadata property.
QString description() const
Description.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
void readXml(const QDomNode &parentNode, const QString &keyStartsWith=QString())
Read store contents from an XML node.
virtual QString saveDefaultStyle(bool &resultFlag, StyleCategories categories)
Save the properties of this layer as the default style (either as a .qml file on disk or as a record ...
void readCustomProperties(const QDomNode &layerNode, const QString &keyStartsWith=QString())
Read custom properties from project file.
void exportNamedMetadata(QDomDocument &doc, QString &errorMsg) const
Export the current metadata of this layer as named metadata in a QDomDocument.
virtual QString saveNamedStyle(const QString &uri, bool &resultFlag, StyleCategories categories=AllStyleCategories)
Save the properties of this layer as a named style (either as a .qml file on disk or as a record in t...
void notify(const QString &msg)
Emitted when the datasource issues a notification.
virtual QString saveSldStyle(const QString &uri, bool &resultFlag) const
Saves the properties of this layer to an SLD format file.
void reset()
Reset the style manager to a basic state - with one default style which is set as current.
void crsChanged()
Emit a signal that layer's CRS has been reset.
bool readXml(const QDomNode &node)
Restores state from the given DOM node.
Q_INVOKABLE QStringList customPropertyKeys() const
Returns list of all keys within custom properties.
virtual QString htmlMetadata() const
Obtain a formatted HTML string containing assorted metadata for this layer.
QgsMapLayerLegend * legend() const
Can be nullptr.
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the layer.
virtual void setMetadata(const QgsLayerMetadata &metadata)
Sets the layer's metadata store.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
Contains information about a PROJ operation.
A rectangle specified with double values.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
QString dataUrl() const
Returns the DataUrl of the layer used by QGIS Server in GetCapabilities request.
bool removeAttachedFile(const QString &path)
Removes the attached file.
virtual QString styleURI() const
Retrieve the style URI for this layer (either as a .qml file on disk or as a record in the users styl...
QString mProviderKey
Data provider key (name of the data provider)
void readXml(const QDomElement &mgrElement)
Read configuration (for project loading)
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
QString saveNamedMetadata(const QString &uri, bool &resultFlag)
Save the current metadata of this layer as a named metadata (either as a .qmd file on disk or as a re...
@ Rendering
Rendering: scale visibility, simplify method, opacity.
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
QString providerType() const
Returns the provider type (provider key) for this layer.
void setLegendUrlFormat(const QString &legendUrlFormat)
Sets the format for a URL based layer legend.
static QgsAuthManager * authManager()
Returns the application's authentication manager instance.
@ Elevation
Elevation settings (since QGIS 3.18)
static QString layerNotes(const QgsMapLayer *layer)
Returns the notes for the specified layer.
@ Temporal
Temporal properties (since QGIS 3.14)
QString mLayerName
Name of the layer - used for display.
virtual QString saveDefaultMetadata(bool &resultFlag)
Save the current metadata of this layer as the default metadata (either as a .qmd file on disk or as ...
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
void dataSourceChanged()
Emitted whenever the layer's data source has been changed.
const QgsObjectCustomProperties & customProperties() const
Read all custom properties from layer.
A storage object for map layers, in which the layers are owned by the store and have their lifetime b...
virtual void resolveReferences(const QgsProject &project)
Resolves references to other objects - second phase of loading - after readXml()
virtual void setSubLayerVisibility(const QString &name, bool visible)
Set the visibility of the given sublayer name.
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
QgsMapLayer::LayerFlags flags() const
Returns the flags for this layer.
virtual bool isModified() const
Returns true if the layer has been modified since last commit/save.
QString writePath(const QString &filename) const
Prepare a filename to save it to the project file.
static QString qgisSettingsDirPath()
Returns the path to the settings directory in user's home dir.
QgsLayerMetadata metadata
Allows entering a context category and takes care of leaving this category on deletion of the class....
Management of styles for use with one map layer.
Custom exception class for Coordinate Reference System related exceptions.
virtual QString encodedSource(const QString &source, const QgsReadWriteContext &context) const
Called by writeLayerXML(), used by derived classes to encode provider's specific data source to proje...
bool mValid
Indicates if the layer is valid and can be drawn.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
virtual void setExtent(const QgsRectangle &rect)
Sets the extent.
double accuracy() const
Positional accuracy (in meters).
virtual Q_INVOKABLE QgsDataProvider * dataProvider()
Returns the layer's data provider, it may be nullptr.
MAYBE_UNUSED NODISCARD QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString()) const
Push a category to the stack.
QString keywordList() const
Returns the keyword list of the layer used by QGIS Server in GetCapabilities request.
QgsAbstract3DRenderer * renderer3D() const
Returns 3D renderer associated with the layer.
virtual bool readSld(const QDomNode &node, QString &errorMessage)
QString legendUrlFormat() const
Returns the format for a URL based layer legend.
static bool layerHasNotes(const QgsMapLayer *layer)
Returns true if the specified layer has notes available.
Q_DECL_DEPRECATED QString metadataUrlFormat() const
Returns the metadata format of the layer used by QGIS Server in GetCapabilities request.
bool writeXml(QDomNode &node, QDomDocument &doc) const
Stores state to the given Dom node in the given document.
@ FlagLoadDefaultStyle
Reset the layer's style to the default for the datasource.
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
static Q_INVOKABLE QString toString(QgsUnitTypes::DistanceUnit unit)
Returns a translated string representing a distance unit.
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
void styleChanged()
Signal emitted whenever a change affects the layer's style.
void repaintRequested(bool deferredUpdate=false)
By emitting this signal the layer tells that either appearance or content have been changed and any v...
virtual QgsRectangle extent() const
Returns the extent of the layer.
QString mAttribution
Attribution of the layer.
void setOriginalXmlProperties(const QString &originalXmlProperties)
Sets the original XML properties for the layer to originalXmlProperties.
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
virtual void writeXml(QDomElement &elem, const QgsReadWriteContext &context) const =0
Writes renderer's properties to given XML element.
QSet< QgsMapLayerDependency > mDependencies
List of layers that may modify this layer on modification.
void blendModeChanged(QPainter::CompositionMode blendMode)
Signal emitted when the blend mode is changed, through QgsMapLayer::setBlendMode()
void(* CUSTOM_CRS_VALIDATION)(QgsCoordinateReferenceSystem &)
void isValidChanged()
Emitted when the validity of this layer changed.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
virtual bool supportsEditing() const
Returns whether the layer supports editing or not.
virtual void setOpacity(double opacity)
Sets the opacity for the layer, where opacity is a value between 0 (totally transparent) and 1....
void nameChanged()
Emitted when the name has been changed.
void setValue(const QString &key, const QVariant &value)
Add an entry to the store with the specified key.
virtual QgsMapLayerTemporalProperties * temporalProperties()
Returns the layer's temporal properties.
virtual QString loadDefaultStyle(bool &resultFlag)
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
Manages QGIS Server properties for a map layer.
QVariantMap decodeUri(const QString &providerKey, const QString &uri)
Breaks a provider data source URI into its component paths (e.g.
QString mDataUrl
DataUrl of the layer.
QgsMapLayer(QgsMapLayerType type=QgsMapLayerType::VectorLayer, const QString &name=QString(), const QString &source=QString())
Constructor for QgsMapLayer.
virtual bool isEditable() const
Returns true if the layer can be edited.
void setKeywordList(const QString &keywords)
Sets the keyword list of the layer used by QGIS Server in GetCapabilities request.
QgsRectangle wgs84Extent(bool forceRecalculate=false) const
Returns the WGS84 extent (EPSG:4326) of the layer according to ReadFlag::FlagTrustLayerMetadata.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
QString title() const
Returns the title of the layer used by QGIS Server in GetCapabilities request.
void setTitle(const QString &title)
Sets the title of the layer used by QGIS Server in GetCapabilities request.
Base class for storage of map layer temporal properties.
QString mDataSource
Data source description string, varies by layer type.
bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QVariantMap &props=QVariantMap()) const
Writes the symbology of the layer into the document provided in SLD 1.1 format.
static QString pkgDataPath()
Returns the common root path of all application data directories.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
virtual void exportNamedStyle(QDomDocument &doc, QString &errorMsg, const QgsReadWriteContext &context=QgsReadWriteContext(), QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const
Export the properties of this layer as named style in a QDomDocument.
@ FullString
Full definition – possibly a very lengthy string, e.g. with no truncation of custom WKT definitions.
virtual QString decodedSource(const QString &source, const QString &dataProvider, const QgsReadWriteContext &context) const
Called by readLayerXML(), used by derived classes to decode provider's specific data source from proj...
Represents a raster layer.
void setRenderer3D(QgsAbstract3DRenderer *renderer)
Sets 3D renderer for the layer.
QString originalXmlProperties() const
Returns the XML properties of the original layer as they were when the layer was first read from the ...
void validate()
Perform some validation on this CRS.
void removeCustomProperty(const QString &key)
Remove a custom property from layer.
void opacityChanged(double opacity)
Emitted when the layer's opacity is changed, where opacity is a value between 0 (transparent) and 1 (...
double minimumScale() const
Returns the minimum map scale (i.e.
int open_v2(const QString &path, int flags, const char *zVfs)
Opens the database at the specified file path.
double maximumScale() const
Returns the maximum map scale (i.e.
This class represents a coordinate reference system (CRS).
void remove(const QString &key)
Removes a key (entry) from the store.
void beforeResolveReferences(QgsProject *project)
Emitted when all layers are loaded and references can be resolved, just before the references of this...
@ ForceFirstLetterToCapital
Convert just the first letter of each word to uppercase, leave the rest untouched.
QString absoluteFilePath() const
Returns full absolute path to the project file if the project is stored in a file system - derived fr...
static void setCustomCrsValidation(CUSTOM_CRS_VALIDATION f)
Sets custom function to force valid CRS.
void legendChanged()
Signal emitted when legend of the layer has changed.
Qgs3DRendererAbstractMetadata * rendererMetadata(const QString &type) const
Returns metadata for a 3D renderer type (may be used to create a new instance of the type)
Q_DECL_DEPRECATED void setMetadataUrlFormat(const QString &metaUrlFormat)
Sets the metadata format of the layer used by QGIS Server in GetCapabilities request.
virtual bool isTemporary() const
Returns true if the layer is considered a temporary layer.
virtual bool readSymbology(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)=0
Read the symbology for the current layer from the DOM node supplied.
void setAttributionUrl(const QString &attribUrl)
Sets the attribution URL of the layer used by QGIS Server in GetCapabilities request.
QString legendUrl() const
Returns the URL for the layer's legend.
void dataChanged()
Data of layer changed.
QString publicSource() const
Gets a version of the internal layer definition that has sensitive bits removed (for example,...
QString readPath(const QString &filename) const
Turn filename read from the project file to an absolute path.
QString source() const
Returns the source for the layer.
bool setMasterPassword(bool verify=false)
Main call to initially set or continually check master password is set.
void setDataSource(const QString &dataSource, const QString &baseName, const QString &provider, bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
QString mAbstract
Description of the layer.
void writeStyleManager(QDomNode &layerNode, QDomDocument &doc) const
Write style manager's configuration (if exists). To be called by subclasses.
void copyTo(QgsMapLayerServerProperties *properties) const
Copy properties to another instance.
void setScaleBasedVisibility(bool enabled)
Sets whether scale based visibility is enabled for the layer.
bool addStyle(const QString &name, const QgsMapLayerStyle &style)
Add a style with given name and data.
virtual bool writeSymbology(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const =0
Write the style for the layer into the document provided.
static QString extensionPropertyType(PropertyType type)
Returns the extension of a Property.
Q_INVOKABLE QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
QgsCoordinateTransformContext transformContext() const
Returns the layer data provider coordinate transform context or a default transform context if the la...
bool contains(const QString &key) const
Returns true if the properties contains a key with the specified name.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
QString baseName() const
Returns the base name of the project file without the path and without extension - derived from fileN...
static Qgs3DRendererRegistry * renderer3DRegistry()
Returns registry of available 3D renderers.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
void setRefreshOnNofifyMessage(const QString &message)
Set the notification message that triggers repaint If refresh on notification is enabled,...
void setName(const QString &name)
Set the display name of the layer.
void setDataUrlFormat(const QString &dataUrlFormat)
Sets the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
Represents a vector layer which manages a vector based data sets.
Simple key-value store (keys = strings, values = variants) that supports loading/saving to/from XML i...
Base class for all map layer types. This is the base class for all map layer types (vector,...
QStringList keys() const
Returns a list of all stored keys.
void itemsChanged()
Emitted when existing items/nodes got invalid and should be replaced by new ones.
This class models dependencies with or between map layers.
void setLegendUrl(const QString &legendUrl)
Sets the URL for the layer's legend.
bool readLayerXml(const QDomElement &layerElement, QgsReadWriteContext &context, QgsMapLayer::ReadFlags flags=QgsMapLayer::ReadFlags())
Sets state from DOM document.
QVariant value(const QString &key, const QVariant &defaultValue=QVariant()) const
Returns the value for the given key.
void setAutoRefreshInterval(int interval)
Sets the auto refresh interval (in milliseconds) for the layer.
void invalidateWgs84Extent()
Invalidates the WGS84 extent.
static QString representFileSize(qint64 bytes)
Returns the human size from bytes.
virtual bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context)
Called by readLayerXML(), used by children to read state specific to them from project files.
virtual QString loadDefaultMetadata(bool &resultFlag)
Retrieve the default metadata for this layer if one exists (either as a .qmd file on disk or as a rec...
Q_DECL_DEPRECATED QString metadataUrl() const
Returns the metadata URL of the layer used by QGIS Server in GetCapabilities request.
QString authority() const
Authority name, e.g.
static void setLayerNotes(QgsMapLayer *layer, const QString ¬es)
Sets the notes for the specified layer, where notes is a HTML formatted string.
QUndoStack * undoStackStyles()
Returns pointer to layer's style undo stack.
void setAutoRefreshEnabled(bool enabled)
Sets whether auto refresh is enabled for the layer.
@ Notes
Layer user notes (since QGIS 3.20)
@ LayerConfiguration
General configuration: identifiable, removable, searchable, display expression, read-only.
static const double SCALE_PRECISION
Fudge factor used to compare two scales.
QUndoStack * undoStack()
Returns pointer to layer's undo stack.
@ CustomProperties
Custom properties (by plugins for instance)
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
void setAttribution(const QString &attrib)
Sets the attribution of the layer used by QGIS Server in GetCapabilities request.
QString mRefreshOnNofifyMessage
virtual bool readStyle(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read the style for the current layer from the DOM node supplied.
QString mLegendUrl
WMS legend.
bool importNamedMetadata(QDomDocument &document, QString &errorMessage)
Import the metadata of this layer from a QDomDocument.
QgsMapLayerServerProperties * serverProperties()
Returns QGIS Server Properties for the map layer.
QgsProject * project() const
Returns the parent project if this map layer is added to a project.
virtual QString metadataUri() const
Retrieve the metadata URI for this layer (either as a .qmd file on disk or as a record in the users s...
virtual bool setDependencies(const QSet< QgsMapLayerDependency > &layers)
Sets the list of dependencies.
void setValidationHint(const QString &html)
Set user hint for validation.
static QSet< QString > sidecarFilesForPath(const QString &path)
Returns a list of the sidecar files which exist for the dataset a the specified path.
Custom exception class which is raised when an operation is not supported.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
static QString removePassword(const QString &aUri)
Removes the password element from a URI.
void writeXml(QDomElement &mgrElement) const
Write configuration (for project saving)
void setDataUrl(const QString &dataUrl)
Sets the DataUrl of the layer used by QGIS Server in GetCapabilities request.
void setValid(bool valid)
Sets whether layer is valid or not.
void trigger3DUpdate()
Will advise any 3D maps that this layer requires to be updated in the scene.
Unique pointer for sqlite3 databases, which automatically closes the database when the pointer goes o...
int mBlockStyleChangedSignal
If non-zero, the styleChanged signal should not be emitted.
Q_INVOKABLE QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
void setShortName(const QString &shortName)
Sets the short name of the layer used by QGIS Server to identify the layer.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
QString attribution() const
Returns the attribution of the layer used by QGIS Server in GetCapabilities request.
Q_DECL_DEPRECATED QString metadataUrlType() const
Returns the metadata type of the layer used by QGIS Server in GetCapabilities request.
virtual void exportSldStyle(QDomDocument &doc, QString &errorMsg) const
Export the properties of this layer as SLD style in a QDomDocument.
void customPropertyChanged(const QString &key)
Emitted when a custom property of the layer has been changed or removed.
virtual QString loadNamedStyle(const QString &uri, bool &resultFlag, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Retrieve a named style for this layer if one exists (either as a .qml file on disk or as a record in ...
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
QString name() const
Display name of datum ensemble.
void renderer3DChanged()
Signal emitted when 3D renderer associated with the layer has changed.
virtual QString loadNamedMetadata(const QString &uri, bool &resultFlag)
Retrieve a named metadata for this layer if one exists (either as a .qmd file on disk or as a record ...
void readXml(const QDomNode &layer_node)
Reads server properties from project file.
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
virtual QgsMapLayerElevationProperties * elevationProperties()
Returns the layer's elevation properties.
bool isValid() const
Returns true if the datum ensemble is a valid object, or false if it is a null/invalid object.
void autoRefreshIntervalChanged(int interval)
Emitted when the auto refresh interval changes.
A class to describe the version of a project.
Unique pointer for sqlite3 prepared statements, which automatically finalizes the statement when the ...
void writeXml(QDomNode &parentNode, QDomDocument &doc) const
Writes the store contents to an XML node.
virtual bool writeStyle(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write just the symbology information for the layer into the document.
virtual QDateTime timestamp() const
Time stamp of data source in the moment when data/metadata were loaded by provider.
virtual void setLayerOrder(const QStringList &layers)
Reorders the previously selected sublayers of this layer from bottom to top.
Contains information about a datum ensemble.
QString code() const
Identification code, e.g.
bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QVariantMap &props=QVariantMap()) const
Writes the symbology of the layer into the document provided in SLD 1.0.0 format.
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
The derived translate() translates with QTranslator and qm file the sourceText.
virtual void setListening(bool isListening)
Set whether the provider will listen to datasource notifications If set, the provider will issue noti...
const QgsPathResolver & pathResolver() const
Returns path resolver for conversion between relative and absolute paths.
void metadataChanged()
Emitted when the layer's metadata is changed.
static QDomElement writeRectangle(const QgsRectangle &rect, QDomDocument &doc, const QString &elementName=QStringLiteral("extent"))
Encodes a rectangle to a DOM element.
virtual QgsError error() const
Gets current status error.
static QgsRectangle readRectangle(const QDomElement &element)