xrootd
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
XrdOucTPC.hh
Go to the documentation of this file.
1 #ifndef __XRDOUCTPC_HH__
2 #define __XRDOUCTPC_HH__
3 /******************************************************************************/
4 /* */
5 /* X r d O u c T P C . h h */
6 /* */
7 /* (c) 2012 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 <stdlib.h>
34 
35 class XrdOucTPC
36 {
37 public:
38 
39 static
40 const char *cgiC2Dst(const char *cKey, const char *xSrc, const char *xLfn,
41  const char *xCks, char *Buff, int Blen, int strms=0,
42  const char *iHst=0, const char *sprt=0, const char *tprt=0,
43  bool push=false);
44 
45 static
46 const char *cgiC2Src(const char *cKey, const char *xDst, int xTTL,
47  char *Buff, int Blen);
48 
49 static
50 const char *cgiD2Src(const char *cKey, const char *cOrg,
51  char *Buff, int Blen);
52 
53 static const char *tpcCks;
54 static const char *tpcDlg;
55 static const char *tpcDst;
56 static const char *tpcKey;
57 static const char *tpcLfn;
58 static const char *tpcOrg;
59 static const char *tpcPsh;
60 static const char *tpcSpr;
61 static const char *tpcSrc;
62 static const char *tpcStr;
63 static const char *tpcTpr;
64 static const char *tpcTtl;
65 
66  XrdOucTPC() {}
68 private:
69 
70 struct tpcInfo
71  {const char *uName;
72  char *hName;
73  const char *pName;
74  char User[256];
75 
76  tpcInfo() : uName(""), hName(0), pName("") {}
77  ~tpcInfo() {if (hName) free(hName);}
78  };
79 
80 static bool cgiHost(tpcInfo &Info, const char *hSpec);
81 };
82 #endif
static const char * tpcSrc
Definition: XrdOucTPC.hh:61
~tpcInfo()
Definition: XrdOucTPC.hh:77
static const char * tpcSpr
Definition: XrdOucTPC.hh:60
static const char * tpcDst
Definition: XrdOucTPC.hh:55
static const char * tpcDlg
Definition: XrdOucTPC.hh:54
static const char * cgiD2Src(const char *cKey, const char *cOrg, char *Buff, int Blen)
static bool cgiHost(tpcInfo &Info, const char *hSpec)
tpcInfo()
Definition: XrdOucTPC.hh:76
Definition: XrdOucTPC.hh:70
static const char * cgiC2Dst(const char *cKey, const char *xSrc, const char *xLfn, const char *xCks, char *Buff, int Blen, int strms=0, const char *iHst=0, const char *sprt=0, const char *tprt=0, bool push=false)
const char * uName
Definition: XrdOucTPC.hh:71
static const char * tpcTpr
Definition: XrdOucTPC.hh:63
static const char * tpcTtl
Definition: XrdOucTPC.hh:64
char User[256]
Definition: XrdOucTPC.hh:74
Definition: XrdOucTPC.hh:35
static const char * tpcStr
Definition: XrdOucTPC.hh:62
static const char * tpcOrg
Definition: XrdOucTPC.hh:58
#define Info(lvl, where, what)
Definition: XrdClientDebug.hh:52
static const char * tpcPsh
Definition: XrdOucTPC.hh:59
static const char * tpcLfn
Definition: XrdOucTPC.hh:57
static const char * tpcKey
Definition: XrdOucTPC.hh:56
~XrdOucTPC()
Definition: XrdOucTPC.hh:67
static const char * cgiC2Src(const char *cKey, const char *xDst, int xTTL, char *Buff, int Blen)
XrdOucTPC()
Definition: XrdOucTPC.hh:66
static const char * tpcCks
Definition: XrdOucTPC.hh:53
char * hName
Definition: XrdOucTPC.hh:72
const char * pName
Definition: XrdOucTPC.hh:73