Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgseptdataitems.cpp 3 : : -------------------- 4 : : begin : October 2020 5 : : copyright : (C) 2020 by Peter Petrik 6 : : email : zilolv at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgseptdataitems.h" 19 : : #include "qgslogger.h" 20 : : #include "qgssettings.h" 21 : : #include "qgsproviderregistry.h" 22 : : #include "qgsprovidermetadata.h" 23 : : #include "qgsfileutils.h" 24 : : 25 : : #include <QFileInfo> 26 : : #include <mutex> 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : 0 : QgsEptLayerItem::QgsEptLayerItem( QgsDataItem *parent, 31 : : const QString &name, const QString &path, const QString &uri ) 32 : 0 : : QgsLayerItem( parent, name, path, uri, QgsLayerItem::PointCloud, QStringLiteral( "ept" ) ) 33 : 0 : { 34 : 0 : mToolTip = uri; 35 : 0 : setState( Populated ); 36 : 0 : } 37 : : 38 : 0 : QString QgsEptLayerItem::layerName() const 39 : : { 40 : 0 : QFileInfo info( name() ); 41 : 0 : return info.completeBaseName(); 42 : 0 : } 43 : : 44 : : // --------------------------------------------------------------------------- 45 : 3 : QgsEptDataItemProvider::QgsEptDataItemProvider() 46 : 6 : { 47 : 6 : QgsProviderMetadata *metadata = QgsProviderRegistry::instance()->providerMetadata( QStringLiteral( "ept" ) ); 48 : 3 : mFileFilter = metadata->filters( QgsProviderMetadata::FilterType::FilterPointCloud ); 49 : 3 : } 50 : : 51 : 0 : QString QgsEptDataItemProvider::name() 52 : : { 53 : 0 : return QStringLiteral( "ept" ); 54 : : } 55 : : 56 : 0 : int QgsEptDataItemProvider::capabilities() const 57 : : { 58 : 0 : return QgsDataProvider::File; 59 : : } 60 : : 61 : 0 : QgsDataItem *QgsEptDataItemProvider::createDataItem( const QString &path, QgsDataItem *parentItem ) 62 : : { 63 : 0 : if ( path.isEmpty() ) 64 : 0 : return nullptr; 65 : : 66 : 0 : QgsDebugMsgLevel( "thePath = " + path, 2 ); 67 : : 68 : 0 : const QFileInfo info( path ); 69 : : 70 : : // allow only normal files 71 : 0 : if ( !info.isFile() ) 72 : 0 : return nullptr; 73 : : 74 : : // Filter files by extension 75 : 0 : if ( !QgsFileUtils::fileMatchesFilter( path, mFileFilter ) ) 76 : 0 : return nullptr; 77 : : 78 : 0 : QString name = info.dir().dirName(); 79 : : 80 : 0 : return new QgsEptLayerItem( parentItem, name, path, path ); 81 : 0 : } 82 : : 83 : : ///@endcond