Adding support for in-place use of ProducerConsumerQueue.
[folly.git] / folly / String.cpp
1 /*
2  * Copyright 2012 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 #include "folly/String.h"
18 #include "folly/Format.h"
19
20 #include <cerrno>
21 #include <cstdarg>
22 #include <cstring>
23 #include <stdexcept>
24 #include <iterator>
25 #include <glog/logging.h>
26
27 #undef FOLLY_DEMANGLE
28 #if defined(__GNUG__) && __GNUG__ >= 4
29 # include <cxxabi.h>
30 # define FOLLY_DEMANGLE 1
31 #endif
32
33 namespace folly {
34
35 namespace {
36
37 inline void stringPrintfImpl(std::string& output, const char* format,
38                              va_list args) {
39   // Tru to the space at the end of output for our output buffer.
40   // Find out write point then inflate its size temporarily to its
41   // capacity; we will later shrink it to the size needed to represent
42   // the formatted string.  If this buffer isn't large enough, we do a
43   // resize and try again.
44
45   const auto write_point = output.size();
46   auto remaining = output.capacity() - write_point;
47   output.resize(output.capacity());
48
49   va_list args_copy;
50   va_copy(args_copy, args);
51   int bytes_used = vsnprintf(&output[write_point], remaining, format,
52                              args_copy);
53   va_end(args_copy);
54   if (bytes_used < 0) {
55     throw std::runtime_error(
56       to<std::string>("Invalid format string; snprintf returned negative "
57                       "with format string: ", format));
58   } else if (bytes_used < remaining) {
59     // There was enough room, just shrink and return.
60     output.resize(write_point + bytes_used);
61   } else {
62     output.resize(write_point + bytes_used + 1);
63     remaining = bytes_used + 1;
64     va_list args_copy;
65     va_copy(args_copy, args);
66     bytes_used = vsnprintf(&output[write_point], remaining, format,
67                            args_copy);
68     va_end(args_copy);
69     if (bytes_used + 1 != remaining) {
70       throw std::runtime_error(
71         to<std::string>("vsnprint retry did not manage to work "
72                         "with format string: ", format));
73     }
74     output.resize(write_point + bytes_used);
75   }
76 }
77
78 }  // anon namespace
79
80 std::string stringPrintf(const char* format, ...) {
81   // snprintf will tell us how large the output buffer should be, but
82   // we then have to call it a second time, which is costly.  By
83   // guestimating the final size, we avoid the double snprintf in many
84   // cases, resulting in a performance win.  We use this constructor
85   // of std::string to avoid a double allocation, though it does pad
86   // the resulting string with nul bytes.  Our guestimation is twice
87   // the format string size, or 32 bytes, whichever is larger.  This
88   // is a hueristic that doesn't affect correctness but attempts to be
89   // reasonably fast for the most common cases.
90   std::string ret(std::max(32UL, strlen(format) * 2), '\0');
91   ret.resize(0);
92
93   va_list ap;
94   va_start(ap, format);
95   stringPrintfImpl(ret, format, ap);
96   va_end(ap);
97   return ret;
98 }
99
100 // Basic declarations; allow for parameters of strings and string
101 // pieces to be specified.
102 std::string& stringAppendf(std::string* output, const char* format, ...) {
103   va_list ap;
104   va_start(ap, format);
105   stringPrintfImpl(*output, format, ap);
106   va_end(ap);
107   return *output;
108 }
109
110 void stringPrintf(std::string* output, const char* format, ...) {
111   output->clear();
112   va_list ap;
113   va_start(ap, format);
114   stringPrintfImpl(*output, format, ap);
115   va_end(ap);
116 };
117
118 namespace {
119
120 struct PrettySuffix {
121   const char* suffix;
122   double val;
123 };
124
125 const PrettySuffix kPrettyTimeSuffixes[] = {
126   { "s ", 1e0L },
127   { "ms", 1e-3L },
128   { "us", 1e-6L },
129   { "ns", 1e-9L },
130   { "ps", 1e-12L },
131   { "s ", 0 },
132   { 0, 0 },
133 };
134
135 const PrettySuffix kPrettyBytesSuffixes[] = {
136   { "TB", int64_t(1) << 40 },
137   { "GB", int64_t(1) << 30 },
138   { "MB", int64_t(1) << 20 },
139   { "kB", int64_t(1) << 10 },
140   { "B ", 0L },
141   { 0, 0 },
142 };
143
144 const PrettySuffix kPrettyBytesMetricSuffixes[] = {
145   { "TB", 1e12L },
146   { "GB", 1e9L },
147   { "MB", 1e6L },
148   { "kB", 1e3L },
149   { "B ", 0L },
150   { 0, 0 },
151 };
152
153 const PrettySuffix kPrettyUnitsMetricSuffixes[] = {
154   { "tril", 1e12L },
155   { "bil",  1e9L },
156   { "M",    1e6L },
157   { "k",    1e3L },
158   { " ",      0  },
159   { 0, 0 },
160 };
161
162 const PrettySuffix kPrettyUnitsBinarySuffixes[] = {
163   { "T", int64_t(1) << 40 },
164   { "G", int64_t(1) << 30 },
165   { "M", int64_t(1) << 20 },
166   { "k", int64_t(1) << 10 },
167   { " ", 0 },
168   { 0, 0 },
169 };
170
171 const PrettySuffix* const kPrettySuffixes[PRETTY_NUM_TYPES] = {
172   kPrettyTimeSuffixes,
173   kPrettyBytesSuffixes,
174   kPrettyBytesMetricSuffixes,
175   kPrettyUnitsMetricSuffixes,
176   kPrettyUnitsBinarySuffixes,
177 };
178
179 }  // namespace
180
181 std::string prettyPrint(double val, PrettyType type, bool addSpace) {
182   char buf[100];
183
184   // pick the suffixes to use
185   assert(type >= 0);
186   assert(type < PRETTY_NUM_TYPES);
187   const PrettySuffix* suffixes = kPrettySuffixes[type];
188
189   // find the first suffix we're bigger than -- then use it
190   double abs_val = fabs(val);
191   for (int i = 0; suffixes[i].suffix; ++i) {
192     if (abs_val >= suffixes[i].val) {
193       snprintf(buf, sizeof buf, "%.4g%s%s",
194                (suffixes[i].val ? (val / suffixes[i].val)
195                                 : val),
196                (addSpace ? " " : ""),
197                suffixes[i].suffix);
198       return std::string(buf);
199     }
200   }
201
202   // no suffix, we've got a tiny value -- just print it in sci-notation
203   snprintf(buf, sizeof buf, "%.4g", val);
204   return std::string(buf);
205 }
206
207 std::string hexDump(const void* ptr, size_t size) {
208   std::ostringstream os;
209   hexDump(ptr, size, std::ostream_iterator<StringPiece>(os, "\n"));
210   return os.str();
211 }
212
213 fbstring errnoStr(int err) {
214   int savedErrno = errno;
215
216   // Ensure that we reset errno upon exit.
217   auto guard(makeGuard([&] { errno = savedErrno; }));
218
219   char buf[1024];
220   buf[0] = '\0';
221
222   fbstring result;
223
224   // http://www.kernel.org/doc/man-pages/online/pages/man3/strerror.3.html
225 #if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600 || \
226      !FOLLY_HAVE_FEATURES_H) && !_GNU_SOURCE
227   // Using XSI-compatible strerror_r
228   int r = strerror_r(err, buf, sizeof(buf));
229
230   if (r == -1) {
231     result = to<fbstring>(
232       "Unknown error ", err,
233       " (strerror_r failed with error ", errno, ")");
234   } else {
235     result.assign(buf);
236   }
237 #else
238   // Using GNU strerror_r
239   result.assign(strerror_r(err, buf, sizeof(buf)));
240 #endif
241
242   return result;
243 }
244
245 #ifdef FOLLY_DEMANGLE
246
247 fbstring demangle(const char* name) {
248   int status;
249   size_t len = 0;
250   // malloc() memory for the demangled type name
251   char* demangled = abi::__cxa_demangle(name, nullptr, &len, &status);
252   if (status != 0) {
253     return name;
254   }
255   // len is the length of the buffer (including NUL terminator and maybe
256   // other junk)
257   return fbstring(demangled, strlen(demangled), len, AcquireMallocatedString());
258 }
259
260 #else
261
262 fbstring demangle(const char* name) {
263   return name;
264 }
265
266 #endif
267 #undef FOLLY_DEMANGLE
268
269 namespace detail {
270
271 size_t hexDumpLine(const void* ptr, size_t offset, size_t size,
272                    std::string& line) {
273   // Line layout:
274   // 8: address
275   // 1: space
276   // (1+2)*16: hex bytes, each preceded by a space
277   // 1: space separating the two halves
278   // 3: "  |"
279   // 16: characters
280   // 1: "|"
281   // Total: 78
282   line.clear();
283   line.reserve(78);
284   const uint8_t* p = reinterpret_cast<const uint8_t*>(ptr) + offset;
285   size_t n = std::min(size - offset, size_t(16));
286   format("{:08x} ", offset).appendTo(line);
287
288   for (size_t i = 0; i < n; i++) {
289     if (i == 8) {
290       line.push_back(' ');
291     }
292     format(" {:02x}", p[i]).appendTo(line);
293   }
294
295   // 3 spaces for each byte we're not printing, one separating the halves
296   // if necessary
297   line.append(3 * (16 - n) + (n <= 8), ' ');
298   line.append("  |");
299
300   for (size_t i = 0; i < n; i++) {
301     char c = (p[i] >= 32 && p[i] <= 126 ? static_cast<char>(p[i]) : '.');
302     line.push_back(c);
303   }
304   line.append(16 - n, ' ');
305   line.push_back('|');
306   DCHECK_EQ(line.size(), 78);
307
308   return n;
309 }
310
311 } // namespace detail
312
313 }   // namespace folly