Logo ROOT   6.16/01
Reference Guide
TUrl.cxx
Go to the documentation of this file.
1// @(#)root/base:$Id$
2// Author: Fons Rademakers 17/01/97
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12/** \class TUrl
13\ingroup Base
14
15This class represents a WWW compatible URL.
16It provides member functions to return the different parts of
17an URL. The supported url format is:
18~~~ {.cpp}
19 [proto://][user[:passwd]@]host[:port]/file.ext[#anchor][?options]
20~~~
21*/
22
23#include <stdlib.h>
24#include "TUrl.h"
25#include "THashList.h"
26#include "TObjArray.h"
27#include "TObjString.h"
28#include "TEnv.h"
29#include "TSystem.h"
30#include "TMap.h"
31#include "TROOT.h"
32
35
36#ifdef R__COMPLETE_MEM_TERMINATION
37namespace {
38 class TUrlCleanup {
39 TObjArray **fSpecialProtocols;
40 THashList **fHostFQDNs;
41 public:
42 TUrlCleanup(TObjArray **protocols, THashList **hosts) : fSpecialProtocols(protocols),fHostFQDNs(hosts) {}
43 ~TUrlCleanup() {
44 if (*fSpecialProtocols) (*fSpecialProtocols)->Delete();
45 delete *fSpecialProtocols;
46 *fSpecialProtocols = 0;
47 if (*fHostFQDNs) (*fHostFQDNs)->Delete();
48 delete *fHostFQDNs;
49 *fHostFQDNs = 0;
50 }
51 };
52}
53#endif
54
56
57////////////////////////////////////////////////////////////////////////////////
58/// Parse url character string and split in its different subcomponents.
59/// Use IsValid() to check if URL is legal.
60/// ~~~ {.cpp}
61/// url: [proto://][user[:passwd]@]host[:port]/file.ext[?options][#anchor]
62/// ~~~
63/// Known protocols: http, root, proof, ftp, news and any special protocols
64/// defined in the rootrc Url.Special key.
65/// The default protocol is "http", unless defaultIsFile is true in which
66/// case the url is assumed to be of type "file".
67/// If a passwd contains a @ it must be escaped by a \\, e.g.
68/// "pip@" becomes "pip\\@".
69///
70/// Default ports: http=80, root=1094, proof=1093, ftp=20, news=119.
71/// Port #1093 has been assigned by IANA (www.iana.org) to proofd.
72/// Port #1094 has been assigned by IANA (www.iana.org) to rootd.
73
74TUrl::TUrl(const char *url, Bool_t defaultIsFile)
75{
76 SetUrl(url, defaultIsFile);
77
78#ifdef R__COMPLETE_MEM_TERMINATION
79 static TUrlCleanup cleanup(&fgSpecialProtocols,&fgHostFQDNs);
80#endif
81}
82
83////////////////////////////////////////////////////////////////////////////////
84/// Cleanup.
85
87{
88 delete fOptionsMap;
89}
90
91////////////////////////////////////////////////////////////////////////////////
92/// Parse url character string and split in its different subcomponents.
93/// Use IsValid() to check if URL is legal.
94///~~~ {.cpp}
95/// url: [proto://][user[:passwd]@]host[:port]/file.ext[?options][#anchor]
96///~~~
97/// Known protocols: http, root, proof, ftp, news and any special protocols
98/// defined in the rootrc Url.Special key.
99/// The default protocol is "http", unless defaultIsFile is true in which
100/// case the url is assumed to be of type "file".
101/// If a passwd contains a @ it must be escaped by a \\, e.g.
102/// "pip@" becomes "pip\\@".
103///
104/// Default ports: http=80, root=1094, proof=1093, ftp=20, news=119.
105/// Port #1093 has been assigned by IANA (www.iana.org) to proofd.
106/// Port #1094 has been assigned by IANA (www.iana.org) to rootd.
107
108void TUrl::SetUrl(const char *url, Bool_t defaultIsFile)
109{
110 fOptionsMap = 0;
111
112 if (!url || !url[0]) {
113 fPort = -1;
114 return;
115 }
116
117 // Set defaults
118 fUrl = "";
119 fProtocol = "http";
120 fUser = "";
121 fPasswd = "";
122 fHost = "";
123 fPort = 80;
124 fFile = "";
125 fAnchor = "";
126 fOptions = "";
127 fFileOA = "";
128 fHostFQ = "";
129
130 // if url starts with a / consider it as a file url
131 if (url[0] == '/')
132 defaultIsFile = kTRUE;
133
134 // Find protocol
135 char *s, sav;
136
137 char *u, *u0 = Strip(url);
138tryfile:
139 u = u0;
140
141 // Handle special protocol cases: "file:", "rfio:", etc.
142 for (int i = 0; i < GetSpecialProtocols()->GetEntriesFast(); i++) {
144 TString s1 = os->GetString();
145 int l = s1.Length();
146 Bool_t stripoff = kFALSE;
147 if (s1.EndsWith("/-")) {
148 stripoff = kTRUE;
149 s1 = s1.Strip(TString::kTrailing, '-');
150 l--;
151 }
152 if (!strncmp(u, s1, l)) {
153 if (s1(0) == '/' && s1(l-1) == '/') {
154 // case with file namespace like: /alien/user/file.root
155 fProtocol = s1(1, l-2);
156 if (stripoff)
157 l--; // strip off namespace prefix from file name
158 else
159 l = 0; // leave namespace prefix as part of file name
160 } else {
161 // case with protocol, like: rfio:machine:/data/file.root
162 fProtocol = s1(0, l-1);
163 }
164 if (!strncmp(u+l, "//", 2))
165 u += l+2;
166 else
167 u += l;
168 fPort = 0;
169
170 FindFile(u, kFALSE);
171
172 delete [] u0;
173 return;
174 }
175 }
176
177 u = u0;
178
179 char *x, *t, *s2;
180 // allow x:/path as Windows filename
181 if ((s = strstr(u, ":/")) && u+1 != s) {
182 if (*(s+2) != '/') {
183 Error("TUrl", "%s malformed, URL must contain \"://\"", u0);
184 fPort = -1;
185 goto cleanup;
186 }
187 sav = *s;
188 *s = 0;
189 SetProtocol(u, kTRUE);
190 *s = sav;
191 s += 3;
192 // allow url of form: "proto://"
193 } else {
194 if (defaultIsFile) {
195 char *newu = new char [strlen("file:") + strlen(u0) + 1];
196 sprintf(newu, "file:%s", u0);
197 delete [] u0;
198 u0 = newu;
199 goto tryfile;
200 }
201 s = u;
202 }
203
204 // Find user and passwd
205 u = s;
206 t = s;
207again:
208 if ((s = strchr(t, '@')) && (
209 ((x = strchr(t, '/')) && s < x) ||
210 ((x = strchr(t, '?')) && s < x) ||
211 ((x = strchr(t, '#')) && s < x) ||
212 (!strchr(t, '/'))
213 )) {
214 if (*(s-1) == '\\') {
215 t = s+1;
216 goto again;
217 }
218 sav = *s;
219 *s = 0;
220 if ((s2 = strchr(u, ':'))) {
221 *s2 = 0;
222 fUser = u;
223 *s2 = ':';
224 s2++;
225 if (*s2) {
226 fPasswd = s2;
227 fPasswd.ReplaceAll("\\@", "@");
228 }
229 } else
230 fUser = u;
231 *s = sav;
232 s++;
233 } else
234 s = u;
235
236 // Find host
237 u = s;
238 if ((s = strchr(u, ':')) || (s = strchr(u, '/')) || (s = strchr(u, '?')) || (s = strchr(u, '#'))) {
239 if ((strchr (u, ':') > strchr(u, '/')) && (strchr (u, '/')))
240 s = strchr(u, '/');
241 sav = *s;
242 *s = 0;
243 fHost = u;
244 *s = sav;
245 if (sav == ':') {
246 s++;
247 // Get port #
248 if (!*s) {
249 fPort = -1;
250 goto cleanup;
251 }
252 u = s;
253 if ((s = strchr(u, '/')) || (s = strchr(u, '?')) || (s = strchr(u, '#'))) {
254 sav = *s;
255 *s = 0;
256 fPort = atoi(u);
257 *s = sav;
258 } else {
259 fPort = atoi(u);
260 goto cleanup;
261 }
262 }
263 } else {
264 fHost = u;
265 goto cleanup;
266 }
267
268 if (!*s) goto cleanup;
269
270 // Find file
271 u = s;
272 if (*u == '/' && fHost.Length())
273 u++;
274
275 FindFile(u);
276
277cleanup:
278 delete [] u0;
279}
280
281////////////////////////////////////////////////////////////////////////////////
282/// Find file and optionally anchor and options.
283
284void TUrl::FindFile(char *u, Bool_t stripDoubleSlash)
285{
286 char *s, sav;
287
288 // Locate anchor and options, if any
289 char *opt = strchr(u, '?');
290 char *anc = strchr(u, '#');
291
292 // URL invalid if anchor is coming before the options
293 if (opt && anc && opt > anc) {
294 fPort = -1;
295 return;
296 }
297
298 if ((s = opt) || (s = anc)) {
299 sav = *s;
300 *s = 0;
301 fFile = u;
302 if (stripDoubleSlash)
303 fFile.ReplaceAll("//", "/");
304 *s = sav;
305 s++;
306 if (sav == '?') {
307 // Get options
308 if (!*s) {
309 // options string is empty
310 return;
311 }
312 u = s;
313 if ((s = strchr(u, '#'))) {
314 sav = *s;
315 *s = 0;
316 fOptions = u;
317 *s = sav;
318 s++;
319 } else {
320 fOptions = u;
321 return;
322 }
323 }
324 if (!*s) {
325 // anchor string is empty
326 return;
327 }
328 } else {
329 fFile = u;
330 if (stripDoubleSlash)
331 fFile.ReplaceAll("//", "/");
332 return;
333 }
334
335 // Set anchor
336 fAnchor = s;
337}
338
339////////////////////////////////////////////////////////////////////////////////
340/// TUrl copy ctor.
341
342TUrl::TUrl(const TUrl &url) : TObject(url)
343{
344 fUrl = url.fUrl;
345 fProtocol = url.fProtocol;
346 fUser = url.fUser;
347 fPasswd = url.fPasswd;
348 fHost = url.fHost;
349 fFile = url.fFile;
350 fAnchor = url.fAnchor;
351 fOptions = url.fOptions;
352 fPort = url.fPort;
353 fFileOA = url.fFileOA;
354 fHostFQ = url.fHostFQ;
355 fOptionsMap = 0;
356}
357
358////////////////////////////////////////////////////////////////////////////////
359/// TUrl assignment operator.
360
362{
363 if (this != &rhs) {
365 fUrl = rhs.fUrl;
366 fProtocol = rhs.fProtocol;
367 fUser = rhs.fUser;
368 fPasswd = rhs.fPasswd;
369 fHost = rhs.fHost;
370 fFile = rhs.fFile;
371 fAnchor = rhs.fAnchor;
372 fOptions = rhs.fOptions;
373 fPort = rhs.fPort;
374 fFileOA = rhs.fFileOA;
375 fHostFQ = rhs.fHostFQ;
376 fOptionsMap = 0;
377 }
378 return *this;
379}
380
381////////////////////////////////////////////////////////////////////////////////
382/// Return full URL. If withDflt is kTRUE, explicitly add the port even
383/// if it matches the default value for the URL protocol.
384
385const char *TUrl::GetUrl(Bool_t withDeflt) const
386{
387 if (((TestBit(kUrlWithDefaultPort) && !withDeflt) ||
388 (!TestBit(kUrlWithDefaultPort) && withDeflt)) &&
390 fUrl = "";
391
392 if (IsValid() && fUrl == "") {
393 // Handle special protocol cases: file:, rfio:, etc.
394 for (int i = 0; i < GetSpecialProtocols()->GetEntriesFast(); i++) {
396 TString &s = os->String();
397 int l = s.Length();
398 if (fProtocol == s(0, l-1)) {
399 if (fFile[0] == '/')
400 fUrl = fProtocol + "://" + fFile;
401 else
402 fUrl = fProtocol + ":" + fFile;
403 if (fOptions != "") {
404 fUrl += "?";
405 fUrl += fOptions;
406 }
407 if (fAnchor != "") {
408 fUrl += "#";
409 fUrl += fAnchor;
410 }
411 return fUrl;
412 }
413 }
414
415 Bool_t deflt = kFALSE;
416 if ((!fProtocol.CompareTo("http") && fPort == 80) ||
417 (fProtocol.BeginsWith("proof") && fPort == 1093) ||
418 (fProtocol.BeginsWith("root") && fPort == 1094) ||
419 (!fProtocol.CompareTo("ftp") && fPort == 20) ||
420 (!fProtocol.CompareTo("news") && fPort == 119) ||
421 (!fProtocol.CompareTo("https") && fPort == 443) ||
422 fPort == 0) {
423 deflt = kTRUE;
424 ((TUrl *)this)->SetBit(kUrlHasDefaultPort);
425 }
426
427 fUrl = fProtocol + "://";
428 if (fUser != "") {
429 fUrl += fUser;
430 if (fPasswd != "") {
431 fUrl += ":";
433 passwd.ReplaceAll("@", "\\@");
434 fUrl += passwd;
435 }
436 fUrl += "@";
437 }
438 if (withDeflt)
439 ((TUrl*)this)->SetBit(kUrlWithDefaultPort);
440 else
442
443 if (!deflt || withDeflt) {
444 char p[10];
445 sprintf(p, "%d", fPort);
446 fUrl = fUrl + fHost + ":" + p + "/" + fFile;
447 } else
448 fUrl = fUrl + fHost + "/" + fFile;
449 if (fOptions != "") {
450 fUrl += "?";
451 fUrl += fOptions;
452 }
453 if (fAnchor != "") {
454 fUrl += "#";
455 fUrl += fAnchor;
456 }
457 }
458
459 fUrl.ReplaceAll("////", "///");
460 return fUrl;
461}
462
463////////////////////////////////////////////////////////////////////////////////
464/// Return fully qualified domain name of url host. If host cannot be
465/// resolved or not valid return the host name as originally specified.
466
467const char *TUrl::GetHostFQDN() const
468{
469 if (fHostFQ == "") {
470 // Check if we already resolved it
472 if (!fqdn) {
474 if (adr.IsValid()) {
475 fHostFQ = adr.GetHostName();
476 } else
477 fHostFQ = "-";
479 if (!fgHostFQDNs) {
482 }
485 } else {
486 fHostFQ = fqdn->GetTitle();
487 }
488 }
489 if (fHostFQ == "-")
490 return fHost;
491 return fHostFQ;
492}
493
494////////////////////////////////////////////////////////////////////////////////
495/// Return the file and its options (the string specified behind the ?).
496/// Convenience function useful when the option is used to pass
497/// authentication/access information for the specified file.
498
499const char *TUrl::GetFileAndOptions() const
500{
501 if (fFileOA == "") {
502 fFileOA = fFile;
503 if (fOptions != "") {
504 fFileOA += "?";
505 fFileOA += fOptions;
506 }
507 if (fAnchor != "") {
508 fFileOA += "#";
509 fFileOA += fAnchor;
510 }
511 }
512 return fFileOA;
513}
514
515////////////////////////////////////////////////////////////////////////////////
516/// Set protocol and, optionally, change the port accordingly.
517
518void TUrl::SetProtocol(const char *proto, Bool_t setDefaultPort)
519{
521 if (setDefaultPort) {
522 if (!fProtocol.CompareTo("http"))
523 fPort = 80;
524 else if (!fProtocol.CompareTo("https"))
525 fPort = 443;
526 else if (fProtocol.BeginsWith("proof")) // can also be proofs or proofk
527 fPort = 1093;
528 else if (fProtocol.BeginsWith("root")) // can also be roots or rootk
529 fPort = 1094;
530 else if (!fProtocol.CompareTo("ftp"))
531 fPort = 20;
532 else if (!fProtocol.CompareTo("news"))
533 fPort = 119;
534 else {
535 // generic protocol (no default port)
536 fPort = 0;
537 }
538 }
539 fUrl = "";
540}
541
542////////////////////////////////////////////////////////////////////////////////
543/// Compare two urls as strings.
544
545Int_t TUrl::Compare(const TObject *obj) const
546{
547 if (this == obj) return 0;
548 if (TUrl::Class() != obj->IsA()) return -1;
549 return TString(GetUrl()).CompareTo(((TUrl*)obj)->GetUrl(), TString::kExact);
550}
551
552////////////////////////////////////////////////////////////////////////////////
553/// Print URL on stdout.
554
556{
557 if (fPort == -1)
558 Printf("Illegal URL");
559
560 Printf("%s", GetUrl());
561}
562
563////////////////////////////////////////////////////////////////////////////////
564/// Read the list of special protocols from the rootrc files.
565/// These protocols will be parsed in a protocol and a file part,
566/// no host or other info will be determined. This is typically
567/// used for legacy file descriptions like: rfio:host:/path/file.root.
568
570{
572 static Bool_t usedEnv = kFALSE;
573
574 if (!gEnv) {
578 fgSpecialProtocols->Add(new TObjString("file:"));
579 return fgSpecialProtocols;
580 }
581
582 if (usedEnv)
583 return fgSpecialProtocols;
584
587
590
591 const char *protos = gEnv->GetValue("Url.Special", "file: rfio: hpss: castor: dcache: dcap:");
592 usedEnv = kTRUE;
593
594 if (protos) {
595 Int_t cnt = 0;
596 char *p = StrDup(protos);
597 while (1) {
598 TObjString *proto = new TObjString(strtok(!cnt ? p : 0, " "));
599 if (proto->String().IsNull()) {
600 delete proto;
601 break;
602 }
604 cnt++;
605 }
606 delete [] p;
607 }
608 return fgSpecialProtocols;
609}
610
611
612////////////////////////////////////////////////////////////////////////////////
613/// Parse URL options into a key/value map.
614
616{
617 if (fOptionsMap) return;
618
619 TString urloptions = GetOptions();
620 TObjArray *objOptions = urloptions.Tokenize("&");
621 for (Int_t n = 0; n < objOptions->GetEntries(); n++) {
622 TString loption = ((TObjString *) objOptions->At(n))->GetName();
623 TObjArray *objTags = loption.Tokenize("=");
624 if (!fOptionsMap) {
625 fOptionsMap = new TMap;
627 }
628 if (objTags->GetEntries() == 2) {
629 TString key = ((TObjString *) objTags->At(0))->GetName();
630 TString value = ((TObjString *) objTags->At(1))->GetName();
631 fOptionsMap->Add(new TObjString(key), new TObjString(value));
632 } else {
633 TString key = ((TObjString *) objTags->At(0))->GetName();
634 fOptionsMap->Add(new TObjString(key), 0);
635 }
636 delete objTags;
637 }
638 delete objOptions;
639}
640
641
642////////////////////////////////////////////////////////////////////////////////
643/// Return a value for a given key from the URL options.
644/// Returns 0 in case key is not found.
645
646const char *TUrl::GetValueFromOptions(const char *key) const
647{
648 if (!key) return 0;
649 ParseOptions();
650 TObject *option = fOptionsMap ? fOptionsMap->GetValue(key) : 0;
651 return (option ? ((TObjString*)fOptionsMap->GetValue(key))->GetName(): 0);
652}
653
654////////////////////////////////////////////////////////////////////////////////
655/// Return a value for a given key from the URL options as an Int_t,
656/// a missing key returns -1.
657
659{
660 if (!key) return -1;
661 ParseOptions();
662 TObject *option = fOptionsMap ? fOptionsMap->GetValue(key) : 0;
663 return (option ? (atoi(((TObjString*)fOptionsMap->GetValue(key))->GetName())) : -1);
664}
665
666////////////////////////////////////////////////////////////////////////////////
667/// Returns true if the given key appears in the URL options list.
668
669Bool_t TUrl::HasOption(const char *key) const
670{
671 if (!key) return kFALSE;
672 ParseOptions();
673
675 return kTRUE;
676 return kFALSE;
677}
678
679////////////////////////////////////////////////////////////////////////////////
680/// Recompute the path removing all relative directory jumps via '..'.
681
683{
684 Ssiz_t slash = 0;
685 while ( (slash = fFile.Index("/..") ) != kNPOS) {
686 // find backwards the next '/'
687 Bool_t found = kFALSE;
688 for (int l = slash-1; l >=0; l--) {
689 if (fFile[l] == '/') {
690 // found previous '/'
691 fFile.Remove(l, slash+3-l);
692 found = kTRUE;
693 break;
694 }
695 }
696 if (!found)
697 break;
698 }
699}
void Class()
Definition: Class.C:29
#define s1(x)
Definition: RSha256.hxx:91
const Ssiz_t kNPOS
Definition: RtypesCore.h:111
int Int_t
Definition: RtypesCore.h:41
int Ssiz_t
Definition: RtypesCore.h:63
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassImp(name)
Definition: Rtypes.h:363
R__EXTERN TEnv * gEnv
Definition: TEnv.h:171
#define Printf
Definition: TGeoToOCC.h:18
R__EXTERN TVirtualMutex * gROOTMutex
Definition: TROOT.h:57
char * Strip(const char *str, char c=' ')
Strip leading and trailing c (blanks by default) from a string.
Definition: TString.cxx:2429
char * StrDup(const char *str)
Duplicate the string str.
Definition: TString.cxx:2465
R__EXTERN TSystem * gSystem
Definition: TSystem.h:540
#define R__LOCKGUARD(mutex)
const char * proto
Definition: civetweb.c:16604
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
Definition: TEnv.cxx:491
THashList implements a hybrid collection class consisting of a hash table and a list to store TObject...
Definition: THashList.h:34
TObject * FindObject(const char *name) const
Find object using its name.
Definition: THashList.cxx:262
void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
Definition: THashList.cxx:207
This class represents an Internet Protocol (IP) address.
Definition: TInetAddress.h:36
const char * GetHostName() const
Definition: TInetAddress.h:71
Bool_t IsValid() const
Definition: TInetAddress.h:76
virtual void Add(TObject *obj)
Definition: TList.h:87
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
Definition: TMap.h:40
void Add(TObject *obj)
This function may not be used (but we need to provide it since it is a pure virtual in TCollection).
Definition: TMap.cxx:53
virtual void SetOwnerKeyValue(Bool_t ownkeys=kTRUE, Bool_t ownvals=kTRUE)
Set ownership for keys and values.
Definition: TMap.cxx:351
TObject * GetValue(const char *keyname) const
Returns a pointer to the value associated with keyname as name of the key.
Definition: TMap.cxx:235
TObject * FindObject(const char *keyname) const
Check if a (key,value) pair exists with keyname as name of the key.
Definition: TMap.cxx:214
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
virtual const char * GetTitle() const
Returns title of object.
Definition: TNamed.h:48
An array of TObjects.
Definition: TObjArray.h:37
Int_t GetEntriesFast() const
Definition: TObjArray.h:64
void Add(TObject *obj)
Definition: TObjArray.h:73
Int_t GetEntries() const
Return the number of objects in array (i.e.
Definition: TObjArray.cxx:522
TObject * UncheckedAt(Int_t i) const
Definition: TObjArray.h:89
virtual void Delete(Option_t *option="")
Remove all objects from the array AND delete all heap based objects.
Definition: TObjArray.cxx:355
TObject * At(Int_t idx) const
Definition: TObjArray.h:165
Collectable string class.
Definition: TObjString.h:28
const TString & GetString() const
Definition: TObjString.h:47
TString & String()
Definition: TObjString.h:49
Mother of all ROOT objects.
Definition: TObject.h:37
virtual const char * GetName() const
Returns name of object.
Definition: TObject.cxx:357
TObject & operator=(const TObject &rhs)
TObject assignment operator.
Definition: TObject.h:271
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:172
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:880
void ResetBit(UInt_t f)
Definition: TObject.h:171
Basic string class.
Definition: TString.h:131
Ssiz_t Length() const
Definition: TString.h:405
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
Definition: TString.cxx:406
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition: TString.h:687
@ kTrailing
Definition: TString.h:262
@ kExact
Definition: TString.h:263
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
Definition: TString.cxx:2172
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
Definition: TString.h:610
TString & Remove(Ssiz_t pos)
Definition: TString.h:668
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
Definition: TString.h:634
virtual TInetAddress GetHostByName(const char *server)
Get Internet Protocol (IP) address of host.
Definition: TSystem.cxx:2334
This class represents a WWW compatible URL.
Definition: TUrl.h:35
TString fUrl
Definition: TUrl.h:38
TString fAnchor
Definition: TUrl.h:44
void CleanRelativePath()
Recompute the path removing all relative directory jumps via '..'.
Definition: TUrl.cxx:682
static TObjArray * GetSpecialProtocols()
Read the list of special protocols from the rootrc files.
Definition: TUrl.cxx:569
@ kUrlWithDefaultPort
Definition: TUrl.h:56
@ kUrlHasDefaultPort
Definition: TUrl.h:56
TUrl()
Definition: TUrl.h:59
const char * GetUrl(Bool_t withDeflt=kFALSE) const
Return full URL.
Definition: TUrl.cxx:385
TString fHost
Definition: TUrl.h:42
void FindFile(char *u, Bool_t stripDoubleSlash=kTRUE)
Find file and optionally anchor and options.
Definition: TUrl.cxx:284
const char * GetFileAndOptions() const
Return the file and its options (the string specified behind the ?).
Definition: TUrl.cxx:499
TString fPasswd
Definition: TUrl.h:41
TString fFileOA
Definition: TUrl.h:46
const char * GetValueFromOptions(const char *key) const
Return a value for a given key from the URL options.
Definition: TUrl.cxx:646
void SetUrl(const char *url, Bool_t defaultIsFile=kFALSE)
Parse url character string and split in its different subcomponents.
Definition: TUrl.cxx:108
void SetProtocol(const char *proto, Bool_t setDefaultPort=kFALSE)
Set protocol and, optionally, change the port accordingly.
Definition: TUrl.cxx:518
TString fOptions
Definition: TUrl.h:45
TUrl & operator=(const TUrl &rhs)
TUrl assignment operator.
Definition: TUrl.cxx:361
Bool_t IsValid() const
Definition: TUrl.h:82
Int_t GetIntValueFromOptions(const char *key) const
Return a value for a given key from the URL options as an Int_t, a missing key returns -1.
Definition: TUrl.cxx:658
TString fProtocol
Definition: TUrl.h:39
Int_t Compare(const TObject *obj) const
Compare two urls as strings.
Definition: TUrl.cxx:545
TMap * fOptionsMap
Definition: TUrl.h:49
Int_t fPort
fully qualified host name
Definition: TUrl.h:48
const char * GetHostFQDN() const
Return fully qualified domain name of url host.
Definition: TUrl.cxx:467
TString fFile
Definition: TUrl.h:43
void Print(Option_t *option="") const
Print URL on stdout.
Definition: TUrl.cxx:555
static THashList * fgHostFQDNs
Definition: TUrl.h:52
void ParseOptions() const
Parse URL options into a key/value map.
Definition: TUrl.cxx:615
const char * GetOptions() const
Definition: TUrl.h:74
virtual ~TUrl()
Cleanup.
Definition: TUrl.cxx:86
TString fHostFQ
file with option and anchor
Definition: TUrl.h:47
TString fUser
Definition: TUrl.h:40
Bool_t HasOption(const char *key) const
Returns true if the given key appears in the URL options list.
Definition: TUrl.cxx:669
static TObjArray * fgSpecialProtocols
map containing options key/value pairs
Definition: TUrl.h:51
Double_t x[n]
Definition: legend1.C:17
const Int_t n
Definition: legend1.C:16
static constexpr double s
const char * cnt
Definition: TXMLSetup.cxx:74
TCanvas * slash()
Definition: slash.C:1
auto * l
Definition: textangle.C:4