CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HttpStorageMaker.cc
Go to the documentation of this file.
5 
7 {
8 public:
9  virtual Storage *open (const std::string &proto,
10  const std::string &path,
11  int mode) override
12  {
15  int localfd = RemoteFile::local (f->tempDir(), temp);
16  std::string newurl ((proto == "web" ? "http" : proto) + ":" + path);
17  const char *curlopts [] = {
18  "curl", "-L", "-f", "-o", temp.c_str(), "-q", "-s", "--url",
19  newurl.c_str (), 0
20  };
21 
22  return RemoteFile::get (localfd, temp, (char **) curlopts, mode);
23  }
24 };
25 
virtual Storage * open(const std::string &proto, const std::string &path, int mode) override
static StorageFactory * get(void)
static int local(const std::string &tmpdir, std::string &temp)
Definition: RemoteFile.cc:55
tuple path
else: Piece not in the list, fine.
std::string tempDir(void) const
double f[11][100]
static Storage * get(int localfd, const std::string &name, char **cmd, int mode)
Definition: RemoteFile.cc:90
#define DEFINE_EDM_PLUGIN(factory, type, name)