34constexpr int kDefaultBlockSize = 4096;
60 throw std::runtime_error(
"Cannot call fstat on '" +
fUrl +
"', error: " + std::string(strerror(errno)));
72 throw std::runtime_error(
"Cannot open '" +
fUrl +
"', error: " + std::string(strerror(errno)));
75 if (
fOptions.fBlockSize != ROptions::kUseDefaultBlockSize)
86 throw std::runtime_error(
"Cannot call fstat on '" +
fUrl +
"', error: " + std::string(strerror(errno)));
88 if (info.st_blksize > 0) {
89 fOptions.fBlockSize = info.st_blksize;
91 fOptions.fBlockSize = kDefaultBlockSize;
98 posix_fadvise(
fFileDes, 0, 0,
value ? POSIX_FADV_RANDOM : POSIX_FADV_SEQUENTIAL);
107 thread_local bool uring_failed =
false;
111 std::vector<RIoUring::RReadEvent> reads;
113 for (std::size_t i = 0; i < nReq; ++i) {
122 for (std::size_t i = 0; i < nReq; ++i) {
123 ioVec[i].
fOutBytes = reads.at(i).fOutBytes;
127 catch(
const std::runtime_error &
e) {
128 Warning(
"RIoUring",
"io_uring is unexpectedly not available because:\n%s",
e.what());
130 "io_uring setup failed, falling back to blocking I/O in ReadV");
140 size_t total_bytes = 0;
150 throw std::runtime_error(
"Cannot read from '" +
fUrl +
"', error: " + std::string(strerror(errno)));
151 }
else if (res == 0) {
154 R__ASSERT(
static_cast<size_t>(res) <= nbytes);
155 buffer =
reinterpret_cast<unsigned char *
>(buffer) + res;
#define R__ASSERT(e)
Checks condition e and reports a fatal error if it's false.
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 value
void SubmitReadsAndWait(RReadEvent *readEvents, unsigned int nReads)
Submit a number of read events and wait for completion.
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.
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...
void SetDiscourageReadAheadImpl(bool value) final
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.
static std::string GetLocation(std::string_view url)
Returns only the file location, e.g. "server/file" for http://server/file.
RRawFile(std::string_view url, ROptions options)
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.
int fFileDes
The file descriptor.
std::uint64_t fOffset
The file offset.
void * fBuffer
The destination for reading.
std::size_t fSize
The number of desired bytes.
Used for vector reads from multiple offsets into multiple buffers.
std::size_t fOutBytes
The number of actually read bytes, set by ReadV().
std::size_t fSize
The number of desired bytes.
void * fBuffer
The destination for reading.
std::uint64_t fOffset
The file offset.
On construction, an ROptions parameter can customize the RRawFile behavior.