47 return std::make_unique<RRawFileUnix>(fUrl, fOptions);
60 throw std::runtime_error(
"Cannot call fstat on '" + fUrl +
"', error: " + std::string(
strerror(
errno)));
69 fFileDes = open(GetLocation(fUrl).c_str(),
O_RDONLY);
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;
102 std::vector<RIoUring::RReadEvent>
reads;
104 for (std::size_t i = 0; i <
nReq; ++i) {
109 ev.fFileDes = fFileDes;
113 for (std::size_t i = 0; i <
nReq; ++i) {
118 catch(
const std::runtime_error &
e) {
119 Warning(
"RIoUring",
"io_uring is unexpectedly not available because:\n%s",
e.what());
121 "io_uring setup failed, falling back to blocking I/O in ReadV");
141 throw std::runtime_error(
"Cannot read from '" + fUrl +
"', error: " + std::string(
strerror(
errno)));
142 }
else if (res == 0) {
146 buffer =
reinterpret_cast<unsigned char *
>(buffer) + res;
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
#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
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 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.