xrootd
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
33 #include "XProtocol/XProtocol.hh"
34 #include "XrdOuc/XrdOucErrInfo.hh"
35 #include "XrdSys/XrdSysPthread.hh"
36 
37 class XrdScheduler;
38 class XrdOurError;
39 class XrdXrootdStats;
40 
41 struct iovec;
42 
44 {
45 public:
46 
47  void Done(int &Result, //I/O: Function result
48  XrdOucErrInfo *eInfo, // In: Error information
49  const char *Path=0); // In: Path related to call
50 
51  const char *Func() {return Opname;}
52 
53  char Oper() {return Opcode;}
54 
55  int Same(unsigned long long arg1, unsigned long long arg2);
56 
57  void sendError(int rc, XrdOucErrInfo *eInfo, const char *Path);
58 
59  void sendResp(XrdOucErrInfo *eInfo,
60  XResponseType xrt, int *Data=0,
61  const char *Msg=0, int Mlen=0);
62 
63  void sendVesp(XrdOucErrInfo *eInfo,
64  XResponseType xrt,
65  struct iovec *ioV, int ioN);
66 
67 static void setVals(XrdSysError *erp,
68  XrdXrootdStats *SIp,
69  XrdScheduler *schp,
70  int port);
71 
72  XrdXrootdCallBack(const char *opn, const char opc)
73  : Opname(opn), Opcode(opc) {}
74 
76 private:
77  const char *Opname;
78  const char Opcode;
79 };
80 #endif
const char Opcode
Definition: XrdXrootdCallBack.hh:78
XResponseType
Definition: XProtocol.hh:891
static void setVals(XrdSysError *erp, XrdXrootdStats *SIp, XrdScheduler *schp, int port)
void sendResp(XrdOucErrInfo *eInfo, XResponseType xrt, int *Data=0, const char *Msg=0, int Mlen=0)
Definition: XrdSysError.hh:89
Definition: XrdScheduler.hh:45
Definition: XrdOucErrInfo.hh:100
const char * Func()
Definition: XrdXrootdCallBack.hh:51
const char * Opname
Definition: XrdXrootdCallBack.hh:77
void sendVesp(XrdOucErrInfo *eInfo, XResponseType xrt, struct iovec *ioV, int ioN)
~XrdXrootdCallBack()
Definition: XrdXrootdCallBack.hh:75
XrdXrootdCallBack(const char *opn, const char opc)
Definition: XrdXrootdCallBack.hh:72
void Done(int &Result, XrdOucErrInfo *eInfo, const char *Path=0)
Definition: XrdXrootdStats.hh:39
Definition: XrdXrootdCallBack.hh:43
void sendError(int rc, XrdOucErrInfo *eInfo, const char *Path)
char Oper()
Definition: XrdXrootdCallBack.hh:53
Definition: XrdOucErrInfo.hh:484
int Same(unsigned long long arg1, unsigned long long arg2)