URI parsing in folly
[folly.git] / folly / String-inl.h
1 /*
2  * Copyright 2013 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_STRING_INL_H_
18 #define FOLLY_STRING_INL_H_
19
20 #include <stdexcept>
21 #include <iterator>
22
23 #ifndef FOLLY_BASE_STRING_H_
24 #error This file may only be included from String.h
25 #endif
26
27 namespace folly {
28
29 namespace detail {
30 // Map from character code to value of one-character escape sequence
31 // ('\n' = 10 maps to 'n'), 'O' if the character should be printed as
32 // an octal escape sequence, or 'P' if the character is printable and
33 // should be printed as is.
34 extern const char cEscapeTable[];
35 }  // namespace detail
36
37 template <class String>
38 void cEscape(StringPiece str, String& out) {
39   char esc[4];
40   esc[0] = '\\';
41   out.reserve(out.size() + str.size());
42   auto p = str.begin();
43   auto last = p;  // last regular character
44   // We advance over runs of regular characters (printable, not double-quote or
45   // backslash) and copy them in one go; this is faster than calling push_back
46   // repeatedly.
47   while (p != str.end()) {
48     char c = *p;
49     unsigned char v = static_cast<unsigned char>(c);
50     char e = detail::cEscapeTable[v];
51     if (e == 'P') {  // printable
52       ++p;
53     } else if (e == 'O') {  // octal
54       out.append(&*last, p - last);
55       esc[1] = '0' + ((v >> 6) & 7);
56       esc[2] = '0' + ((v >> 3) & 7);
57       esc[3] = '0' + (v & 7);
58       out.append(esc, 4);
59       ++p;
60       last = p;
61     } else {  // special 1-character escape
62       out.append(&*last, p - last);
63       esc[1] = e;
64       out.append(esc, 2);
65       ++p;
66       last = p;
67     }
68   }
69   out.append(&*last, p - last);
70 }
71
72 namespace detail {
73 // Map from the character code of the character following a backslash to
74 // the unescaped character if a valid one-character escape sequence
75 // ('n' maps to 10 = '\n'), 'O' if this is the first character of an
76 // octal escape sequence, 'X' if this is the first character of a
77 // hexadecimal escape sequence, or 'I' if this escape sequence is invalid.
78 extern const char cUnescapeTable[];
79
80 // Map from the character code to the hex value, or 16 if invalid hex char.
81 extern const unsigned char hexTable[];
82 }  // namespace detail
83
84 template <class String>
85 void cUnescape(StringPiece str, String& out, bool strict) {
86   out.reserve(out.size() + str.size());
87   auto p = str.begin();
88   auto last = p;  // last regular character (not part of an escape sequence)
89   // We advance over runs of regular characters (not backslash) and copy them
90   // in one go; this is faster than calling push_back repeatedly.
91   while (p != str.end()) {
92     char c = *p;
93     if (c != '\\') {  // normal case
94       ++p;
95       continue;
96     }
97     out.append(&*last, p - last);
98     if (p == str.end()) {  // backslash at end of string
99       if (strict) {
100         throw std::invalid_argument("incomplete escape sequence");
101       }
102       out.push_back('\\');
103       last = p;
104       continue;
105     }
106     ++p;
107     char e = detail::cUnescapeTable[static_cast<unsigned char>(*p)];
108     if (e == 'O') {  // octal
109       unsigned char val = 0;
110       for (int i = 0; i < 3 && p != str.end() && *p >= '0' && *p <= '7';
111            ++i, ++p) {
112         val = (val << 3) | (*p - '0');
113       }
114       out.push_back(val);
115       last = p;
116     } else if (e == 'X') {  // hex
117       ++p;
118       if (p == str.end()) {  // \x at end of string
119         if (strict) {
120           throw std::invalid_argument("incomplete hex escape sequence");
121         }
122         out.append("\\x");
123         last = p;
124         continue;
125       }
126       unsigned char val = 0;
127       unsigned char h;
128       for (; (p != str.end() &&
129               (h = detail::hexTable[static_cast<unsigned char>(*p)]) < 16);
130            ++p) {
131         val = (val << 4) | h;
132       }
133       out.push_back(val);
134       last = p;
135     } else if (e == 'I') {  // invalid
136       if (strict) {
137         throw std::invalid_argument("invalid escape sequence");
138       }
139       out.push_back('\\');
140       out.push_back(*p);
141       ++p;
142       last = p;
143     } else {  // standard escape sequence, \' etc
144       out.push_back(e);
145       ++p;
146       last = p;
147     }
148   }
149   out.append(&*last, p - last);
150 }
151
152 namespace detail {
153 // Map from character code to escape mode:
154 // 0 = pass through
155 // 1 = unused
156 // 2 = pass through in PATH mode
157 // 3 = space, replace with '+' in QUERY mode
158 // 4 = percent-encode
159 extern const unsigned char uriEscapeTable[];
160 }  // namespace detail
161
162 template <class String>
163 void uriEscape(StringPiece str, String& out, UriEscapeMode mode) {
164   static const char hexValues[] = "0123456789abcdef";
165   char esc[3];
166   esc[0] = '%';
167   // Preallocate assuming that 25% of the input string will be escaped
168   out.reserve(out.size() + str.size() + 3 * (str.size() / 4));
169   auto p = str.begin();
170   auto last = p;  // last regular character
171   // We advance over runs of passthrough characters and copy them in one go;
172   // this is faster than calling push_back repeatedly.
173   unsigned char minEncode = static_cast<unsigned char>(mode);
174   while (p != str.end()) {
175     char c = *p;
176     unsigned char v = static_cast<unsigned char>(c);
177     unsigned char discriminator = detail::uriEscapeTable[v];
178     if (LIKELY(discriminator <= minEncode)) {
179       ++p;
180     } else if (mode == UriEscapeMode::QUERY && discriminator == 3) {
181       out.append(&*last, p - last);
182       out.push_back('+');
183       ++p;
184       last = p;
185     } else {
186       out.append(&*last, p - last);
187       esc[1] = hexValues[v >> 4];
188       esc[2] = hexValues[v & 0x0f];
189       out.append(esc, 3);
190       ++p;
191       last = p;
192     }
193   }
194   out.append(&*last, p - last);
195 }
196
197 template <class String>
198 void uriUnescape(StringPiece str, String& out, UriEscapeMode mode) {
199   out.reserve(out.size() + str.size());
200   auto p = str.begin();
201   auto last = p;
202   // We advance over runs of passthrough characters and copy them in one go;
203   // this is faster than calling push_back repeatedly.
204   while (p != str.end()) {
205     char c = *p;
206     unsigned char v = static_cast<unsigned char>(v);
207     switch (c) {
208     case '%':
209       {
210         if (UNLIKELY(std::distance(p, str.end()) < 3)) {
211           throw std::invalid_argument("incomplete percent encode sequence");
212         }
213         auto h1 = detail::hexTable[static_cast<unsigned char>(p[1])];
214         auto h2 = detail::hexTable[static_cast<unsigned char>(p[2])];
215         if (UNLIKELY(h1 == 16 || h2 == 16)) {
216           throw std::invalid_argument("invalid percent encode sequence");
217         }
218         out.append(&*last, p - last);
219         out.push_back((h1 << 4) | h2);
220         p += 3;
221         last = p;
222         break;
223       }
224     case '+':
225       if (mode == UriEscapeMode::QUERY) {
226         out.append(&*last, p - last);
227         out.push_back(' ');
228         ++p;
229         last = p;
230         break;
231       }
232       // else fallthrough
233     default:
234       ++p;
235       break;
236     }
237   }
238   out.append(&*last, p - last);
239 }
240
241 namespace detail {
242
243 /*
244  * The following functions are type-overloaded helpers for
245  * internalSplit().
246  */
247 inline size_t delimSize(char)          { return 1; }
248 inline size_t delimSize(StringPiece s) { return s.size(); }
249 inline bool atDelim(const char* s, char c) {
250  return *s == c;
251 }
252 inline bool atDelim(const char* s, StringPiece sp) {
253   return !std::memcmp(s, sp.start(), sp.size());
254 }
255
256 // These are used to short-circuit internalSplit() in the case of
257 // 1-character strings.
258 inline char delimFront(char c) {
259   // This one exists only for compile-time; it should never be called.
260   std::abort();
261   return c;
262 }
263 inline char delimFront(StringPiece s) {
264   assert(!s.empty() && s.start() != nullptr);
265   return *s.start();
266 }
267
268 /*
269  * These output conversion templates allow us to support multiple
270  * output string types, even when we are using an arbitrary
271  * OutputIterator.
272  */
273 template<class OutStringT> struct OutputConverter {};
274
275 template<> struct OutputConverter<std::string> {
276   std::string operator()(StringPiece sp) const {
277     return sp.toString();
278   }
279 };
280
281 template<> struct OutputConverter<fbstring> {
282   fbstring operator()(StringPiece sp) const {
283     return sp.toFbstring();
284   }
285 };
286
287 template<> struct OutputConverter<StringPiece> {
288   StringPiece operator()(StringPiece sp) const { return sp; }
289 };
290
291 /*
292  * Shared implementation for all the split() overloads.
293  *
294  * This uses some external helpers that are overloaded to let this
295  * algorithm be more performant if the deliminator is a single
296  * character instead of a whole string.
297  *
298  * @param ignoreEmpty iff true, don't copy empty segments to output
299  */
300 template<class OutStringT, class DelimT, class OutputIterator>
301 void internalSplit(DelimT delim, StringPiece sp, OutputIterator out,
302     bool ignoreEmpty) {
303   assert(sp.start() != nullptr);
304
305   const char* s = sp.start();
306   const size_t strSize = sp.size();
307   const size_t dSize = delimSize(delim);
308
309   OutputConverter<OutStringT> conv;
310
311   if (dSize > strSize || dSize == 0) {
312     if (!ignoreEmpty || strSize > 0) {
313       *out++ = conv(sp);
314     }
315     return;
316   }
317   if (boost::is_same<DelimT,StringPiece>::value && dSize == 1) {
318     // Call the char version because it is significantly faster.
319     return internalSplit<OutStringT>(delimFront(delim), sp, out,
320       ignoreEmpty);
321   }
322
323   int tokenStartPos = 0;
324   int tokenSize = 0;
325   for (int i = 0; i <= strSize - dSize; ++i) {
326     if (atDelim(&s[i], delim)) {
327       if (!ignoreEmpty || tokenSize > 0) {
328         *out++ = conv(StringPiece(&s[tokenStartPos], tokenSize));
329       }
330
331       tokenStartPos = i + dSize;
332       tokenSize = 0;
333       i += dSize - 1;
334     } else {
335       ++tokenSize;
336     }
337   }
338
339   if (!ignoreEmpty || tokenSize > 0) {
340     tokenSize = strSize - tokenStartPos;
341     *out++ = conv(StringPiece(&s[tokenStartPos], tokenSize));
342   }
343 }
344
345 template<class String> StringPiece prepareDelim(const String& s) {
346   return StringPiece(s);
347 }
348 inline char prepareDelim(char c) { return c; }
349
350 }
351
352 //////////////////////////////////////////////////////////////////////
353
354 template<class Delim, class String, class OutputType>
355 void split(const Delim& delimiter,
356            const String& input,
357            std::vector<OutputType>& out,
358            bool ignoreEmpty) {
359   detail::internalSplit<OutputType>(
360     detail::prepareDelim(delimiter),
361     StringPiece(input),
362     std::back_inserter(out),
363     ignoreEmpty);
364 }
365
366 template<class Delim, class String, class OutputType>
367 void split(const Delim& delimiter,
368            const String& input,
369            fbvector<OutputType>& out,
370            bool ignoreEmpty) {
371   detail::internalSplit<OutputType>(
372     detail::prepareDelim(delimiter),
373     StringPiece(input),
374     std::back_inserter(out),
375     ignoreEmpty);
376 }
377
378 template<class OutputValueType, class Delim, class String,
379          class OutputIterator>
380 void splitTo(const Delim& delimiter,
381              const String& input,
382              OutputIterator out,
383              bool ignoreEmpty) {
384   detail::internalSplit<OutputValueType>(
385     detail::prepareDelim(delimiter),
386     StringPiece(input),
387     out,
388     ignoreEmpty);
389 }
390
391 namespace detail {
392
393 template <class Iterator>
394 struct IsStringContainerIterator :
395   IsSomeString<typename std::iterator_traits<Iterator>::value_type> {
396 };
397
398 template <class Delim, class Iterator, class String>
399 void internalJoinAppend(Delim delimiter,
400                         Iterator begin,
401                         Iterator end,
402                         String& output) {
403   assert(begin != end);
404   if (std::is_same<Delim, StringPiece>::value &&
405       delimSize(delimiter) == 1) {
406     internalJoinAppend(delimFront(delimiter), begin, end, output);
407     return;
408   }
409   toAppend(*begin, &output);
410   while (++begin != end) {
411     toAppend(delimiter, *begin, &output);
412   }
413 }
414
415 template <class Delim, class Iterator, class String>
416 typename std::enable_if<IsStringContainerIterator<Iterator>::value>::type
417 internalJoin(Delim delimiter,
418              Iterator begin,
419              Iterator end,
420              String& output) {
421   output.clear();
422   if (begin == end) {
423     return;
424   }
425   const size_t dsize = delimSize(delimiter);
426   Iterator it = begin;
427   size_t size = it->size();
428   while (++it != end) {
429     size += dsize + it->size();
430   }
431   output.reserve(size);
432   internalJoinAppend(delimiter, begin, end, output);
433 }
434
435 template <class Delim, class Iterator, class String>
436 typename std::enable_if<!IsStringContainerIterator<Iterator>::value>::type
437 internalJoin(Delim delimiter,
438              Iterator begin,
439              Iterator end,
440              String& output) {
441   output.clear();
442   if (begin == end) {
443     return;
444   }
445   internalJoinAppend(delimiter, begin, end, output);
446 }
447
448 }  // namespace detail
449
450 template <class Delim, class Iterator, class String>
451 void join(const Delim& delimiter,
452           Iterator begin,
453           Iterator end,
454           String& output) {
455   detail::internalJoin(
456     detail::prepareDelim(delimiter),
457     begin,
458     end,
459     output);
460 }
461
462 template <class String1, class String2>
463 void backslashify(const String1& input, String2& output, bool hex_style) {
464   static const char hexValues[] = "0123456789abcdef";
465   output.clear();
466   output.reserve(3 * input.size());
467   for (unsigned char c : input) {
468     // less than space or greater than '~' are considered unprintable
469     if (c < 0x20 || c > 0x7e || c == '\\') {
470       bool hex_append = false;
471       output.push_back('\\');
472       if (hex_style) {
473         hex_append = true;
474       } else {
475         if (c == '\r') output += 'r';
476         else if (c == '\n') output += 'n';
477         else if (c == '\t') output += 't';
478         else if (c == '\a') output += 'a';
479         else if (c == '\b') output += 'b';
480         else if (c == '\0') output += '0';
481         else if (c == '\\') output += '\\';
482         else {
483           hex_append = true;
484         }
485       }
486       if (hex_append) {
487         output.push_back('x');
488         output.push_back(hexValues[(c >> 4) & 0xf]);
489         output.push_back(hexValues[c & 0xf]);
490       }
491     } else {
492       output += c;
493     }
494   }
495 }
496
497 template <class String1, class String2>
498 void humanify(const String1& input, String2& output) {
499   int numUnprintable = 0;
500   int numPrintablePrefix = 0;
501   for (unsigned char c : input) {
502     if (c < 0x20 || c > 0x7e || c == '\\') {
503       ++numUnprintable;
504     }
505     if (numUnprintable == 0) {
506       ++numPrintablePrefix;
507     }
508   }
509
510   // hexlify doubles a string's size; backslashify can potentially
511   // explode it by 4x.  Now, the printable range of the ascii
512   // "spectrum" is around 95 out of 256 values, so a "random" binary
513   // string should be around 60% unprintable.  We use a 50% hueristic
514   // here, so if a string is 60% unprintable, then we just use hex
515   // output.  Otherwise we backslash.
516   //
517   // UTF8 is completely ignored; as a result, utf8 characters will
518   // likely be \x escaped (since most common glyphs fit in two bytes).
519   // This is a tradeoff of complexity/speed instead of a convenience
520   // that likely would rarely matter.  Moreover, this function is more
521   // about displaying underlying bytes, not about displaying glyphs
522   // from languages.
523   if (numUnprintable == 0) {
524     output = input;
525   } else if (5 * numUnprintable >= 3 * input.size()) {
526     // However!  If we have a "meaningful" prefix of printable
527     // characters, say 20% of the string, we backslashify under the
528     // assumption viewing the prefix as ascii is worth blowing the
529     // output size up a bit.
530     if (5 * numPrintablePrefix >= input.size()) {
531       backslashify(input, output);
532     } else {
533       output = "0x";
534       hexlify(input, output, true /* append output */);
535     }
536   } else {
537     backslashify(input, output);
538   }
539 }
540
541 template<class InputString, class OutputString>
542 bool hexlify(const InputString& input, OutputString& output,
543              bool append_output) {
544   if (!append_output) output.clear();
545
546   static char hexValues[] = "0123456789abcdef";
547   int j = output.size();
548   output.resize(2 * input.size() + output.size());
549   for (int i = 0; i < input.size(); ++i) {
550     int ch = input[i];
551     output[j++] = hexValues[(ch >> 4) & 0xf];
552     output[j++] = hexValues[ch & 0xf];
553   }
554   return true;
555 }
556
557 template<class InputString, class OutputString>
558 bool unhexlify(const InputString& input, OutputString& output) {
559   if (input.size() % 2 != 0) {
560     return false;
561   }
562   output.resize(input.size() / 2);
563   int j = 0;
564   auto unhex = [](char c) -> int {
565     return c >= '0' && c <= '9' ? c - '0' :
566            c >= 'A' && c <= 'F' ? c - 'A' + 10 :
567            c >= 'a' && c <= 'f' ? c - 'a' + 10 :
568            -1;
569   };
570
571   for (int i = 0; i < input.size(); i += 2) {
572     int highBits = unhex(input[i]);
573     int lowBits = unhex(input[i + 1]);
574     if (highBits < 0 || lowBits < 0) {
575       return false;
576     }
577     output[j++] = (highBits << 4) + lowBits;
578   }
579   return true;
580 }
581
582 namespace detail {
583 /**
584  * Hex-dump at most 16 bytes starting at offset from a memory area of size
585  * bytes.  Return the number of bytes actually dumped.
586  */
587 size_t hexDumpLine(const void* ptr, size_t offset, size_t size,
588                    std::string& line);
589 }  // namespace detail
590
591 template <class OutIt>
592 void hexDump(const void* ptr, size_t size, OutIt out) {
593   size_t offset = 0;
594   std::string line;
595   while (offset < size) {
596     offset += detail::hexDumpLine(ptr, offset, size, line);
597     *out++ = line;
598   }
599 }
600
601 }  // namespace folly
602
603 #endif /* FOLLY_STRING_INL_H_ */
604