QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsrasterfilewritertask.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrasterfilewritertask.cpp
3  ---------------------------
4  begin : Apr 2017
5  copyright : (C) 2017 by Nyall Dawson
6  email : nyall dot dawson 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 
19 #include "qgsrasterinterface.h"
20 
22  int columns, int rows,
23  const QgsRectangle &outputExtent,
25  : QgsTask( tr( "Saving %1" ).arg( writer.outputUrl() ), QgsTask::CanCancel )
26  , mWriter( writer )
27  , mRows( rows )
28  , mColumns( columns )
29  , mExtent( outputExtent )
30  , mCrs( crs )
31  , mPipe( pipe )
32  , mFeedback( new QgsRasterBlockFeedback() )
33 {}
34 
36 {
37  mFeedback->cancel();
39 }
40 
42 {
43  if ( !mPipe )
44  return false;
45 
47 
48  mError = mWriter.writeRaster( mPipe.get(), mColumns, mRows, mExtent, mCrs, mFeedback.get() );
49 
50  return mError == QgsRasterFileWriter::NoError;
51 }
52 
54 {
55  if ( result )
56  emit writeComplete( mWriter.outputUrl() );
57  else
58  emit errorOccurred( mError );
59 }
60 
61 
A rectangle specified with double values.
Definition: qgsrectangle.h:40
void setProgress(double progress)
Sets the task's current progress.
Base class for processing modules.
Definition: qgsrasterpipe.h:46
const QgsCoordinateReferenceSystem & crs
QString outputUrl() const
Returns the output URL for the raster.
void progressChanged(double progress)
Emitted when the feedback object reports a progress change.
Abstract base class for long running background tasks.
void cancel() override
Notifies the task that it should terminate.
WriterError writeRaster(const QgsRasterPipe *pipe, int nCols, int nRows, const QgsRectangle &outputExtent, const QgsCoordinateReferenceSystem &crs, QgsRasterBlockFeedback *feedback=nullptr)
Write raster file.
void finished(bool result) override
If the task is managed by a QgsTaskManager, this will be called after the task has finished (whether ...
bool run() override
Performs the task's operation.
void writeComplete(const QString &outputUrl)
Emitted when writing the layer is successfully completed.
virtual void cancel()
Notifies the task that it should terminate.
QgsRasterFileWriterTask(const QgsRasterFileWriter &writer, QgsRasterPipe *pipe, int columns, int rows, const QgsRectangle &outputExtent, const QgsCoordinateReferenceSystem &crs)
Constructor for QgsRasterFileWriterTask.
This class represents a coordinate reference system (CRS).
void errorOccurred(int error)
Emitted when an error occurs which prevented the file being written (or if the task is canceled)...
Feedback object tailored for raster block reading.
The raster file writer which allows you to save a raster to a new file.