Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
67316087
Commit
67316087
authored
Oct 28, 2015
by
Daniele Kruse
Browse files
Added support for eos write files, thus effectively allowing retrieves
parent
c9fec4bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
tapeserver/castor/tape/tapeserver/file/DiskFile.cpp
View file @
67316087
...
...
@@ -200,6 +200,10 @@ WriteFile * DiskFileFactory::createWriteFile(const std::string& path) {
regexResult
=
m_URLLocalFile
.
exec
(
path
);
if
(
regexResult
.
size
())
{
return
new
LocalWriteFile
(
regexResult
[
1
]);
}
// EOS URL?
regexResult
=
m_URLEosFile
.
exec
(
path
);
if
(
regexResult
.
size
())
{
return
new
EosWriteFile
(
regexResult
[
1
]);
}
// RFIO URL?
regexResult
=
m_URLRfioFile
.
exec
(
path
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment