Logo ROOT  
Reference Guide
RRawFileUnix.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_RRawFileUnix
13#define ROOT_RRawFileUnix
14
15#include <ROOT/RRawFile.hxx>
16#include <ROOT/RStringView.hxx>
17
18#include <cstddef>
19#include <cstdint>
20
21namespace ROOT {
22namespace Internal {
23
24/**
25 * \class RRawFileUnix RRawFileUnix.hxx
26 * \ingroup IO
27 *
28 * The RRawFileUnix class uses POSIX calls to read from a mounted file system. Thus the path name can refer,
29 * for instance, to a named pipe instead of a regular file.
30 */
31class RRawFileUnix : public RRawFile {
32private:
34
35protected:
36 void OpenImpl() final;
37 size_t ReadAtImpl(void *buffer, size_t nbytes, std::uint64_t offset) final;
38 std::uint64_t GetSizeImpl() final;
39 void *MapImpl(size_t nbytes, std::uint64_t offset, std::uint64_t &mapdOffset) final;
40 void UnmapImpl(void *region, size_t nbytes) final;
41
42public:
43 RRawFileUnix(std::string_view url, RRawFile::ROptions options);
44 ~RRawFileUnix();
45 std::unique_ptr<RRawFile> Clone() const final;
46 int GetFeatures() const final { return kFeatureHasSize | kFeatureHasMmap; }
47};
48
49} // namespace Internal
50} // namespace ROOT
51
52#endif
The RRawFileUnix class uses POSIX calls to read from a mounted file system.
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.
std::uint64_t GetSizeImpl() final
Derived classes should return the file size or kUnknownFileSize.
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.
Definition: RRawFile.hxx:40
static constexpr int kFeatureHasMmap
Map() and Unmap() are implemented.
Definition: RRawFile.hxx:51
static constexpr int kFeatureHasSize
GetSize() does not return kUnknownFileSize.
Definition: RRawFile.hxx:49
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition: StringConv.hxx:21
On construction, an ROptions parameter can customize the RRawFile behavior.
Definition: RRawFile.hxx:54