Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TXNetFile.h
Go to the documentation of this file.
1// @(#)root/netx:$Id$
2/*************************************************************************
3 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
4 * All rights reserved. *
5 * *
6 * For the licensing terms see $ROOTSYS/LICENSE. *
7 * For the list of contributors see $ROOTSYS/README/CREDITS. *
8 *************************************************************************/
9
10#ifndef ROOT_TXNetFile
11#define ROOT_TXNetFile
12
13
14//////////////////////////////////////////////////////////////////////////
15// //
16// TXNetFile //
17// //
18// Authors: Alvise Dorigo, Fabrizio Furano //
19// INFN Padova, 2003 //
20// Interfaced to the posix client: G. Ganis, CERN //
21// //
22// TXNetFile is an extension of TNetFile able to deal with new xrootd //
23// server. Its new features are: //
24// - Automatic server kind recognition (xrootd load balancer, xrootd //
25// data server, old rootd) //
26// - Backward compatibility with old rootd server (acts as an old //
27// TNetFile) //
28// - Fault tolerance for read/write operations (read/write timeouts //
29// and retry) //
30// - Internal connection timeout (tunable indipendently from the OS //
31// one) handled by threads //
32// - handling of redirections from server //
33// - Single TCP physical channel for multiple TXNetFile's instances //
34// inside the same application //
35// So, each TXNetFile object client must send messages containing //
36// its ID (streamid). The server, of course, will respond with //
37// messages containing the client's ID, in order to make the client //
38// able to recognize its message by matching its streamid with that //
39// one contained in the server's response. //
40// - Tunable log verbosity level (0 = nothing, 3 = dump read/write //
41// buffers too!) //
42// - Many parameters configurable via TEnv facility (see SetParm() //
43// methods) //
44// //
45//////////////////////////////////////////////////////////////////////////
46
47#include "TNetFile.h"
48#include "TString.h"
49#include "TUrl.h"
50
51class TFileStager;
52class TSocket;
53class XrdClient;
54
55class TXNetFile : public TNetFile {
56
57friend class TXNetSystem;
58
59private:
60 // Static members
61 static Bool_t fgInitDone; // Avoid initializing more than once
62 static Bool_t fgRootdBC; // Control rootd backward compatibility
63 static TFileStager *fgFileStager; // Stager for IsStaged checks
64
65 // Members
66 XrdClient *fClient; // Handle to the client object
67 Bool_t fIsRootd; // Nature of remote file server
68 void *fInitMtx; // Protects fInitDone, serializes the
69 // attempts to Init() for this object only
70
71 // Methods
72 TXNetFile(const TXNetFile&); // Not implemented
73 TXNetFile& operator=(const TXNetFile&); // Not implemented
74 void CreateXClient(const char *url, Option_t *option, Int_t netopt,
75 Bool_t parallelopen);
76
77 Int_t ParseOptions(const char *opts, Int_t &cachesz, Int_t &readaheadsz,
78 Int_t &rmpolicy, Int_t &mxredir, Int_t &rastrategy, Int_t &readtrimblksz);
79
80 // Synchronizes the cache size in XrdClient
81 // XrdClient cannot have a cache size smaller than the one in TFile
83
84 void Init(Bool_t create);
85 Bool_t Open(Option_t *option, Bool_t parallelopen);
86 Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags,
87 Long_t *modtime);
88 Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode);
90
91 // Static methods
92 static void FormUrl(TUrl uut, TString &uu);
94 static void SetEnv();
95
96public:
98 TXNetFile(const char *url, Option_t *option = "", const char *fTitle = "",
99 Int_t compress = 1, Int_t netopt = 0, Bool_t parallelopen = kFALSE,
100 const char *logicalurl = 0);
101
102 virtual ~TXNetFile();
103
104 virtual void Close(const Option_t *opt ="");
105 virtual void ResetCache();
106 virtual void Flush();
107 virtual Int_t GetBytesToPrefetch() const;
108 virtual Bool_t ReadBufferAsync(Long64_t offs, Int_t len);
110 virtual Bool_t IsOpen() const;
111
112 virtual void Print(Option_t *option="") const;
113 virtual Bool_t ReadBuffer(char *buf, Int_t len);
114 virtual Bool_t ReadBuffer(char *buf, Long64_t pos, Int_t len);
115 virtual Bool_t ReadBuffers(char *buf, Long64_t *pos, Int_t *len, Int_t nbuf);
116 virtual Int_t ReOpen(const Option_t *mode);
117 virtual Bool_t WriteBuffer(const char *buffer, Int_t BufferLength);
118
119 ClassDef(TXNetFile,0) // TFile implementation to deal with new xrootd server.
120};
121
122#endif
virtual RooAbsTestStatistic * create(const char *name, const char *title, RooAbsReal &real, RooAbsData &data, const RooArgSet &projDeps, Configuration const &cfg)=0
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
long Long_t
Definition RtypesCore.h:54
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
long long Long64_t
Definition RtypesCore.h:80
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:337
Option_t Option_t option
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 Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
Option_t Option_t TPoint TPoint const char mode
EAsyncOpenStatus
Asynchronous open request status.
Definition TFile.h:64
TString fTitle
Definition TNamed.h:33
A TNetFile is like a normal TFile except that it reads and writes its data via a rootd server (for mo...
Definition TNetFile.h:34
Basic string class.
Definition TString.h:139
This class represents a WWW compatible URL.
Definition TUrl.h:33
TXNetFile is an extension of TNetFile able to deal with new xrootd server.
Definition TXNetFile.h:55
Int_t ParseOptions(const char *opts, Int_t &cachesz, Int_t &readaheadsz, Int_t &rmpolicy, Int_t &mxredir, Int_t &rastrategy, Int_t &readtrimblksz)
Parse input options for cache parameters.
virtual void Print(Option_t *option="") const
Print the local statistics.
void SynchronizeCacheSize()
Synchronize the cache size Alternative purging policy.
static TFileStager * fgFileStager
Definition TXNetFile.h:63
TXNetFile(const TXNetFile &)
Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime)
Override TNetFile::SysStat (see parent's method for more details).
static Bool_t fgInitDone
Definition TXNetFile.h:61
virtual Bool_t ReadBuffers(char *buf, Long64_t *pos, Int_t *len, Int_t nbuf)
Read the nbuf blocks described in arrays pos and len, where pos[i] is the seek position of block i of...
virtual Int_t ReOpen(const Option_t *mode)
Re-open the file (see TNetFile::ReOpen() or TFile::ReOpen() for more details).
virtual ~TXNetFile()
Destructor.
void Init(Bool_t create)
Initialize the file.
static void SetEnv()
Set the relevant environment variables.
virtual void ResetCache()
Reset the cache.
Bool_t fIsRootd
Definition TXNetFile.h:67
static void FormUrl(TUrl uut, TString &uu)
Form url for rootd socket.
Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode)
Override TNetFile::SysOpen (see parent's method for more details).
virtual Bool_t ReadBuffer(char *buf, Int_t len)
Override TNetFile::ReadBuffer to deal with the xrootd server.
virtual Bool_t ReadBufferAsync(Long64_t offs, Int_t len)
Implementation dealing with the xrootd server.
virtual Bool_t WriteBuffer(const char *buffer, Int_t BufferLength)
Override TNetFile::WriteBuffer to deal with the xrootd server.
void * fInitMtx
Definition TXNetFile.h:68
XrdClient * fClient
Definition TXNetFile.h:66
virtual void Close(const Option_t *opt="")
Close the file (see TNetFile::Close() or TFile::Close() for more details).
virtual Int_t GetBytesToPrefetch() const
Max number of bytes to prefetch.
void CreateXClient(const char *url, Option_t *option, Int_t netopt, Bool_t parallelopen)
The real creation work is done here.
virtual void Flush()
Flushes un-written data.
Int_t SysClose(Int_t fd)
Override TNetFile::SysClose (see parent's method for more details).
Bool_t Open(Option_t *option, Bool_t parallelopen)
The real creation work is done here.
virtual Bool_t IsOpen() const
Return kTRUE if the file is open, kFALSE otherwise.
static Int_t GetRootdProtocol(TSocket *s)
Find out the remote rootd protocol version.
TXNetFile & operator=(const TXNetFile &)
virtual TFile::EAsyncOpenStatus GetAsyncOpenStatus()
Return status of asynchronous request.
static Bool_t fgRootdBC
Definition TXNetFile.h:62