Update SSLContext to use folly::Random and discrete_distribution
[folly.git] / folly / Uri-inl.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef FOLLY_URI_H_
18 #error This file may only be included from folly/Uri.h
19 #endif
20
21 #include <folly/Conv.h>
22
23 namespace folly {
24
25 template <class String>
26 String Uri::toString() const {
27   String str;
28   if (hasAuthority_) {
29     toAppend(scheme_, "://", &str);
30     if (!password_.empty()) {
31       toAppend(username_, ":", password_, "@", &str);
32     } else if (!username_.empty()) {
33       toAppend(username_, "@", &str);
34     }
35     toAppend(host_, &str);
36     if (port_ != 0) {
37       toAppend(":", port_, &str);
38     }
39   } else {
40     toAppend(scheme_, ":", &str);
41   }
42   toAppend(path_, &str);
43   if (!query_.empty()) {
44     toAppend("?", query_, &str);
45   }
46   if (!fragment_.empty()) {
47     toAppend("#", fragment_, &str);
48   }
49   return str;
50 }
51
52 }  // namespace folly