xrootd
XrdXrootdCallBack.hh
Go to the documentation of this file.
1#ifndef __XRDXROOTDCALLBACK_H__
2#define __XRDXROOTDCALLBACK_H__
3/******************************************************************************/
4/* */
5/* X r d X r o o t d C a l l B a c k . h h */
6/* */
7/* (c) 2006 by the Board of Trustees of the Leland Stanford, Jr., University */
8/* All Rights Reserved */
9/* Produced by Andrew Hanushevsky for Stanford University under contract */
10/* DE-AC02-76-SFO0515 with the Department of Energy */
11/* */
12/* This file is part of the XRootD software suite. */
13/* */
14/* XRootD is free software: you can redistribute it and/or modify it under */
15/* the terms of the GNU Lesser General Public License as published by the */
16/* Free Software Foundation, either version 3 of the License, or (at your */
17/* option) any later version. */
18/* */
19/* XRootD is distributed in the hope that it will be useful, but WITHOUT */
20/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
21/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
22/* License for more details. */
23/* */
24/* You should have received a copy of the GNU Lesser General Public License */
25/* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
26/* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
27/* */
28/* The copyright holder's institutional names and contributor's names may not */
29/* be used to endorse or promote products derived from this software without */
30/* specific prior written permission of the institution or contributor. */
31/******************************************************************************/
32
35
36class XrdScheduler;
37class XrdOurError;
38class XrdXrootdStats;
39
40struct iovec;
41
43{
44public:
45
46 void Done(int &Result, //I/O: Function result
47 XrdOucErrInfo *eInfo, // In: Error information
48 const char *Path=0); // In: Path related to call
49
50 const char *Func() {return Opname;}
51
52 char Oper() {return Opcode;}
53
54 int Same(unsigned long long arg1, unsigned long long arg2);
55
56 void sendError(int rc, XrdOucErrInfo *eInfo, const char *Path);
57
59 XResponseType xrt, int *Data=0,
60 const char *Msg=0, int Mlen=0);
61
63 XResponseType xrt,
64 struct iovec *ioV, int ioN);
65
66static void setVals(XrdSysError *erp,
67 XrdXrootdStats *SIp,
68 XrdScheduler *schp,
69 int port);
70
71 XrdXrootdCallBack(const char *opn, const char opc)
72 : Opname(opn), Opcode(opc) {}
73
75private:
76 const char *Opname;
77 const char Opcode;
78};
79#endif
XResponseType
Definition: XProtocol.hh:298
Definition: XrdOucErrInfo.hh:484
Definition: XrdOucErrInfo.hh:100
Definition: XrdScheduler.hh:45
Definition: XrdSysError.hh:90
Definition: XrdXrootdCallBack.hh:43
void Done(int &Result, XrdOucErrInfo *eInfo, const char *Path=0)
XrdXrootdCallBack(const char *opn, const char opc)
Definition: XrdXrootdCallBack.hh:71
char Oper()
Definition: XrdXrootdCallBack.hh:52
~XrdXrootdCallBack()
Definition: XrdXrootdCallBack.hh:74
const char * Func()
Definition: XrdXrootdCallBack.hh:50
const char Opcode
Definition: XrdXrootdCallBack.hh:77
int Same(unsigned long long arg1, unsigned long long arg2)
void sendError(int rc, XrdOucErrInfo *eInfo, const char *Path)
void sendResp(XrdOucErrInfo *eInfo, XResponseType xrt, int *Data=0, const char *Msg=0, int Mlen=0)
void sendVesp(XrdOucErrInfo *eInfo, XResponseType xrt, struct iovec *ioV, int ioN)
const char * Opname
Definition: XrdXrootdCallBack.hh:76
static void setVals(XrdSysError *erp, XrdXrootdStats *SIp, XrdScheduler *schp, int port)
Definition: XrdXrootdStats.hh:40