Skip to content
Snippets Groups Projects
Commit 0256b384 authored by Eric Wayne Vaandering's avatar Eric Wayne Vaandering Committed by Michael Davis
Browse files

Resolve "Allow VOL1 tape label to read Enstore tape labels"

parent 3c9d12ed
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ Please consult the [database upgrade documentation](https://eoscta.docs.cern.ch/ ...@@ -20,6 +20,7 @@ Please consult the [database upgrade documentation](https://eoscta.docs.cern.ch/
- cta/CTA#1155 - Remove GCC suppresions in DriveGeneric and file/Structures - cta/CTA#1155 - Remove GCC suppresions in DriveGeneric and file/Structures
- cta/CTA#1173 - Remove GCC '-Wno-unused-function' suppresion - cta/CTA#1173 - Remove GCC '-Wno-unused-function' suppresion
- cta/CTA#1166 - Add SCL-RH Repo to CTA CI boot scripts - cta/CTA#1166 - Add SCL-RH Repo to CTA CI boot scripts
- cta/CTA#1185 - Make expectedLabelStandard default argument (for Enstore reads)
### Catalogue Schema ### Catalogue Schema
- cta/CTA#1043 - Add verification column to tape table - cta/CTA#1043 - Add verification column to tape table
......
...@@ -36,14 +36,14 @@ void tapeFile::VOL1::fill(std::string VSN, ...@@ -36,14 +36,14 @@ void tapeFile::VOL1::fill(std::string VSN,
setString(m_LBPMethod, hexLBP.str()); setString(m_LBPMethod, hexLBP.str());
} }
void tapeFile::VOL1::verify() { void tapeFile::VOL1::verify(const char *const expectedLblStandard) {
if (cmpString(m_label, "VOL1")) if (cmpString(m_label, "VOL1"))
throw cta::exception::Exception(std::string("Failed verify for the VOL1: ") + throw cta::exception::Exception(std::string("Failed verify for the VOL1: ") +
tapeFile::toString(m_label)); tapeFile::toString(m_label));
if (!cmpString(m_VSN, "")) if (!cmpString(m_VSN, ""))
throw cta::exception::Exception(std::string("Failed verify for the VSN: ") + throw cta::exception::Exception(std::string("Failed verify for the VSN: ") +
tapeFile::toString(m_VSN)); tapeFile::toString(m_VSN));
const char *const expectedLblStandard = "3";
if (cmpString(m_lblStandard, expectedLblStandard)) if (cmpString(m_lblStandard, expectedLblStandard))
throw cta::exception::Exception( throw cta::exception::Exception(
std::string("Failed verify for the label standard: expected=") + std::string("Failed verify for the label standard: expected=") +
......
...@@ -121,7 +121,7 @@ namespace tape { ...@@ -121,7 +121,7 @@ namespace tape {
/** /**
* Throws an exception if the structure does not match expectations. * Throws an exception if the structure does not match expectations.
*/ */
void verify(); void verify(const char *const expectedLblStandard = "3");
}; };
class VOL1withCrc : public VOL1 { class VOL1withCrc : public VOL1 {
......
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