QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsproviderutils.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsproviderutils.cpp
3 ----------------------------
4 begin : June 2021
5 copyright : (C) 2021 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#include "qgsproviderutils.h"
18
20
21#include <QFileInfo>
22
23bool QgsProviderUtils::sublayerDetailsAreIncomplete( const QList<QgsProviderSublayerDetails> &details, SublayerCompletenessFlags flags )
24{
25 const bool ignoreUnknownGeometryTypes = flags & SublayerCompletenessFlag::IgnoreUnknownGeometryType;
26 const bool ignoreUnknownFeatureCount = flags & SublayerCompletenessFlag::IgnoreUnknownFeatureCount;
27
28 for ( const QgsProviderSublayerDetails &sublayer : details )
29 {
30 switch ( sublayer.type() )
31 {
33 if ( sublayer.skippedContainerScan()
34 || ( !ignoreUnknownGeometryTypes && sublayer.wkbType() == Qgis::WkbType::Unknown )
35 || ( !ignoreUnknownFeatureCount &&
36 ( sublayer.featureCount() == static_cast< long long >( Qgis::FeatureCountState::Uncounted )
37 || sublayer.featureCount() == static_cast< long long >( Qgis::FeatureCountState::UnknownCount ) ) ) )
38 return true;
39 break;
40
43 if ( sublayer.skippedContainerScan() )
44 return true;
45 break;
46
53 break;
54 }
55 }
56
57 return false;
58}
59
61{
62 const QFileInfo info( path );
63 // default to base name of file
64 QString name = info.completeBaseName();
65
66 // special handling for .adf files -- use directory as base name, not the unhelpful .adf file name
67 if ( info.suffix().compare( QLatin1String( "adf" ), Qt::CaseInsensitive ) == 0 )
68 {
69 const QString dirName = info.path();
70 name = QFileInfo( dirName ).completeBaseName();
71 }
72 // special handling for ept.json files -- use directory as base name
73 else if ( info.fileName().compare( QLatin1String( "ept.json" ), Qt::CaseInsensitive ) == 0 )
74 {
75 const QString dirName = info.path();
76 name = QFileInfo( dirName ).completeBaseName();
77 }
78
79 return name;
80}
@ Group
Composite group layer. Added in QGIS 3.24.
Definition qgis.h:198
@ Plugin
Plugin based layer.
Definition qgis.h:193
@ TiledScene
Tiled scene layer. Added in QGIS 3.34.
Definition qgis.h:199
@ Annotation
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
Definition qgis.h:196
@ Vector
Vector layer.
Definition qgis.h:191
@ VectorTile
Vector tile layer. Added in QGIS 3.14.
Definition qgis.h:195
@ Mesh
Mesh layer. Added in QGIS 3.2.
Definition qgis.h:194
@ Raster
Raster layer.
Definition qgis.h:192
@ PointCloud
Point cloud layer. Added in QGIS 3.18.
Definition qgis.h:197
@ Unknown
Unknown.
Definition qgis.h:278
Contains details about a sub layer available from a dataset.
static bool sublayerDetailsAreIncomplete(const QList< QgsProviderSublayerDetails > &details, QgsProviderUtils::SublayerCompletenessFlags flags=QgsProviderUtils::SublayerCompletenessFlags())
Returns true if the sublayer details are incomplete, and require a more in-depth scan.
QFlags< SublayerCompletenessFlag > SublayerCompletenessFlags
static QString suggestLayerNameFromFilePath(const QString &path)
Suggests a suitable layer name given only a file path.
@ IgnoreUnknownGeometryType
Indicates that an unknown geometry type should not be considered as incomplete.
@ IgnoreUnknownFeatureCount
Indicates that an unknown feature count should not be considered as incomplete.
@ Uncounted
Feature count not yet computed.
Definition qgis.h:546
@ UnknownCount
Provider returned an unknown feature count.
Definition qgis.h:547