00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <vos/corelibs/vos/url.hh>
00025
00026 using namespace VOS;
00027
00028 #include <sys/types.h>
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 URL URL::defaults("vop", "", "4231", "");
00045
00046 void URL::setDefaults(const URL& u)
00047 {
00048 defaults=u;
00049 }
00050
00051 URL::URL() : protocol(defaults.protocol),
00052 host(defaults.host),
00053 port(defaults.port),
00054 path(defaults.path)
00055 {
00056 makeURLstr();
00057 }
00058
00059 URL::URL(const string& pr,
00060 const string& ho,
00061 const string& po,
00062 const string& pa)
00063 : protocol(pr), host(ho),
00064 port(po), path(pa)
00065 {
00066 makeURLstr();
00067 }
00068
00069 URL::URL(const string& p) throw (BadURLError)
00070 {
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106 port = defaults.getPort();
00107 path = defaults.getPath();
00108 host = defaults.getHost();
00109 protocol = defaults.getProtocol();
00110
00111 unsigned int i;
00112 for(i = 0; i < p.size() && p[i] != ':'; i++);
00113 protocol = p.substr(0,i);
00114
00115 unsigned int c = i+3;
00116 if(p.size() > i+3 && p[i+1] == '/' && p[i+2] == '/') {
00117 for(i+=3; i < p.size() && p[i] != ':' && p[i] != '/'; i++);
00118 host = p.substr(c, i - c);
00119 if(i < p.size()) {
00120 switch(p[i]) {
00121 case ':':
00122 c = ++i;
00123 for(; i < p.size() && p[i] != '/'; i++);
00124 port = p.substr(c, i - c);
00125
00126 case '/':
00127 path = p.substr(i);
00128 }
00129 }
00130 } else throw BadURLError("Malformed URL");
00131
00132 makeURLstr();
00133 }
00134
00135 void URL::makeURLstr()
00136 {
00137 urlstr.erase(urlstr.begin(), urlstr.end());
00138 urlstr += protocol + "://";
00139 urlstr += host;
00140 if(port != "") urlstr += ":" + port;
00141 urlstr += path;
00142 if(port != "") hostandport = host + ":" + port;
00143 else hostandport = host;
00144 }
00145
00146 const string& URL::getProtocol() const { return protocol; }
00147 const string& URL::getHost() const { return host; }
00148 const string& URL::getPort() const { return port; }
00149 const string& URL::getPath() const { return path; }
00150 const string& URL::getHostAndPort() const { return hostandport; }
00151 const string& URL::getString() const { return urlstr; }
00152
00153 void URL::setProtocol(const string& p) { protocol=p; makeURLstr(); }
00154 void URL::setHost(const string& h) { host=h; makeURLstr(); }
00155 void URL::setPort(const string& p) { port=p; makeURLstr(); }
00156 void URL::setPath(const string& p) { path=p; makeURLstr(); }
00157
00158 void URL::setHostAndPort(const string& hp)
00159 {
00160 unsigned int c = (unsigned int)hp.find(":");
00161 if(c != string::npos) {
00162 host=hp.substr(0, c);
00163 port=hp.substr(c+1);
00164 } else {
00165 host=hp;
00166 port=defaults.port;
00167 }
00168 makeURLstr();
00169 }
00170