μHAL (v2.7.9)
Part of the IPbus software repository
URI.cpp
Go to the documentation of this file.
1 /*
2 ---------------------------------------------------------------------------
3 
4  This file is part of uHAL.
5 
6  uHAL is a hardware access library and programming framework
7  originally developed for upgrades of the Level-1 trigger of the CMS
8  experiment at CERN.
9 
10  uHAL is free software: you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  uHAL is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with uHAL. If not, see <http://www.gnu.org/licenses/>.
22 
23 
24  Andrew Rose, Imperial College, London
25  email: awr01 <AT> imperial.ac.uk
26 
27  Marc Magrans de Abril, CERN
28  email: marc.magrans.de.abril <AT> cern.ch
29 
30 ---------------------------------------------------------------------------
31 */
32 
33 #include "uhal/grammars/URI.hpp"
34 
35 
36 #include <iostream>
37 #include <sstream>
38 
39 
40 namespace uhal {
41 
42  std::ostream& operator<< ( std::ostream& aStr , const uhal::URI& aURI )
43  {
44  aStr << " > protocol : " << aURI.mProtocol << "\n";
45  aStr << " > hostname : " << aURI.mHostname << "\n";
46  aStr << " > port : " << aURI.mPort << "\n";
47  aStr << " > path : " << aURI.mPath << "\n";
48  aStr << " > extension : " << aURI.mExtension << "\n";
49  aStr << " > arguments :\n";
50 
51  for ( uhal::NameValuePairVectorType::const_iterator lIt = aURI.mArguments.begin() ; lIt != aURI.mArguments.end() ; ++lIt )
52  {
53  aStr << " > " << lIt->first << " = " << lIt->second << "\n";
54  }
55 
56  aStr << std::flush;
57  return aStr;
58  }
59 
60 
61  std::string toString( const uhal::URI& aURI )
62  {
63  std::stringstream lReturn;
64  // url is always of the form "protocol://hostname:port"
65  lReturn << aURI.mProtocol << "://" << aURI.mHostname;
66  if ( !aURI.mPort.empty() )
67  lReturn << ":" << aURI.mPort;
68 
69  // there is sometimes a path
70  if ( aURI.mPath != "" )
71  {
72  lReturn << "/" << aURI.mPath;
73  }
74 
75  // there is sometimes a filename extension
76  if ( aURI.mExtension != "" )
77  {
78  lReturn << "." << aURI.mExtension;
79  }
80 
81  // there are sometimes arguments
82  if ( aURI.mArguments.size() )
83  {
84  lReturn << "?";
85  uhal::NameValuePairVectorType::const_iterator lIt = aURI.mArguments.begin();
86 
87  while ( true )
88  {
89  lReturn << lIt->first << "=" << lIt->second;
90 
91  if ( ++lIt == aURI.mArguments.end() )
92  {
93  break;
94  }
95 
96  lReturn << "&";
97  }
98  }
99 
100  return lReturn.str();
101  }
102 
103 
104 }
uhal::operator<<
std::ostream & operator<<(std::ostream &aStr, const uhal::HttpResponseType &aHttpResponse)
Definition: HttpResponseGrammar.cpp:41
uhal::URI::mHostname
std::string mHostname
The "host" part of a URI of the form "protocol://host:port/patha/pathb/blah.ext?key1=val1&key2=val2&k...
Definition: URI.hpp:54
uhal::URI::mPath
std::string mPath
The "patha/pathb/blah" part of a URI of the form "protocol://host:port/patha/pathb/blah....
Definition: URI.hpp:58
uhal::URI::mArguments
NameValuePairVectorType mArguments
The "key1=val1&key2=val2&key3=val3" part of a URI of the form "protocol://host:port/patha/pathb/blah....
Definition: URI.hpp:62
uhal
Definition: HttpResponseGrammar.hpp:49
uhal::toString
std::string toString(const URI &aURI)
Definition: URI.cpp:61
uhal::URI::mExtension
std::string mExtension
The "ext" part of a URI of the form "protocol://host:port/patha/pathb/blah.ext?key1=val1&key2=val2&ke...
Definition: URI.hpp:60
URI.hpp
uhal::URI::mProtocol
std::string mProtocol
The "protocol" part of a URI of the form "protocol://host:port/patha/pathb/blah.ext?...
Definition: URI.hpp:52
uhal::URI
Struct to store a URI when parsed by boost spirit.
Definition: URI.hpp:50
uhal::URI::mPort
std::string mPort
The "port" part of a URI of the form "protocol://host:port/patha/pathb/blah.ext?key1=val1&key2=val2&k...
Definition: URI.hpp:56