24#include <QtConcurrentMap>
25#include <QtConcurrentRun>
35 if ( std::unique_ptr< QgsAbstractProfileGenerator > generator{ source->createProfileGenerator( mRequest ) } )
36 mGenerators.emplace_back( std::move( generator ) );
52 res.reserve( mGenerators.size() );
53 for (
const auto &it : mGenerators )
55 res.append( it->sourceId() );
67 Q_ASSERT( mJobs.empty() );
69 mJobs.reserve( mGenerators.size() );
70 for (
const auto &it : mGenerators )
72 std::unique_ptr< ProfileJob > job = std::make_unique< ProfileJob >();
73 job->generator = it.get();
74 job->context = mContext;
75 mJobs.emplace_back( std::move( job ) );
78 connect( &mFutureWatcher, &QFutureWatcher<void>::finished,
this, &QgsProfilePlotRenderer::onGeneratingFinished );
80 mFuture = QtConcurrent::map( mJobs, generateProfileStatic );
81 mFutureWatcher.setFuture( mFuture );
89 disconnect( &mFutureWatcher, &QFutureWatcher<void>::finished,
this, &QgsProfilePlotRenderer::onGeneratingFinished );
91 for (
const auto &job : mJobs )
95 if (
QgsFeedback *feedback = job->generator->feedback() )
102 mFutureWatcher.waitForFinished();
104 onGeneratingFinished();
112 for (
const auto &job : mJobs )
114 if ( job->generator )
116 if (
QgsFeedback *feedback = job->generator->feedback() )
129 disconnect( &mFutureWatcher, &QFutureWatcher<void>::finished,
this, &QgsProfilePlotRenderer::onGeneratingFinished );
130 mFutureWatcher.waitForFinished();
132 onGeneratingFinished();
137 return mStatus != Idle;
142 if ( mContext == context )
150 for (
auto &job : mJobs )
156 if ( !jobNeedsRegeneration )
160 job->context = mContext;
161 if ( job->results && job->complete )
162 job->invalidatedResults = std::move( job->results );
163 job->results.reset();
164 job->complete =
false;
171 for (
auto &job : mJobs )
177 if ( !jobNeedsRegeneration )
181 job->context = mContext;
182 if ( job->results && job->complete )
183 job->invalidatedResults = std::move( job->results );
184 job->results.reset();
185 job->complete =
false;
192 replaceSourceInternal( source,
false );
197 return replaceSourceInternal( source,
true );
209 QString sourceId = generator->
sourceId();
211 for (
auto &job : mJobs )
213 if ( job->generator && job->generator->sourceId() == sourceId )
217 if ( clearPreviousResults )
219 job->results.reset();
220 job->complete =
false;
222 else if ( job->results )
224 job->results->copyPropertiesFromGenerator( generator.get() );
226 job->generator = generator.get();
229 for (
auto it = mGenerators.begin(); it != mGenerators.end(); )
231 if ( ( *it )->sourceId() == sourceId )
232 it = mGenerators.erase( it );
236 mGenerators.emplace_back( std::move( generator ) );
247 mStatus = Generating;
249 connect( &mFutureWatcher, &QFutureWatcher<void>::finished,
this, &QgsProfilePlotRenderer::onGeneratingFinished );
251 mFuture = QtConcurrent::map( mJobs, generateProfileStatic );
252 mFutureWatcher.setFuture( mFuture );
257 double min = std::numeric_limits< double >::max();
258 double max = std::numeric_limits< double >::lowest();
259 for (
const auto &job : mJobs )
261 if ( job->complete && job->results )
264 min = std::min( min, jobRange.
lower() );
265 max = std::max( max, jobRange.
upper() );
273 QImage res( width, height, QImage::Format_ARGB32_Premultiplied );
274 res.setDotsPerMeterX( 96 / 25.4 * 1000 );
275 res.setDotsPerMeterY( 96 / 25.4 * 1000 );
276 res.fill( Qt::transparent );
283 render( context, width, height, distanceMin, distanceMax, zMin, zMax, sourceId );
291 QPainter *painter = context.
painter();
297 QTransform transform;
298 transform.translate( 0, height );
299 transform.scale( width / ( distanceMax - distanceMin ), -height / ( zMax - zMin ) );
300 transform.translate( -distanceMin, -zMin );
306 for (
auto &job : mJobs )
308 if ( ( sourceId.isEmpty() || job->generator->sourceId() == sourceId ) )
311 if ( job->complete && job->results )
313 job->results->renderResults( profileRenderContext );
315 else if ( !job->complete && job->invalidatedResults )
318 job->invalidatedResults->renderResults( profileRenderContext );
329 return bestSnapResult;
331 double bestSnapDistance = std::numeric_limits< double >::max();
333 for (
const auto &job : mJobs )
336 if ( job->complete && job->results )
344 if ( snapDistance < bestSnapDistance )
346 bestSnapDistance = snapDistance;
347 bestSnapResult = jobSnapResult;
354 return bestSnapResult;
359 QVector<QgsProfileIdentifyResults> res;
363 for (
const auto &job : mJobs )
366 if ( job->complete && job->results )
368 res.append( job->results->identify( point, context ) );
378 QVector<QgsProfileIdentifyResults> res;
382 for (
const auto &job : mJobs )
385 if ( job->complete && job->results )
387 res.append( job->results->identify( distanceRange, elevationRange, context ) );
395void QgsProfilePlotRenderer::onGeneratingFinished()
401void QgsProfilePlotRenderer::generateProfileStatic( std::unique_ptr< ProfileJob > &job )
406 Q_ASSERT( job->generator );
408 job->generator->generateProfile( job->context );
410 job->results.reset( job->generator->takeResults() );
411 job->complete =
true;
412 job->invalidatedResults.reset();
@ RespectsMaximumErrorMapUnit
Generated profile respects the QgsProfileGenerationContext::maximumErrorMapUnits() property.
@ RespectsElevationRange
Generated profile respects the QgsProfileGenerationContext::elevationRange() property.
@ RespectsDistanceRange
Generated profile respects the QgsProfileGenerationContext::distanceRange() property.
@ Antialiasing
Use antialiasing while drawing.
virtual QString sourceId() const =0
Returns a unique identifier representing the source of the profile.
Interface for classes which can generate elevation profiles.
virtual QgsAbstractProfileGenerator * createProfileGenerator(const QgsProfileRequest &request)=0
Given a profile request, returns a new profile generator ready for generating elevation profiles.
QgsRange which stores a range of double values.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Encapsulates the context in which an elevation profile is to be generated.
double maximumErrorMapUnits() const
Returns the maximum allowed error in the generated result, in profile curve map units.
QgsDoubleRange elevationRange() const
Returns the range of elevations to include in the generation.
QgsDoubleRange distanceRange() const
Returns the range of distances to include in the generation.
Encapsulates the context of identifying profile results.
QgsProfileSnapResult snapPoint(const QgsProfilePoint &point, const QgsProfileSnapContext &context)
Snap a point to the results.
void render(QgsRenderContext &context, double width, double height, double distanceMin, double distanceMax, double zMin, double zMax, const QString &sourceId=QString())
Renders a portion of the profile using the specified render context.
void regenerateInvalidatedResults()
Starts a background regeneration of any invalidated results and immediately returns.
QImage renderToImage(int width, int height, double distanceMin, double distanceMax, double zMin, double zMax, const QString &sourceId=QString())
Renders a portion of the profile to an image with the given width and height.
void cancelGenerationWithoutBlocking()
Triggers cancellation of the generation job without blocking.
void invalidateAllRefinableSources()
Invalidates previous results from all refinable sources.
void cancelGeneration()
Stop the generation job - does not return until the job has terminated.
QgsProfilePlotRenderer(const QList< QgsAbstractProfileSource * > &sources, const QgsProfileRequest &request)
Constructor for QgsProfilePlotRenderer, using the provided list of profile sources to generate the re...
void startGeneration()
Start the generation job and immediately return.
QgsDoubleRange zRange() const
Returns the limits of the retrieved elevation values.
QVector< QgsProfileIdentifyResults > identify(const QgsProfilePoint &point, const QgsProfileIdentifyContext &context)
Identify results visible at the specified profile point.
void waitForFinished()
Block until the current job has finished.
~QgsProfilePlotRenderer() override
bool isActive() const
Returns true if the generation job is currently running in background.
QStringList sourceIds() const
Returns the ordered list of source IDs for the sources used by the renderer.
bool invalidateResults(QgsAbstractProfileSource *source)
Invalidates the profile results from the source with matching ID.
void replaceSource(QgsAbstractProfileSource *source)
Replaces the existing source with matching ID.
void setContext(const QgsProfileGenerationContext &context)
Sets the context in which the profile generation will occur.
void generationFinished()
Emitted when the profile generation is finished (or canceled).
Encapsulates a point on a distance-elevation profile.
double elevation() const SIP_HOLDGIL
Returns the elevation of the point.
double distance() const SIP_HOLDGIL
Returns the distance of the point.
Abstract base class for storage of elevation profiles.
void setWorldTransform(const QTransform &transform)
Sets the transform from world coordinates to painter coordinates.
void setDistanceRange(const QgsDoubleRange &range)
Sets the range of distances to include in the render.
void setElevationRange(const QgsDoubleRange &range)
Sets the range of elevations to include in the render.
Encapsulates properties and constraints relating to fetching elevation profiles from different source...
QgsCurve * profileCurve() const
Returns the cross section profile curve, which represents the line along which the profile should be ...
Encapsulates the context of snapping a profile point.
double displayRatioElevationVsDistance
Display ratio of elevation vs distance units.
Encapsulates results of snapping a profile point.
bool isValid() const
Returns true if the result is a valid point.
QgsProfilePoint snappedPoint
Snapped point.
T lower() const
Returns the lower bound of the range.
T upper() const
Returns the upper bound of the range.
Contains information about the context of a rendering operation.
QPainter * painter()
Returns the destination QPainter for the render operation.
void setPainterFlagsUsingContext(QPainter *painter=nullptr) const
Sets relevant flags on a destination painter, using the flags and settings currently defined for the ...
void setFlag(Qgis::RenderContextFlag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected)
static QgsRenderContext fromQPainter(QPainter *painter)
Creates a default render context given a pixel based QPainter destination.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)