xrootd
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
XrdSsiProvider Class Referenceabstract

#include <XrdSsiProvider.hh>

Public Types

enum  CTL_Cmd { CTL_None = 0 }
 
enum  rStat { notPresent = 0 , isPresent , isPending }
 
enum  tmoType {
  connect_N =0 , connect_T , idleClose , request_T ,
  response_T , stream_T
}
 

Public Member Functions

virtual int Control (CTL_Cmd cmd, const void *argP, void *&resP)
 
virtual XrdSsiServiceGetService (XrdSsiErrInfo &eInfo, const std::string &contact, int oHold=256)
 
int GetVersion ()
 
virtual bool Init (XrdSsiLogger *logP, XrdSsiCluster *clsP, std::string cfgFn, std::string parms, int argc, char **argv)=0
 
virtual rStat QueryResource (const char *rName, const char *contact=0)=0
 
virtual void ResourceAdded (const char *rName)
 
virtual void ResourceRemoved (const char *rName)
 
virtual void SetCBThreads (int cbNum, int ntNum=0)
 
virtual bool SetConfig (XrdSsiErrInfo &eInfo, std::string &optname, int optvalue)
 
virtual void SetSpread (short ssz)
 
virtual void SetTimeout (tmoType what, int tmoval)
 
 XrdSsiProvider ()
 Constructor.
 

Static Public Attributes

static const int SsiVersion = 0x00010000
 

Protected Member Functions

virtual ~XrdSsiProvider ()
 Destructor. The providor object cannot be and never is explicitly deleted.
 

Member Enumeration Documentation

◆ CTL_Cmd

Issue a control operation (future).

Parameters
cmdThe control command.
argPThe operational argument cast to a void pointer.
resPA reference to the pointer to hold the operational result object if any.
Returns
Upon success 0 is returned and if a resutt is returned is must cast to te correct pointer type and deleted,when no longer needed. Upon failure, -errno is returned.
Enumerator
CTL_None 

◆ rStat

Obtain the status of a resource. Client-side: This method can be called to obtain the availability of a resource relative to a particular endpoint. Server-Side: When configured via oss.statlib directive, this is called server-side by the XrdSsiCluster object to see if the resource can be provided by the providor via a service object. This method is also used server-side to determine resource status.

Parameters
rNamePointer to the resource name.
contactthe point of first contact that would be used to process the request relative to the resource (see ProcessRequest()). A nil pointer indicates a query for availibity at the local node (e.g. a query for local resource availability).
Returns
One of the rStat enums, as follows: notPresent - resource not present on this node. isPresent - resource is present and can be immediately used, if necessary. isPending - resource is present but is not in an immediately usable state, access may wait.
Enumerator
notPresent 
isPresent 
isPending 

◆ tmoType

Set default global timeouts. By default, all timeouts are set to infinity.

Parameters
whatOne of the enums below specifying the timeout is to be set.
tmovalThe timeout valid in seconds. A value of <= 0 is ignored.
Enumerator
connect_N 

Number of times to try connection (client)

connect_T 

Time to wait for a connection (client)

idleClose 

Time before an idle socket is closed (client)

request_T 

Time to wait for a request to finsish(client)

response_T 

Time for client to wait for a resp (Server)

stream_T 

Time to wait for socket activity (Client)

Constructor & Destructor Documentation

◆ XrdSsiProvider()

XrdSsiProvider::XrdSsiProvider ( )
inline

Constructor.

◆ ~XrdSsiProvider()

virtual XrdSsiProvider::~XrdSsiProvider ( )
inlineprotectedvirtual

Destructor. The providor object cannot be and never is explicitly deleted.

Member Function Documentation

◆ Control()

virtual int XrdSsiProvider::Control ( CTL_Cmd  cmd,
const void *  argP,
void *&  resP 
)
inlinevirtual

References CTL_None.

◆ GetService()

virtual XrdSsiService * XrdSsiProvider::GetService ( XrdSsiErrInfo eInfo,
const std::string &  contact,
int  oHold = 256 
)
inlinevirtual

Obtain a service object (client-side or server-side).

Parameters
eInfothe object where error status is to be placed.
contactthe point of first contact when processing a request. The contact may be "host:port" where "host" is a DNS name, an IPV4 address (i.e. d.d.d.d), or an IPV6 address (i.e. [x:x:x:x:x:x]), and "port" is either a numeric port number or the service name assigned to the port number. You may specify more than one contact by separating each with a comma (e.g. host1:port,host2:port,...). Each host must be equivalent with respect to request processing. This is a null string if the call is being made server-side. Note that only one service object is obtained by a server.
oHoldthe maximum number of request objects that should be held in reserve for future calls.
Returns
=0 A service object could not be created, eInfo has the reason.
!0 Pointer to a service object.

References XrdSsiErrInfo::Set().

◆ GetVersion()

int XrdSsiProvider::GetVersion ( )
inline

