xrootd
Loading...
Searching...
No Matches
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
36
37class XrdScheduler;
38class XrdOurError;
39class XrdXrootdStats;
40
41struct iovec;
42
44{
45public:
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
60 XResponseType xrt, int *Data=0,
61 const char *Msg=0, int Mlen=0);
62
64 XResponseType xrt,
65 struct iovec *ioV, int ioN);
66
67static 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
76private:
77 const char *Opname;
78 const char Opcode;
79};
80#endif
XResponseType
Definition XProtocol.hh:896
Definition XrdOucErrInfo.hh:483
Definition XrdOucErrInfo.hh:101
Definition XrdScheduler.hh:46
Definition XrdSysError.hh:90
Definition XrdXrootdCallBack.hh:44
void Done(int &Result, XrdOucErrInfo *eInfo, const char *Path=0)
XrdXrootdCallBack(const char *opn, const char opc)
Definition XrdXrootdCallBack.hh:72
char Oper()
Definition XrdXrootdCallBack.hh:53
~XrdXrootdCallBack()
Definition XrdXrootdCallBack.hh:75
const char * Func()
Definition XrdXrootdCallBack.hh:51
const char Opcode
Definition XrdXrootdCallBack.hh:78
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:77
static void setVals(XrdSysError *erp, XrdXrootdStats *SIp, XrdScheduler *schp, int port)
Definition XrdXrootdStats.hh:40