Harden failure signal handler in the face of memory corruptions
[folly.git] / folly / Uri-inl.h
1 /*
2  * Copyright 2014 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   toAppend(scheme_, "://", &str);
29   if (!password_.empty()) {
30     toAppend(username_, ":", password_, "@", &str);
31   } else if (!username_.empty()) {
32     toAppend(username_, "@", &str);
33   }
34   toAppend(host_, &str);
35   if (port_ != 0) {
36     toAppend(":", port_, &str);
37   }
38   toAppend(path_, &str);
39   if (!query_.empty()) {
40     toAppend("?", query_, &str);
41   }
42   if (!fragment_.empty()) {
43     toAppend("#", fragment_, &str);
44   }
45   return str;
46 }
47
48 }  // namespace folly
49