References SsiVersion.

◆ Init()

virtual bool XrdSsiProvider::Init ( XrdSsiLogger logP,
XrdSsiCluster clsP,
std::string  cfgFn,
std::string  parms,
int  argc,
char **  argv 
)
pure virtual

Initialize server-side processing. This method is invoked prior to any other method in the XrdSsiProvider object.

Parameters
logPpointer to the logger object for message routing.
clsPpointer to the cluster management object. This pointer is nil when a service object is being obtained by an unclustered system (i.e. a stand-alone server).
cfgFnfile path to the the conifiguration file.
parmsconifiguration parameters, if any.
argcThe count of command line arguments (always >= 1).
argvPointer to a null terminated array of tokenized command line arguments. These arguments are taken from the command line after the "-+xrdssi" option (see invoking xrootd), if present. The first argument is always the same as argv[0] in main().
Returns
true Initialization succeeded.
=0 Initialization failed. The method should include an error message in the log indicating why initialization failed.

◆ QueryResource()

virtual rStat XrdSsiProvider::QueryResource ( const char *  rName,
const char *  contact = 0 
)
pure virtual

◆ ResourceAdded()

virtual void XrdSsiProvider::ResourceAdded ( const char *  rName)
inlinevirtual

Notify provider that a resource was added to this node. This method is called by the cmsd process in response to calling XrdSsiCluster::Added() in the xrootd process. This method only is invoked on resource storage nodes (i.e. all.role server).

Parameters
rNamePointer to the resource name that was added.

◆ ResourceRemoved()

virtual void XrdSsiProvider::ResourceRemoved ( const char *  rName)
inlinevirtual

Notify provider that a resource was removed from this node. This method is called by the cmsd process in response to calling XrdSsiCluster::Removed() in the xrootd process. This method only is invoked on resource storage nodes (i.e. all.role server).

Parameters
rNamePointer to the resource name that was removed.

◆ SetCBThreads()

virtual void XrdSsiProvider::SetCBThreads ( int  cbNum,
int  ntNum = 0 
)
inlinevirtual

Set thread values. This call is deprecated. You should use SetConfig(). This method has no meaning server-side and is ignored.

Parameters
cbNumEquivalent to SetConfig("cbThreads", cbNum).
ntNumEquivalent to SetConfig("netThreads", ntNum).

◆ SetConfig()

virtual bool XrdSsiProvider::SetConfig ( XrdSsiErrInfo eInfo,
std::string &  optname,
int  optvalue 
)
inlinevirtual

Set a configuration option for execution behaviour.

Parameters
eInfoThe object where error status is to be placed.
optnameThe name of the option (see table below).
optvalueThe value to be set for the option.
Returns
true Option set.
false Option not set, eInfo holds the reason.
Note
All calls to SetConfig() must occur before GetService() is called.

The following table list the currently supported keynames and what the value actually does. These options only apply to the client. The options must be set before calling GetService().

cbThreads The maximum number of threads to be used for callbacks and sets the maximum number of active callbacks (default 300). set a value between 1 and 32767. Note: the nproc ulimit is final arbiter of the actual number of threads to use. hiResTime enables the use of a high resolution timer in log message timestamps. The optvalue is immaterial as this simply sets feature on and once set on cannot be set off. netThreads The maximum number of threads to be used to handle network traffic. The minimum is 3, the default is 10% of cbThreads but no more than 100. pollers The number network interrupt pollers to run. Larger values allow the initial fielding of more interrupts. Care must be taken to not overrun netThreads. The default is 3. The suggested maximum is the number of cores. reqDispatch Request dispatch algorithm to use when contact has multiple endpoints. Choose one of: < 0: Random choice each time. = 0: Use DNS order. > 0: Round robbin (the default).

◆ SetSpread()

virtual void XrdSsiProvider::SetSpread ( short  ssz)
inlinevirtual

Set the client-size request spread size.

Parameters
sszThe spread value which may be <0, -0, or >0: >0 The maximum number of connections to use to to handle requests. No more or less are used until reset. =0 Turns on auto-tuning using curent setting. The initial default is 4. The size is automatically increased to accomodate the number of simultaeous requests. <0 Turns on auto-tuning using curent setting using the abs(sval) as the new spread value. The size is The size is automatically increased to accomodate the number of simultaeous requests.
Note
This method may be called at any time. An abs(ssz) value > 1024 is set to 1024. Auto-tuning must be requested; it's not the default.

◆ SetTimeout()

virtual void XrdSsiProvider::SetTimeout ( tmoType  what,
int  tmoval 
)
inlinevirtual

Member Data Documentation

◆ SsiVersion

const int XrdSsiProvider::SsiVersion = 0x00010000
static

Obtain the version of the abstract class used by underlying implementation. The version returned must match the version compiled in the loading library. If it does not, initialization fails.

Referenced by GetVersion().


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