19 #ifndef __XRD_CL_XROOTD_RESPONSES_HH__
20 #define __XRD_CL_XROOTD_RESPONSES_HH__
227 const std::string &message =
"" ):
235 const std::string &message =
"" ):
262 std::ostringstream o;
263 o <<
"[ERROR] Server responded with an error: [" <<
errNo <<
"] ";
289 typedef std::tuple<std::string, std::string>
xattr_t;
300 name( name ), status( status )
426 StatInfo(
const std::string &
id, uint64_t size, uint32_t flags,
442 const std::string&
GetId()
const;
512 const std::string&
GetOwner()
const;
517 const std::string&
GetGroup()
const;
544 time_t modTime = time;
545 tm *t = gmtime( &modTime );
546 strftime( ts, 255,
"%F %T", t );
552 static const uint8_t r_mask = 0x4;
553 static const uint8_t w_mask = 0x2;
554 static const uint8_t x_mask = 0x1;
556 if( r_mask & oct ) str.push_back(
'r' );
557 else str.push_back(
'-' );
559 if( w_mask & oct ) str.push_back(
'w' );
560 else str.push_back(
'-' );
562 if( x_mask & oct ) str.push_back(
'x' );
563 else str.push_back(
'-' );
566 std::unique_ptr<StatInfoImpl>
pImpl;
663 const std::string &name,
818 size_t pos = parent.find(
'?' );
819 pParent = pos == std::string::npos ? parent : parent.substr( 0, pos );
912 ChunkInfo( uint64_t off = 0, uint32_t len = 0,
void *buff = 0 ):
951 PageInfo( uint64_t offset = 0, uint32_t length = 0,
void *buffer = 0,
952 std::vector<uint32_t> &&cksums = std::vector<uint32_t>() );
1006 struct RetryInfoImpl;
1013 RetryInfo( std::vector<std::tuple<uint64_t, uint32_t>> && retries );
1034 std::tuple<uint64_t, uint32_t>
At(
size_t i );
1170 #endif // __XRD_CL_XROOTD_RESPONSES_HH__
Write access is allowed.
Definition: XrdClXRootDResponses.hh:414
uint32_t pUtilizationStaging
Definition: XrdClXRootDResponses.hh:643
bool HasChecksum() const
Has checksum.
Definition: XrdClXRootDResponses.hh:1008
ListEntry(const std::string &hostAddress, const std::string &name, StatInfo *statInfo=0)
Constructor.
Definition: XrdClXRootDResponses.hh:662
Definition: XProtocol.hh:1215
const std::string & GetChecksum() const
Get checksum.
std::unique_ptr< PageInfoImpl > pImpl
pointer to implementation
Definition: XrdClXRootDResponses.hh:1003
virtual ~ResponseHandler()
Definition: XrdClXRootDResponses.hh:1119
#define kXR_isServer
Definition: XProtocol.hh:1149
Definition: XrdClAnyObject.hh:32
uint8_t GetUtilizationStaging() const
Get percentage of the partition utilization represented by FreeStaging.
Definition: XrdClXRootDResponses.hh:623
const StatInfo * GetStatInfo() const
Get the stat info.
Definition: XrdClXRootDResponses.hh:885
const std::string GetModeAsOctString() const
Get mode.
uint64_t GetChangeTime() const
Get change time (in seconds since epoch)
AccessType
Describes the allowed access type for the file at given location.
Definition: XrdClXRootDResponses.hh:60
const std::string & GetAddress() const
Get address.
Definition: XrdClXRootDResponses.hh:86
#define kXR_attrProxy
Definition: XProtocol.hh:1151
const std::string & GetParentName() const
Get parent directory name.
Definition: XrdClXRootDResponses.hh:808
std::vector< ChunkInfo > ChunkList
List of chunks.
Definition: XrdClXRootDResponses.hh:1046
uint64_t pNodesStaging
Definition: XrdClXRootDResponses.hh:641
uint64_t GetFreeStaging() const
Get size of the largest contiguous area of free staging space (in MB)
Definition: XrdClXRootDResponses.hh:615
Extended attribute operation status.
Definition: XrdClXRootDResponses.hh:294
StatInfo * pStatInfo
Definition: XrdClXRootDResponses.hh:721
uint8_t GetUtilizationRW() const
Get percentage of the partition utilization represented by FreeRW.
Definition: XrdClXRootDResponses.hh:599
bool ParseServerResponse(const char *data)
Parse server response and fill up the object.
Definition: XProtocol.hh:1217
Directory list.
Definition: XrdClXRootDResponses.hh:649
uint64_t pFreeStaging
Definition: XrdClXRootDResponses.hh:642
Meta attribute.
Definition: XrdClXRootDResponses.hh:351
uint64_t pFreeRW
Definition: XrdClXRootDResponses.hh:639
Definition: XProtocol.hh:1218
Object stat info.
Definition: XrdClXRootDResponses.hh:399
Definition: XrdClXRootDResponses.hh:411
const uint16_t errErrorResponse
Definition: XrdClStatus.hh:105
uint32_t GetSize() const
Get the size of the listing.
Definition: XrdClXRootDResponses.hh:800
uint32_t pUtilizationRW
Definition: XrdClXRootDResponses.hh:640
bool TestFlags(uint32_t flags) const
Test flags.
Definition: XrdClXRootDResponses.hh:946
static bool HasStatInfo(const char *data)
Returns true if data contain stat info.
Extended attributes with status.
Definition: XrdClXRootDResponses.hh:312
#define kXR_attrMeta
Definition: XProtocol.hh:1150
std::tuple< uint64_t, uint32_t > At(size_t i)
bool IsManager() const
Check whether the location is a manager.
Definition: XrdClXRootDResponses.hh:118
LocationInfo()
Constructor.
HostInfo()
Definition: XrdClXRootDResponses.hh:1101
Back up copy exists.
Definition: XrdClXRootDResponses.hh:415
static void OctToString(uint8_t oct, std::string &str)
Definition: XrdClXRootDResponses.hh:550
server node where the file is pending to be online
Definition: XrdClXRootDResponses.hh:54
Manager.
Definition: XrdClXRootDResponses.hh:349
ConstIterator End() const
Get the location end iterator.
Definition: XrdClXRootDResponses.hh:192
bool ParseServerResponse(const char *data)
Parse server response and fill up the object.
Definition: XProtocol.hh:1214
uint64_t GetSessionId() const
Definition: XrdClXRootDResponses.hh:893
void Add(ListEntry *entry)
Add an entry to the list - takes ownership.
Definition: XrdClXRootDResponses.hh:752
XRootDStatus(const Status &st, const std::string &message="")
Constructor.
Definition: XrdClXRootDResponses.hh:234
std::string pMessage
Definition: XrdClXRootDResponses.hh:274
Path location info.
Definition: XrdClXRootDResponses.hh:43
const std::string & GetHostAddress() const
Get host address.
Definition: XrdClXRootDResponses.hh:681
uint16_t code
Error type, or additional hints on what to do.
Definition: XrdClStatus.hh:146
Definition: XrdClXRootDResponses.hh:283
uint64_t GetNodesRW() const
Get number of nodes that can provide read/write space.
Definition: XrdClXRootDResponses.hh:583
XAttr(const std::string &name, const std::string &value="", const XRootDStatus &status=XRootDStatus())
Definition: XrdClXRootDResponses.hh:323
void SetErrorMessage(const std::string &message)
Set the error message.
Definition: XrdClXRootDResponses.hh:250
std::vector< Location > LocationList
List of locations.
Definition: XrdClXRootDResponses.hh:132
Location.
Definition: XrdClXRootDResponses.hh:69
uint8_t pFileHandle[4]
Definition: XrdClXRootDResponses.hh:899
XAttrStatus(const std::string &name, const XRootDStatus &status)
Definition: XrdClXRootDResponses.hh:299
Iterator Begin()
Get the begin iterator.
Definition: XrdClXRootDResponses.hh:768
LocationType pType
Definition: XrdClXRootDResponses.hh:125
uint64_t GetOffset() const
Get the offset.
Definition: XrdClXRootDResponses.hh:918
PageInfo(uint64_t offset=0, uint32_t length=0, void *buffer=0, std::vector< uint32_t > &&cksums=std::vector< uint32_t >())
Default constructor.
Procedure execution status.
Definition: XrdClStatus.hh:113
const std::string & GetName() const
Get file name.
Definition: XrdClXRootDResponses.hh:689
bool ParseServerResponse(const std::string &hostId, const char *data)
Parse server response and fill up the object.
ChunkList & GetChunks()
Get chunks.
Definition: XrdClXRootDResponses.hh:1078
LocationType GetType() const
Get location type.
Definition: XrdClXRootDResponses.hh:94
void * GetBuffer()
Get the buffer.
Definition: XrdClXRootDResponses.hh:934
StatInfo * GetStatInfo()
Get the stat info object.
Definition: XrdClXRootDResponses.hh:697
Definition: XrdSysTrace.hh:42
Definition: XProtocol.hh:1216
void SetParentName(const std::string &parent)
Set name of the parent directory.
Definition: XrdClXRootDResponses.hh:816
Information returned by file open operation.
Definition: XrdClXRootDResponses.hh:852
#define kXR_isManager
Definition: XProtocol.hh:1148
~OpenInfo()
Destructor.
Definition: XrdClXRootDResponses.hh:869
Definition: XProtocol.hh:1212
uint32_t GetHostInfo() const
Get host info.
Definition: XrdClXRootDResponses.hh:373
Iterator End()
Get the location end iterator.
Definition: XrdClXRootDResponses.hh:184
void * buffer
length of the chunk
Definition: XrdClXRootDResponses.hh:941
XRootDStatus(uint16_t st=0, uint16_t code=0, uint32_t errN=0, const std::string &message="")
Constructor.
Definition: XrdClXRootDResponses.hh:224
Protocol response.
Definition: XrdClXRootDResponses.hh:341
read access is allowed
Definition: XrdClXRootDResponses.hh:62
uint32_t GetLength() const
Get the data length.
Definition: XrdClXRootDResponses.hh:926
const std::string & GetOwner() const
Get owner.
ConstIterator Begin() const
Get the begin iterator.
Definition: XrdClXRootDResponses.hh:776
uint64_t pSessionId
Definition: XrdClXRootDResponses.hh:900
ConstIterator Begin() const
Get the location begin iterator.
Definition: XrdClXRootDResponses.hh:176
PageInfo & operator=(PageInfo &&pginf)
Move assigment operator.
uint32_t GetFlags() const
Get flags.
bool ProcessLocation(std::string &location)
ListEntry * At(uint32_t index)
Get an entry at given index.
Definition: XrdClXRootDResponses.hh:760
bool IsServer() const
Check whether the location is a server.
Definition: XrdClXRootDResponses.hh:110
Definition: XrdClXRootDResponses.hh:1099
Definition: XProtocol.hh:1211
OpenInfo(const uint8_t *fileHandle, uint64_t sessionId, StatInfo *statInfo=0)
Constructor.
Definition: XrdClXRootDResponses.hh:858
std::vector< HostInfo > HostList
Definition: XrdClXRootDResponses.hh:1111
DirList::iterator Iterator
Directory listing iterator.
Definition: XrdClXRootDResponses.hh:742
DirList pDirList
Definition: XrdClXRootDResponses.hh:843
LocationList pLocations
Definition: XrdClXRootDResponses.hh:212
uint32_t flags
Host type.
Definition: XrdClXRootDResponses.hh:1105
bool ExtendedFormat() const
Has extended stat information.
bool TestHostInfo(uint32_t flags)
Test host info flags.
Definition: XrdClXRootDResponses.hh:381
const std::string & GetId() const
Get id.
HostTypes
Types of XRootD servers.
Definition: XrdClXRootDResponses.hh:347
ChunkInfo(uint64_t off=0, uint32_t len=0, void *buff=0)
Constructor.
Definition: XrdClXRootDResponses.hh:912
static ResponseHandler * Wrap(std::function< void(XRootDStatus &, AnyObject &)> func)
uint32_t length
offset in the file
Definition: XrdClXRootDResponses.hh:940
LocationList::iterator Iterator
Iterator over locations.
Definition: XrdClXRootDResponses.hh:137
manager node where the file is online
Definition: XrdClXRootDResponses.hh:51
std::string ToString() const
Create a string representation.
Describe a data chunk for vector read.
Definition: XrdClXRootDResponses.hh:907
uint32_t GetLength() const
Get the data length.
Request status.
Definition: XrdClXRootDResponses.hh:218
size_t GetNbRepair()
Get number of repaired pages.
std::unique_ptr< RetryInfoImpl > pImpl
pointer to implementation
Definition: XrdClXRootDResponses.hh:1040
std::string pHostAddress
Definition: XrdClXRootDResponses.hh:719
uint64_t GetOffset() const
Get the offset.
void SetStatInfo(StatInfo *info)
Set the stat info object (and transfer the ownership)
Definition: XrdClXRootDResponses.hh:713
void SetNbRepair(size_t nbrepair)
Set number of repaired pages.
ProtocolInfo(uint32_t version, uint32_t hostInfo)
Constructor.
Definition: XrdClXRootDResponses.hh:359
j template void())
Definition: XrdOucJson.hh:4121
XAttr(const std::string &name, const XRootDStatus &status)
Definition: XrdClXRootDResponses.hh:317
server node where the file is online
Definition: XrdClXRootDResponses.hh:53
uint32_t pSize
Definition: XrdClXRootDResponses.hh:1093
uint32_t protocol
Version of the protocol the host is speaking.
Definition: XrdClXRootDResponses.hh:1106
Supervisor attribute.
Definition: XrdClXRootDResponses.hh:353
VFS stat info.
Definition: XrdClXRootDResponses.hh:572
ChunkList pChunks
Definition: XrdClXRootDResponses.hh:1092
URL url
URL of the host.
Definition: XrdClXRootDResponses.hh:1108
const StatInfo * GetStatInfo() const
Get the stat info object.
Definition: XrdClXRootDResponses.hh:705
std::string GetModTimeAsString() const
Get modification time.
~DirectoryList()
Destructor.
std::string pAddress
Definition: XrdClXRootDResponses.hh:124
Iterator End()
Get the end iterator.
Definition: XrdClXRootDResponses.hh:784
void SetSize(uint32_t size)
Set size.
Definition: XrdClXRootDResponses.hh:1070
const std::string & GetModeAsString() const
Get mode.
manager node where the file is pending to be online
Definition: XrdClXRootDResponses.hh:52
Location & At(uint32_t index)
Get the location at index.
Definition: XrdClXRootDResponses.hh:160
Flags
Flags.
Definition: XrdClXRootDResponses.hh:405
std::string ToStr() const
Convert to string.
Definition: XrdClXRootDResponses.hh:258
uint64_t GetNodesStaging() const
Get number of nodes that can provide staging space.
Definition: XrdClXRootDResponses.hh:607
#define kXR_attrSuper
Definition: XProtocol.hh:1152
Vector read info.
Definition: XrdClXRootDResponses.hh:1051
XRootDStatus status
Definition: XrdClXRootDResponses.hh:306
HostInfo(const URL &u, bool lb=false)
Definition: XrdClXRootDResponses.hh:1103
Handle an async response.
Definition: XrdClXRootDResponses.hh:1116
Location(const std::string &address, LocationType type, AccessType access)
Constructor.
Definition: XrdClXRootDResponses.hh:76
void * GetBuffer()
Get the buffer.
uint64_t offset
Definition: XrdClXRootDResponses.hh:939
StatInfo * pStatInfo
Definition: XrdClXRootDResponses.hh:901
AccessType pAccess
Definition: XrdClXRootDResponses.hh:126
ConstIterator End() const
Get the end iterator.
Definition: XrdClXRootDResponses.hh:792
std::string pParent
Definition: XrdClXRootDResponses.hh:844
virtual void HandleResponse(XRootDStatus *status, AnyObject *response)
Definition: XrdClXRootDResponses.hh:1146
Handle the stateful operations.
Definition: XrdClFileStateHandler.hh:79
Neither a file nor a directory.
Definition: XrdClXRootDResponses.hh:409
std::string GetAccessTimeAsString() const
Get change time.
uint64_t pNodesRW
Definition: XrdClXRootDResponses.hh:638
#define access(a, b)
Definition: XrdPosix.hh:39
URL representation.
Definition: XrdClURL.hh:30
void SetFlags(uint32_t flags)
Set flags.
Definition: XrdClXRootDResponses.hh:282
std::unique_ptr< StatInfoImpl > pImpl
Definition: XrdClXRootDResponses.hh:566
virtual void HandleResponseWithHosts(XRootDStatus *status, AnyObject *response, HostList *hostList)
Definition: XrdClXRootDResponses.hh:1130
uint64_t GetAccessTime() const
Get change time (in seconds since epoch)
uint32_t errNo
Errno, if any.
Definition: XrdClStatus.hh:147
This is a directory.
Definition: XrdClXRootDResponses.hh:408
Read access is allowed.
Definition: XrdClXRootDResponses.hh:413
Buffer BinaryDataInfo
Binary buffer.
Definition: XrdClXRootDResponses.hh:336
Proxy attribute.
Definition: XrdClXRootDResponses.hh:352
uint32_t GetSize() const
Get Size.
Definition: XrdClXRootDResponses.hh:1062
static const std::string dStatPrefix
Definition: XrdClXRootDResponses.hh:846
RetryInfo(std::vector< std::tuple< uint64_t, uint32_t >> &&retries)
Constructor.
Data server.
Definition: XrdClXRootDResponses.hh:350
write access is allowed
Definition: XrdClXRootDResponses.hh:63
uint32_t pVersion
Definition: XrdClXRootDResponses.hh:387
Send file/filesystem queries to an XRootD cluster.
Definition: XrdClFileSystem.hh:202
uint32_t pHostInfo
Definition: XrdClXRootDResponses.hh:388
std::string value
Definition: XrdClXRootDResponses.hh:330
static std::string TimeToString(uint64_t time)
Definition: XrdClXRootDResponses.hh:541
std::string pName
Definition: XrdClXRootDResponses.hh:720
LocationType
Describes the node type and file status for a given location.
Definition: XrdClXRootDResponses.hh:49
~ListEntry()
Destructor.
Definition: XrdClXRootDResponses.hh:673
const std::string & GetErrorMessage() const
Get error message.
Definition: XrdClXRootDResponses.hh:242
std::vector< uint32_t > & GetCksums()
Get the checksums.
const std::string & GetGroup() const
Get group.
bool ParseServerResponse(const char *data)
Parse server response and fill up the object.
uint64_t GetFreeRW() const
Get size of the largest contiguous area of free r/w space (in MB)
Definition: XrdClXRootDResponses.hh:591
StatInfoVFS()
Constructor.
uint64_t GetSize() const
Get size (in bytes)
DirList::const_iterator ConstIterator
Directory listing const iterator.
Definition: XrdClXRootDResponses.hh:747
DirectoryList()
Constructor.
uint32_t GetSize() const
Get number of locations.
Definition: XrdClXRootDResponses.hh:152
void SetSize(uint64_t size)
Set size.
std::tuple< std::string, std::string > xattr_t
Extended attribute key - value pair.
Definition: XrdClXRootDResponses.hh:289
uint64_t GetModTime() const
Get modification time (in seconds since epoch)
void Add(const Location &location)
Add a location.
Definition: XrdClXRootDResponses.hh:200
Executable/searchable bit set.
Definition: XrdClXRootDResponses.hh:407
uint32_t GetVersion() const
Get version info.
Definition: XrdClXRootDResponses.hh:365
VectorReadInfo()
Constructor.
Definition: XrdClXRootDResponses.hh:1057
bool loadBalancer
Was the host used as a load balancer.
Definition: XrdClXRootDResponses.hh:1107
std::vector< ListEntry * > DirList
Directory listing.
Definition: XrdClXRootDResponses.hh:737
AccessType GetAccessType() const
Get access type.
Definition: XrdClXRootDResponses.hh:102
File is not online (ie. on disk)
Definition: XrdClXRootDResponses.hh:410
LocationList::const_iterator ConstIterator
Iterator over locations.
Definition: XrdClXRootDResponses.hh:142
Iterator Begin()
Get the location begin iterator.
Definition: XrdClXRootDResponses.hh:168
std::string name
Definition: XrdClXRootDResponses.hh:305
Binary blob representation.
Definition: XrdClBuffer.hh:33
Directory entry.
Definition: XrdClXRootDResponses.hh:656
Definition: XProtocol.hh:1213
std::string GetChangeTimeAsString() const
Get change time.
const ChunkList & GetChunks() const
Get chunks.
Definition: XrdClXRootDResponses.hh:1086
void GetFileHandle(uint8_t *fileHandle) const
Get the file handle (4bytes)
Definition: XrdClXRootDResponses.hh:877