CMS 3D CMS Logo

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

Public Member Functions

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

Private Member Functions

std::string normalise (const std::string &path)
 

Detailed Description

Definition at line 14 of file RFIOStorageMaker.cc.

Constructor & Destructor Documentation

RFIOStorageMaker::RFIOStorageMaker ( )
inline

Definition at line 68 of file RFIOStorageMaker.cc.

References Cthread_init(), alignCSCRings::e, reco::get(), edm::Service< T >::isAvailable(), and edm::SiteLocalConfig::rfioType().

69  {
70  std::string rfiotype("");
71  bool err = false;
72  try
73  {
75  if (!siteconfig.isAvailable())
76  err = true;
77  else
78  rfiotype = siteconfig->rfioType();
79  }
80  catch (const cms::Exception &e)
81  {
82  err = true;
83  }
84 
85  if (err)
86  edm::LogWarning("RFIOStorageMaker")
87  << "SiteLocalConfig Failed: SiteLocalConfigService is not loaded yet."
88  << "Will use default 'castor' RFIO implementation.";
89 
90  if (rfiotype.empty())
91  rfiotype = "castor";
92 
93  // Force Castor to move control messages out of client TCP buffers faster.
94  putenv(const_cast<char *>("RFIO_TCP_NODELAY=1"));
95 
96  RFIOPluginFactory::get()->create(rfiotype);
97  Cthread_init();
98  }
int Cthread_init(void)
bool isAvailable() const
Definition: Service.h:47
virtual std::string const rfioType(void) const =0
T get(const Candidate &c)
Definition: component.h:56

Member Function Documentation

virtual bool RFIOStorageMaker::check ( const std::string &  ,
const std::string &  path,
IOOffset size = 0 
)
inlinevirtual

Reimplemented from StorageMaker.

Definition at line 168 of file RFIOStorageMaker.cc.

References normalise(), rfio_access(), rfio_stat64(), and findQualityFiles::size.

171  {
172  std::string npath = normalise(path);
173  if (rfio_access(npath.c_str (), R_OK) != 0)
174  return false;
175 
176  if (size)
177  {
178  struct stat buf;
179  if (rfio_stat64(npath.c_str (), &buf) != 0)
180  return false;
181 
182  *size = buf.st_size;
183  }
184 
185  return true;
186  }
list path
Definition: scaleCards.py:51
int rfio_access(const char *filepath, int mode)
std::string normalise(const std::string &path)
int rfio_stat64(const char *path, struct stat *statbuf)
tuple size
Write out results.
std::string RFIOStorageMaker::normalise ( const std::string &  path)
inlineprivate

Normalise new RFIO TURL style. Handle most obvious mis-spellings like excess '/' characters and /dpm vs. /castor syntax differences.

Definition at line 19 of file RFIOStorageMaker.cc.

References trackerHits::c, alignCSCRings::e, h, prof2calltree::prefix, alignCSCRings::s, and createPayload::suffix.

Referenced by check(), open(), and stagein().

20  {
21  std::string prefix;
22  // look for options
23  size_t suffix = path.find("?");
24  if (suffix == std::string::npos)
25  {
26  // convert old syntax to new but leave "host:/path" alone
27  suffix = 0;
28  if (path.find (":") == std::string::npos)
29  {
30  size_t e = path.find_first_not_of ("/");
31  if (e != std::string::npos)
32  {
33  size_t c = path.find("/castor/");
34  if ((c != std::string::npos) && (c == e-1))
35  {
36  // /castor/path -> rfio:///?path=/castor/path
37  suffix = c;
38  prefix = "rfio:///?path=";
39  }
40  else
41  {
42  c = path.find("/dpm/");
43  if ((c != std::string::npos) && (c == e-1))
44  {
45  // /dpm/path -> rfio:///dpm/path
46  suffix = c;
47  prefix = "rfio://";
48  }
49  }
50  }
51  }
52  }
53  else
54  {
55  // new syntax, leave alone except normalize host
56  prefix = path.substr(0, suffix);
57  size_t h = prefix.find_first_not_of('/');
58  size_t s = prefix.find_last_not_of('/');
59  prefix.resize(s+1);
60  prefix.replace(0,h,"rfio://");
61  prefix += '/';
62  }
63 
64  return prefix + path.substr(suffix);
65  }
list path
Definition: scaleCards.py:51
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
virtual Storage* RFIOStorageMaker::open ( const std::string &  proto,
const std::string &  path,
int  mode 
)
inlinevirtual

