Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
RRawFileDavix.hxx
Go to the documentation of this file.
1// @(#)root/io:$Id$
2// Author: Jakob Blomer
3
4/*************************************************************************
5 * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_RRawFileDavix
13#define ROOT_RRawFileDavix
14
15#include <ROOT/RRawFile.hxx>
16#include <string_view>
17
18#include <cstddef>
19#include <cstdint>
20#include <memory>
21
22namespace ROOT {
23namespace Internal {
24
25struct RDavixFileDes;
26
27/** \class RRawFileDavix RRawFileDavix.hxx
28
29The RRawFileDavix class provides read-only access to remote non-ROOT files. It uses the Davix library for
30the transport layer. It instructs the RRawFile base class to buffer in larger chunks than the default for
31local files, assuming that remote file access has high(er) latency.
32
33*/
34
35class RRawFileDavix : public RRawFile {
36private:
37 std::unique_ptr<Internal::RDavixFileDes> fFileDes;
38
39protected:
40 void OpenImpl() final;
41 size_t ReadAtImpl(void *buffer, size_t nbytes, std::uint64_t offset) final;
42 void ReadVImpl(RIOVec *ioVec, unsigned int nReq) final;
43 std::uint64_t GetSizeImpl() final;
44
45public:
46 RRawFileDavix(std::string_view url, RRawFile::ROptions options);
48 std::unique_ptr<RRawFile> Clone() const final;
49};
50
51} // namespace Internal
52} // namespace ROOT
53
54#endif
std::unique_ptr< Internal::RDavixFileDes > fFileDes
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...
size_t ReadAtImpl(void *buffer, size_t nbytes, std::uint64_t offset) final
Derived classes should implement low-level reading without buffering.
std::unique_ptr< RRawFile > Clone() const final
Create a new RawFile that accesses the same resource. The file pointer is reset to zero.
RRawFileDavix(std::string_view url, RRawFile::ROptions options)
std::uint64_t GetSizeImpl() final
Derived classes should return the file size.
void OpenImpl() final
OpenImpl() is called at most once and before any call to either DoReadAt or DoGetSize.
RRawFile(std::string_view url, ROptions options)
Definition RRawFile.cxx:61
STL class.
STL class.
Used for vector reads from multiple offsets into multiple buffers.
Definition RRawFile.hxx:61
On construction, an ROptions parameter can customize the RRawFile behavior.
Definition RRawFile.hxx:49