CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
HttpStorageMaker Class Reference
Inheritance diagram for HttpStorageMaker:
StorageMaker

Public Member Functions

virtual Storageopen (const std::string &proto, const std::string &path, int mode) override
 
- Public Member Functions inherited from StorageMaker
virtual bool check (const std::string &proto, const std::string &path, IOOffset *size=0)
 
virtual void setDebugLevel (unsigned int debugLevel)
 
virtual void setTimeout (unsigned int timeout)
 
virtual void stagein (const std::string &proto, const std::string &path)
 
 StorageMaker (void)
 
virtual ~StorageMaker (void)
 

Detailed Description

Definition at line 6 of file HttpStorageMaker.cc.

Member Function Documentation

virtual Storage* HttpStorageMaker::open ( const std::string &  proto,
const std::string &  path,
int  mode 
)
inlineoverridevirtual

Implements StorageMaker.

Definition at line 9 of file HttpStorageMaker.cc.

References f, RemoteFile::get(), StorageFactory::get(), RemoteFile::local(), AlCaHLTBitMon_QueryRunRegistry::string, groupFilesInBlocks::temp, and StorageFactory::tempDir().

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  }
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