Skip to content
Snippets Groups Projects
Commit b4722481 authored by Jorge Camarero Vera's avatar Jorge Camarero Vera
Browse files

Resolve "Change Owner Identifier String and System Code of Creating System values in tape labels"

parent 4083ddd5
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
## Summary ## Summary
### Features ### Features
- cta/CTA#23 - Change Owner Identifier String and System Code of Creating System values in tape labels
- cta/CTA#41 - Delete verification_status of tape when tape is reclaimed - cta/CTA#41 - Delete verification_status of tape when tape is reclaimed
- cta/CTA#153 - Allow verification status to be cleared with cta-admin - cta/CTA#153 - Allow verification status to be cleared with cta-admin
- cta/CTA#173 - Update release notes and small changes to refactoring of operation tools cmd line parsing - Compatible with operations 0.4-95 or later - cta/CTA#173 - Update release notes and small changes to refactoring of operation tools cmd line parsing - Compatible with operations 0.4-95 or later
......
...@@ -15,22 +15,23 @@ ...@@ -15,22 +15,23 @@
* submit itself to any jurisdiction. * submit itself to any jurisdiction.
*/ */
#include "castor/tape/tapeserver/file/Structures.hpp"
#include "common/exception/Exception.hpp"
#include <time.h> #include <time.h>
#include <stdio.h> #include <stdio.h>
using namespace castor::tape; #include "version.h"
#include "castor/tape/tapeserver/file/Structures.hpp"
#include "common/exception/Exception.hpp"
#define BASEVERSION "2.1.15" using namespace castor::tape;
void tapeFile::VOL1::fill(std::string VSN, void tapeFile::VOL1::fill(std::string VSN,
unsigned char LBPMethod) { unsigned char LBPMethod) {
setString(m_label, "VOL1"); setString(m_label, "VOL1");
setString(m_VSN, VSN); setString(m_VSN, VSN);
setString(m_lblStandard, "3"); setString(m_lblStandard, "3");
setString(m_ownerID, "CASTOR"); setString(m_ownerID, "CTA");
std::stringstream hexLBP; std::stringstream hexLBP;
hexLBP << std::setfill('0') << std::setw(2) << std::hex hexLBP << std::setfill('0') << std::setw(2) << std::hex
<< std::noshowbase << static_cast<int>(LBPMethod); << std::noshowbase << static_cast<int>(LBPMethod);
setString(m_LBPMethod, hexLBP.str()); setString(m_LBPMethod, hexLBP.str());
...@@ -61,9 +62,7 @@ void tapeFile::VOL1::verify(const char *const expectedLblStandard) { ...@@ -61,9 +62,7 @@ void tapeFile::VOL1::verify(const char *const expectedLblStandard) {
throw cta::exception::Exception("reserved2 is not empty"); throw cta::exception::Exception("reserved2 is not empty");
} }
void tapeFile::HDR1EOF1::fillCommon( void tapeFile::HDR1EOF1::fillCommon(std::string fileId, std::string VSN, int fSeq) {
std::string fileId, std::string VSN, int fSeq) {
setString(m_fileId, fileId); setString(m_fileId, fileId);
setString(m_VSN, VSN); setString(m_VSN, VSN);
setInt(m_fSeq, fSeq); setInt(m_fSeq, fSeq);
...@@ -80,7 +79,7 @@ void tapeFile::HDR1EOF1::fillCommon( ...@@ -80,7 +79,7 @@ void tapeFile::HDR1EOF1::fillCommon(
* overwritten immediately. * overwritten immediately.
*/ */
setDate(m_expirationDate); setDate(m_expirationDate);
setString(m_sysCode, std::string("CASTOR ") + BASEVERSION); /* TODO: CASTOR BASEVERSION */ setString(m_sysCode, std::string("CTA ") + CTA_VERSION);
} }
void tapeFile::HDR1EOF1::verifyCommon() void tapeFile::HDR1EOF1::verifyCommon()
......
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