src
Utilities
StorageFactory
plugins
HttpStorageMaker.cc
Go to the documentation of this file.
1
#include "
Utilities/StorageFactory/interface/StorageMaker.h
"
2
#include "
Utilities/StorageFactory/interface/StorageMakerFactory.h
"
3
#include "
Utilities/StorageFactory/interface/StorageFactory.h
"
4
#include "
Utilities/StorageFactory/interface/RemoteFile.h
"
5
6
namespace
edm::storage
{
7
class
HttpStorageMaker
:
public
StorageMaker
{
8
public
:
9
std::unique_ptr<Storage>
open
(
const
std::string
&proto,
10
const
std::string
&
path
,
11
int
mode
,
12
const
AuxSettings
&)
const override
{
13
std::string
temp
;
14
const
StorageFactory
*
f
=
StorageFactory::get
();
15
int
localfd =
RemoteFile::local
(
f
->tempDir(),
temp
);
16
std::string
newurl((proto ==
"web"
?
"http"
: proto) +
":"
+
path
);
17
const
char
*curlopts[] = {
"curl"
,
"-L"
,
"-f"
,
"-o"
,
temp
.c_str(),
"-q"
,
"-s"
,
"--url"
, newurl.c_str(),
nullptr
};
18
19
return
RemoteFile::get
(localfd,
temp
, (
char
**)curlopts,
mode
);
20
}
21
};
22
}
// namespace edm::storage
23
24
using namespace
edm::storage
;
25
DEFINE_EDM_PLUGIN
(
StorageMakerFactory
,
HttpStorageMaker
,
"ftp"
);
edm::storage::HttpStorageMaker::open
std::unique_ptr< Storage > open(const std::string &proto, const std::string &path, int mode, const AuxSettings &) const override
Definition:
HttpStorageMaker.cc:9
edm::storage::RemoteFile::get
static std::unique_ptr< Storage > get(int localfd, const std::string &name, char **cmd, int mode)
Definition:
RemoteFile.cc:80
edm::storage::StorageMaker::AuxSettings
Definition:
StorageMaker.h:12
castor_dqm_sourceclient_file_cfg.path
path
Definition:
castor_dqm_sourceclient_file_cfg.py:37
StorageMakerFactory.h
groupFilesInBlocks.temp
list temp
Definition:
groupFilesInBlocks.py:142
edm::storage::StorageMaker
Definition:
StorageMaker.h:10
edm::storage::HttpStorageMaker
Definition:
HttpStorageMaker.cc:7
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
RemoteFile.h
ALCARECOPromptCalibProdSiPixelAli0T_cff.mode
mode
Definition:
ALCARECOPromptCalibProdSiPixelAli0T_cff.py:96
edmplugin::PluginFactory
Definition:
PluginFactory.h:35
edm::storage::StorageFactory
Definition:
StorageFactory.h:14
f
double f[11][100]
Definition:
MuScleFitUtils.cc:78
edm::storage::RemoteFile::local
static int local(const std::string &tmpdir, std::string &temp)
Definition:
RemoteFile.cc:50
edm::storage
Definition:
XMLUtils.h:19
StorageFactory.h
DEFINE_EDM_PLUGIN
#define DEFINE_EDM_PLUGIN(factory, type, name)
Definition:
PluginFactory.h:123
edm::storage::StorageFactory::get
static const StorageFactory * get(void)
Definition:
StorageFactory.cc:30
StorageMaker.h
Generated for CMSSW Reference Manual by
1.8.14