Implements StorageMaker.

Definition at line 100 of file RFIOStorageMaker.cc.

References StorageFactory::CACHE_HINT_STORAGE, StorageFactory::cacheHint(), f, mergeVDriftHistosByStation::file, StorageFactory::get(), normalise(), IOFlags::OpenUnbuffered, StorageFactory::READ_HINT_READAHEAD, StorageFactory::readHint(), and StorageFactory::wrapNonLocalFile().

103  {
105  StorageFactory::ReadHint readHint = f->readHint();
106  StorageFactory::CacheHint cacheHint = f->cacheHint();
107 
109  || cacheHint == StorageFactory::CACHE_HINT_STORAGE)
110  mode &= ~IOFlags::OpenUnbuffered;
111  else
113 
115  return f->wrapNonLocalFile(file, proto, std::string(), mode);
116  }
CacheHint cacheHint(void) const
Definition: Storage.h:8
Storage * wrapNonLocalFile(Storage *s, const std::string &proto, const std::string &path, int mode)
static StorageFactory * get(void)
list path
Definition: scaleCards.py:51
std::string normalise(const std::string &path)
double f[11][100]
ReadHint readHint(void) const
virtual void RFIOStorageMaker::stagein ( const std::string &  proto,
const std::string &  path 
)
inlinevirtual

Reimplemented from StorageMaker.

Definition at line 118 of file RFIOStorageMaker.cc.

References cms::Exception::addContext(), normalise(), geometryDiff::opts, rfio_serror(), and serrno.

120  {
121  std::string npath = normalise(path);
122  size_t castor = npath.find("?path=/castor/");
123  size_t rest = npath.find("&");
124  if (proto != "rfio" || castor == std::string::npos)
125  return;
126 
127  castor += 6;
128  size_t len = (rest == std::string::npos ? rest : rest-castor);
129  std::string stagepath(npath, castor, len);
130 
131  stage_options opts;
132  opts.stage_host = getenv("STAGE_HOST");
133  opts.service_class = getenv("STAGE_SVCCLASS");
134  opts.stage_port = 0;
135  opts.stage_version = 2;
136 
137  stage_prepareToGet_filereq req;
138  req.protocol = (char *) "rfio";
139  req.filename = (char *) stagepath.c_str();
140  req.priority = 0;
141 
142  int nresp = 0;
143  stage_prepareToGet_fileresp *resp = 0;
144  int rc = stage_prepareToGet(0, &req, 1, &resp, &nresp, 0, &opts);
145  if (rc < 0) {
146  cms::Exception ex("FileStageInError");
147  ex << "Error while staging in '" << stagepath
148  << "', error was: " << rfio_serror()
149  << " (serrno=" << serrno << ")";
150  ex.addContext("Calling RFIOStorageMaker::stagein()");
151  throw ex;
152  }
153 
154  if (nresp == 1 && resp->errorCode != 0) {
155  cms::Exception ex("FileStageInError");
156  ex << "Error while staging in '" << stagepath
157  << "', stagein error was: " << resp->errorMessage
158  << " (code=" << resp->errorCode << ")";
159  ex.addContext("Calling RFIOStorageMaker::stagein()");
160  throw ex;
161  }
162 
163  free(resp->filename);
164  free(resp->errorMessage);
165  free(resp);
166  }
list path
Definition: scaleCards.py:51
#define serrno
Definition: RFIO.h:10
std::string normalise(const std::string &path)
char * rfio_serror()