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 
41 {
42 public:
43 
44  void Done(int &Result, //I/O: Function result
45  XrdOucErrInfo *eInfo, // In: Error information
46  const char *Path=0); // In: Path related to call
47 
48  const char *Func() {return Opname;}
49 
50  const char Oper() {return Opcode;}
51 
52  int Same(unsigned long long arg1, unsigned long long arg2);
53 
54  void sendError(int rc, XrdOucErrInfo *eInfo, const char *Path);
55 
56  void sendResp(XrdOucErrInfo *eInfo,
57  XResponseType xrt, int *Data=0,
58  const char *Msg=0, int ovhd=0);
59 
60 static void setVals(XrdSysError *erp,
61  XrdXrootdStats *SIp,
62  XrdScheduler *schp,
63  int port)
64  {eDest=erp; SI=SIp; Sched=schp; Port=port;}
65 
66  XrdXrootdCallBack(const char *opn, const char opc)
67  : Opname(opn), Opcode(opc) {}
68 
70 private:
74  const char *Opname;
75  const char Opcode;
76 static int Port;
77 };
78 #endif