XRootD
Loading...
Searching...
No Matches
XrdCl::SetXAttrFsImpl< HasHndl > Class Template Reference

SetXAttr operation (. More...

#include <XrdClFileSystemOperations.hh>

+ Inheritance diagram for XrdCl::SetXAttrFsImpl< HasHndl >:
+ Collaboration diagram for XrdCl::SetXAttrFsImpl< HasHndl >:

Public Types

enum  {
  PathArg ,
  NameArg ,
  ValueArg
}
 Argument indexes in the args tuple. More...
 

Public Member Functions

std::string ToString ()
 
- Public Member Functions inherited from XrdCl::FileSystemOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Arg< std::string >, Arg< std::string >, Arg< std::string > >
 FileSystemOperation (Ctx< FileSystem > fs, Args... args)
 
 FileSystemOperation (FileSystemOperation< SetXAttrFsImpl, from, Resp< void >, Args... > &&op)
 
virtual ~FileSystemOperation ()
 Destructor.
 
- Public Member Functions inherited from XrdCl::ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... >
 ConcreteOperation (Args &&... args)
 
 ConcreteOperation (ConcreteOperation< SetXAttrFsImpl, from, Resp< void >, Args... > &&op)
 
Operation< HasHndl > * Move ()
 
SetXAttrFsImpl< true > operator>> (Hdlr &&hdlr)
 
SetXAttrFsImpl< true > operator| (FinalOperation &&fo)
 Adds a final operation to the pipeline.
 
SetXAttrFsImpl< true > operator| (Operation< false > &&op)
 
SetXAttrFsImpl< true > operator| (Operation< false > &op)
 
SetXAttrFsImpl< true > operator| (Operation< true > &&op)
 
SetXAttrFsImpl< true > operator| (Operation< true > &op)
 
SetXAttrFsImpl< HasHndl > Timeout (uint16_t timeout)
 Set operation timeout.
 
Operation< true > * ToHandled ()
 
- Public Member Functions inherited from XrdCl::Operation< HasHndl >
 Operation ()
 Constructor.
 
template<bool from>
 Operation (Operation< from > &&op)
 Move constructor between template instances.
 
virtual ~Operation ()
 Destructor.
 

Protected Member Functions

XRootDStatus RunImpl (PipelineHandler *handler, uint16_t pipelineTimeout)
 
- Protected Member Functions inherited from XrdCl::ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... >
SetXAttrFsImpl< true > StreamImpl (ResponseHandler *handler)
 
SetXAttrFsImpl< toTransform ()
 
- Protected Member Functions inherited from XrdCl::Operation< HasHndl >
void AddOperation (Operation< true > *op)
 
void Run (Timeout timeout, std::promise< XRootDStatus > prms, std::function< void(const XRootDStatus &)> final)
 

Additional Inherited Members

- Static Protected Member Functions inherited from XrdCl::ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... >
static void AllocHandler (ConcreteOperation< SetXAttrFsImpl, false, Resp< void >, Args... > &me)
 
static void AllocHandler (ConcreteOperation< SetXAttrFsImpl, true, Resp< void >, Args... > &me)
 
static SetXAttrFsImpl< true > PipeImpl (ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... > &me, Operation< false > &op)
 
static SetXAttrFsImpl< true > PipeImpl (ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... > &me, Operation< true > &op)
 
- Protected Attributes inherited from XrdCl::FileSystemOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Arg< std::string >, Arg< std::string >, Arg< std::string > >
Ctx< FileSystemfilesystem
 The file system object itself.
 
- Protected Attributes inherited from XrdCl::ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... >
std::tuple< Args... > args
 Operation arguments.
 
uint16_t timeout
 Operation timeout.
 
- Protected Attributes inherited from XrdCl::Operation< HasHndl >
std::unique_ptr< PipelineHandlerhandler
 Operation handler.
 
bool valid
 Flag indicating if it is a valid object.
 

Detailed Description

template<bool HasHndl>
class XrdCl::SetXAttrFsImpl< HasHndl >

SetXAttr operation (.

See also
FileOperation)

Definition at line 849 of file XrdClFileSystemOperations.hh.

Member Enumeration Documentation

◆ anonymous enum

template<bool HasHndl>
anonymous enum

Argument indexes in the args tuple.

Enumerator
PathArg 
NameArg 
ValueArg 

Definition at line 863 of file XrdClFileSystemOperations.hh.

Member Function Documentation

◆ RunImpl()

template<bool HasHndl>
XRootDStatus XrdCl::SetXAttrFsImpl< HasHndl >::RunImpl ( PipelineHandler * handler,
uint16_t pipelineTimeout )
inlineprotectedvirtual

RunImpl operation (

See also
Operation)
Parameters
params: container with parameters forwarded from previous operation
Returns
: status of the operation

Implements XrdCl::Operation< HasHndl >.

Definition at line 882 of file XrdClFileSystemOperations.hh.

883 {
884 std::string &path = std::get<PathArg>( this->args ).Get();
885 std::string &name = std::get<NameArg>( this->args ).Get();
886 std::string &value = std::get<ValueArg>( this->args ).Get();
887 // wrap the arguments with a vector
889 attrs.push_back( xattr_t( name, value ) );
890 // wrap the PipelineHandler so the response gets unpacked properly
893 pipelineTimeout : this->timeout;
894 XRootDStatus st = this->filesystem->SetXAttr( path, attrs, h, timeout );
895 if( !st.IsOK() ) delete h;
896 return st;
897 }
std::unique_ptr< PipelineHandler > handler
Operation handler.
std::tuple< std::string, std::string > xattr_t
Extended attribute key - value pair.

References XrdCl::ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... >::args, XrdCl::FileSystemOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Arg< std::string >, Arg< std::string >, Arg< std::string > >::filesystem, XrdCl::Operation< HasHndl >::handler, XrdCl::Status::IsOK(), XrdCl::NullRef< Response >::value, and XrdCl::ConcreteOperation< SetXAttrFsImpl, HasHndl, Resp< void >, Args... >::timeout.

+ Here is the call graph for this function:

◆ ToString()

template<bool HasHndl>
std::string XrdCl::SetXAttrFsImpl< HasHndl >::ToString ( )
inlinevirtual
Returns
: name of the operation (
See also
Operation)

Implements XrdCl::Operation< HasHndl >.

Definition at line 868 of file XrdClFileSystemOperations.hh.

869 {
870 return "SetXAttrFsImpl";
871 }

The documentation for this class was generated from the following file: