xrootd
Loading...
Searching...
No Matches
XrdPssUtils.hh
Go to the documentation of this file.
1#ifndef __XRDPSS_UTILS_HH__
2#define __XRDPSS_UTILS_HH__
3/******************************************************************************/
4/* */
5/* X r d P s s U t i l s . h h */
6/* */
7/* (c) 2020 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 <vector>
34
36{
37public:
38
39// Get the domain associated with he hostname
40//
41static
42const char *getDomain(const char *hName);
43
44// Check if protocol will send this to an xrootd protocol server
45//
46static bool is4Xrootd(const char *pname);
47
48// Validate a protocol (i.e. it is one we actually support)
49//
50static
51const char *valProt(const char *pname, int &plen, int adj=0);
52
53// Vectorize a comma separated list and return pointers into the input string
54// to each element in the list. The list itself is modified.
55//
56static bool Vectorize(char *str, std::vector<char *> &vec, char sep);
57
60};
61
62// A quick inline to test for xroot path forwarding
63//
64#define IS_FWDPATH(x) ((*(x+1) == 'x' || *(x+1) == 'r') \
65 && (!strncmp("/xroot:/", x,8) || !strncmp("/root:/", x,7)\
66 || !strncmp("/xroots:/",x,9) || !strncmp("/roots:/",x,8)))
67#endif
Definition XrdPssUtils.hh:36
static bool is4Xrootd(const char *pname)
static const char * getDomain(const char *hName)
~XrdPssUtils()
Definition XrdPssUtils.hh:59
static bool Vectorize(char *str, std::vector< char * > &vec, char sep)
XrdPssUtils()
Definition XrdPssUtils.hh:58
static const char * valProt(const char *pname, int &plen, int adj=0)