19 #ifndef __XRD_CL_XROOTD_RESPONSES_HH__
20 #define __XRD_CL_XROOTD_RESPONSES_HH__
223 const std::string &message =
"" ):
231 const std::string &message =
"" ):
258 std::ostringstream o;
259 o <<
"[ERROR] Server responded with an error: [" <<
errNo <<
"] ";
285 typedef std::tuple<std::string, std::string>
xattr_t;
422 StatInfo(
const std::string &
id, uint64_t size, uint32_t flags,
540 time_t modTime = time;
541 tm *t = gmtime( &modTime );
542 strftime( ts, 255,
"%F %T", t );
548 static const uint8_t r_mask = 0x4;
549 static const uint8_t w_mask = 0x2;
550 static const uint8_t x_mask = 0x1;
552 if( r_mask & oct ) str.push_back(
'r' );
553 else str.push_back(
'-' );
555 if( w_mask & oct ) str.push_back(
'w' );
556 else str.push_back(
'-' );
558 if( x_mask & oct ) str.push_back(
'x' );
559 else str.push_back(
'-' );
562 std::unique_ptr<StatInfoImpl>
pImpl;
659 const std::string &name,
814 size_t pos = parent.find(
'?' );
815 pParent = pos == std::string::npos ? parent : parent.substr( 0, pos );
908 ChunkInfo( uint64_t off = 0, uint32_t len = 0,
void *buff = 0 ):
923 PageInfo( uint64_t offset = 0, uint32_t length = 0,
void *buffer = 0,
924 std::vector<uint32_t> &&cksums = std::vector<uint32_t>() );
960 std::unique_ptr<PageInfoImpl>
pImpl;
1069 (void)status; (void)response;
#define kXR_isManager
Definition: XProtocol.hh:1100
#define kXR_attrMeta
Definition: XProtocol.hh:1102
#define kXR_attrSuper
Definition: XProtocol.hh:1104
#define kXR_isServer
Definition: XProtocol.hh:1101
#define kXR_attrProxy
Definition: XProtocol.hh:1103
@ kXR_readable
Definition: XProtocol.hh:1166
@ kXR_isDir
Definition: XProtocol.hh:1163
@ kXR_offline
Definition: XProtocol.hh:1165
@ kXR_bkpexist
Definition: XProtocol.hh:1169
@ kXR_other
Definition: XProtocol.hh:1164
@ kXR_poscpend
Definition: XProtocol.hh:1168
@ kXR_writable
Definition: XProtocol.hh:1167
@ kXR_xset
Definition: XProtocol.hh:1162
#define access(a, b)
Definition: XrdPosix.hh:39
Definition: XrdClAnyObject.hh:33
Binary blob representation.
Definition: XrdClBuffer.hh:34
Directory entry.
Definition: XrdClXRootDResponses.hh:653
void SetStatInfo(StatInfo *info)
Set the stat info object (and transfer the ownership)
Definition: XrdClXRootDResponses.hh:709
std::string pHostAddress
Definition: XrdClXRootDResponses.hh:715
const StatInfo * GetStatInfo() const
Get the stat info object.
Definition: XrdClXRootDResponses.hh:701
StatInfo * pStatInfo
Definition: XrdClXRootDResponses.hh:717
std::string pName
Definition: XrdClXRootDResponses.hh:716
ListEntry(const std::string &hostAddress, const std::string &name, StatInfo *statInfo=0)
Constructor.
Definition: XrdClXRootDResponses.hh:658
~ListEntry()
Destructor.
Definition: XrdClXRootDResponses.hh:669
const std::string & GetHostAddress() const
Get host address.
Definition: XrdClXRootDResponses.hh:677
const std::string & GetName() const
Get file name.
Definition: XrdClXRootDResponses.hh:685
StatInfo * GetStatInfo()
Get the stat info object.
Definition: XrdClXRootDResponses.hh:693
Directory list.
Definition: XrdClXRootDResponses.hh:646
DirList pDirList
Definition: XrdClXRootDResponses.hh:839
DirList::const_iterator ConstIterator
Directory listing const iterator.
Definition: XrdClXRootDResponses.hh:743
DirectoryList()
Constructor.
bool ParseServerResponse(const std::string &hostId, const char *data, bool isDStat)
Parse chunked server response and fill up the object.
ListEntry * At(uint32_t index)
Get an entry at given index.
Definition: XrdClXRootDResponses.hh:756
void Add(ListEntry *entry)
Add an entry to the list - takes ownership.
Definition: XrdClXRootDResponses.hh:748
uint32_t GetSize() const
Get the size of the listing.
Definition: XrdClXRootDResponses.hh:796
DirList::iterator Iterator
Directory listing iterator.
Definition: XrdClXRootDResponses.hh:738
Iterator End()
Get the end iterator.
Definition: XrdClXRootDResponses.hh:780
static bool HasStatInfo(const char *data)
Returns true if data contain stat info.
std::vector< ListEntry * > DirList
Directory listing.
Definition: XrdClXRootDResponses.hh:733
~DirectoryList()
Destructor.
Iterator Begin()
Get the begin iterator.
Definition: XrdClXRootDResponses.hh:764
ConstIterator End() const
Get the end iterator.
Definition: XrdClXRootDResponses.hh:788
const std::string & GetParentName() const
Get parent directory name.
Definition: XrdClXRootDResponses.hh:804
void SetParentName(const std::string &parent)
Set name of the parent directory.
Definition: XrdClXRootDResponses.hh:812
bool ParseServerResponse(const std::string &hostId, const char *data)
Parse server response and fill up the object.
ConstIterator Begin() const
Get the begin iterator.
Definition: XrdClXRootDResponses.hh:772
std::string pParent
Definition: XrdClXRootDResponses.hh:840
static const std::string dStatPrefix
Definition: XrdClXRootDResponses.hh:842
Handle the stateful operations.
Definition: XrdClFileStateHandler.hh:77
Send file/filesystem queries to an XRootD cluster.
Definition: XrdClFileSystem.hh:203
Location.
Definition: XrdClXRootDResponses.hh:66
AccessType pAccess
Definition: XrdClXRootDResponses.hh:122
std::string pAddress
Definition: XrdClXRootDResponses.hh:120
LocationType GetType() const
Get location type.
Definition: XrdClXRootDResponses.hh:90
bool IsServer() const
Check whether the location is a server.
Definition: XrdClXRootDResponses.hh:106
Location(const std::string &address, LocationType type, AccessType access)
Constructor.
Definition: XrdClXRootDResponses.hh:72
const std::string & GetAddress() const
Get address.
Definition: XrdClXRootDResponses.hh:82
LocationType pType
Definition: XrdClXRootDResponses.hh:121
AccessType GetAccessType() const
Get access type.
Definition: XrdClXRootDResponses.hh:98
bool IsManager() const
Check whether the location is a manager.
Definition: XrdClXRootDResponses.hh:114
Path location info.
Definition: XrdClXRootDResponses.hh:40
uint32_t GetSize() const
Get number of locations.
Definition: XrdClXRootDResponses.hh:148
LocationInfo()
Constructor.
Iterator Begin()
Get the location begin iterator.
Definition: XrdClXRootDResponses.hh:164
Location & At(uint32_t index)
Get the location at index.
Definition: XrdClXRootDResponses.hh:156
void Add(const Location &location)
Add a location.
Definition: XrdClXRootDResponses.hh:196
std::vector< Location > LocationList
List of locations.
Definition: XrdClXRootDResponses.hh:128
LocationList pLocations
Definition: XrdClXRootDResponses.hh:208
LocationList::const_iterator ConstIterator
Iterator over locations.
Definition: XrdClXRootDResponses.hh:138
ConstIterator Begin() const
Get the location begin iterator.
Definition: XrdClXRootDResponses.hh:172
bool ParseServerResponse(const char *data)
Parse server response and fill up the object.
AccessType
Describes the allowed access type for the file at given location.
Definition: XrdClXRootDResponses.hh:57
@ Read
read access is allowed
Definition: XrdClXRootDResponses.hh:58
@ ReadWrite
write access is allowed
Definition: XrdClXRootDResponses.hh:59
LocationType
Describes the node type and file status for a given location.
Definition: XrdClXRootDResponses.hh:46
@ ServerPending
server node where the file is pending to be online
Definition: XrdClXRootDResponses.hh:50
@ ManagerOnline
manager node where the file is online
Definition: XrdClXRootDResponses.hh:47
@ ServerOnline
server node where the file is online
Definition: XrdClXRootDResponses.hh:49
@ ManagerPending
manager node where the file is pending to be online
Definition: XrdClXRootDResponses.hh:48
ConstIterator End() const
Get the location end iterator.
Definition: XrdClXRootDResponses.hh:188
bool ProcessLocation(std::string &location)
LocationList::iterator Iterator
Iterator over locations.
Definition: XrdClXRootDResponses.hh:133
Iterator End()
Get the location end iterator.
Definition: XrdClXRootDResponses.hh:180
Information returned by file open operation.
Definition: XrdClXRootDResponses.hh:849
void GetFileHandle(uint8_t *fileHandle) const
Get the file handle (4bytes)
Definition: XrdClXRootDResponses.hh:873
const StatInfo * GetStatInfo() const
Get the stat info.
Definition: XrdClXRootDResponses.hh:881
OpenInfo(const uint8_t *fileHandle, uint64_t sessionId, StatInfo *statInfo=0)
Constructor.
Definition: XrdClXRootDResponses.hh:854
uint64_t pSessionId
Definition: XrdClXRootDResponses.hh:896
uint64_t GetSessionId() const
Definition: XrdClXRootDResponses.hh:889
StatInfo * pStatInfo
Definition: XrdClXRootDResponses.hh:897
uint8_t pFileHandle[4]
Definition: XrdClXRootDResponses.hh:895
~OpenInfo()
Destructor.
Definition: XrdClXRootDResponses.hh:865
Protocol response.
Definition: XrdClXRootDResponses.hh:338
uint32_t pHostInfo
Definition: XrdClXRootDResponses.hh:384
bool TestHostInfo(uint32_t flags)
Test host info flags.
Definition: XrdClXRootDResponses.hh:377
HostTypes
Types of XRootD servers.
Definition: XrdClXRootDResponses.hh:344
@ AttrProxy
Proxy attribute.
Definition: XrdClXRootDResponses.hh:348
@ AttrMeta
Meta attribute.
Definition: XrdClXRootDResponses.hh:347
@ IsManager
Manager.
Definition: XrdClXRootDResponses.hh:345
@ AttrSuper
Supervisor attribute.
Definition: XrdClXRootDResponses.hh:349
@ IsServer
Data server.
Definition: XrdClXRootDResponses.hh:346
uint32_t GetVersion() const
Get version info.
Definition: XrdClXRootDResponses.hh:361
ProtocolInfo(uint32_t version, uint32_t hostInfo)
Constructor.
Definition: XrdClXRootDResponses.hh:355
uint32_t GetHostInfo() const
Get host info.
Definition: XrdClXRootDResponses.hh:369
uint32_t pVersion
Definition: XrdClXRootDResponses.hh:383
Handle an async response.
Definition: XrdClXRootDResponses.hh:1037
virtual void HandleResponseWithHosts(XRootDStatus *status, AnyObject *response, HostList *hostList)
Definition: XrdClXRootDResponses.hh:1050
virtual void HandleResponse(XRootDStatus *status, AnyObject *response)
Definition: XrdClXRootDResponses.hh:1066
virtual ~ResponseHandler()
Definition: XrdClXRootDResponses.hh:1039
VFS stat info.
Definition: XrdClXRootDResponses.hh:569
uint64_t GetFreeRW() const
Get size of the largest contiguous area of free r/w space (in MB)
Definition: XrdClXRootDResponses.hh:587
uint32_t pUtilizationRW
Definition: XrdClXRootDResponses.hh:636
uint64_t GetNodesStaging() const
Get number of nodes that can provide staging space.
Definition: XrdClXRootDResponses.hh:603
uint32_t pUtilizationStaging
Definition: XrdClXRootDResponses.hh:639
uint8_t GetUtilizationStaging() const
Get percentage of the partition utilization represented by FreeStaging.
Definition: XrdClXRootDResponses.hh:619
StatInfoVFS()
Constructor.
uint64_t GetFreeStaging() const
Get size of the largest contiguous area of free staging space (in MB)
Definition: XrdClXRootDResponses.hh:611
uint64_t pFreeRW
Definition: XrdClXRootDResponses.hh:635
uint64_t pFreeStaging
Definition: XrdClXRootDResponses.hh:638
uint8_t GetUtilizationRW() const
Get percentage of the partition utilization represented by FreeRW.
Definition: XrdClXRootDResponses.hh:595
bool ParseServerResponse(const char *data)
Parse server response and fill up the object.
uint64_t pNodesStaging
Definition: XrdClXRootDResponses.hh:637
uint64_t GetNodesRW() const
Get number of nodes that can provide read/write space.
Definition: XrdClXRootDResponses.hh:579
uint64_t pNodesRW
Definition: XrdClXRootDResponses.hh:634
Object stat info.
Definition: XrdClXRootDResponses.hh:396
uint64_t GetChangeTime() const
Get change time (in seconds since epoch)
std::string GetChangeTimeAsString() const
Get change time.
std::string GetModTimeAsString() const
Get modification time.
bool HasChecksum() const
Has checksum.
bool TestFlags(uint32_t flags) const
Test flags.
const std::string & GetGroup() const
Get group.
const std::string & GetModeAsString() const
Get mode.
const std::string & GetChecksum() const
Get checksum.
static void OctToString(uint8_t oct, std::string &str)
Definition: XrdClXRootDResponses.hh:546
uint64_t GetSize() const
Get size (in bytes)
static std::string TimeToString(uint64_t time)
Definition: XrdClXRootDResponses.hh:537
const std::string & GetId() const
Get id.
const std::string GetModeAsOctString() const
Get mode.
bool ParseServerResponse(const char *data)
Parse server response and fill up the object.
Flags
Flags.
Definition: XrdClXRootDResponses.hh:402
@ IsReadable
Read access is allowed.
Definition: XrdClXRootDResponses.hh:409
@ IsDir
This is a directory.
Definition: XrdClXRootDResponses.hh:404
@ Other
Neither a file nor a directory.
Definition: XrdClXRootDResponses.hh:405
@ BackUpExists
Back up copy exists.
Definition: XrdClXRootDResponses.hh:411
@ POSCPending
Definition: XrdClXRootDResponses.hh:407
@ XBitSet
Executable/searchable bit set.
Definition: XrdClXRootDResponses.hh:403
@ Offline
File is not online (ie. on disk)
Definition: XrdClXRootDResponses.hh:406
@ IsWritable
Write access is allowed.
Definition: XrdClXRootDResponses.hh:410
uint32_t GetFlags() const
Get flags.
bool ExtendedFormat() const
Has extended stat information.
uint64_t GetModTime() const
Get modification time (in seconds since epoch)
StatInfo(const StatInfo &info)
Copy constructor.
std::string GetAccessTimeAsString() const
Get change time.
const std::string & GetOwner() const
Get owner.
void SetSize(uint64_t size)
Set size.
uint64_t GetAccessTime() const
Get change time (in seconds since epoch)
std::unique_ptr< StatInfoImpl > pImpl
Definition: XrdClXRootDResponses.hh:562
void SetFlags(uint32_t flags)
Set flags.
StatInfo(const std::string &id, uint64_t size, uint32_t flags, uint64_t modTime)
Constructor.
URL representation.
Definition: XrdClURL.hh:31
Vector read info.
Definition: XrdClXRootDResponses.hh:972
uint32_t GetSize() const
Get Size.
Definition: XrdClXRootDResponses.hh:982
ChunkList pChunks
Definition: XrdClXRootDResponses.hh:1012
const ChunkList & GetChunks() const
Get chunks.
Definition: XrdClXRootDResponses.hh:1006
VectorReadInfo()
Constructor.
Definition: XrdClXRootDResponses.hh:977
void SetSize(uint32_t size)
Set size.
Definition: XrdClXRootDResponses.hh:990
ChunkList & GetChunks()
Get chunks.
Definition: XrdClXRootDResponses.hh:998
uint32_t pSize
Definition: XrdClXRootDResponses.hh:1013
Request status.
Definition: XrdClXRootDResponses.hh:215
void SetErrorMessage(const std::string &message)
Set the error message.
Definition: XrdClXRootDResponses.hh:246
XRootDStatus(uint16_t st=0, uint16_t code=0, uint32_t errN=0, const std::string &message="")
Constructor.
Definition: XrdClXRootDResponses.hh:220
std::string pMessage
Definition: XrdClXRootDResponses.hh:270
const std::string & GetErrorMessage() const
Get error message.
Definition: XrdClXRootDResponses.hh:238
XRootDStatus(const Status &st, const std::string &message="")
Constructor.
Definition: XrdClXRootDResponses.hh:230
std::string ToStr() const
Convert to string.
Definition: XrdClXRootDResponses.hh:254
Definition: XrdClAnyObject.hh:26
const uint16_t errErrorResponse
Definition: XrdClStatus.hh:102
std::vector< HostInfo > HostList
Definition: XrdClXRootDResponses.hh:1031
std::tuple< std::string, std::string > xattr_t
Extended attribute key - value pair.
Definition: XrdClXRootDResponses.hh:285
std::vector< ChunkInfo > ChunkList
List of chunks.
Definition: XrdClXRootDResponses.hh:966
@ xattr_name
Definition: XrdClXRootDResponses.hh:278
@ xattr_value
Definition: XrdClXRootDResponses.hh:279
Buffer BinaryDataInfo
Binary buffer.
Definition: XrdClXRootDResponses.hh:332
Describe a data chunk for vector read.
Definition: XrdClXRootDResponses.hh:904
void * buffer
length of the chunk
Definition: XrdClXRootDResponses.hh:913
uint32_t length
offset in the file
Definition: XrdClXRootDResponses.hh:912
ChunkInfo(uint64_t off=0, uint32_t len=0, void *buff=0)
Constructor.
Definition: XrdClXRootDResponses.hh:908
uint64_t offset
Definition: XrdClXRootDResponses.hh:911
Definition: XrdClXRootDResponses.hh:1020
HostInfo(const URL &u, bool lb=false)
Definition: XrdClXRootDResponses.hh:1023
URL url
URL of the host.
Definition: XrdClXRootDResponses.hh:1028
HostInfo()
Definition: XrdClXRootDResponses.hh:1021
uint32_t protocol
Version of the protocol the host is speaking.
Definition: XrdClXRootDResponses.hh:1026
bool loadBalancer
Was the host used as a load balancer.
Definition: XrdClXRootDResponses.hh:1027
uint32_t flags
Host type.
Definition: XrdClXRootDResponses.hh:1025
Definition: XrdClXRootDResponses.hh:919
PageInfo(PageInfo &&pginf)
Move constructor.
std::vector< uint32_t > & GetCksums()
Get the checksums.
PageInfo(uint64_t offset=0, uint32_t length=0, void *buffer=0, std::vector< uint32_t > &&cksums=std::vector< uint32_t >())
Default constructor.
uint32_t GetLength() const
Get the data length.
uint64_t GetOffset() const
Get the offset.
std::unique_ptr< PageInfoImpl > pImpl
pointer to implementation
Definition: XrdClXRootDResponses.hh:960
void * GetBuffer()
Get the buffer.
Procedure execution status.
Definition: XrdClStatus.hh:111
uint16_t code
Error type, or additional hints on what to do.
Definition: XrdClStatus.hh:138
std::string ToString() const
Create a string representation.
uint32_t errNo
Errno, if any.
Definition: XrdClStatus.hh:139
Extended attribute operation status.
Definition: XrdClXRootDResponses.hh:291
XAttrStatus(const std::string &name, const XRootDStatus &status)
Definition: XrdClXRootDResponses.hh:295
XRootDStatus status
Definition: XrdClXRootDResponses.hh:302
std::string name
Definition: XrdClXRootDResponses.hh:301
Extended attributes with status.
Definition: XrdClXRootDResponses.hh:309
XAttr(const std::string &name, const XRootDStatus &status)
Definition: XrdClXRootDResponses.hh:313
std::string value
Definition: XrdClXRootDResponses.hh:326
XAttr(const std::string &name, const std::string &value="", const XRootDStatus &status=XRootDStatus())
Definition: XrdClXRootDResponses.hh:319