QGIS API Documentation 3.28.14-Firenze (exported)
Loading...
Searching...
No Matches
qgsmaplayer.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsmaplayer.cpp - description
3 -------------------
4 begin : Fri Jun 28 2002
5 copyright : (C) 2002 by Gary E.Sherman
6 email : sherman at mrcc.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
19#include "qgssqliteutils.h"
22#include "qgsapplication.h"
24#include "qgsdatasourceuri.h"
25#include "qgsfileutils.h"
26#include "qgslogger.h"
27#include "qgsauthmanager.h"
28#include "qgsmaplayer.h"
29#include "qgsmaplayerlegend.h"
31#include "qgsmeshlayer.h"
32#include "qgspathresolver.h"
34#include "qgsproject.h"
35#include "qgsproviderregistry.h"
36#include "qgsrasterlayer.h"
37#include "qgsreadwritecontext.h"
38#include "qgsrectangle.h"
39#include "qgsvectorlayer.h"
41#include "qgsxmlutils.h"
42#include "qgsstringutils.h"
43#include "qgsmessagelog.h"
46#include "qgsprovidermetadata.h"
47#include "qgslayernotesutils.h"
48#include "qgsdatums.h"
49#include "qgsprojoperation.h"
50
51#include <QDir>
52#include <QDomDocument>
53#include <QDomElement>
54#include <QDomImplementation>
55#include <QDomNode>
56#include <QFile>
57#include <QFileInfo>
58#include <QLocale>
59#include <QTextStream>
60#include <QUrl>
61#include <QTimer>
62#include <QStandardPaths>
63#include <QUuid>
64#include <QRegularExpression>
65
66#include <sqlite3.h>
67
69{
70 switch ( type )
71 {
72 case Metadata:
73 return QStringLiteral( ".qmd" );
74
75 case Style:
76 return QStringLiteral( ".qml" );
77 }
78 return QString();
79}
80
82 const QString &lyrname,
83 const QString &source )
84 : mDataSource( source )
85 , mLayerName( lyrname )
86 , mLayerType( type )
87 , mServerProperties( std::make_unique<QgsMapLayerServerProperties>( this ) )
88 , mUndoStack( new QUndoStack( this ) )
89 , mUndoStackStyles( new QUndoStack( this ) )
90 , mStyleManager( new QgsMapLayerStyleManager( this ) )
91 , mRefreshTimer( new QTimer( this ) )
92{
93 mID = generateId( lyrname );
96 connect( mRefreshTimer, &QTimer::timeout, this, [ = ] { triggerRepaint( true ); } );
97}
98
100{
101 if ( project() && project()->pathResolver().writePath( mDataSource ).startsWith( "attachment:" ) )
102 {
104 }
105
106 delete m3DRenderer;
107 delete mLegend;
108 delete mStyleManager;
109}
110
111void QgsMapLayer::clone( QgsMapLayer *layer ) const
112{
113 layer->setBlendMode( blendMode() );
114
115 const auto constStyles = styleManager()->styles();
116 for ( const QString &s : constStyles )
117 {
118 layer->styleManager()->addStyle( s, styleManager()->style( s ) );
119 }
120
121 layer->setName( name() );
122 layer->setShortName( shortName() );
123 layer->setExtent( extent() );
124 layer->setMaximumScale( maximumScale() );
125 layer->setMinimumScale( minimumScale() );
127 layer->setTitle( title() );
128 layer->setAbstract( abstract() );
129 layer->setKeywordList( keywordList() );
130 layer->setDataUrl( dataUrl() );
132 layer->setAttribution( attribution() );
134 layer->setLegendUrl( legendUrl() );
136 layer->setDependencies( dependencies() );
138 layer->setCrs( crs() );
139 layer->setCustomProperties( mCustomProperties );
140 layer->setOpacity( mLayerOpacity );
141 layer->setMetadata( mMetadata );
142 layer->serverProperties()->copyTo( mServerProperties.get() );
143}
144
146{
147 return mLayerType;
148}
149
150QgsMapLayer::LayerFlags QgsMapLayer::flags() const
151{
152 return mFlags;
153}
154
155void QgsMapLayer::setFlags( QgsMapLayer::LayerFlags flags )
156{
157 if ( flags == mFlags )
158 return;
159
160 mFlags = flags;
161 emit flagsChanged();
162}
163
164Qgis::MapLayerProperties QgsMapLayer::properties() const
165{
166 return Qgis::MapLayerProperties();
167}
168
169QString QgsMapLayer::id() const
170{
171 return mID;
172}
173
174void QgsMapLayer::setName( const QString &name )
175{
176 if ( name == mLayerName )
177 return;
178
180
181 emit nameChanged();
182}
183
184QString QgsMapLayer::name() const
185{
186 QgsDebugMsgLevel( "returning name '" + mLayerName + '\'', 4 );
187 return mLayerName;
188}
189
191{
192 return nullptr;
193}
194
196{
197 return nullptr;
198}
199
201{
202 return mShortName;
203}
204
205void QgsMapLayer::setMetadataUrl( const QString &metaUrl )
206{
207 QList<QgsMapLayerServerProperties::MetadataUrl> urls = serverProperties()->metadataUrls();
208 if ( urls.isEmpty() )
209 {
210 const QgsMapLayerServerProperties::MetadataUrl newItem = QgsMapLayerServerProperties::MetadataUrl( metaUrl, QLatin1String(), QLatin1String() );
211 urls.prepend( newItem );
212 }
213 else
214 {
215 const QgsMapLayerServerProperties::MetadataUrl old = urls.takeFirst();
216 const QgsMapLayerServerProperties::MetadataUrl newItem( metaUrl, old.type, old.format );
217 urls.prepend( newItem );
218 }
220}
221
223{
224 if ( mServerProperties->metadataUrls().isEmpty() )
225 {
226 return QLatin1String();
227 }
228 else
229 {
230 return mServerProperties->metadataUrls().first().url;
231 }
232}
233
234void QgsMapLayer::setMetadataUrlType( const QString &metaUrlType )
235{
236 QList<QgsMapLayerServerProperties::MetadataUrl> urls = mServerProperties->metadataUrls();
237 if ( urls.isEmpty() )
238 {
239 const QgsMapLayerServerProperties::MetadataUrl newItem( QLatin1String(), metaUrlType, QLatin1String() );
240 urls.prepend( newItem );
241 }
242 else
243 {
244 const QgsMapLayerServerProperties::MetadataUrl old = urls.takeFirst();
245 const QgsMapLayerServerProperties::MetadataUrl newItem( old.url, metaUrlType, old.format );
246 urls.prepend( newItem );
247 }
248 mServerProperties->setMetadataUrls( urls );
249}
250
252{
253 if ( mServerProperties->metadataUrls().isEmpty() )
254 {
255 return QLatin1String();
256 }
257 else
258 {
259 return mServerProperties->metadataUrls().first().type;
260 }
261}
262
263void QgsMapLayer::setMetadataUrlFormat( const QString &metaUrlFormat )
264{
265 QList<QgsMapLayerServerProperties::MetadataUrl> urls = mServerProperties->metadataUrls();
266 if ( urls.isEmpty() )
267 {
268 const QgsMapLayerServerProperties::MetadataUrl newItem( QLatin1String(), QLatin1String(), metaUrlFormat );
269 urls.prepend( newItem );
270 }
271 else
272 {
273 const QgsMapLayerServerProperties::MetadataUrl old = urls.takeFirst( );
274 const QgsMapLayerServerProperties::MetadataUrl newItem( old.url, old.type, metaUrlFormat );
275 urls.prepend( newItem );
276 }
277 mServerProperties->setMetadataUrls( urls );
278}
279
281{
282 if ( mServerProperties->metadataUrls().isEmpty() )
283 {
284 return QString();
285 }
286 else
287 {
288 return mServerProperties->metadataUrls().first().format;
289 }
290}
291
293{
294 // Redo this every time we're asked for it, as we don't know if
295 // dataSource has changed.
296 QString safeName = QgsDataSourceUri::removePassword( mDataSource );
297 return safeName;
298}
299
300QString QgsMapLayer::source() const
301{
302 return mDataSource;
303}
304
306{
307 return mExtent;
308}
309
310void QgsMapLayer::setBlendMode( const QPainter::CompositionMode blendMode )
311{
312 if ( mBlendMode == blendMode )
313 return;
314
315 mBlendMode = blendMode;
318}
319
320QPainter::CompositionMode QgsMapLayer::blendMode() const
321{
322 return mBlendMode;
323}
324
325void QgsMapLayer::setOpacity( double opacity )
326{
328 return;
330 emit opacityChanged( opacity );
332}
333
335{
336 return mLayerOpacity;
337}
338
339bool QgsMapLayer::readLayerXml( const QDomElement &layerElement, QgsReadWriteContext &context, QgsMapLayer::ReadFlags flags )
340{
341 bool layerError;
343
344 QDomNode mnl;
345 QDomElement mne;
346
347 // read provider
348 QString provider;
349 mnl = layerElement.namedItem( QStringLiteral( "provider" ) );
350 mne = mnl.toElement();
351 provider = mne.text();
352
353 // set data source
354 mnl = layerElement.namedItem( QStringLiteral( "datasource" ) );
355 mne = mnl.toElement();
356 mDataSource = context.pathResolver().readPath( mne.text() );
357
358 // if the layer needs authentication, ensure the master password is set
359 const thread_local QRegularExpression rx( "authcfg=([a-z]|[A-Z]|[0-9]){7}" );
360 if ( rx.match( mDataSource ).hasMatch()
362 {
363 return false;
364 }
365
366 mDataSource = decodedSource( mDataSource, provider, context );
367
368 // Set the CRS from project file, asking the user if necessary.
369 // Make it the saved CRS to have WMS layer projected correctly.
370 // We will still overwrite whatever GDAL etc picks up anyway
371 // further down this function.
372 mnl = layerElement.namedItem( QStringLiteral( "layername" ) );
373 mne = mnl.toElement();
374
376 CUSTOM_CRS_VALIDATION savedValidation;
377
378 const QDomNode srsNode = layerElement.namedItem( QStringLiteral( "srs" ) );
379 mCRS.readXml( srsNode );
380 mCRS.setValidationHint( tr( "Specify CRS for layer %1" ).arg( mne.text() ) );
382 mCRS.validate();
383 savedCRS = mCRS;
384
385 // Do not validate any projections in children, they will be overwritten anyway.
386 // No need to ask the user for a projections when it is overwritten, is there?
389
390 const QgsReadWriteContextCategoryPopper p = context.enterCategory( tr( "Layer" ), mne.text() );
391
392 // the internal name is just the data source basename
393 //QFileInfo dataSourceFileInfo( mDataSource );
394 //internalName = dataSourceFileInfo.baseName();
395
396 // set ID
397 mnl = layerElement.namedItem( QStringLiteral( "id" ) );
398 if ( ! mnl.isNull() )
399 {
400 mne = mnl.toElement();
401 if ( ! mne.isNull() && mne.text().length() > 10 ) // should be at least 17 (yyyyMMddhhmmsszzz)
402 {
403 mID = mne.text();
404 }
405 }
406
407 // set name
408 mnl = layerElement.namedItem( QStringLiteral( "layername" ) );
409 mne = mnl.toElement();
410
411 //name can be translated
412 setName( context.projectTranslator()->translate( QStringLiteral( "project:layers:%1" ).arg( layerElement.namedItem( QStringLiteral( "id" ) ).toElement().text() ), mne.text() ) );
413
414 // now let the children grab what they need from the Dom node.
415 layerError = !readXml( layerElement, context );
416
417 // overwrite CRS with what we read from project file before the raster/vector
418 // file reading functions changed it. They will if projections is specified in the file.
419 // FIXME: is this necessary? Yes, it is (autumn 2019)
421 mCRS = savedCRS;
422
423 //short name
424 const QDomElement shortNameElem = layerElement.firstChildElement( QStringLiteral( "shortname" ) );
425 if ( !shortNameElem.isNull() )
426 {
427 mShortName = shortNameElem.text();
428 }
429
430 //title
431 const QDomElement titleElem = layerElement.firstChildElement( QStringLiteral( "title" ) );
432 if ( !titleElem.isNull() )
433 {
434 mTitle = titleElem.text();
435 }
436
437 //abstract
438 const QDomElement abstractElem = layerElement.firstChildElement( QStringLiteral( "abstract" ) );
439 if ( !abstractElem.isNull() )
440 {
441 mAbstract = abstractElem.text();
442 }
443
444 //keywordList
445 const QDomElement keywordListElem = layerElement.firstChildElement( QStringLiteral( "keywordList" ) );
446 if ( !keywordListElem.isNull() )
447 {
448 QStringList kwdList;
449 for ( QDomNode n = keywordListElem.firstChild(); !n.isNull(); n = n.nextSibling() )
450 {
451 kwdList << n.toElement().text();
452 }
453 mKeywordList = kwdList.join( QLatin1String( ", " ) );
454 }
455
456 //dataUrl
457 const QDomElement dataUrlElem = layerElement.firstChildElement( QStringLiteral( "dataUrl" ) );
458 if ( !dataUrlElem.isNull() )
459 {
460 mDataUrl = dataUrlElem.text();
461 mDataUrlFormat = dataUrlElem.attribute( QStringLiteral( "format" ), QString() );
462 }
463
464 //legendUrl
465 const QDomElement legendUrlElem = layerElement.firstChildElement( QStringLiteral( "legendUrl" ) );
466 if ( !legendUrlElem.isNull() )
467 {
468 mLegendUrl = legendUrlElem.text();
469 mLegendUrlFormat = legendUrlElem.attribute( QStringLiteral( "format" ), QString() );
470 }
471
472 //attribution
473 const QDomElement attribElem = layerElement.firstChildElement( QStringLiteral( "attribution" ) );
474 if ( !attribElem.isNull() )
475 {
476 mAttribution = attribElem.text();
477 mAttributionUrl = attribElem.attribute( QStringLiteral( "href" ), QString() );
478 }
479
480 serverProperties()->readXml( layerElement );
481
482 if ( serverProperties()->metadataUrls().isEmpty() )
483 {
484 // metadataUrl is still empty, maybe it's a QGIS Project < 3.22
485 // keep for legacy
486 const QDomElement metaUrlElem = layerElement.firstChildElement( QStringLiteral( "metadataUrl" ) );
487 if ( !metaUrlElem.isNull() )
488 {
489 const QString url = metaUrlElem.text();
490 const QString type = metaUrlElem.attribute( QStringLiteral( "type" ), QString() );
491 const QString format = metaUrlElem.attribute( QStringLiteral( "format" ), QString() );
492 const QgsMapLayerServerProperties::MetadataUrl newItem( url, type, format );
493 mServerProperties->setMetadataUrls( QList<QgsMapLayerServerProperties::MetadataUrl>() << newItem );
494 }
495 }
496
497 // mMetadata.readFromLayer( this );
498 const QDomElement metadataElem = layerElement.firstChildElement( QStringLiteral( "resourceMetadata" ) );
499 mMetadata.readMetadataXml( metadataElem );
500
501 setAutoRefreshInterval( layerElement.attribute( QStringLiteral( "autoRefreshTime" ), QStringLiteral( "0" ) ).toInt() );
502 setAutoRefreshEnabled( layerElement.attribute( QStringLiteral( "autoRefreshEnabled" ), QStringLiteral( "0" ) ).toInt() );
503 setRefreshOnNofifyMessage( layerElement.attribute( QStringLiteral( "refreshOnNotifyMessage" ), QString() ) );
504 setRefreshOnNotifyEnabled( layerElement.attribute( QStringLiteral( "refreshOnNotifyEnabled" ), QStringLiteral( "0" ) ).toInt() );
505
506 // geographic extent is read only if necessary
508 {
509 const QDomNode wgs84ExtentNode = layerElement.namedItem( QStringLiteral( "wgs84extent" ) );
510 if ( !wgs84ExtentNode.isNull() )
511 mWgs84Extent = QgsXmlUtils::readRectangle( wgs84ExtentNode.toElement() );
512 }
513
514 mLegendPlaceholderImage = layerElement.attribute( QStringLiteral( "legendPlaceholderImage" ) );
515
516 return ! layerError;
517} // bool QgsMapLayer::readLayerXML
518
519
520bool QgsMapLayer::readXml( const QDomNode &layer_node, QgsReadWriteContext &context )
521{
522 Q_UNUSED( layer_node )
523 Q_UNUSED( context )
524 // NOP by default; children will over-ride with behavior specific to them
525
526 // read Extent
528 {
529 const QDomNode extentNode = layer_node.namedItem( QStringLiteral( "extent" ) );
530 if ( !extentNode.isNull() )
531 {
532 mExtent = QgsXmlUtils::readRectangle( extentNode.toElement() );
533 }
534 }
535
536 return true;
537} // void QgsMapLayer::readXml
538
539
540bool QgsMapLayer::writeLayerXml( QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context ) const
541{
542 if ( !extent().isNull() )
543 {
544 layerElement.appendChild( QgsXmlUtils::writeRectangle( mExtent, document ) );
545 layerElement.appendChild( QgsXmlUtils::writeRectangle( wgs84Extent( true ), document, QStringLiteral( "wgs84extent" ) ) );
546 }
547
548 layerElement.setAttribute( QStringLiteral( "autoRefreshTime" ), QString::number( mRefreshTimer->interval() ) );
549 layerElement.setAttribute( QStringLiteral( "autoRefreshEnabled" ), mRefreshTimer->isActive() ? 1 : 0 );
550 layerElement.setAttribute( QStringLiteral( "refreshOnNotifyEnabled" ), mIsRefreshOnNofifyEnabled ? 1 : 0 );
551 layerElement.setAttribute( QStringLiteral( "refreshOnNotifyMessage" ), mRefreshOnNofifyMessage );
552
553 // ID
554 QDomElement layerId = document.createElement( QStringLiteral( "id" ) );
555 const QDomText layerIdText = document.createTextNode( id() );
556 layerId.appendChild( layerIdText );
557
558 layerElement.appendChild( layerId );
559
560 // data source
561 QDomElement dataSource = document.createElement( QStringLiteral( "datasource" ) );
562 const QString src = context.pathResolver().writePath( encodedSource( source(), context ) );
563 const QDomText dataSourceText = document.createTextNode( src );
564 dataSource.appendChild( dataSourceText );
565 layerElement.appendChild( dataSource );
566
567 // layer name
568 QDomElement layerName = document.createElement( QStringLiteral( "layername" ) );
569 const QDomText layerNameText = document.createTextNode( name() );
570 layerName.appendChild( layerNameText );
571 layerElement.appendChild( layerName );
572
573 // layer short name
574 if ( !mShortName.isEmpty() )
575 {
576 QDomElement layerShortName = document.createElement( QStringLiteral( "shortname" ) );
577 const QDomText layerShortNameText = document.createTextNode( mShortName );
578 layerShortName.appendChild( layerShortNameText );
579 layerElement.appendChild( layerShortName );
580 }
581
582 // layer title
583 if ( !mTitle.isEmpty() )
584 {
585 QDomElement layerTitle = document.createElement( QStringLiteral( "title" ) );
586 const QDomText layerTitleText = document.createTextNode( mTitle );
587 layerTitle.appendChild( layerTitleText );
588 layerElement.appendChild( layerTitle );
589 }
590
591 // layer abstract
592 if ( !mAbstract.isEmpty() )
593 {
594 QDomElement layerAbstract = document.createElement( QStringLiteral( "abstract" ) );
595 const QDomText layerAbstractText = document.createTextNode( mAbstract );
596 layerAbstract.appendChild( layerAbstractText );
597 layerElement.appendChild( layerAbstract );
598 }
599
600 // layer keyword list
601 const QStringList keywordStringList = keywordList().split( ',' );
602 if ( !keywordStringList.isEmpty() )
603 {
604 QDomElement layerKeywordList = document.createElement( QStringLiteral( "keywordList" ) );
605 for ( int i = 0; i < keywordStringList.size(); ++i )
606 {
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 );
611 }
612 layerElement.appendChild( layerKeywordList );
613 }
614
615 // layer dataUrl
616 const QString aDataUrl = dataUrl();
617 if ( !aDataUrl.isEmpty() )
618 {
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 );
624 }
625
626 // layer legendUrl
627 const QString aLegendUrl = legendUrl();
628 if ( !aLegendUrl.isEmpty() )
629 {
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 );
635 }
636
637 // layer attribution
638 const QString aAttribution = attribution();
639 if ( !aAttribution.isEmpty() )
640 {
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 );
646 }
647
648 // timestamp if supported
649 if ( timestamp() > QDateTime() )
650 {
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 );
655 }
656
657 layerElement.appendChild( layerName );
658
659 // zorder
660 // This is no longer stored in the project file. It is superfluous since the layers
661 // are written and read in the proper order.
662
663 // spatial reference system id
664 QDomElement mySrsElement = document.createElement( QStringLiteral( "srs" ) );
665 mCRS.writeXml( mySrsElement, document );
666 layerElement.appendChild( mySrsElement );
667
668 // layer metadata
669 QDomElement myMetadataElem = document.createElement( QStringLiteral( "resourceMetadata" ) );
670 mMetadata.writeMetadataXml( myMetadataElem, document );
671 layerElement.appendChild( myMetadataElem );
672
673 layerElement.setAttribute( QStringLiteral( "legendPlaceholderImage" ), mLegendPlaceholderImage );
674
675 // now append layer node to map layer node
676 return writeXml( layerElement, document, context );
677}
678
679void QgsMapLayer::writeCommonStyle( QDomElement &layerElement, QDomDocument &document,
680 const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories ) const
681{
682 // save categories
683 const QMetaEnum metaEnum = QMetaEnum::fromType<QgsMapLayer::StyleCategories>();
684 const QString categoriesKeys( metaEnum.valueToKeys( static_cast<int>( categories ) ) );
685 layerElement.setAttribute( QStringLiteral( "styleCategories" ), categoriesKeys );
686
687 if ( categories.testFlag( Rendering ) )
688 {
689 // use scale dependent visibility flag
690 layerElement.setAttribute( QStringLiteral( "hasScaleBasedVisibilityFlag" ), hasScaleBasedVisibility() ? 1 : 0 );
691 layerElement.setAttribute( QStringLiteral( "maxScale" ), QString::number( maximumScale() ) );
692 layerElement.setAttribute( QStringLiteral( "minScale" ), QString::number( minimumScale() ) );
693 }
694
695 if ( categories.testFlag( Symbology3D ) )
696 {
697 if ( m3DRenderer )
698 {
699 QDomElement renderer3DElem = document.createElement( QStringLiteral( "renderer-3d" ) );
700 renderer3DElem.setAttribute( QStringLiteral( "type" ), m3DRenderer->type() );
701 m3DRenderer->writeXml( renderer3DElem, context );
702 layerElement.appendChild( renderer3DElem );
703 }
704 }
705
706 if ( categories.testFlag( LayerConfiguration ) )
707 {
708 // flags
709 // this code is saving automatically all the flags entries
710 QDomElement layerFlagsElem = document.createElement( QStringLiteral( "flags" ) );
711 const auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
712 for ( auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
713 {
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 );
718 }
719 layerElement.appendChild( layerFlagsElem );
720 }
721
722 if ( categories.testFlag( Temporal ) )
723 {
725 properties->writeXml( layerElement, document, context );
726 }
727
728 if ( categories.testFlag( Elevation ) )
729 {
731 properties->writeXml( layerElement, document, context );
732 }
733
734 if ( categories.testFlag( Notes ) && QgsLayerNotesUtils::layerHasNotes( this ) )
735 {
736 QDomElement notesElem = document.createElement( QStringLiteral( "userNotes" ) );
737 notesElem.setAttribute( QStringLiteral( "value" ), QgsLayerNotesUtils::layerNotes( this ) );
738 layerElement.appendChild( notesElem );
739 }
740
741 // custom properties
742 if ( categories.testFlag( CustomProperties ) )
743 {
744 writeCustomProperties( layerElement, document );
745 }
746}
747
748
749bool QgsMapLayer::writeXml( QDomNode &layer_node, QDomDocument &document, const QgsReadWriteContext &context ) const
750{
751 Q_UNUSED( layer_node )
752 Q_UNUSED( document )
753 Q_UNUSED( context )
754 // NOP by default; children will over-ride with behavior specific to them
755
756 return true;
757}
758
759QString QgsMapLayer::encodedSource( const QString &source, const QgsReadWriteContext &context ) const
760{
761 Q_UNUSED( context )
762 return source;
763}
764
765QString QgsMapLayer::decodedSource( const QString &source, const QString &dataProvider, const QgsReadWriteContext &context ) const
766{
767 Q_UNUSED( context )
768 Q_UNUSED( dataProvider )
769 return source;
770}
771
773{
775 if ( m3DRenderer )
776 m3DRenderer->resolveReferences( *project );
777}
778
779
780void QgsMapLayer::readCustomProperties( const QDomNode &layerNode, const QString &keyStartsWith )
781{
782 const QgsObjectCustomProperties oldKeys = mCustomProperties;
783
784 mCustomProperties.readXml( layerNode, keyStartsWith );
785
786 for ( const QString &key : mCustomProperties.keys() )
787 {
788 if ( !oldKeys.contains( key ) || mCustomProperties.value( key ) != oldKeys.value( key ) )
789 {
790 emit customPropertyChanged( key );
791 }
792 }
793}
794
795void QgsMapLayer::writeCustomProperties( QDomNode &layerNode, QDomDocument &doc ) const
796{
797 mCustomProperties.writeXml( layerNode, doc );
798}
799
800void QgsMapLayer::readStyleManager( const QDomNode &layerNode )
801{
802 const QDomElement styleMgrElem = layerNode.firstChildElement( QStringLiteral( "map-layer-style-manager" ) );
803 if ( !styleMgrElem.isNull() )
804 mStyleManager->readXml( styleMgrElem );
805 else
806 mStyleManager->reset();
807}
808
809void QgsMapLayer::writeStyleManager( QDomNode &layerNode, QDomDocument &doc ) const
810{
811 if ( mStyleManager )
812 {
813 QDomElement styleMgrElem = doc.createElement( QStringLiteral( "map-layer-style-manager" ) );
814 mStyleManager->writeXml( styleMgrElem );
815 layerNode.appendChild( styleMgrElem );
816 }
817}
818
820{
821 return mValid;
822}
823
824#if 0
825void QgsMapLayer::connectNotify( const char *signal )
826{
827 Q_UNUSED( signal )
828 QgsDebugMsgLevel( "QgsMapLayer connected to " + QString( signal ), 3 );
829} // QgsMapLayer::connectNotify
830#endif
831
832bool QgsMapLayer::isInScaleRange( double scale ) const
833{
834 return !mScaleBasedVisibility ||
835 ( ( mMinScale == 0 || mMinScale * Qgis::SCALE_PRECISION < scale )
836 && ( mMaxScale == 0 || scale < mMaxScale ) );
837}
838
840{
841 return mScaleBasedVisibility;
842}
843
845{
846 return mRefreshTimer->isActive();
847}
848
850{
851 return mRefreshTimer->interval();
852}
853
855{
856 if ( interval <= 0 )
857 {
858 mRefreshTimer->stop();
859 mRefreshTimer->setInterval( 0 );
860 }
861 else
862 {
863 mRefreshTimer->setInterval( interval );
864 }
865 emit autoRefreshIntervalChanged( mRefreshTimer->isActive() ? mRefreshTimer->interval() : 0 );
866}
867
869{
870 if ( !enabled )
871 mRefreshTimer->stop();
872 else if ( mRefreshTimer->interval() > 0 )
873 mRefreshTimer->start();
874
875 emit autoRefreshIntervalChanged( mRefreshTimer->isActive() ? mRefreshTimer->interval() : 0 );
876}
877
879{
880 return mMetadata;
881}
882
884{
885 mMinScale = scale;
886}
887
889{
890 return mMinScale;
891}
892
893
895{
896 mMaxScale = scale;
897}
898
899void QgsMapLayer::setScaleBasedVisibility( const bool enabled )
900{
901 mScaleBasedVisibility = enabled;
902}
903
905{
906 return mMaxScale;
907}
908
909QStringList QgsMapLayer::subLayers() const
910{
911 return QStringList(); // Empty
912}
913
914void QgsMapLayer::setLayerOrder( const QStringList &layers )
915{
916 Q_UNUSED( layers )
917 // NOOP
918}
919
920void QgsMapLayer::setSubLayerVisibility( const QString &name, bool vis )
921{
922 Q_UNUSED( name )
923 Q_UNUSED( vis )
924 // NOOP
925}
926
928{
929 return false;
930}
931
933{
934 return mCRS;
935}
936
937void QgsMapLayer::setCrs( const QgsCoordinateReferenceSystem &srs, bool emitSignal )
938{
939 mCRS = srs;
940
942 {
943 mCRS.setValidationHint( tr( "Specify CRS for layer %1" ).arg( name() ) );
944 mCRS.validate();
945 }
946
947 if ( emitSignal )
948 emit crsChanged();
949}
950
952{
953 const QgsDataProvider *lDataProvider = dataProvider();
954 return lDataProvider ? lDataProvider->transformContext() : QgsCoordinateTransformContext();
955}
956
957QString QgsMapLayer::formatLayerName( const QString &name )
958{
959 QString layerName( name );
960 layerName.replace( '_', ' ' );
962 return layerName;
963}
964
965QString QgsMapLayer::baseURI( PropertyType type ) const
966{
967 QString myURI = publicSource();
968
969 // first get base path for delimited text, spatialite and OGR layers,
970 // as in these cases URI may contain layer name and/or additional
971 // information. This also strips prefix in case if VSIFILE mechanism
972 // is used
973 if ( providerType() == QLatin1String( "ogr" ) || providerType() == QLatin1String( "delimitedtext" )
974 || providerType() == QLatin1String( "gdal" ) || providerType() == QLatin1String( "spatialite" ) )
975 {
976 QVariantMap components = QgsProviderRegistry::instance()->decodeUri( providerType(), myURI );
977 myURI = components["path"].toString();
978 }
979
980 QFileInfo myFileInfo( myURI );
981 QString key;
982
983 if ( myFileInfo.exists() )
984 {
985 // if file is using the /vsizip/ or /vsigzip/ mechanism, cleanup the name
986 if ( myURI.endsWith( QLatin1String( ".gz" ), Qt::CaseInsensitive ) )
987 myURI.chop( 3 );
988 else if ( myURI.endsWith( QLatin1String( ".zip" ), Qt::CaseInsensitive ) )
989 myURI.chop( 4 );
990 else if ( myURI.endsWith( QLatin1String( ".tar" ), Qt::CaseInsensitive ) )
991 myURI.chop( 4 );
992 else if ( myURI.endsWith( QLatin1String( ".tar.gz" ), Qt::CaseInsensitive ) )
993 myURI.chop( 7 );
994 else if ( myURI.endsWith( QLatin1String( ".tgz" ), Qt::CaseInsensitive ) )
995 myURI.chop( 4 );
996 myFileInfo.setFile( myURI );
997 // get the file name for our .qml style file
998 key = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() + QgsMapLayer::extensionPropertyType( type );
999 }
1000 else
1001 {
1002 key = publicSource();
1003 }
1004
1005 return key;
1006}
1007
1009{
1010 return baseURI( PropertyType::Metadata );
1011}
1012
1013QString QgsMapLayer::saveDefaultMetadata( bool &resultFlag )
1014{
1015 if ( const QgsProviderMetadata *metadata = QgsProviderRegistry::instance()->providerMetadata( providerType() ) )
1016 {
1017 if ( metadata->providerCapabilities() & QgsProviderMetadata::SaveLayerMetadata )
1018 {
1019 try
1020 {
1021 QString errorMessage;
1022 resultFlag = QgsProviderRegistry::instance()->saveLayerMetadata( providerType(), mDataSource, mMetadata, errorMessage );
1023 if ( resultFlag )
1024 return tr( "Successfully saved default layer metadata" );
1025 else
1026 return errorMessage;
1027 }
1028 catch ( QgsNotSupportedException &e )
1029 {
1030 resultFlag = false;
1031 return e.what();
1032 }
1033 }
1034 }
1035
1036 // fallback default metadata saving method, for providers which don't support (or implement) saveLayerMetadata
1037 return saveNamedMetadata( metadataUri(), resultFlag );
1038}
1039
1040QString QgsMapLayer::loadDefaultMetadata( bool &resultFlag )
1041{
1042 return loadNamedMetadata( metadataUri(), resultFlag );
1043}
1044
1046{
1047 return baseURI( PropertyType::Style );
1048}
1049
1050QString QgsMapLayer::loadDefaultStyle( bool &resultFlag )
1051{
1052 return loadNamedStyle( styleURI(), resultFlag );
1053}
1054
1055bool QgsMapLayer::loadNamedMetadataFromDatabase( const QString &db, const QString &uri, QString &qmd )
1056{
1057 return loadNamedPropertyFromDatabase( db, uri, qmd, PropertyType::Metadata );
1058}
1059
1060bool QgsMapLayer::loadNamedStyleFromDatabase( const QString &db, const QString &uri, QString &qml )
1061{
1062 return loadNamedPropertyFromDatabase( db, uri, qml, PropertyType::Style );
1063}
1064
1065bool QgsMapLayer::loadNamedPropertyFromDatabase( const QString &db, const QString &uri, QString &xml, QgsMapLayer::PropertyType type )
1066{
1067 QgsDebugMsgLevel( QStringLiteral( "db = %1 uri = %2" ).arg( db, uri ), 4 );
1068
1069 bool resultFlag = false;
1070
1071 // read from database
1074
1075 int myResult;
1076
1077 QgsDebugMsgLevel( QStringLiteral( "Trying to load style or metadata for \"%1\" from \"%2\"" ).arg( uri, db ), 4 );
1078
1079 if ( db.isEmpty() || !QFile( db ).exists() )
1080 return false;
1081
1082 myResult = database.open_v2( db, SQLITE_OPEN_READONLY, nullptr );
1083 if ( myResult != SQLITE_OK )
1084 {
1085 return false;
1086 }
1087
1088 QString mySql;
1089 switch ( type )
1090 {
1091 case Metadata:
1092 mySql = QStringLiteral( "select qmd from tbl_metadata where metadata=?" );
1093 break;
1094
1095 case Style:
1096 mySql = QStringLiteral( "select qml from tbl_styles where style=?" );
1097 break;
1098 }
1099
1100 statement = database.prepare( mySql, myResult );
1101 if ( myResult == SQLITE_OK )
1102 {
1103 QByteArray param = uri.toUtf8();
1104
1105 if ( sqlite3_bind_text( statement.get(), 1, param.data(), param.length(), SQLITE_STATIC ) == SQLITE_OK &&
1106 sqlite3_step( statement.get() ) == SQLITE_ROW )
1107 {
1108 xml = QString::fromUtf8( reinterpret_cast< const char * >( sqlite3_column_text( statement.get(), 0 ) ) );
1109 resultFlag = true;
1110 }
1111 }
1112 return resultFlag;
1113}
1114
1115
1116QString QgsMapLayer::loadNamedStyle( const QString &uri, bool &resultFlag, QgsMapLayer::StyleCategories categories )
1117{
1118 return loadNamedProperty( uri, PropertyType::Style, resultFlag, categories );
1119}
1120
1121QString QgsMapLayer::loadNamedProperty( const QString &uri, QgsMapLayer::PropertyType type, bool &resultFlag, StyleCategories categories )
1122{
1123 QgsDebugMsgLevel( QStringLiteral( "uri = %1 myURI = %2" ).arg( uri, publicSource() ), 4 );
1124
1125 resultFlag = false;
1126 if ( uri.isEmpty() )
1127 return QString();
1128
1129 QDomDocument myDocument( QStringLiteral( "qgis" ) );
1130
1131 // location of problem associated with errorMsg
1132 int line, column;
1133 QString myErrorMessage;
1134
1135 QFile myFile( uri );
1136 if ( myFile.open( QFile::ReadOnly ) )
1137 {
1138 QgsDebugMsgLevel( QStringLiteral( "file found %1" ).arg( uri ), 2 );
1139 // read file
1140 resultFlag = myDocument.setContent( &myFile, &myErrorMessage, &line, &column );
1141 if ( !resultFlag )
1142 myErrorMessage = tr( "%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1143 myFile.close();
1144 }
1145 else
1146 {
1147 const QFileInfo project( QgsProject::instance()->fileName() );
1148 QgsDebugMsgLevel( QStringLiteral( "project fileName: %1" ).arg( project.absoluteFilePath() ), 4 );
1149
1150 QString xml;
1151 switch ( type )
1152 {
1153 case QgsMapLayer::Style:
1154 {
1155 if ( loadNamedStyleFromDatabase( QDir( QgsApplication::qgisSettingsDirPath() ).absoluteFilePath( QStringLiteral( "qgis.qmldb" ) ), uri, xml ) ||
1156 ( project.exists() && loadNamedStyleFromDatabase( project.absoluteDir().absoluteFilePath( project.baseName() + ".qmldb" ), uri, xml ) ) ||
1157 loadNamedStyleFromDatabase( QDir( QgsApplication::pkgDataPath() ).absoluteFilePath( QStringLiteral( "resources/qgis.qmldb" ) ), uri, xml ) )
1158 {
1159 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
1160 if ( !resultFlag )
1161 {
1162 myErrorMessage = tr( "%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1163 }
1164 }
1165 else
1166 {
1167 myErrorMessage = tr( "Style not found in database" );
1168 resultFlag = false;
1169 }
1170 break;
1171 }
1173 {
1174 if ( loadNamedMetadataFromDatabase( QDir( QgsApplication::qgisSettingsDirPath() ).absoluteFilePath( QStringLiteral( "qgis.qmldb" ) ), uri, xml ) ||
1175 ( project.exists() && loadNamedMetadataFromDatabase( project.absoluteDir().absoluteFilePath( project.baseName() + ".qmldb" ), uri, xml ) ) ||
1176 loadNamedMetadataFromDatabase( QDir( QgsApplication::pkgDataPath() ).absoluteFilePath( QStringLiteral( "resources/qgis.qmldb" ) ), uri, xml ) )
1177 {
1178 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
1179 if ( !resultFlag )
1180 {
1181 myErrorMessage = tr( "%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1182 }
1183 }
1184 else
1185 {
1186 myErrorMessage = tr( "Metadata not found in database" );
1187 resultFlag = false;
1188 }
1189 break;
1190 }
1191 }
1192 }
1193
1194 if ( !resultFlag )
1195 {
1196 return myErrorMessage;
1197 }
1198
1199 switch ( type )
1200 {
1201 case QgsMapLayer::Style:
1202 resultFlag = importNamedStyle( myDocument, myErrorMessage, categories );
1203 if ( !resultFlag )
1204 myErrorMessage = tr( "Loading style file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1205 break;
1207 resultFlag = importNamedMetadata( myDocument, myErrorMessage );
1208 if ( !resultFlag )
1209 myErrorMessage = tr( "Loading metadata file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1210 break;
1211 }
1212 return myErrorMessage;
1213}
1214
1215bool QgsMapLayer::importNamedMetadata( QDomDocument &document, QString &errorMessage )
1216{
1217 const QDomElement myRoot = document.firstChildElement( QStringLiteral( "qgis" ) );
1218 if ( myRoot.isNull() )
1219 {
1220 errorMessage = tr( "Root <qgis> element could not be found" );
1221 return false;
1222 }
1223
1224 return mMetadata.readMetadataXml( myRoot );
1225}
1226
1227bool QgsMapLayer::importNamedStyle( QDomDocument &myDocument, QString &myErrorMessage, QgsMapLayer::StyleCategories categories )
1228{
1229 const QDomElement myRoot = myDocument.firstChildElement( QStringLiteral( "qgis" ) );
1230 if ( myRoot.isNull() )
1231 {
1232 myErrorMessage = tr( "Root <qgis> element could not be found" );
1233 return false;
1234 }
1235
1236 // get style file version string, if any
1237 const QgsProjectVersion fileVersion( myRoot.attribute( QStringLiteral( "version" ) ) );
1238 const QgsProjectVersion thisVersion( Qgis::version() );
1239
1240 if ( thisVersion > fileVersion )
1241 {
1242 QgsProjectFileTransform styleFile( myDocument, fileVersion );
1243 styleFile.updateRevision( thisVersion );
1244 }
1245
1246 // Get source categories
1247 const QgsMapLayer::StyleCategories sourceCategories = QgsXmlUtils::readFlagAttribute( myRoot, QStringLiteral( "styleCategories" ), QgsMapLayer::AllStyleCategories );
1248
1249 //Test for matching geometry type on vector layers when applying, if geometry type is given in the style
1250 if ( ( sourceCategories.testFlag( QgsMapLayer::Symbology ) || sourceCategories.testFlag( QgsMapLayer::Symbology3D ) ) &&
1251 ( categories.testFlag( QgsMapLayer::Symbology ) || categories.testFlag( QgsMapLayer::Symbology3D ) ) )
1252 {
1253 if ( type() == QgsMapLayerType::VectorLayer && !myRoot.firstChildElement( QStringLiteral( "layerGeometryType" ) ).isNull() )
1254 {
1255 QgsVectorLayer *vl = qobject_cast<QgsVectorLayer *>( this );
1256 const QgsWkbTypes::GeometryType importLayerGeometryType = static_cast<QgsWkbTypes::GeometryType>( myRoot.firstChildElement( QStringLiteral( "layerGeometryType" ) ).text().toInt() );
1257 if ( importLayerGeometryType != QgsWkbTypes::GeometryType::UnknownGeometry && vl->geometryType() != importLayerGeometryType )
1258 {
1259 myErrorMessage = tr( "Cannot apply style with symbology to layer with a different geometry type" );
1260 return false;
1261 }
1262 }
1263 }
1264
1266 return readSymbology( myRoot, myErrorMessage, context, categories ); // TODO: support relative paths in QML?
1267}
1268
1269void QgsMapLayer::exportNamedMetadata( QDomDocument &doc, QString &errorMsg ) const
1270{
1271 QDomImplementation DomImplementation;
1272 const QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral( "qgis" ), QStringLiteral( "http://mrcc.com/qgis.dtd" ), QStringLiteral( "SYSTEM" ) );
1273 QDomDocument myDocument( documentType );
1274
1275 QDomElement myRootNode = myDocument.createElement( QStringLiteral( "qgis" ) );
1276 myRootNode.setAttribute( QStringLiteral( "version" ), Qgis::version() );
1277 myDocument.appendChild( myRootNode );
1278
1279 if ( !mMetadata.writeMetadataXml( myRootNode, myDocument ) )
1280 {
1281 errorMsg = QObject::tr( "Could not save metadata" );
1282 return;
1283 }
1284
1285 doc = myDocument;
1286}
1287
1288void QgsMapLayer::exportNamedStyle( QDomDocument &doc, QString &errorMsg, const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories ) const
1289{
1290 QDomImplementation DomImplementation;
1291 const QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral( "qgis" ), QStringLiteral( "http://mrcc.com/qgis.dtd" ), QStringLiteral( "SYSTEM" ) );
1292 QDomDocument myDocument( documentType );
1293
1294 QDomElement myRootNode = myDocument.createElement( QStringLiteral( "qgis" ) );
1295 myRootNode.setAttribute( QStringLiteral( "version" ), Qgis::version() );
1296 myDocument.appendChild( myRootNode );
1297
1298 if ( !writeSymbology( myRootNode, myDocument, errorMsg, context, categories ) ) // TODO: support relative paths in QML?
1299 {
1300 errorMsg = QObject::tr( "Could not save symbology because:\n%1" ).arg( errorMsg );
1301 return;
1302 }
1303
1304 /*
1305 * Check to see if the layer is vector - in which case we should also export its geometryType
1306 * to avoid eventually pasting to a layer with a different geometry
1307 */
1309 {
1310 //Getting the selectionLayer geometry
1311 const QgsVectorLayer *vl = qobject_cast<const QgsVectorLayer *>( this );
1312 const QString geoType = QString::number( vl->geometryType() );
1313
1314 //Adding geometryinformation
1315 QDomElement layerGeometryType = myDocument.createElement( QStringLiteral( "layerGeometryType" ) );
1316 const QDomText type = myDocument.createTextNode( geoType );
1317
1318 layerGeometryType.appendChild( type );
1319 myRootNode.appendChild( layerGeometryType );
1320 }
1321
1322 doc = myDocument;
1323}
1324
1325QString QgsMapLayer::saveDefaultStyle( bool &resultFlag )
1326{
1327 return saveDefaultStyle( resultFlag, AllStyleCategories );
1328}
1329
1330QString QgsMapLayer::saveDefaultStyle( bool &resultFlag, StyleCategories categories )
1331{
1332 return saveNamedStyle( styleURI(), resultFlag, categories );
1333}
1334
1335QString QgsMapLayer::saveNamedMetadata( const QString &uri, bool &resultFlag )
1336{
1337 return saveNamedProperty( uri, QgsMapLayer::Metadata, resultFlag );
1338}
1339
1340QString QgsMapLayer::loadNamedMetadata( const QString &uri, bool &resultFlag )
1341{
1342 return loadNamedProperty( uri, QgsMapLayer::Metadata, resultFlag );
1343}
1344
1345QString QgsMapLayer::saveNamedProperty( const QString &uri, QgsMapLayer::PropertyType type, bool &resultFlag, StyleCategories categories )
1346{
1347 // check if the uri is a file or ends with .qml/.qmd,
1348 // which indicates that it should become one
1349 // everything else goes to the database
1350 QString filename;
1351
1352 QgsVectorLayer *vlayer = qobject_cast<QgsVectorLayer *>( this );
1353 if ( vlayer && vlayer->providerType() == QLatin1String( "ogr" ) )
1354 {
1355 QStringList theURIParts = uri.split( '|' );
1356 filename = theURIParts[0];
1357 }
1358 else if ( vlayer && vlayer->providerType() == QLatin1String( "gpx" ) )
1359 {
1360 QStringList theURIParts = uri.split( '?' );
1361 filename = theURIParts[0];
1362 }
1363 else if ( vlayer && vlayer->providerType() == QLatin1String( "delimitedtext" ) )
1364 {
1365 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1366 // toLocalFile() returns an empty string if theURI is a plain Windows-path, e.g. "C:/style.qml"
1367 if ( filename.isEmpty() )
1368 filename = uri;
1369 }
1370 else
1371 {
1372 filename = uri;
1373 }
1374
1375 QString myErrorMessage;
1376 QDomDocument myDocument;
1377 switch ( type )
1378 {
1379 case Metadata:
1380 exportNamedMetadata( myDocument, myErrorMessage );
1381 break;
1382
1383 case Style:
1384 const QgsReadWriteContext context;
1385 exportNamedStyle( myDocument, myErrorMessage, context, categories );
1386 break;
1387 }
1388
1389 const QFileInfo myFileInfo( filename );
1390 if ( myFileInfo.exists() || filename.endsWith( QgsMapLayer::extensionPropertyType( type ), Qt::CaseInsensitive ) )
1391 {
1392 const QFileInfo myDirInfo( myFileInfo.path() ); //excludes file name
1393 if ( !myDirInfo.isWritable() )
1394 {
1395 resultFlag = false;
1396 return tr( "The directory containing your dataset needs to be writable!" );
1397 }
1398
1399 // now construct the file name for our .qml or .qmd file
1400 const QString myFileName = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() + QgsMapLayer::extensionPropertyType( type );
1401
1402 QFile myFile( myFileName );
1403 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1404 {
1405 QTextStream myFileStream( &myFile );
1406 // save as utf-8 with 2 spaces for indents
1407 myDocument.save( myFileStream, 2 );
1408 myFile.close();
1409 resultFlag = true;
1410 switch ( type )
1411 {
1412 case Metadata:
1413 return tr( "Created default metadata file as %1" ).arg( myFileName );
1414
1415 case Style:
1416 return tr( "Created default style file as %1" ).arg( myFileName );
1417 }
1418
1419 }
1420 else
1421 {
1422 resultFlag = false;
1423 switch ( type )
1424 {
1425 case Metadata:
1426 return tr( "ERROR: Failed to created default metadata file as %1. Check file permissions and retry." ).arg( myFileName );
1427
1428 case Style:
1429 return tr( "ERROR: Failed to created default style file as %1. Check file permissions and retry." ).arg( myFileName );
1430 }
1431 }
1432 }
1433 else
1434 {
1435 const QString qml = myDocument.toString();
1436
1437 // read from database
1440
1441 int myResult = database.open( QDir( QgsApplication::qgisSettingsDirPath() ).absoluteFilePath( QStringLiteral( "qgis.qmldb" ) ) );
1442 if ( myResult != SQLITE_OK )
1443 {
1444 return tr( "User database could not be opened." );
1445 }
1446
1447 QByteArray param0 = uri.toUtf8();
1448 QByteArray param1 = qml.toUtf8();
1449
1450 QString mySql;
1451 switch ( type )
1452 {
1453 case Metadata:
1454 mySql = QStringLiteral( "create table if not exists tbl_metadata(metadata varchar primary key,qmd varchar)" );
1455 break;
1456
1457 case Style:
1458 mySql = QStringLiteral( "create table if not exists tbl_styles(style varchar primary key,qml varchar)" );
1459 break;
1460 }
1461
1462 statement = database.prepare( mySql, myResult );
1463 if ( myResult == SQLITE_OK )
1464 {
1465 if ( sqlite3_step( statement.get() ) != SQLITE_DONE )
1466 {
1467 resultFlag = false;
1468 switch ( type )
1469 {
1470 case Metadata:
1471 return tr( "The metadata table could not be created." );
1472
1473 case Style:
1474 return tr( "The style table could not be created." );
1475 }
1476 }
1477 }
1478
1479 switch ( type )
1480 {
1481 case Metadata:
1482 mySql = QStringLiteral( "insert into tbl_metadata(metadata,qmd) values (?,?)" );
1483 break;
1484
1485 case Style:
1486 mySql = QStringLiteral( "insert into tbl_styles(style,qml) values (?,?)" );
1487 break;
1488 }
1489 statement = database.prepare( mySql, myResult );
1490 if ( myResult == SQLITE_OK )
1491 {
1492 if ( sqlite3_bind_text( statement.get(), 1, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1493 sqlite3_bind_text( statement.get(), 2, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1494 sqlite3_step( statement.get() ) == SQLITE_DONE )
1495 {
1496 resultFlag = true;
1497 switch ( type )
1498 {
1499 case Metadata:
1500 myErrorMessage = tr( "The metadata %1 was saved to database" ).arg( uri );
1501 break;
1502
1503 case Style:
1504 myErrorMessage = tr( "The style %1 was saved to database" ).arg( uri );
1505 break;
1506 }
1507 }
1508 }
1509
1510 if ( !resultFlag )
1511 {
1512 QString mySql;
1513 switch ( type )
1514 {
1515 case Metadata:
1516 mySql = QStringLiteral( "update tbl_metadata set qmd=? where metadata=?" );
1517 break;
1518
1519 case Style:
1520 mySql = QStringLiteral( "update tbl_styles set qml=? where style=?" );
1521 break;
1522 }
1523 statement = database.prepare( mySql, myResult );
1524 if ( myResult == SQLITE_OK )
1525 {
1526 if ( sqlite3_bind_text( statement.get(), 2, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1527 sqlite3_bind_text( statement.get(), 1, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1528 sqlite3_step( statement.get() ) == SQLITE_DONE )
1529 {
1530 resultFlag = true;
1531 switch ( type )
1532 {
1533 case Metadata:
1534 myErrorMessage = tr( "The metadata %1 was updated in the database." ).arg( uri );
1535 break;
1536
1537 case Style:
1538 myErrorMessage = tr( "The style %1 was updated in the database." ).arg( uri );
1539 break;
1540 }
1541 }
1542 else
1543 {
1544 resultFlag = false;
1545 switch ( type )
1546 {
1547 case Metadata:
1548 myErrorMessage = tr( "The metadata %1 could not be updated in the database." ).arg( uri );
1549 break;
1550
1551 case Style:
1552 myErrorMessage = tr( "The style %1 could not be updated in the database." ).arg( uri );
1553 break;
1554 }
1555 }
1556 }
1557 else
1558 {
1559 resultFlag = false;
1560 switch ( type )
1561 {
1562 case Metadata:
1563 myErrorMessage = tr( "The metadata %1 could not be inserted into database." ).arg( uri );
1564 break;
1565
1566 case Style:
1567 myErrorMessage = tr( "The style %1 could not be inserted into database." ).arg( uri );
1568 break;
1569 }
1570 }
1571 }
1572 }
1573
1574 return myErrorMessage;
1575}
1576
1577QString QgsMapLayer::saveNamedStyle( const QString &uri, bool &resultFlag, StyleCategories categories )
1578{
1579 return saveNamedProperty( uri, QgsMapLayer::Style, resultFlag, categories );
1580}
1581
1582void QgsMapLayer::exportSldStyle( QDomDocument &doc, QString &errorMsg ) const
1583{
1584 QDomDocument myDocument = QDomDocument();
1585
1586 const QDomNode header = myDocument.createProcessingInstruction( QStringLiteral( "xml" ), QStringLiteral( "version=\"1.0\" encoding=\"UTF-8\"" ) );
1587 myDocument.appendChild( header );
1588
1589 const QgsVectorLayer *vlayer = qobject_cast<const QgsVectorLayer *>( this );
1590 const QgsRasterLayer *rlayer = qobject_cast<const QgsRasterLayer *>( this );
1591 if ( !vlayer && !rlayer )
1592 {
1593 errorMsg = tr( "Could not save symbology because:\n%1" )
1594 .arg( tr( "Only vector and raster layers are supported" ) );
1595 return;
1596 }
1597
1598 // Create the root element
1599 QDomElement root = myDocument.createElementNS( QStringLiteral( "http://www.opengis.net/sld" ), QStringLiteral( "StyledLayerDescriptor" ) );
1600 QDomElement layerNode;
1601 if ( vlayer )
1602 {
1603 root.setAttribute( QStringLiteral( "version" ), QStringLiteral( "1.1.0" ) );
1604 root.setAttribute( QStringLiteral( "xsi:schemaLocation" ), QStringLiteral( "http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/StyledLayerDescriptor.xsd" ) );
1605 root.setAttribute( QStringLiteral( "xmlns:ogc" ), QStringLiteral( "http://www.opengis.net/ogc" ) );
1606 root.setAttribute( QStringLiteral( "xmlns:se" ), QStringLiteral( "http://www.opengis.net/se" ) );
1607 root.setAttribute( QStringLiteral( "xmlns:xlink" ), QStringLiteral( "http://www.w3.org/1999/xlink" ) );
1608 root.setAttribute( QStringLiteral( "xmlns:xsi" ), QStringLiteral( "http://www.w3.org/2001/XMLSchema-instance" ) );
1609 myDocument.appendChild( root );
1610
1611 // Create the NamedLayer element
1612 layerNode = myDocument.createElement( QStringLiteral( "NamedLayer" ) );
1613 root.appendChild( layerNode );
1614 }
1615
1616 // note: Only SLD 1.0 version is generated because seems none is using SE1.1.0 at least for rasters
1617 if ( rlayer )
1618 {
1619 // Create the root element
1620 root.setAttribute( QStringLiteral( "version" ), QStringLiteral( "1.0.0" ) );
1621 root.setAttribute( QStringLiteral( "xmlns:gml" ), QStringLiteral( "http://www.opengis.net/gml" ) );
1622 root.setAttribute( QStringLiteral( "xmlns:ogc" ), QStringLiteral( "http://www.opengis.net/ogc" ) );
1623 root.setAttribute( QStringLiteral( "xmlns:sld" ), QStringLiteral( "http://www.opengis.net/sld" ) );
1624 myDocument.appendChild( root );
1625
1626 // Create the NamedLayer element
1627 layerNode = myDocument.createElement( QStringLiteral( "UserLayer" ) );
1628 root.appendChild( layerNode );
1629 }
1630
1631 QVariantMap props;
1633 {
1634 props[ QStringLiteral( "scaleMinDenom" ) ] = QString::number( mMinScale );
1635 props[ QStringLiteral( "scaleMaxDenom" ) ] = QString::number( mMaxScale );
1636 }
1637
1638 if ( vlayer )
1639 {
1640 if ( !vlayer->writeSld( layerNode, myDocument, errorMsg, props ) )
1641 {
1642 errorMsg = tr( "Could not save symbology because:\n%1" ).arg( errorMsg );
1643 return;
1644 }
1645 }
1646
1647 if ( rlayer )
1648 {
1649 if ( !rlayer->writeSld( layerNode, myDocument, errorMsg, props ) )
1650 {
1651 errorMsg = tr( "Could not save symbology because:\n%1" ).arg( errorMsg );
1652 return;
1653 }
1654 }
1655
1656 doc = myDocument;
1657}
1658
1659QString QgsMapLayer::saveSldStyle( const QString &uri, bool &resultFlag ) const
1660{
1661 const QgsMapLayer *mlayer = qobject_cast<const QgsMapLayer *>( this );
1662
1663 QString errorMsg;
1664 QDomDocument myDocument;
1665 mlayer->exportSldStyle( myDocument, errorMsg );
1666 if ( !errorMsg.isNull() )
1667 {
1668 resultFlag = false;
1669 return errorMsg;
1670 }
1671 // check if the uri is a file or ends with .sld,
1672 // which indicates that it should become one
1673 QString filename;
1674 if ( mlayer->providerType() == QLatin1String( "ogr" ) )
1675 {
1676 QStringList theURIParts = uri.split( '|' );
1677 filename = theURIParts[0];
1678 }
1679 else if ( mlayer->providerType() == QLatin1String( "gpx" ) )
1680 {
1681 QStringList theURIParts = uri.split( '?' );
1682 filename = theURIParts[0];
1683 }
1684 else if ( mlayer->providerType() == QLatin1String( "delimitedtext" ) )
1685 {
1686 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1687 // toLocalFile() returns an empty string if theURI is a plain Windows-path, e.g. "C:/style.qml"
1688 if ( filename.isEmpty() )
1689 filename = uri;
1690 }
1691 else
1692 {
1693 filename = uri;
1694 }
1695
1696 const QFileInfo myFileInfo( filename );
1697 if ( myFileInfo.exists() || filename.endsWith( QLatin1String( ".sld" ), Qt::CaseInsensitive ) )
1698 {
1699 const QFileInfo myDirInfo( myFileInfo.path() ); //excludes file name
1700 if ( !myDirInfo.isWritable() )
1701 {
1702 resultFlag = false;
1703 return tr( "The directory containing your dataset needs to be writable!" );
1704 }
1705
1706 // now construct the file name for our .sld style file
1707 const QString myFileName = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() + ".sld";
1708
1709 QFile myFile( myFileName );
1710 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1711 {
1712 QTextStream myFileStream( &myFile );
1713 // save as utf-8 with 2 spaces for indents
1714 myDocument.save( myFileStream, 2 );
1715 myFile.close();
1716 resultFlag = true;
1717 return tr( "Created default style file as %1" ).arg( myFileName );
1718 }
1719 }
1720
1721 resultFlag = false;
1722 return tr( "ERROR: Failed to created SLD style file as %1. Check file permissions and retry." ).arg( filename );
1723}
1724
1725QString QgsMapLayer::loadSldStyle( const QString &uri, bool &resultFlag )
1726{
1727 resultFlag = false;
1728
1729 QDomDocument myDocument;
1730
1731 // location of problem associated with errorMsg
1732 int line, column;
1733 QString myErrorMessage;
1734
1735 QFile myFile( uri );
1736 if ( myFile.open( QFile::ReadOnly ) )
1737 {
1738 // read file
1739 resultFlag = myDocument.setContent( &myFile, true, &myErrorMessage, &line, &column );
1740 if ( !resultFlag )
1741 myErrorMessage = tr( "%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1742 myFile.close();
1743 }
1744 else
1745 {
1746 myErrorMessage = tr( "Unable to open file %1" ).arg( uri );
1747 }
1748
1749 if ( !resultFlag )
1750 {
1751 return myErrorMessage;
1752 }
1753
1754 // check for root SLD element
1755 const QDomElement myRoot = myDocument.firstChildElement( QStringLiteral( "StyledLayerDescriptor" ) );
1756 if ( myRoot.isNull() )
1757 {
1758 myErrorMessage = QStringLiteral( "Error: StyledLayerDescriptor element not found in %1" ).arg( uri );
1759 resultFlag = false;
1760 return myErrorMessage;
1761 }
1762
1763 // now get the style node out and pass it over to the layer
1764 // to deserialise...
1765 const QDomElement namedLayerElem = myRoot.firstChildElement( QStringLiteral( "NamedLayer" ) );
1766 if ( namedLayerElem.isNull() )
1767 {
1768 myErrorMessage = QStringLiteral( "Info: NamedLayer element not found." );
1769 resultFlag = false;
1770 return myErrorMessage;
1771 }
1772
1773 QString errorMsg;
1774 resultFlag = readSld( namedLayerElem, errorMsg );
1775 if ( !resultFlag )
1776 {
1777 myErrorMessage = tr( "Loading style file %1 failed because:\n%2" ).arg( uri, errorMsg );
1778 return myErrorMessage;
1779 }
1780
1781 return QString();
1782}
1783
1784bool QgsMapLayer::readStyle( const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories )
1785{
1786 Q_UNUSED( node )
1787 Q_UNUSED( errorMessage )
1788 Q_UNUSED( context )
1789 Q_UNUSED( categories )
1790 return false;
1791}
1792
1793bool QgsMapLayer::writeStyle( QDomNode &node, QDomDocument &doc, QString &errorMessage,
1794 const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories ) const
1795{
1796 Q_UNUSED( node )
1797 Q_UNUSED( doc )
1798 Q_UNUSED( errorMessage )
1799 Q_UNUSED( context )
1800 Q_UNUSED( categories )
1801 return false;
1802}
1803
1804
1805void QgsMapLayer::setDataSource( const QString &dataSource, const QString &baseName, const QString &provider,
1806 bool loadDefaultStyleFlag )
1807{
1809
1810 QgsDataProvider::ReadFlags flags = QgsDataProvider::ReadFlags();
1811 if ( loadDefaultStyleFlag )
1812 {
1814 }
1815
1817 {
1819 }
1820 setDataSource( dataSource, baseName, provider, options, flags );
1821}
1822
1823void QgsMapLayer::setDataSource( const QString &dataSource, const QString &baseName, const QString &provider,
1824 const QgsDataProvider::ProviderOptions &options, bool loadDefaultStyleFlag )
1825{
1826 QgsDataProvider::ReadFlags flags = QgsDataProvider::ReadFlags();
1827 if ( loadDefaultStyleFlag )
1828 {
1830 }
1831
1833 {
1835 }
1836 setDataSource( dataSource, baseName, provider, options, flags );
1837}
1838
1839void QgsMapLayer::setDataSource( const QString &dataSource, const QString &baseName, const QString &provider,
1840 const QgsDataProvider::ProviderOptions &options, QgsDataProvider::ReadFlags flags )
1841{
1842
1845 {
1847 }
1848 setDataSourcePrivate( dataSource, baseName, provider, options, flags );
1849 emit dataSourceChanged();
1850 emit dataChanged();
1852}
1853
1854
1855void QgsMapLayer::setDataSourcePrivate( const QString &dataSource, const QString &baseName, const QString &provider,
1856 const QgsDataProvider::ProviderOptions &options, QgsDataProvider::ReadFlags flags )
1857{
1858 Q_UNUSED( dataSource )
1859 Q_UNUSED( baseName )
1860 Q_UNUSED( provider )
1861 Q_UNUSED( options )
1862 Q_UNUSED( flags )
1863}
1864
1865
1867{
1868 return mProviderKey;
1869}
1870
1871void QgsMapLayer::readCommonStyle( const QDomElement &layerElement, const QgsReadWriteContext &context,
1872 QgsMapLayer::StyleCategories categories )
1873{
1874 if ( categories.testFlag( Symbology3D ) )
1875 {
1876 const QgsReadWriteContextCategoryPopper p = context.enterCategory( tr( "3D Symbology" ) );
1877
1878 QgsAbstract3DRenderer *r3D = nullptr;
1879 QDomElement renderer3DElem = layerElement.firstChildElement( QStringLiteral( "renderer-3d" ) );
1880 if ( !renderer3DElem.isNull() )
1881 {
1882 const QString type3D = renderer3DElem.attribute( QStringLiteral( "type" ) );
1884 if ( meta3D )
1885 {
1886 r3D = meta3D->createRenderer( renderer3DElem, context );
1887 }
1888 }
1889 setRenderer3D( r3D );
1890 }
1891
1892 if ( categories.testFlag( CustomProperties ) )
1893 {
1894 // read custom properties before passing reading further to a subclass, so that
1895 // the subclass can also read custom properties
1896 readCustomProperties( layerElement );
1897 }
1898
1899 // use scale dependent visibility flag
1900 if ( categories.testFlag( Rendering ) )
1901 {
1902 setScaleBasedVisibility( layerElement.attribute( QStringLiteral( "hasScaleBasedVisibilityFlag" ) ).toInt() == 1 );
1903 if ( layerElement.hasAttribute( QStringLiteral( "minimumScale" ) ) )
1904 {
1905 // older element, when scales were reversed
1906 setMaximumScale( layerElement.attribute( QStringLiteral( "minimumScale" ) ).toDouble() );
1907 setMinimumScale( layerElement.attribute( QStringLiteral( "maximumScale" ) ).toDouble() );
1908 }
1909 else
1910 {
1911 setMaximumScale( layerElement.attribute( QStringLiteral( "maxScale" ) ).toDouble() );
1912 setMinimumScale( layerElement.attribute( QStringLiteral( "minScale" ) ).toDouble() );
1913 }
1914 }
1915
1916 if ( categories.testFlag( LayerConfiguration ) )
1917 {
1918 // flags
1919 const QDomElement flagsElem = layerElement.firstChildElement( QStringLiteral( "flags" ) );
1920 LayerFlags flags = mFlags;
1921 const auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
1922 for ( auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
1923 {
1924 const QDomNode flagNode = flagsElem.namedItem( it.value() );
1925 if ( flagNode.isNull() )
1926 continue;
1927 const bool flagValue = flagNode.toElement().text() == "1" ? true : false;
1928 if ( flags.testFlag( it.key() ) && !flagValue )
1929 flags &= ~it.key();
1930 else if ( !flags.testFlag( it.key() ) && flagValue )
1931 flags |= it.key();
1932 }
1933 setFlags( flags );
1934 }
1935
1936 if ( categories.testFlag( Temporal ) )
1937 {
1938 const QgsReadWriteContextCategoryPopper p = context.enterCategory( tr( "Temporal" ) );
1939
1941 properties->readXml( layerElement.toElement(), context );
1942 }
1943
1944 if ( categories.testFlag( Elevation ) )
1945 {
1946 const QgsReadWriteContextCategoryPopper p = context.enterCategory( tr( "Elevation" ) );
1947
1949 properties->readXml( layerElement.toElement(), context );
1950 }
1951
1952 if ( categories.testFlag( Notes ) )
1953 {
1954 const QDomElement notesElem = layerElement.firstChildElement( QStringLiteral( "userNotes" ) );
1955 if ( !notesElem.isNull() )
1956 {
1957 const QString notes = notesElem.attribute( QStringLiteral( "value" ) );
1958 QgsLayerNotesUtils::setLayerNotes( this, notes );
1959 }
1960 }
1961}
1962
1964{
1965 return mUndoStack;
1966}
1967
1969{
1970 return mUndoStackStyles;
1971}
1972
1974{
1975 return mCustomProperties.keys();
1976}
1977
1978void QgsMapLayer::setCustomProperty( const QString &key, const QVariant &value )
1979{
1980 if ( !mCustomProperties.contains( key ) || mCustomProperties.value( key ) != value )
1981 {
1982 mCustomProperties.setValue( key, value );
1983 emit customPropertyChanged( key );
1984 }
1985}
1986
1988{
1989 mCustomProperties = properties;
1990 for ( const QString &key : mCustomProperties.keys() )
1991 {
1992 emit customPropertyChanged( key );
1993 }
1994}
1995
1997{
1998 return mCustomProperties;
1999}
2000
2001QVariant QgsMapLayer::customProperty( const QString &value, const QVariant &defaultValue ) const
2002{
2003 return mCustomProperties.value( value, defaultValue );
2004}
2005
2006void QgsMapLayer::removeCustomProperty( const QString &key )
2007{
2008
2009 if ( mCustomProperties.contains( key ) )
2010 {
2011 mCustomProperties.remove( key );
2012 emit customPropertyChanged( key );
2013 }
2014}
2015
2017{
2018 return mError;
2019}
2020
2021
2022
2024{
2025 return false;
2026}
2027
2029{
2030 return false;
2031}
2032
2034{
2035 return true;
2036}
2037
2039{
2040 // invalid layers are temporary? -- who knows?!
2041 if ( !isValid() )
2042 return false;
2043
2044 if ( mProviderKey == QLatin1String( "memory" ) )
2045 return true;
2046
2047 const QVariantMap sourceParts = QgsProviderRegistry::instance()->decodeUri( mProviderKey, mDataSource );
2048 const QString path = sourceParts.value( QStringLiteral( "path" ) ).toString();
2049 if ( path.isEmpty() )
2050 return false;
2051
2052 // check if layer path is inside one of the standard temporary file locations for this platform
2053 const QStringList tempPaths = QStandardPaths::standardLocations( QStandardPaths::TempLocation );
2054 for ( const QString &tempPath : tempPaths )
2055 {
2056 if ( path.startsWith( tempPath ) )
2057 return true;
2058 }
2059
2060 return false;
2061}
2062
2063void QgsMapLayer::setValid( bool valid )
2064{
2065 if ( mValid == valid )
2066 return;
2067
2068 mValid = valid;
2069 emit isValidChanged();
2070}
2071
2073{
2074 if ( legend == mLegend )
2075 return;
2076
2077 delete mLegend;
2078 mLegend = legend;
2079
2080 if ( mLegend )
2081 {
2082 mLegend->setParent( this );
2083 connect( mLegend, &QgsMapLayerLegend::itemsChanged, this, &QgsMapLayer::legendChanged, Qt::UniqueConnection );
2084 }
2085
2086 emit legendChanged();
2087}
2088
2090{
2091 return mLegend;
2092}
2093
2095{
2096 return mStyleManager;
2097}
2098
2100{
2101 if ( renderer == m3DRenderer )
2102 return;
2103
2104 delete m3DRenderer;
2105 m3DRenderer = renderer;
2106 emit renderer3DChanged();
2107 emit repaintRequested();
2109}
2110
2112{
2113 return m3DRenderer;
2114}
2115
2116void QgsMapLayer::triggerRepaint( bool deferredUpdate )
2117{
2118 if ( mRepaintRequestedFired )
2119 return;
2120 mRepaintRequestedFired = true;
2121 emit repaintRequested( deferredUpdate );
2122 mRepaintRequestedFired = false;
2123}
2124
2126{
2127 emit request3DUpdate();
2128}
2129
2131{
2132 mMetadata = metadata;
2133// mMetadata.saveToLayer( this );
2134 emit metadataChanged();
2135}
2136
2138{
2139 return QString();
2140}
2141
2142QDateTime QgsMapLayer::timestamp() const
2143{
2144 return QDateTime();
2145}
2146
2148{
2150 emit styleChanged();
2151}
2152
2154{
2155 updateExtent( extent );
2156}
2157
2158bool QgsMapLayer::isReadOnly() const
2159{
2160 return true;
2161}
2162
2164{
2165 return mOriginalXmlProperties;
2166}
2167
2168void QgsMapLayer::setOriginalXmlProperties( const QString &originalXmlProperties )
2169{
2170 mOriginalXmlProperties = originalXmlProperties;
2171}
2172
2173QString QgsMapLayer::generateId( const QString &layerName )
2174{
2175 // Generate the unique ID of this layer
2176 const QString uuid = QUuid::createUuid().toString();
2177 // trim { } from uuid
2178 QString id = layerName + '_' + uuid.mid( 1, uuid.length() - 2 );
2179 // Tidy the ID up to avoid characters that may cause problems
2180 // elsewhere (e.g in some parts of XML). Replaces every non-word
2181 // character (word characters are the alphabet, numbers and
2182 // underscore) with an underscore.
2183 // Note that the first backslash in the regular expression is
2184 // there for the compiler, so the pattern is actually \W
2185 id.replace( QRegularExpression( "[\\W]" ), QStringLiteral( "_" ) );
2186 return id;
2187}
2188
2190{
2191 return true;
2192}
2193
2194void QgsMapLayer::setProviderType( const QString &providerType )
2195{
2197}
2198
2199QSet<QgsMapLayerDependency> QgsMapLayer::dependencies() const
2200{
2201 return mDependencies;
2202}
2203
2204bool QgsMapLayer::setDependencies( const QSet<QgsMapLayerDependency> &oDeps )
2205{
2206 QSet<QgsMapLayerDependency> deps;
2207 const auto constODeps = oDeps;
2208 for ( const QgsMapLayerDependency &dep : constODeps )
2209 {
2210 if ( dep.origin() == QgsMapLayerDependency::FromUser )
2211 deps << dep;
2212 }
2213
2214 mDependencies = deps;
2215 emit dependenciesChanged();
2216 return true;
2217}
2218
2220{
2221 QgsDataProvider *lDataProvider = dataProvider();
2222
2223 if ( !lDataProvider )
2224 return;
2225
2226 if ( enabled && !isRefreshOnNotifyEnabled() )
2227 {
2228 lDataProvider->setListening( enabled );
2229 connect( lDataProvider, &QgsDataProvider::notify, this, &QgsMapLayer::onNotified );
2230 }
2231 else if ( !enabled && isRefreshOnNotifyEnabled() )
2232 {
2233 // we don't want to disable provider listening because someone else could need it (e.g. actions)
2234 disconnect( lDataProvider, &QgsDataProvider::notify, this, &QgsMapLayer::onNotified );
2235 }
2236 mIsRefreshOnNofifyEnabled = enabled;
2237}
2238
2240{
2241 if ( QgsMapLayerStore *store = qobject_cast<QgsMapLayerStore *>( parent() ) )
2242 {
2243 return qobject_cast<QgsProject *>( store->parent() );
2244 }
2245 return nullptr;
2246}
2247
2248void QgsMapLayer::onNotified( const QString &message )
2249{
2250 if ( refreshOnNotifyMessage().isEmpty() || refreshOnNotifyMessage() == message )
2251 {
2253 emit dataChanged();
2254 }
2255}
2256
2257QgsRectangle QgsMapLayer::wgs84Extent( bool forceRecalculate ) const
2258{
2260
2261 if ( ! forceRecalculate && ! mWgs84Extent.isNull() )
2262 {
2263 wgs84Extent = mWgs84Extent;
2264 }
2265 else if ( ! mExtent.isNull() )
2266 {
2268 transformer.setBallparkTransformsAreAppropriate( true );
2269 try
2270 {
2271 wgs84Extent = transformer.transformBoundingBox( mExtent );
2272 }
2273 catch ( const QgsCsException &cse )
2274 {
2275 QgsMessageLog::logMessage( tr( "Error transforming extent: %1" ).arg( cse.what() ) );
2277 }
2278 }
2279 return wgs84Extent;
2280}
2281
2282void QgsMapLayer::updateExtent( const QgsRectangle &extent ) const
2283{
2284 if ( extent == mExtent )
2285 return;
2286
2287 mExtent = extent;
2288
2289 // do not update the wgs84 extent if we trust layer metadata
2291 return;
2292
2293 mWgs84Extent = wgs84Extent( true );
2294}
2295
2297{
2298 // do not update the wgs84 extent if we trust layer metadata
2300 return;
2301
2302 mWgs84Extent = QgsRectangle();
2303}
2304
2306{
2307 QString metadata = QStringLiteral( "<h1>" ) + tr( "General" ) + QStringLiteral( "</h1>\n<hr>\n" ) + QStringLiteral( "<table class=\"list-view\">\n" );
2308
2309 // name
2310 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Name" ) + QStringLiteral( "</td><td>" ) + name() + QStringLiteral( "</td></tr>\n" );
2311
2312 QString path;
2313 bool isLocalPath = false;
2314 if ( dataProvider() )
2315 {
2316 // local path
2317 QVariantMap uriComponents = QgsProviderRegistry::instance()->decodeUri( dataProvider()->name(), publicSource() );
2318 if ( uriComponents.contains( QStringLiteral( "path" ) ) )
2319 {
2320 path = uriComponents[QStringLiteral( "path" )].toString();
2321 QFileInfo fi( path );
2322 if ( fi.exists() )
2323 {
2324 isLocalPath = true;
2325 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" );
2326
2327 QDateTime lastModified = fi.lastModified();
2328 QString lastModifiedFileName;
2329 QSet<QString> sidecarFiles = QgsFileUtils::sidecarFilesForPath( path );
2330 if ( fi.isFile() )
2331 {
2332 qint64 fileSize = fi.size();
2333 if ( !sidecarFiles.isEmpty() )
2334 {
2335 lastModifiedFileName = fi.fileName();
2336 QStringList sidecarFileNames;
2337 for ( const QString &sidecarFile : sidecarFiles )
2338 {
2339 QFileInfo sidecarFi( sidecarFile );
2340 fileSize += sidecarFi.size();
2341 if ( sidecarFi.lastModified() > lastModified )
2342 {
2343 lastModified = sidecarFi.lastModified();
2344 lastModifiedFileName = sidecarFi.fileName();
2345 }
2346 sidecarFileNames << sidecarFi.fileName();
2347 }
2348 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" );
2349 }
2350 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" );
2351 }
2352 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 }
2354 }
2355 if ( uriComponents.contains( QStringLiteral( "url" ) ) )
2356 {
2357 const QString url = uriComponents[QStringLiteral( "url" )].toString();
2358 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" );
2359 }
2360 }
2361
2362 // data source
2363 if ( publicSource() != path || !isLocalPath )
2364 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Source" ) + QStringLiteral( "</td><td>%1" ).arg( publicSource() != path ? publicSource() : path ) + QStringLiteral( "</td></tr>\n" );
2365
2366 // provider
2367 if ( dataProvider() )
2368 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Provider" ) + QStringLiteral( "</td><td>%1" ).arg( dataProvider()->name() ) + QStringLiteral( "</td></tr>\n" );
2369
2370 metadata += QLatin1String( "</table>\n<br><br>" );
2371 return metadata;
2372}
2373
2375{
2376 QString metadata = QStringLiteral( "<h1>" ) + tr( "Coordinate Reference System (CRS)" ) + QStringLiteral( "</h1>\n<hr>\n" );
2377 metadata += QLatin1String( "<table class=\"list-view\">\n" );
2378
2379 // Identifier
2381 if ( !c.isValid() )
2382 metadata += QStringLiteral( "<tr><td colspan=\"2\" class=\"highlight\">" ) + tr( "Unknown" ) + QStringLiteral( "</td></tr>\n" );
2383 else
2384 {
2385 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Name" ) + QStringLiteral( "</td><td>" ) + c.userFriendlyIdentifier( QgsCoordinateReferenceSystem::FullString ) + QStringLiteral( "</td></tr>\n" );
2386
2387 // map units
2388 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Units" ) + QStringLiteral( "</td><td>" )
2389 + ( c.isGeographic() ? tr( "Geographic (uses latitude and longitude for coordinates)" ) : QgsUnitTypes::toString( c.mapUnits() ) )
2390 + QStringLiteral( "</td></tr>\n" );
2391
2392
2393 // operation
2394 const QgsProjOperation operation = c.operation();
2395 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Method" ) + QStringLiteral( "</td><td>" ) + operation.description() + QStringLiteral( "</td></tr>\n" );
2396
2397 // celestial body
2398 try
2399 {
2400 const QString celestialBody = c.celestialBodyName();
2401 if ( !celestialBody.isEmpty() )
2402 {
2403 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Celestial body" ) + QStringLiteral( "</td><td>" ) + celestialBody + QStringLiteral( "</td></tr>\n" );
2404 }
2405 }
2406 catch ( QgsNotSupportedException & )
2407 {
2408
2409 }
2410
2411 QString accuracyString;
2412 // dynamic crs with no epoch?
2413 if ( c.isDynamic() && std::isnan( c.coordinateEpoch() ) )
2414 {
2415 accuracyString = tr( "Based on a dynamic CRS, but no coordinate epoch is set. Coordinates are ambiguous and of limited accuracy." );
2416 }
2417
2418 // based on datum ensemble?
2419 try
2420 {
2421 const QgsDatumEnsemble ensemble = c.datumEnsemble();
2422 if ( ensemble.isValid() )
2423 {
2424 QString id;
2425 if ( !ensemble.code().isEmpty() )
2426 id = QStringLiteral( "<i>%1</i> (%2:%3)" ).arg( ensemble.name(), ensemble.authority(), ensemble.code() );
2427 else
2428 id = QStringLiteral( "<i>%</i>”" ).arg( ensemble.name() );
2429
2430 if ( ensemble.accuracy() > 0 )
2431 {
2432 accuracyString = tr( "Based on %1, which has a limited accuracy of <b>at best %2 meters</b>." ).arg( id ).arg( ensemble.accuracy() );
2433 }
2434 else
2435 {
2436 accuracyString = tr( "Based on %1, which has a limited accuracy." ).arg( id );
2437 }
2438 }
2439 }
2440 catch ( QgsNotSupportedException & )
2441 {
2442
2443 }
2444
2445 if ( !accuracyString.isEmpty() )
2446 {
2447 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Accuracy" ) + QStringLiteral( "</td><td>" ) + accuracyString + QStringLiteral( "</td></tr>\n" );
2448 }
2449
2450 // static/dynamic
2451 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
2453 // coordinate epoch
2454 if ( !std::isnan( c.coordinateEpoch() ) )
2455 {
2456 metadata += QStringLiteral( "<tr><td class=\"highlight\">" ) + tr( "Coordinate epoch" ) + QStringLiteral( "</td><td>%1</td></tr>\n" ).arg( c.coordinateEpoch() );
2457 }
2458 }
2459
2460 metadata += QLatin1String( "</table>\n<br><br>\n" );
2461 return metadata;
2462}
static QString version()
Version string.
Definition qgis.cpp:277
static const double SCALE_PRECISION
Fudge factor used to compare two scales.
Definition qgis.h:2283
@ ForceFirstLetterToCapital
Convert just the first letter of each word to uppercase, leave the rest untouched.
Base metadata class for 3D renderers.
virtual QgsAbstract3DRenderer * createRenderer(QDomElement &elem, const QgsReadWriteContext &context)=0
Returns new instance of the renderer given the DOM element.
Qgs3DRendererAbstractMetadata * rendererMetadata(const QString &type) const
Returns metadata for a 3D renderer type (may be used to create a new instance of the type)
Base class for all renderers that may to participate in 3D view.
virtual QString type() const =0
Returns unique identifier of the renderer class (used to identify subclass)
virtual void writeXml(QDomElement &elem, const QgsReadWriteContext &context) const =0
Writes renderer's properties to given XML element.
virtual void resolveReferences(const QgsProject &project)
Resolves references to other objects - second phase of loading - after readXml()
static QString pkgDataPath()
Returns the common root path of all application data directories.
static QString qgisSettingsDirPath()
Returns the path to the settings directory in user's home dir.
static QgsAuthManager * authManager()
Returns the application's authentication manager instance.
static Qgs3DRendererRegistry * renderer3DRegistry()
Returns registry of available 3D renderers.
bool setMasterPassword(bool verify=false)
Main call to initially set or continually check master password is set.
This class represents a coordinate reference system (CRS).
static QgsCoordinateReferenceSystem fromOgcWmsCrs(const QString &ogcCrs)
Creates a CRS from a given OGC WMS-format Coordinate Reference System string.
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
void validate()
Perform some validation on this CRS.
static CUSTOM_CRS_VALIDATION customCrsValidation()
Gets custom function.
bool readXml(const QDomNode &node)
Restores state from the given DOM node.
static void setCustomCrsValidation(CUSTOM_CRS_VALIDATION f)
Sets custom function to force valid CRS.
void setValidationHint(const QString &html)
Set user hint for validation.
@ FullString
Full definition – possibly a very lengthy string, e.g. with no truncation of custom WKT definitions.
bool writeXml(QDomNode &node, QDomDocument &doc) const
Stores state to the given Dom node in the given document.
Contains information about the context in which a coordinate transform is executed.
Class for doing transforms between two map coordinate systems.
Custom exception class for Coordinate Reference System related exceptions.
Abstract base class for spatial data provider implementations.
@ FlagLoadDefaultStyle
Reset the layer's style to the default for the datasource.
@ FlagTrustDataSource
Trust datasource config (primary key unicity, geometry type and srid, etc). Improves provider load ti...
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
virtual void setListening(bool isListening)
Set whether the provider will listen to datasource notifications If set, the provider will issue noti...
void notify(const QString &msg)
Emitted when the datasource issues a notification.
static QString removePassword(const QString &aUri)
Removes the password element from a URI.
Contains information about a datum ensemble.
Definition qgsdatums.h:95
QString code() const
Identification code, e.g.
Definition qgsdatums.h:122
QString authority() const
Authority name, e.g.
Definition qgsdatums.h:117
bool isValid() const
Returns true if the datum ensemble is a valid object, or false if it is a null/invalid object.
Definition qgsdatums.h:102
QString name() const
Display name of datum ensemble.
Definition qgsdatums.h:107
double accuracy() const
Positional accuracy (in meters).
Definition qgsdatums.h:112
QgsError is container for error messages (report).
Definition qgserror.h:81
QString what() const
static QSet< QString > sidecarFilesForPath(const QString &path)
Returns a list of the sidecar files which exist for the dataset a the specified path.
static QString representFileSize(qint64 bytes)
Returns the human size from bytes.
A structured metadata store for a map layer.
bool readMetadataXml(const QDomElement &metadataElement) override
Sets state from DOM document.
bool writeMetadataXml(QDomElement &metadataElement, QDomDocument &document) const override
Stores state in a DOM node.
static void setLayerNotes(QgsMapLayer *layer, const QString &notes)
Sets the notes for the specified layer, where notes is a HTML formatted string.
static bool layerHasNotes(const QgsMapLayer *layer)
Returns true if the specified layer has notes available.
static QString layerNotes(const QgsMapLayer *layer)
Returns the notes for the specified layer.
This class models dependencies with or between map layers.
Base class for storage of map layer elevation properties.
The QgsMapLayerLegend class is abstract interface for implementations of legends for one map layer.
void itemsChanged()
Emitted when existing items/nodes got invalid and should be replaced by new ones.
Manages QGIS Server properties for a map layer.
void readXml(const QDomNode &layer_node)
Reads server properties from project file.
void copyTo(QgsMapLayerServerProperties *properties) const
Copy properties to another instance.
A storage object for map layers, in which the layers are owned by the store and have their lifetime b...
Management of styles for use with one map layer.
bool addStyle(const QString &name, const QgsMapLayerStyle &style)
Add a style with given name and data.
QStringList styles() const
Returns list of all defined style names.
void writeXml(QDomElement &mgrElement) const
Write configuration (for project saving)
void reset()
Reset the style manager to a basic state - with one default style which is set as current.
QgsMapLayerStyle style(const QString &name) const
Returns data of a stored style - accessed by its unique name.
void readXml(const QDomElement &mgrElement)
Read configuration (for project loading)
Base class for storage of map layer temporal properties.
Base class for all map layer types.
Definition qgsmaplayer.h:73
QString mKeywordList
void setShortName(const QString &shortName)
Sets the short name of the layer used by QGIS Server to identify the layer.
bool importNamedMetadata(QDomDocument &document, QString &errorMessage)
Import the metadata of this layer from a QDomDocument.
QString name
Definition qgsmaplayer.h:76
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
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.
QString legendUrlFormat() const
Returns the format for a URL based layer legend.
QgsRectangle wgs84Extent(bool forceRecalculate=false) const
Returns the WGS84 extent (EPSG:4326) of the layer according to ReadFlag::FlagTrustLayerMetadata.
void setRefreshOnNotifyEnabled(bool enabled)
Set whether provider notification is connected to triggerRepaint.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
QgsAbstract3DRenderer * renderer3D() const
Returns 3D renderer associated with the layer.
virtual bool isTemporary() const
Returns true if the layer is considered a temporary 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.
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the layer.
void dependenciesChanged()
Emitted when dependencies are changed.
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
void legendChanged()
Signal emitted when legend of the layer has changed.
void writeStyleManager(QDomNode &layerNode, QDomDocument &doc) const
Write style manager's configuration (if exists). To be called by subclasses.
QgsMapLayerLegend * legend() const
Can be nullptr.
virtual bool importNamedStyle(QDomDocument &doc, QString &errorMsg, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Import the properties of this layer from a QDomDocument.
void setAbstract(const QString &abstract)
Sets the abstract of the layer used by QGIS Server in GetCapabilities request.
void metadataChanged()
Emitted when the layer's metadata is changed.
virtual QgsRectangle extent() const
Returns the extent of the layer.
virtual QString saveSldStyle(const QString &uri, bool &resultFlag) const
Saves the properties of this layer to an SLD format file.
QString source() const
Returns the source for the layer.
void setLegendUrl(const QString &legendUrl)
Sets the URL for the layer's legend.
virtual bool setDependencies(const QSet< QgsMapLayerDependency > &layers)
Sets the list of dependencies.
void request3DUpdate()
Signal emitted when a layer requires an update in any 3D maps.
Q_INVOKABLE QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
QgsError mError
Error.
int mBlockStyleChangedSignal
If non-zero, the styleChanged signal should not be emitted.
QString providerType() const
Returns the provider type (provider key) for this layer.
void removeCustomProperty(const QString &key)
Remove a custom property from layer.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
QgsMapLayerType type
Definition qgsmaplayer.h:80
void configChanged()
Emitted whenever the configuration is changed.
void trigger3DUpdate()
Will advise any 3D maps that this layer requires to be updated in the scene.
void autoRefreshIntervalChanged(int interval)
Emitted when the auto refresh interval changes.
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
virtual QSet< QgsMapLayerDependency > dependencies() const
Gets the list of dependencies.
void setCustomProperties(const QgsObjectCustomProperties &properties)
Set custom properties for layer.
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...
QgsMapLayer(QgsMapLayerType type=QgsMapLayerType::VectorLayer, const QString &name=QString(), const QString &source=QString())
Constructor for QgsMapLayer.
QString publicSource() const
Gets a version of the internal layer definition that has sensitive bits removed (for example,...
QgsMapLayer::LayerFlags flags() const
Returns the flags for this layer.
virtual void setSubLayerVisibility(const QString &name, bool visible)
Set the visibility of the given sublayer name.
void isValidChanged()
Emitted when the validity of this layer changed.
QgsCoordinateReferenceSystem crs
Definition qgsmaplayer.h:79
bool loadNamedMetadataFromDatabase(const QString &db, const QString &uri, QString &qmd)
Retrieve a named metadata for this layer from a sqlite database.
virtual bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context)
Called by readLayerXML(), used by children to read state specific to them from project files.
QgsMapLayerServerProperties * serverProperties()
Returns QGIS Server Properties for the map layer.
QString attribution() const
Returns the attribution of the layer used by QGIS Server in GetCapabilities request.
void setOriginalXmlProperties(const QString &originalXmlProperties)
Sets the original XML properties for the layer to originalXmlProperties.
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
QString mRefreshOnNofifyMessage
QString mLegendUrl
WMS legend.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
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...
QString mLayerName
Name of the layer - used for display.
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 ...
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.
bool hasAutoRefreshEnabled() const
Returns true if auto refresh is enabled for the layer.
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
QString crsHtmlMetadata() const
Returns a HTML fragment containing the layer's CRS metadata, for use in the htmlMetadata() method.
void setAttributionUrl(const QString &attribUrl)
Sets the attribution URL of the layer used by QGIS Server in GetCapabilities request.
void setAutoRefreshEnabled(bool enabled)
Sets whether auto refresh is enabled for the layer.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
QgsLayerMetadata metadata
Definition qgsmaplayer.h:78
static QString formatLayerName(const QString &name)
A convenience function to capitalize and format a layer name.
void renderer3DChanged()
Signal emitted when 3D renderer associated with the layer has changed.
QString abstract() const
Returns the abstract of the layer used by QGIS Server in GetCapabilities request.
QString originalXmlProperties() const
Returns the XML properties of the original layer as they were when the layer was first read from the ...
QString dataUrlFormat() const
Returns the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
QString mTitle
void setDataUrl(const QString &dataUrl)
Sets the DataUrl of the layer used by QGIS Server in GetCapabilities request.
virtual void setOpacity(double opacity)
Sets the opacity for the layer, where opacity is a value between 0 (totally transparent) and 1....
void setKeywordList(const QString &keywords)
Sets the keyword list of the layer used by QGIS Server in GetCapabilities request.
void setAttribution(const QString &attrib)
Sets the attribution of the layer used by QGIS Server in GetCapabilities request.
void setFlags(QgsMapLayer::LayerFlags flags)
Returns the flags for this layer.
bool isRefreshOnNotifyEnabled() const
Returns true if the refresh on provider nofification is enabled.
QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the layer.
QSet< QgsMapLayerDependency > mDependencies
List of layers that may modify this layer on modification.
void readCustomProperties(const QDomNode &layerNode, const QString &keyStartsWith=QString())
Read custom properties from project file.
virtual Qgis::MapLayerProperties properties() const
Returns the map layer properties of this layer.
virtual QString loadSldStyle(const QString &uri, bool &resultFlag)
Attempts to style the layer using the formatting from an SLD type file.
virtual void setMetadata(const QgsLayerMetadata &metadata)
Sets the layer's metadata store.
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.
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 ...
virtual bool supportsEditing() const
Returns whether the layer supports editing or not.
void setDataUrlFormat(const QString &dataUrlFormat)
Sets the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
QString mLegendUrlFormat
Q_INVOKABLE void setCustomProperty(const QString &key, const QVariant &value)
Set a custom property for layer.
QString mProviderKey
Data provider key (name of the data provider)
QgsCoordinateTransformContext transformContext() const
Returns the layer data provider coordinate transform context or a default transform context if the la...
void styleChanged()
Signal emitted whenever a change affects the layer's style.
virtual bool isEditable() const
Returns true if the layer can be edited.
QUndoStack * undoStack()
Returns pointer to layer's undo stack.
QString title() const
Returns the title of the layer used by QGIS Server in GetCapabilities request.
void crsChanged()
Emit a signal that layer's CRS has been reset.
virtual QgsError error() const
Gets current status error.
bool writeLayerXml(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores state in DOM node.
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 mAttributionUrl
void setScaleBasedVisibility(bool enabled)
Sets whether scale based visibility is enabled for the layer.
void dataSourceChanged()
Emitted whenever the layer's data source has been changed.
QString dataUrl() const
Returns the DataUrl of the layer used by QGIS Server in GetCapabilities request.
bool readLayerXml(const QDomElement &layerElement, QgsReadWriteContext &context, QgsMapLayer::ReadFlags flags=QgsMapLayer::ReadFlags())
Sets state from DOM document.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
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 ...
Q_DECL_DEPRECATED QString metadataUrlFormat() const
Returns the metadata format of the layer used by QGIS Server in GetCapabilities request.
void setRefreshOnNofifyMessage(const QString &message)
Set the notification message that triggers repaint If refresh on notification is enabled,...
static QString generateId(const QString &layerName)
Generates an unique identifier for this layer, the generate ID is prefixed by layerName.
void opacityChanged(double opacity)
Emitted when the layer's opacity is changed, where opacity is a value between 0 (transparent) and 1 (...
virtual bool isModified() const
Returns true if the layer has been modified since last commit/save.
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
virtual QgsMapLayerTemporalProperties * temporalProperties()
Returns the layer's temporal properties.
QString mShortName
QUndoStack * undoStackStyles()
Returns pointer to layer's style undo stack.
void dataChanged()
Data of layer changed.
virtual QStringList subLayers() const
Returns the sublayers of this layer.
virtual QString htmlMetadata() const
Obtain a formatted HTML string containing assorted metadata for this layer.
Q_DECL_DEPRECATED void setMetadataUrlFormat(const QString &metaUrlFormat)
Sets the metadata format of the layer used by QGIS Server in GetCapabilities request.
virtual bool loadNamedStyleFromDatabase(const QString &db, const QString &uri, QString &qml)
Retrieve a named style for this layer from a sqlite database.
static QString extensionPropertyType(PropertyType type)
Returns the extension of a Property.
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void blendModeChanged(QPainter::CompositionMode blendMode)
Signal emitted when the blend mode is changed, through QgsMapLayer::setBlendMode()
void setName(const QString &name)
Set the display name of the layer.
void setAutoRefreshInterval(int interval)
Sets the auto refresh interval (in milliseconds) for the 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.
Q_DECL_DEPRECATED QString metadataUrl() const
Returns the metadata URL of the layer used by QGIS Server in GetCapabilities request.
virtual void setExtent(const QgsRectangle &rect)
Sets the extent.
virtual void resolveReferences(QgsProject *project)
Resolve references to other layers (kept as layer IDs after reading XML) into layer objects.
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...
QString mDataSource
Data source description string, varies by layer type.
QString refreshOnNotifyMessage() const
Returns the message that should be notified by the provider to triggerRepaint.
virtual bool readSld(const QDomNode &node, QString &errorMessage)
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...
@ FlagReadExtentFromXml
Read extent from xml and skip get extent from provider.
@ FlagTrustLayerMetadata
Trust layer metadata. Improves layer load time by skipping expensive checks like primary key unicity,...
void setValid(bool valid)
Sets whether layer is valid or not.
QString attributionUrl() const
Returns the attribution URL of the layer used by QGIS Server in GetCapabilities request.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
QString mAbstract
Description of the layer.
void customPropertyChanged(const QString &key)
Emitted when a custom property of the layer has been changed or removed.
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
void setDataSource(const QString &dataSource, const QString &baseName, const QString &provider, bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
double minimumScale() const
Returns the minimum map scale (i.e.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
QString legendUrl() const
Returns the URL for the layer's legend.
QString mDataUrlFormat
void flagsChanged()
Emitted when layer's flags have been modified.
void repaintRequested(bool deferredUpdate=false)
By emitting this signal the layer tells that either appearance or content have been changed and any v...
void setLegendUrlFormat(const QString &legendUrlFormat)
Sets the format for a URL based layer legend.
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...
virtual void exportSldStyle(QDomDocument &doc, QString &errorMsg) const
Export the properties of this layer as SLD style in a QDomDocument.
void beforeResolveReferences(QgsProject *project)
Emitted when all layers are loaded and references can be resolved, just before the references of this...
Q_DECL_DEPRECATED void setMetadataUrl(const QString &metaUrl)
Sets the metadata URL of the layer used by QGIS Server in GetCapabilities request.
virtual QgsMapLayerElevationProperties * elevationProperties()
Returns the layer's elevation properties.
Q_INVOKABLE QStringList customPropertyKeys() const
Returns list of all keys within custom properties.
QgsProject * project() const
Returns the parent project if this map layer is added to a project.
Q_DECL_DEPRECATED void setMetadataUrlType(const QString &metaUrlType)
Set the metadata type of the layer used by QGIS Server in GetCapabilities request MetadataUrlType ind...
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
double opacity
Definition qgsmaplayer.h:82
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...
void nameChanged()
Emitted when the name has been changed.
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...
int autoRefreshInterval
Definition qgsmaplayer.h:77
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.
bool mIsRefreshOnNofifyEnabled
QString mDataUrl
DataUrl of the layer.
virtual Q_INVOKABLE QgsDataProvider * dataProvider()
Returns the layer's data provider, it may be nullptr.
double mLayerOpacity
Layer opacity.
bool mValid
Indicates if the layer is valid and can be drawn.
@ LayerConfiguration
General configuration: identifiable, removable, searchable, display expression, read-only.
@ Symbology
Symbology.
@ Notes
Layer user notes (since QGIS 3.20)
@ Temporal
Temporal properties (since QGIS 3.14)
@ Rendering
Rendering: scale visibility, simplify method, opacity.
@ Elevation
Elevation settings (since QGIS 3.18)
@ Symbology3D
3D symbology
@ CustomProperties
Custom properties (by plugins for instance)
virtual QDateTime timestamp() const
Time stamp of data source in the moment when data/metadata were loaded by provider.
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
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 setRenderer3D(QgsAbstract3DRenderer *renderer)
Sets 3D renderer for the layer.
QString mAttribution
Attribution of the layer.
~QgsMapLayer() override
const QgsObjectCustomProperties & customProperties() const
Read all custom properties from layer.
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
Q_DECL_DEPRECATED QString metadataUrlType() const
Returns the metadata type of the layer used by QGIS Server in GetCapabilities request.
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
double maximumScale() const
Returns the maximum map scale (i.e.
QString keywordList() const
Returns the keyword list of the layer used by QGIS Server in GetCapabilities request.
virtual void setLayerOrder(const QStringList &layers)
Reorders the previously selected sublayers of this layer from bottom to top.
void invalidateWgs84Extent()
Invalidates the WGS84 extent.
void setTitle(const QString &title)
Sets the title of the layer used by QGIS Server in GetCapabilities request.
PropertyType
Maplayer has a style and a metadata property.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
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).
Custom exception class which is raised when an operation is not supported.
Simple key-value store (keys = strings, values = variants) that supports loading/saving to/from XML i...
void setValue(const QString &key, const QVariant &value)
Add an entry to the store with the specified key.
QStringList keys() const
Returns a list of all stored keys.
void writeXml(QDomNode &parentNode, QDomDocument &doc) const
Writes the store contents to an XML node.
void remove(const QString &key)
Removes a key (entry) from the store.
QVariant value(const QString &key, const QVariant &defaultValue=QVariant()) const
Returns the value for the given key.
void readXml(const QDomNode &parentNode, const QString &keyStartsWith=QString())
Read store contents from an XML node.
bool contains(const QString &key) const
Returns true if the properties contains a key with the specified name.
QString writePath(const QString &filename) const
Prepare a filename to save it to the project file.
QString readPath(const QString &filename) const
Turn filename read from the project file to an absolute path.
Contains information about a PROJ operation.
QString description() const
Description.
Class to convert from older project file versions to newer.
bool updateRevision(const QgsProjectVersion &version)
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.
A class to describe the version of a project.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition qgsproject.h:104
bool removeAttachedFile(const QString &path)
Removes the attached file.
static QgsProject * instance()
Returns the QgsProject singleton instance.
QString baseName() const
Returns the base name of the project file without the path and without extension - derived from fileN...
QString absoluteFilePath() const
Returns full absolute path to the project file if the project is stored in a file system - derived fr...
Holds data provider key, description, and associated shared library file or function pointer informat...
@ SaveLayerMetadata
Indicates that the provider supports saving native layer metadata (since QGIS 3.20)
QVariantMap decodeUri(const QString &providerKey, const QString &uri)
Breaks a provider data source URI into its component paths (e.g.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
bool saveLayerMetadata(const QString &providerKey, const QString &uri, const QgsLayerMetadata &metadata, QString &errorMessage)
Saves metadata to the layer corresponding to the specified uri.
Represents a raster layer.
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.
Allows entering a context category and takes care of leaving this category on deletion of the class.
The class is used as a container of context for various read/write operations on other objects.
MAYBE_UNUSED NODISCARD QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString()) const
Push a category to the stack.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
const QgsPathResolver & pathResolver() const
Returns path resolver for conversion between relative and absolute paths.
A rectangle specified with double values.
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
void setMetadataUrls(const QList< QgsServerMetadataUrlProperties::MetadataUrl > &metaUrls)
Sets a the list of metadata URL for the layer.
QList< QgsServerMetadataUrlProperties::MetadataUrl > metadataUrls() const
Returns a list of metadataUrl resources associated for the layer.
static QString capitalize(const QString &string, Qgis::Capitalization capitalization)
Converts a string by applying capitalization rules to the string.
An interface for classes which can visit style entity (e.g.
static Q_INVOKABLE QString toString(QgsUnitTypes::DistanceUnit unit)
Returns a translated string representing a distance unit.
Represents a vector layer which manages a vector based data sets.
Q_INVOKABLE QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
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.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
static T readFlagAttribute(const QDomElement &element, const QString &attributeName, T defaultValue)
Read a flag value from an attribute of the element.
Definition qgsxmlutils.h:99
static QDomElement writeRectangle(const QgsRectangle &rect, QDomDocument &doc, const QString &elementName=QStringLiteral("extent"))
Encodes a rectangle to a DOM element.
static QgsRectangle readRectangle(const QDomElement &element)
Unique pointer for sqlite3 databases, which automatically closes the database when the pointer goes o...
sqlite3_statement_unique_ptr prepare(const QString &sql, int &resultCode) const
Prepares a sql statement, returning the result.
int open(const QString &path)
Opens the database at the specified file path.
int open_v2(const QString &path, int flags, const char *zVfs)
Opens the database at the specified file path.
Unique pointer for sqlite3 prepared statements, which automatically finalizes the statement when the ...
QgsMapLayerType
Types of layers that can be added to a map.
Definition qgis.h:47
@ VectorLayer
Vector layer.
@ AnnotationLayer
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
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
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
Definition qgis.h:2527
CONSTLATIN1STRING geoEpsgCrsAuthId()
Geographic coord sys from EPSG authority.
Definition qgis.h:2973
void(* CUSTOM_CRS_VALIDATION)(QgsCoordinateReferenceSystem &)
#define QgsDebugMsgLevel(str, level)
Definition qgslogger.h:39
Setting options for creating vector data providers.
QString format
Format specification of online resource.