Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgspointcloudblockrequest.cpp 3 : : -------------------- 4 : : begin : March 2021 5 : : copyright : (C) 2021 by Belgacem Nedjima 6 : : email : belgacem dot nedjima 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 "qgspointcloudblockrequest.h" 19 : : 20 : : #include "qgstiledownloadmanager.h" 21 : : #include "qgseptdecoder.h" 22 : : #include "qgsapplication.h" 23 : : 24 : : // 25 : : // QgsPointCloudBlockRequest 26 : : // 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : 0 : QgsPointCloudBlockRequest::QgsPointCloudBlockRequest( const IndexedPointCloudNode &node, const QString &Uri, const QString &dataType, const QgsPointCloudAttributeCollection &attributes, const QgsPointCloudAttributeCollection &requestedAttributes ) 31 : 0 : : mNode( node ), mDataType( dataType ), mAttributes( attributes ), mRequestedAttributes( requestedAttributes ) 32 : 0 : { 33 : 0 : QNetworkRequest nr( Uri ); 34 : 0 : nr.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache ); 35 : 0 : nr.setAttribute( QNetworkRequest::CacheSaveControlAttribute, true ); 36 : 0 : mTileDownloadManagetReply.reset( QgsApplication::tileDownloadManager()->get( nr ) ); 37 : 0 : connect( mTileDownloadManagetReply.get(), &QgsTileDownloadManagerReply::finished, this, &QgsPointCloudBlockRequest::blockFinishedLoading ); 38 : 0 : } 39 : : 40 : 0 : QgsPointCloudBlock *QgsPointCloudBlockRequest::block() 41 : : { 42 : 0 : return mBlock; 43 : : } 44 : : 45 : 0 : QString QgsPointCloudBlockRequest::errorStr() 46 : : { 47 : 0 : return mErrorStr; 48 : : } 49 : : 50 : 0 : void QgsPointCloudBlockRequest::blockFinishedLoading() 51 : : { 52 : 0 : mBlock = nullptr; 53 : 0 : if ( mTileDownloadManagetReply->error() == QNetworkReply::NetworkError::NoError ) 54 : : { 55 : 0 : bool invalidDataType = false; 56 : : try 57 : : { 58 : 0 : mBlock = nullptr; 59 : 0 : if ( mDataType == QLatin1String( "binary" ) ) 60 : : { 61 : 0 : mBlock = QgsEptDecoder::decompressBinary( mTileDownloadManagetReply->data(), mAttributes, mRequestedAttributes ); 62 : 0 : } 63 : 0 : else if ( mDataType == QLatin1String( "zstandard" ) ) 64 : : { 65 : 0 : mBlock = QgsEptDecoder::decompressZStandard( mTileDownloadManagetReply->data(), mAttributes, mRequestedAttributes ); 66 : 0 : } 67 : 0 : else if ( mDataType == QLatin1String( "laszip" ) ) 68 : 0 : { 69 : 0 : mBlock = QgsEptDecoder::decompressLaz( mTileDownloadManagetReply->data(), mAttributes, mRequestedAttributes ); 70 : 0 : } 71 : : else 72 : : { 73 : 0 : mErrorStr = QStringLiteral( "unknown data type %1;" ).arg( mDataType ); 74 : 0 : invalidDataType = true; 75 : : } 76 : 0 : } 77 : : catch ( std::exception &e ) 78 : : { 79 : 0 : mErrorStr = QStringLiteral( "Error while decompressing node %1: %2" ).arg( mNode.toString(), e.what() ); 80 : 0 : } 81 : 0 : if ( invalidDataType && !mBlock ) 82 : 0 : mErrorStr = QStringLiteral( "Error loading point cloud tile: \" %1 \"" ).arg( mTileDownloadManagetReply->errorString() ); 83 : 0 : } 84 : : else 85 : : { 86 : 0 : mErrorStr = mTileDownloadManagetReply->errorString(); 87 : : } 88 : 0 : emit finished(); 89 : 0 : } 90 : : 91 : : ///@endcond