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 
33 #include "XrdOuc/XrdOucErrInfo.hh"
34 #include "XrdSys/XrdSysPthread.hh"
35 
36 class XrdScheduler;
37 class XrdOurError;
38 class XrdXrootdStats;
39 
40 struct iovec;
41 
43 {
44 public:
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 
58  void sendResp(XrdOucErrInfo *eInfo,
59  XResponseType xrt, int *Data=0,
60  const char *Msg=0, int Mlen=0);
61 
62  void sendVesp(XrdOucErrInfo *eInfo,
63  XResponseType xrt,
64  struct iovec *ioV, int ioN);
65 
66 static 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 
75 private:
76  const char *Opname;
77  const char Opcode;
78 };
79 #endif
const char Opcode
Definition: XrdXrootdCallBack.hh:77
XResponseType
Definition: XProtocol.hh:889
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:44
Definition: XrdOucErrInfo.hh:100
const char * Func()
Definition: XrdXrootdCallBack.hh:50
const char * Opname
Definition: XrdXrootdCallBack.hh:76
void sendVesp(XrdOucErrInfo *eInfo, XResponseType xrt, struct iovec *ioV, int ioN)
~XrdXrootdCallBack()
Definition: XrdXrootdCallBack.hh:74
XrdXrootdCallBack(const char *opn, const char opc)
Definition: XrdXrootdCallBack.hh:71
void Done(int &Result, XrdOucErrInfo *eInfo, const char *Path=0)
Definition: XrdXrootdStats.hh:39
Definition: XrdXrootdCallBack.hh:42
void sendError(int rc, XrdOucErrInfo *eInfo, const char *Path)
char Oper()
Definition: XrdXrootdCallBack.hh:52
Definition: XrdOucErrInfo.hh:484
int Same(unsigned long long arg1, unsigned long long arg2)