Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
6b38f6cc
Commit
6b38f6cc
authored
8 years ago
by
Eric Cano
Browse files
Options
Downloads
Patches
Plain Diff
Added forgotten new file from previous commit.
parent
7110d9ca
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
objectstore/ArchiveFileSerDeser.hpp
+83
-0
83 additions, 0 deletions
objectstore/ArchiveFileSerDeser.hpp
with
83 additions
and
0 deletions
objectstore/ArchiveFileSerDeser.hpp
0 → 100644
+
83
−
0
View file @
6b38f6cc
/*
* The CERN Tape Archive (CTA) project
* Copyright (C) 2015 CERN
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include
"common/UserIdentity.hpp"
#include
"objectstore/cta.pb.h"
#include
"common/dataStructures/TapeFile.hpp"
#include
"EntryLogSerDeser.hpp"
#include
"TapeFileSerDeser.hpp"
#include
"DiskFileInfoSerDeser.hpp"
#include
<string>
#include
<stdint.h>
#include
<limits>
namespace
cta
{
namespace
objectstore
{
/**
* A decorator class of scheduler's creation log adding serialization.
*/
class
ArchiveFileSerDeser
:
public
cta
::
common
::
dataStructures
::
ArchiveFile
{
public:
ArchiveFileSerDeser
()
:
cta
::
common
::
dataStructures
::
ArchiveFile
()
{}
ArchiveFileSerDeser
(
const
cta
::
common
::
dataStructures
::
ArchiveFile
&
af
)
:
cta
::
common
::
dataStructures
::
ArchiveFile
(
af
)
{}
operator
cta
::
common
::
dataStructures
::
ArchiveFile
()
{
return
cta
::
common
::
dataStructures
::
ArchiveFile
(
*
this
);
}
void
serialize
(
cta
::
objectstore
::
serializers
::
ArchiveFile
&
osaf
)
const
{
osaf
.
set_archivefileid
(
archiveFileID
);
osaf
.
set_creationtime
(
creationTime
);
osaf
.
set_checksumtype
(
checksumType
);
osaf
.
set_checksumvalue
(
checksumValue
);
osaf
.
set_creationtime
(
creationTime
);
DiskFileInfoSerDeser
dfisd
(
diskFileInfo
);
dfisd
.
serialize
(
*
osaf
.
mutable_diskfileinfo
());
osaf
.
set_diskfileid
(
diskFileId
);
osaf
.
set_diskinstance
(
diskInstance
);
osaf
.
set_filesize
(
fileSize
);
osaf
.
set_reconciliationtime
(
reconciliationTime
);
osaf
.
set_storageclass
(
storageClass
);
for
(
auto
&
tf
:
tapeFiles
)
TapeFileSerDeser
(
tf
.
second
).
serialize
(
*
osaf
.
add_tapefiles
());
}
void
deserialize
(
const
cta
::
objectstore
::
serializers
::
ArchiveFile
&
osaf
)
{
tapeFiles
.
clear
();
archiveFileID
=
osaf
.
archivefileid
();
creationTime
=
osaf
.
creationtime
();
checksumType
=
osaf
.
checksumtype
();
checksumValue
=
osaf
.
checksumvalue
();
diskFileId
=
osaf
.
diskfileid
();
DiskFileInfoSerDeser
dfisd
;
dfisd
.
deserialize
(
osaf
.
diskfileinfo
());
diskFileInfo
=
dfisd
;
diskInstance
=
osaf
.
diskinstance
();
// TODO rename to filesize.
fileSize
=
osaf
.
filesize
();
reconciliationTime
=
osaf
.
reconciliationtime
();
storageClass
=
osaf
.
storageclass
();
for
(
auto
tf
:
osaf
.
tapefiles
())
{
TapeFileSerDeser
tfsd
;
tfsd
.
deserialize
(
tf
);
tapeFiles
[
tfsd
.
copyNb
]
=
tfsd
;
}
}
};
}}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment