51   return std::make_unique<RRawFileUnix>(fUrl, fOptions);
 
 
   55   return kFeatureHasSize | kFeatureHasMmap;
 
 
   68      throw std::runtime_error(
"Cannot call fstat on '" + fUrl + 
"', error: " + std::string(
strerror(
errno)));
 
 
   80      throw std::runtime_error(std::string(
"Cannot perform memory mapping: ") + 
strerror(
errno));
 
 
   89   fFileDes = open(GetLocation(fUrl).c_str(), 
O_RDONLY);
 
   92      throw std::runtime_error(
"Cannot open '" + fUrl + 
"', error: " + std::string(
strerror(
errno)));
 
   95   if (fOptions.fBlockSize >= 0)
 
  106      throw std::runtime_error(
"Cannot call fstat on '" + fUrl + 
"', error: " + std::string(
strerror(
errno)));
 
  108   if (
info.st_blksize > 0) {
 
  109      fOptions.fBlockSize = 
info.st_blksize;
 
 
  122         std::vector<RIoUring::RReadEvent> 
reads;
 
  124         for (std::size_t i = 0; i < 
nReq; ++i) {
 
  129            ev.fFileDes = fFileDes;
 
  133         for (std::size_t i = 0; i < 
nReq; ++i) {
 
  138      catch(
const std::runtime_error &
e) {
 
  139         Warning(
"RIoUring", 
"io_uring is unexpectedly not available because:\n%s", 
e.what());
 
  141              "io_uring setup failed, falling back to blocking I/O in ReadV");
 
 
  161         throw std::runtime_error(
"Cannot read from '" + fUrl + 
"', error: " + std::string(
strerror(
errno)));
 
  162      } 
else if (res == 0) {
 
  166      buffer = 
reinterpret_cast<unsigned char *
>(buffer) + res;
 
 
  178      throw std::runtime_error(std::string(
"Cannot remove memory mapping: ") + 
strerror(
errno));
 
 
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
 
void Warning(const char *location, const char *msgfmt,...)
Use this function in warning situations.
 
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
 
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
 
void UnmapImpl(void *region, size_t nbytes) final
Derived classes with mmap support must be able to unmap the memory area handed out by Map()
 
std::unique_ptr< RRawFile > Clone() const final
Create a new RawFile that accesses the same resource. The file pointer is reset to zero.
 
RRawFileUnix(std::string_view url, RRawFile::ROptions options)
 
std::uint64_t GetSizeImpl() final
Derived classes should return the file size or kUnknownFileSize.
 
void ReadVImpl(RIOVec *ioVec, unsigned int nReq) final
By default implemented as a loop of ReadAt calls but can be overwritten, e.g. XRootD or DAVIX impleme...
 
int GetFeatures() const final
Derived classes shall inform the user about the supported functionality, which can possibly depend on...
 
void * MapImpl(size_t nbytes, std::uint64_t offset, std::uint64_t &mapdOffset) final
If a derived class supports mmap, the MapImpl and UnmapImpl calls are supposed to be implemented,...
 
void OpenImpl() final
OpenImpl() is called at most once and before any call to either DoReadAt or DoGetSize.
 
size_t ReadAtImpl(void *buffer, size_t nbytes, std::uint64_t offset) final
Derived classes should implement low-level reading without buffering.
 
The RRawFile provides read-only access to local and remote files.
 
virtual void ReadVImpl(RIOVec *ioVec, unsigned int nReq)
By default implemented as a loop of ReadAt calls but can be overwritten, e.g. XRootD or DAVIX impleme...
 
Basic read event composed of IO data and a target file descriptor.
 
Used for vector reads from multiple offsets into multiple buffers.
 
On construction, an ROptions parameter can customize the RRawFile behavior.