Skip to content
Snippets Groups Projects
Commit 44eaa539 authored by Julien Osman's avatar Julien Osman
Browse files

FIX: Prevent XMLMetadataSupplier from being copied

The class XMLMetadataSupplier belongs to a public hierarchy,
it should not be possible to copy it.
parent 833636d3
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,8 @@ class OTBMetadata_EXPORT XMLMetadataSupplier ...@@ -43,6 +43,8 @@ class OTBMetadata_EXPORT XMLMetadataSupplier
{ {
public: public:
XMLMetadataSupplier(const std::string &); XMLMetadataSupplier(const std::string &);
XMLMetadataSupplier(const XMLMetadataSupplier &) = delete;
XMLMetadataSupplier& operator=(const XMLMetadataSupplier&) = delete;
/** /**
* @brief Get the metadata value corresponding to a given path * @brief Get the metadata value corresponding to a given path
......
...@@ -549,7 +549,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds ...@@ -549,7 +549,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds
std::string ManifestFilePath = mds->GetResourceFile(std::string("manifest\\.safe")); std::string ManifestFilePath = mds->GetResourceFile(std::string("manifest\\.safe"));
if (!ManifestFilePath.empty()) if (!ManifestFilePath.empty())
{ {
XMLMetadataSupplier ManifestMS = XMLMetadataSupplier(ManifestFilePath); XMLMetadataSupplier ManifestMS(ManifestFilePath);
m_Imd.Add(MDTime::ProductionDate, m_Imd.Add(MDTime::ProductionDate,
ManifestMS.GetFirstAs<MetaData::Time>("xfdu:XFDU.metadataSection.metadataObject_#.metadataWrap.xmlData.safe:processing.start")); ManifestMS.GetFirstAs<MetaData::Time>("xfdu:XFDU.metadataSection.metadataObject_#.metadataWrap.xmlData.safe:processing.start"));
m_Imd.Add(MDTime::AcquisitionDate, m_Imd.Add(MDTime::AcquisitionDate,
...@@ -569,7 +569,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds ...@@ -569,7 +569,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds
+ std::string("-.*\\.xml")); + std::string("-.*\\.xml"));
if (AnnotationFilePath.empty()) if (AnnotationFilePath.empty())
otbGenericExceptionMacro(MissingMetadataException,<<"Missing Annotation file for band '"<<swath<<"'"); otbGenericExceptionMacro(MissingMetadataException,<<"Missing Annotation file for band '"<<swath<<"'");
XMLMetadataSupplier AnnotationMS = XMLMetadataSupplier(AnnotationFilePath); XMLMetadataSupplier AnnotationMS(AnnotationFilePath);
sarParam.azimuthFmRate = this->GetAzimuthFmRate(AnnotationMS); sarParam.azimuthFmRate = this->GetAzimuthFmRate(AnnotationMS);
sarParam.dopplerCentroid = this->GetDopplerCentroid(AnnotationMS); sarParam.dopplerCentroid = this->GetDopplerCentroid(AnnotationMS);
...@@ -587,7 +587,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds ...@@ -587,7 +587,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds
+ itksys::SystemTools::GetFilenameName(AnnotationFilePath); + itksys::SystemTools::GetFilenameName(AnnotationFilePath);
if (CalibrationFilePath.empty()) if (CalibrationFilePath.empty())
otbGenericExceptionMacro(MissingMetadataException,<<"Missing Calibration file for band '"<<swath<<"'"); otbGenericExceptionMacro(MissingMetadataException,<<"Missing Calibration file for band '"<<swath<<"'");
XMLMetadataSupplier CalibrationMS = XMLMetadataSupplier(CalibrationFilePath); XMLMetadataSupplier CalibrationMS(CalibrationFilePath);
m_Imd.Add(MDNum::CalScale, CalibrationMS.GetAs<double>("calibration.calibrationInformation.absoluteCalibrationConstant")); m_Imd.Add(MDNum::CalScale, CalibrationMS.GetAs<double>("calibration.calibrationInformation.absoluteCalibrationConstant"));
sarParam.calibrationVectors = this->GetCalibrationVector(CalibrationMS); sarParam.calibrationVectors = this->GetCalibrationVector(CalibrationMS);
std::istringstream(CalibrationMS.GetAs<std::string>("calibration.adsHeader.startTime")) >> sarParam.calibrationStartTime; std::istringstream(CalibrationMS.GetAs<std::string>("calibration.adsHeader.startTime")) >> sarParam.calibrationStartTime;
...@@ -599,7 +599,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds ...@@ -599,7 +599,7 @@ void Sentinel1ImageMetadataInterface::Parse(const MetadataSupplierInterface *mds
+ itksys::SystemTools::GetFilenameName(AnnotationFilePath); + itksys::SystemTools::GetFilenameName(AnnotationFilePath);
if (NoiseFilePath.empty()) if (NoiseFilePath.empty())
otbGenericExceptionMacro(MissingMetadataException,<<"Missing Noise file for band '"<<swath<<"'"); otbGenericExceptionMacro(MissingMetadataException,<<"Missing Noise file for band '"<<swath<<"'");
XMLMetadataSupplier NoiseMS = XMLMetadataSupplier(NoiseFilePath); XMLMetadataSupplier NoiseMS(NoiseFilePath);
m_Imd.Bands[bandId].Add(MDGeom::SAR, sarParam); m_Imd.Bands[bandId].Add(MDGeom::SAR, sarParam);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment