MCPcopy Create free account
hub / github.com/LAStools/LAStools / dump_integer

Function dump_integer

src/json.hpp:18726–18801  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18724 std::is_same<NumberType, binary_char_t>::value,
18725 int > = 0 >
18726 void dump_integer(NumberType x)
18727 {
18728 static constexpr std::array<std::array<char, 2>, 100> digits_to_99
18729 {
18730 {
18731 {{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}},
18732 {{'1', '0'}}, {{'1', '1'}}, {{'1', '2'}}, {{'1', '3'}}, {{'1', '4'}}, {{'1', '5'}}, {{'1', '6'}}, {{'1', '7'}}, {{'1', '8'}}, {{'1', '9'}},
18733 {{'2', '0'}}, {{'2', '1'}}, {{'2', '2'}}, {{'2', '3'}}, {{'2', '4'}}, {{'2', '5'}}, {{'2', '6'}}, {{'2', '7'}}, {{'2', '8'}}, {{'2', '9'}},
18734 {{'3', '0'}}, {{'3', '1'}}, {{'3', '2'}}, {{'3', '3'}}, {{'3', '4'}}, {{'3', '5'}}, {{'3', '6'}}, {{'3', '7'}}, {{'3', '8'}}, {{'3', '9'}},
18735 {{'4', '0'}}, {{'4', '1'}}, {{'4', '2'}}, {{'4', '3'}}, {{'4', '4'}}, {{'4', '5'}}, {{'4', '6'}}, {{'4', '7'}}, {{'4', '8'}}, {{'4', '9'}},
18736 {{'5', '0'}}, {{'5', '1'}}, {{'5', '2'}}, {{'5', '3'}}, {{'5', '4'}}, {{'5', '5'}}, {{'5', '6'}}, {{'5', '7'}}, {{'5', '8'}}, {{'5', '9'}},
18737 {{'6', '0'}}, {{'6', '1'}}, {{'6', '2'}}, {{'6', '3'}}, {{'6', '4'}}, {{'6', '5'}}, {{'6', '6'}}, {{'6', '7'}}, {{'6', '8'}}, {{'6', '9'}},
18738 {{'7', '0'}}, {{'7', '1'}}, {{'7', '2'}}, {{'7', '3'}}, {{'7', '4'}}, {{'7', '5'}}, {{'7', '6'}}, {{'7', '7'}}, {{'7', '8'}}, {{'7', '9'}},
18739 {{'8', '0'}}, {{'8', '1'}}, {{'8', '2'}}, {{'8', '3'}}, {{'8', '4'}}, {{'8', '5'}}, {{'8', '6'}}, {{'8', '7'}}, {{'8', '8'}}, {{'8', '9'}},
18740 {{'9', '0'}}, {{'9', '1'}}, {{'9', '2'}}, {{'9', '3'}}, {{'9', '4'}}, {{'9', '5'}}, {{'9', '6'}}, {{'9', '7'}}, {{'9', '8'}}, {{'9', '9'}},
18741 }
18742 };
18743
18744 // special case for "0"
18745 if (x == 0)
18746 {
18747 o->write_character('0');
18748 return;
18749 }
18750
18751 // use a pointer to fill the buffer
18752 auto buffer_ptr = number_buffer.begin(); // NOLINT(llvm-qualified-auto,readability-qualified-auto,cppcoreguidelines-pro-type-vararg,hicpp-vararg)
18753
18754 number_unsigned_t abs_value;
18755
18756 unsigned int n_chars{};
18757
18758 if (is_negative_number(x))
18759 {
18760 *buffer_ptr = '-';
18761 abs_value = remove_sign(static_cast<number_integer_t>(x));
18762
18763 // account one more byte for the minus sign
18764 n_chars = 1 + count_digits(abs_value);
18765 }
18766 else
18767 {
18768 abs_value = static_cast<number_unsigned_t>(x);
18769 n_chars = count_digits(abs_value);
18770 }
18771
18772 // spare 1 byte for '\0'
18773 JSON_ASSERT(n_chars < number_buffer.size() - 1);
18774
18775 // jump to the end to generate the string from backward,
18776 // so we later avoid reversing the result
18777 buffer_ptr += n_chars;
18778
18779 // Fast int2ascii implementation inspired by "Fastware" talk by Andrei Alexandrescu
18780 // See: https://www.youtube.com/watch?v=o4-CwDo2zpg
18781 while (abs_value >= 100)
18782 {
18783 const auto digits_index = static_cast<unsigned>((abs_value % 100));

Callers 1

dumpMethod · 0.85

Calls 6

is_negative_numberFunction · 0.85
remove_signFunction · 0.85
dataMethod · 0.80
write_characterMethod · 0.45
beginMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected