X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FString.cpp;h=097e5bbfd4c7b2cd86ed2b388ee557bea5124952;hb=b010847b060f99a988069ca387416a08e9dc221e;hp=e8de48dac9c10dfd72460f98b466a7e6e9ab6556;hpb=a6ad67f798589881f048e819a7e4af68f85ba322;p=folly.git diff --git a/folly/String.cpp b/folly/String.cpp index e8de48da..097e5bbf 100644 --- a/folly/String.cpp +++ b/folly/String.cpp @@ -16,20 +16,55 @@ #include -#include -#include - +#include #include #include #include -#include #include -#include -#include +#include + #include +#include + namespace folly { +static inline bool is_oddspace(char c) { + return c == '\n' || c == '\t' || c == '\r'; +} + +StringPiece ltrimWhitespace(StringPiece sp) { + // Spaces other than ' ' characters are less common but should be + // checked. This configuration where we loop on the ' ' + // separately from oddspaces was empirically fastest. + +loop: + for (; !sp.empty() && sp.front() == ' '; sp.pop_front()) { + } + if (!sp.empty() && is_oddspace(sp.front())) { + sp.pop_front(); + goto loop; + } + + return sp; +} + +StringPiece rtrimWhitespace(StringPiece sp) { + // Spaces other than ' ' characters are less common but should be + // checked. This configuration where we loop on the ' ' + // separately from oddspaces was empirically fastest. + +loop: + for (; !sp.empty() && sp.back() == ' '; sp.pop_back()) { + } + if (!sp.empty() && is_oddspace(sp.back())) { + sp.pop_back(); + goto loop; + } + + return sp; +} + namespace { int stringAppendfImplHelper(char* buf, @@ -83,7 +118,7 @@ void stringAppendfImpl(std::string& output, const char* format, va_list args) { output.append(heap_buffer.get(), size_t(final_bytes_used)); } -} // anon namespace +} // namespace std::string stringPrintf(const char* format, ...) { va_list ap; @@ -146,7 +181,7 @@ const PrettySuffix kPrettyTimeSuffixes[] = { { "ns", 1e-9L }, { "ps", 1e-12L }, { "s ", 0 }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettyBytesMetricSuffixes[] = { @@ -155,7 +190,7 @@ const PrettySuffix kPrettyBytesMetricSuffixes[] = { { "MB", 1e6L }, { "kB", 1e3L }, { "B ", 0L }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettyBytesBinarySuffixes[] = { @@ -164,7 +199,7 @@ const PrettySuffix kPrettyBytesBinarySuffixes[] = { { "MB", int64_t(1) << 20 }, { "kB", int64_t(1) << 10 }, { "B ", 0L }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettyBytesBinaryIECSuffixes[] = { @@ -173,7 +208,7 @@ const PrettySuffix kPrettyBytesBinaryIECSuffixes[] = { { "MiB", int64_t(1) << 20 }, { "KiB", int64_t(1) << 10 }, { "B ", 0L }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettyUnitsMetricSuffixes[] = { @@ -182,7 +217,7 @@ const PrettySuffix kPrettyUnitsMetricSuffixes[] = { { "M", 1e6L }, { "k", 1e3L }, { " ", 0 }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettyUnitsBinarySuffixes[] = { @@ -191,7 +226,7 @@ const PrettySuffix kPrettyUnitsBinarySuffixes[] = { { "M", int64_t(1) << 20 }, { "k", int64_t(1) << 10 }, { " ", 0 }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettyUnitsBinaryIECSuffixes[] = { @@ -200,7 +235,7 @@ const PrettySuffix kPrettyUnitsBinaryIECSuffixes[] = { { "Mi", int64_t(1) << 20 }, { "Ki", int64_t(1) << 10 }, { " ", 0 }, - { 0, 0 }, + { nullptr, 0 }, }; const PrettySuffix kPrettySISuffixes[] = { @@ -225,7 +260,7 @@ const PrettySuffix kPrettySISuffixes[] = { { "z", 1e-21L }, { "y", 1e-24L }, { " ", 0 }, - { 0, 0} + { nullptr, 0} }; const PrettySuffix* const kPrettySuffixes[PRETTY_NUM_TYPES] = { @@ -239,7 +274,7 @@ const PrettySuffix* const kPrettySuffixes[PRETTY_NUM_TYPES] = { kPrettySISuffixes, }; -} // namespace +} // namespace std::string prettyPrint(double val, PrettyType type, bool addSpace) { char buf[100]; @@ -454,7 +489,7 @@ void toLowerAscii64(uint64_t& c) { c += rotated; } -} // anon namespace +} // namespace void toLowerAscii(char* str, size_t length) { static const size_t kAlignMask64 = 7; @@ -507,6 +542,7 @@ namespace detail { size_t hexDumpLine(const void* ptr, size_t offset, size_t size, std::string& line) { + static char hexValues[] = "0123456789abcdef"; // Line layout: // 8: address // 1: space @@ -520,13 +556,24 @@ size_t hexDumpLine(const void* ptr, size_t offset, size_t size, line.reserve(78); const uint8_t* p = reinterpret_cast(ptr) + offset; size_t n = std::min(size - offset, size_t(16)); - format("{:08x} ", offset).appendTo(line); + line.push_back(hexValues[(offset >> 28) & 0xf]); + line.push_back(hexValues[(offset >> 24) & 0xf]); + line.push_back(hexValues[(offset >> 20) & 0xf]); + line.push_back(hexValues[(offset >> 16) & 0xf]); + line.push_back(hexValues[(offset >> 12) & 0xf]); + line.push_back(hexValues[(offset >> 8) & 0xf]); + line.push_back(hexValues[(offset >> 4) & 0xf]); + line.push_back(hexValues[offset & 0xf]); + line.push_back(' '); for (size_t i = 0; i < n; i++) { if (i == 8) { line.push_back(' '); } - format(" {:02x}", p[i]).appendTo(line); + + line.push_back(' '); + line.push_back(hexValues[(p[i] >> 4) & 0xf]); + line.push_back(hexValues[p[i] & 0xf]); } // 3 spaces for each byte we're not printing, one separating the halves @@ -591,7 +638,7 @@ std::string stripLeftMargin(std::string s) { return join("\n", piecer); } -} // namespace folly +} // namespace folly #ifdef FOLLY_DEFINED_DMGL # undef FOLLY_DEFINED_DMGL