@@ -374,11 +374,11 @@ class GDALTileIndexDataset final : public GDALPamDataset
374
374
{
375
375
std::atomic<int > *pnCompletedJobs = nullptr ;
376
376
std::atomic<bool > *pbSuccess = nullptr ;
377
+ CPLErrorAccumulator *poErrorAccumulator = nullptr ;
377
378
GDALTileIndexDataset *poDS = nullptr ;
378
379
GDALTileIndexDataset::QueueWorkingStates *poQueueWorkingStates =
379
380
nullptr ;
380
381
int nBandNrMax = 0 ;
381
- std::string *posErrorMsg = nullptr ;
382
382
383
383
int nXOff = 0 ;
384
384
int nYOff = 0 ;
@@ -4624,6 +4624,7 @@ CPLErr GDALTileIndexDataset::IRasterIO(
4624
4624
4625
4625
if (m_bLastMustUseMultiThreading)
4626
4626
{
4627
+ CPLErrorAccumulator oErrorAccumulator;
4627
4628
std::atomic<bool > bSuccess = true ;
4628
4629
const int nContributingSources =
4629
4630
static_cast <int >(m_aoSourceDesc.size ());
@@ -4654,16 +4655,15 @@ CPLErr GDALTileIndexDataset::IRasterIO(
4654
4655
4655
4656
auto oQueue = psThreadPool->CreateJobQueue ();
4656
4657
std::atomic<int > nCompletedJobs = 0 ;
4657
- std::string osErrorMsg;
4658
4658
for (auto &oSourceDesc : m_aoSourceDesc)
4659
4659
{
4660
4660
auto psJob = new RasterIOJob ();
4661
4661
psJob->poDS = this ;
4662
4662
psJob->pbSuccess = &bSuccess;
4663
+ psJob->poErrorAccumulator = &oErrorAccumulator;
4663
4664
psJob->pnCompletedJobs = &nCompletedJobs;
4664
4665
psJob->poQueueWorkingStates = &m_oQueueWorkingStates;
4665
4666
psJob->nBandNrMax = nBandNrMax;
4666
- psJob->posErrorMsg = &osErrorMsg;
4667
4667
psJob->nXOff = nXOff;
4668
4668
psJob->nYOff = nYOff;
4669
4669
psJob->nXSize = nXSize;
@@ -4702,10 +4702,7 @@ CPLErr GDALTileIndexDataset::IRasterIO(
4702
4702
}
4703
4703
}
4704
4704
4705
- if (!osErrorMsg.empty ())
4706
- {
4707
- CPLError (CE_Failure, CPLE_AppDefined, " %s" , osErrorMsg.c_str ());
4708
- }
4705
+ oErrorAccumulator.ReplayErrors ();
4709
4706
4710
4707
if (bSuccess && psExtraArg->pfnProgress )
4711
4708
{
@@ -4754,22 +4751,16 @@ void GDALTileIndexDataset::RasterIOJob::Func(void *pData)
4754
4751
4755
4752
SourceDesc oSourceDesc;
4756
4753
4757
- std::vector<CPLErrorHandlerAccumulatorStruct> aoErrors;
4758
- CPLInstallErrorHandlerAccumulator (aoErrors);
4754
+ auto oAccumulator = psJob->poErrorAccumulator ->InstallForCurrentScope ();
4755
+ CPL_IGNORE_RET_VAL (oAccumulator);
4756
+
4759
4757
const bool bCanOpenSource =
4760
4758
psJob->poDS ->GetSourceDesc (osTileName, oSourceDesc,
4761
4759
&psJob->poQueueWorkingStates ->oMutex ) &&
4762
4760
oSourceDesc.poDS ;
4763
- CPLUninstallErrorHandlerAccumulator ();
4764
4761
4765
4762
if (!bCanOpenSource)
4766
4763
{
4767
- if (!aoErrors.empty ())
4768
- {
4769
- std::lock_guard oLock (psJob->poQueueWorkingStates ->oMutex );
4770
- if (psJob->posErrorMsg ->empty ())
4771
- *(psJob->posErrorMsg ) = aoErrors.back ().msg ;
4772
- }
4773
4764
*psJob->pbSuccess = false ;
4774
4765
}
4775
4766
else
@@ -4799,8 +4790,6 @@ void GDALTileIndexDataset::RasterIOJob::Func(void *pData)
4799
4790
dfYSize = psJob->psExtraArg ->dfYSize ;
4800
4791
}
4801
4792
4802
- aoErrors.clear ();
4803
- CPLInstallErrorHandlerAccumulator (aoErrors);
4804
4793
const bool bRenderOK =
4805
4794
psJob->poDS ->RenderSource (
4806
4795
oSourceDesc, /* bNeedInitBuffer = */ true , psJob->nBandNrMax ,
@@ -4810,16 +4799,9 @@ void GDALTileIndexDataset::RasterIOJob::Func(void *pData)
4810
4799
psJob->nBandCount , psJob->panBandMap , psJob->nPixelSpace ,
4811
4800
psJob->nLineSpace , psJob->nBandSpace , &sArg ,
4812
4801
*(poWorkingState.get ())) == CE_None;
4813
- CPLUninstallErrorHandlerAccumulator ();
4814
4802
4815
4803
if (!bRenderOK)
4816
4804
{
4817
- if (!aoErrors.empty ())
4818
- {
4819
- std::lock_guard oLock (psJob->poQueueWorkingStates ->oMutex );
4820
- if (psJob->posErrorMsg ->empty ())
4821
- *(psJob->posErrorMsg ) = aoErrors.back ().msg ;
4822
- }
4823
4805
*psJob->pbSuccess = false ;
4824
4806
}
4825
4807
0 commit comments