1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
|
// Copyright 2013-2025 Daniel Parker
// Distributed under the Boost license, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See https://github.com/danielaparker/jsoncons for latest version
#ifndef JSONCONS_EXT_CSV_CSV_OPTIONS_HPP
#define JSONCONS_EXT_CSV_CSV_OPTIONS_HPP
#include <cstdint>
#include <cwchar>
#include <limits> // std::numeric_limits
#include <map>
#include <string>
#include <unordered_map> // std::unordered_map
#include <utility> // std::pair
#include <jsoncons/json_options.hpp>
namespace jsoncons { namespace csv {
enum class csv_column_type : uint8_t
{
string_t,integer_t,float_t,boolean_t,repeat_t
};
enum class quote_style_kind : uint8_t
{
minimal,all,nonnumeric,none
};
enum class csv_mapping_kind : uint8_t
{
n_rows = 1,
n_objects,
m_columns
};
enum class column_state {sequence,label};
struct csv_type_info
{
csv_type_info() = default;
csv_type_info(const csv_type_info&) = default;
csv_type_info(csv_type_info&&) = default;
csv_type_info(csv_column_type ctype, std::size_t lev, std::size_t repcount = 0) noexcept
{
col_type = ctype;
level = lev;
rep_count = repcount;
}
csv_column_type col_type;
std::size_t level;
std::size_t rep_count;
};
namespace detail {
template <typename CharT,typename Container>
void parse_column_names(const std::basic_string<CharT>& names,
Container& cont)
{
column_state state = column_state::sequence;
typename Container::value_type buffer(cont.get_allocator());
auto p = names.begin();
while (p != names.end())
{
switch (state)
{
case column_state::sequence:
{
switch (*p)
{
case ' ': case '\t':case '\r': case '\n':
++p;
break;
default:
buffer.clear();
state = column_state::label;
break;
}
break;
}
case column_state::label:
{
switch (*p)
{
case ',':
cont.push_back(buffer);
buffer.clear();
++p;
state = column_state::sequence;
break;
default:
buffer.push_back(*p);
++p;
break;
}
break;
}
}
}
if (state == column_state::label)
{
cont.push_back(buffer);
buffer.clear();
}
} // namespace detail
template <typename CharT,typename Container>
void parse_column_types(const std::basic_string<CharT>& types,
Container& column_types)
{
const std::map<jsoncons::basic_string_view<CharT>,csv_column_type> type_dictionary =
{
{JSONCONS_STRING_VIEW_CONSTANT(CharT,"string"),csv_column_type::string_t},
{JSONCONS_STRING_VIEW_CONSTANT(CharT,"integer"),csv_column_type::integer_t},
{JSONCONS_STRING_VIEW_CONSTANT(CharT,"float"),csv_column_type::float_t},
{JSONCONS_STRING_VIEW_CONSTANT(CharT,"boolean"),csv_column_type::boolean_t}
};
column_state state = column_state::sequence;
int depth = 0;
std::basic_string<CharT> buffer;
auto p = types.begin();
while (p != types.end())
{
switch (state)
{
case column_state::sequence:
{
switch (*p)
{
case ' ': case '\t':case '\r': case '\n':
++p;
break;
case '[':
++depth;
++p;
break;
case ']':
JSONCONS_ASSERT(depth > 0);
--depth;
++p;
break;
case '*':
{
JSONCONS_ASSERT(column_types.size() != 0);
std::size_t offset = 0;
std::size_t level = column_types.size() > 0 ? column_types.back().level: 0;
if (level > 0)
{
for (auto it = column_types.rbegin();
it != column_types.rend() && level == (*it).level;
++it)
{
++offset;
}
}
else
{
offset = 1;
}
column_types.emplace_back(csv_column_type::repeat_t,depth,offset);
++p;
break;
}
default:
buffer.clear();
state = column_state::label;
break;
}
break;
}
case column_state::label:
{
switch (*p)
{
case '*':
{
auto it = type_dictionary.find(buffer);
if (it != type_dictionary.end())
{
column_types.emplace_back((*it).second,depth);
buffer.clear();
}
else
{
JSONCONS_ASSERT(false);
}
state = column_state::sequence;
break;
}
case ',':
{
auto it = type_dictionary.find(buffer);
if (it != type_dictionary.end())
{
column_types.emplace_back((*it).second,depth);
buffer.clear();
}
else
{
JSONCONS_ASSERT(false);
}
++p;
state = column_state::sequence;
break;
}
case ']':
{
JSONCONS_ASSERT(depth > 0);
auto it = type_dictionary.find(buffer);
if (it != type_dictionary.end())
{
column_types.emplace_back((*it).second,depth);
buffer.clear();
}
else
{
JSONCONS_ASSERT(false);
}
--depth;
++p;
state = column_state::sequence;
break;
}
default:
{
buffer.push_back(*p);
++p;
break;
}
}
break;
}
}
}
if (state == column_state::label)
{
auto it = type_dictionary.find(buffer);
if (it != type_dictionary.end())
{
column_types.emplace_back((*it).second,depth);
buffer.clear();
}
else
{
JSONCONS_ASSERT(false);
}
}
}
} // namespace detail
template <typename CharT>
class basic_csv_options;
template <typename CharT>
class basic_csv_options_common
{
friend class basic_csv_options<CharT>;
public:
using char_type = CharT;
using string_type = std::basic_string<CharT>;
private:
char_type field_delimiter_{','};
char_type quote_char_{'\"'};
char_type quote_escape_char_{'\"'};
char_type subfield_delimiter_{char_type{}};
bool flat_:1;
bool enable_nan_to_num_:1;
bool enable_inf_to_num_:1;
bool enable_neginf_to_num_:1;
bool enable_nan_to_str_:1;
bool enable_inf_to_str_:1;
bool enable_neginf_to_str_:1;
bool enable_str_to_nan_:1;
bool enable_str_to_inf_:1;
bool enable_str_to_neginf_:1;
string_type nan_to_num_;
string_type inf_to_num_;
string_type neginf_to_num_;
string_type nan_to_str_;
string_type inf_to_str_;
string_type neginf_to_str_;
string_type column_names_;
std::vector<std::pair<std::string,std::string>> column_mapping_;
std::size_t max_nesting_depth_{1024};
protected:
basic_csv_options_common()
: flat_{true},
enable_nan_to_num_{false},
enable_inf_to_num_{false},
enable_neginf_to_num_{false},
enable_nan_to_str_{false},
enable_inf_to_str_{false},
enable_neginf_to_str_{false},
enable_str_to_nan_{false},
enable_str_to_inf_{false},
enable_str_to_neginf_{false}
{
}
basic_csv_options_common(const basic_csv_options_common&) = default;
basic_csv_options_common& operator=(const basic_csv_options_common&) = default;
//basic_csv_options_common& operator=(basic_csv_options_common&&) = default;
virtual ~basic_csv_options_common() = default;
public:
bool flat() const
{
return flat_;
}
std::size_t max_nesting_depth() const
{
return max_nesting_depth_;
}
char_type field_delimiter() const
{
return field_delimiter_;
}
const char_type subfield_delimiter() const
{
return subfield_delimiter_;
}
char_type quote_char() const
{
return quote_char_;
}
char_type quote_escape_char() const
{
return quote_escape_char_;
}
const string_type& column_names() const
{
return column_names_;
}
const std::vector<std::pair<std::string,std::string>>& column_mapping() const
{
return column_mapping_;
}
bool enable_nan_to_num() const
{
return enable_nan_to_num_;
}
bool enable_inf_to_num() const
{
return enable_inf_to_num_;
}
bool enable_neginf_to_num() const
{
return enable_neginf_to_num_ || enable_inf_to_num_;
}
bool enable_nan_to_str() const
{
return enable_nan_to_str_;
}
bool enable_str_to_nan() const
{
return enable_str_to_nan_;
}
bool enable_inf_to_str() const
{
return enable_inf_to_str_;
}
bool enable_str_to_inf() const
{
return enable_str_to_inf_;
}
bool enable_neginf_to_str() const
{
return enable_neginf_to_str_ || enable_inf_to_str_;
}
bool enable_str_to_neginf() const
{
return enable_str_to_neginf_ || enable_str_to_inf_;
}
string_type nan_to_num() const
{
return nan_to_num_;
}
string_type inf_to_num() const
{
return inf_to_num_;
}
string_type neginf_to_num() const
{
if (enable_neginf_to_num_)
{
return neginf_to_num_;
}
else if (enable_inf_to_num_)
{
string_type s;
s.push_back('-');
s.append(inf_to_num_);
return s;
}
else
{
return neginf_to_num_;
}
}
string_type nan_to_str() const
{
return nan_to_str_;
}
string_type inf_to_str() const
{
return inf_to_str_;
}
string_type neginf_to_str() const
{
if (enable_neginf_to_str_)
{
return neginf_to_str_;
}
else if (enable_inf_to_str_)
{
string_type s;
s.push_back('-');
s.append(inf_to_str_);
return s;
}
else
{
return neginf_to_str_; // empty string
}
}
};
template <typename CharT>
class basic_csv_decode_options : public virtual basic_csv_options_common<CharT>
{
friend class basic_csv_options<CharT>;
using super_type = basic_csv_options_common<CharT>;
public:
using typename super_type::char_type;
using typename super_type::string_type;
private:
bool assume_header_:1;
bool ignore_empty_values_:1;
bool ignore_empty_lines_:1;
bool trim_leading_:1;
bool trim_trailing_:1;
bool trim_leading_inside_quotes_:1;
bool trim_trailing_inside_quotes_:1;
bool unquoted_empty_value_is_null_:1;
bool infer_types_:1;
bool lossless_number_:1;
char_type comment_starter_{'\0'};
csv_mapping_kind mapping_kind_{};
std::size_t header_lines_{0};
std::size_t max_lines_{(std::numeric_limits<std::size_t>::max)()};
string_type column_types_;
string_type column_defaults_;
public:
basic_csv_decode_options()
: assume_header_(false),
ignore_empty_values_(false),
ignore_empty_lines_(true),
trim_leading_(false),
trim_trailing_(false),
trim_leading_inside_quotes_(false),
trim_trailing_inside_quotes_(false),
unquoted_empty_value_is_null_(false),
infer_types_(true),
lossless_number_(false)
{}
basic_csv_decode_options(const basic_csv_decode_options& other) = default;
basic_csv_decode_options(basic_csv_decode_options&& other) noexcept
: super_type(std::move(other)),
assume_header_(other.assume_header_),
ignore_empty_values_(other.ignore_empty_values_),
ignore_empty_lines_(other.ignore_empty_lines_),
trim_leading_(other.trim_leading_),
trim_trailing_(other.trim_trailing_),
trim_leading_inside_quotes_(other.trim_leading_inside_quotes_),
trim_trailing_inside_quotes_(other.trim_trailing_inside_quotes_),
unquoted_empty_value_is_null_(other.unquoted_empty_value_is_null_),
infer_types_(other.infer_types_),
lossless_number_(other.lossless_number_),
comment_starter_(other.comment_starter_),
mapping_kind_(other.mapping_kind_),
header_lines_(other.header_lines_),
max_lines_(other.max_lines_),
column_types_(std::move(other.column_types_)),
column_defaults_(std::move(other.column_defaults_))
{}
protected:
basic_csv_decode_options& operator=(const basic_csv_decode_options& other) = default;
basic_csv_decode_options& operator=(basic_csv_decode_options&& other) = default;
public:
std::size_t header_lines() const
{
return (assume_header_ && header_lines_ <= 1) ? 1 : header_lines_;
}
bool assume_header() const
{
return assume_header_;
}
bool ignore_empty_values() const
{
return ignore_empty_values_;
}
bool ignore_empty_lines() const
{
return ignore_empty_lines_;
}
bool trim_leading() const
{
return trim_leading_;
}
bool trim_trailing() const
{
return trim_trailing_;
}
bool trim_leading_inside_quotes() const
{
return trim_leading_inside_quotes_;
}
bool trim_trailing_inside_quotes() const
{
return trim_trailing_inside_quotes_;
}
bool trim() const
{
return trim_leading_ && trim_trailing_;
}
bool trim_inside_quotes() const
{
return trim_leading_inside_quotes_ && trim_trailing_inside_quotes_;
}
bool unquoted_empty_value_is_null() const
{
return unquoted_empty_value_is_null_;
}
bool infer_types() const
{
return infer_types_;
}
bool lossless_number() const
{
return lossless_number_;
}
char_type comment_starter() const
{
return comment_starter_;
}
csv_mapping_kind mapping_kind() const
{
return mapping_kind_ != csv_mapping_kind() ? mapping_kind_ : (assume_header() || this->column_names().size() > 0 ? csv_mapping_kind::n_objects : csv_mapping_kind::n_rows);
}
std::size_t max_lines() const
{
return max_lines_;
}
string_type column_types() const
{
return column_types_;
}
string_type column_defaults() const
{
return column_defaults_;
}
};
template <typename CharT>
class basic_csv_encode_options : public virtual basic_csv_options_common<CharT>
{
friend class basic_csv_options<CharT>;
using super_type = basic_csv_options_common<CharT>;
public:
using typename super_type::char_type;
using typename super_type::string_type;
private:
quote_style_kind quote_style_{quote_style_kind::minimal};
float_chars_format float_format_{float_chars_format::general};
int8_t precision_{0};
string_type line_delimiter_;
public:
basic_csv_encode_options()
{
line_delimiter_.push_back('\n');
}
basic_csv_encode_options(const basic_csv_encode_options& other) = default;
basic_csv_encode_options(basic_csv_encode_options&& other) noexcept
: super_type(std::move(other)),
quote_style_(other.quote_style_),
float_format_(other.float_format_),
precision_(other.precision_),
line_delimiter_(std::move(other.line_delimiter_))
{
}
protected:
basic_csv_encode_options& operator=(const basic_csv_encode_options& other) = default;
basic_csv_encode_options& operator=(basic_csv_encode_options&& other) = default;
public:
quote_style_kind quote_style() const
{
return quote_style_;
}
float_chars_format float_format() const
{
return float_format_;
}
int8_t precision() const
{
return precision_;
}
string_type line_delimiter() const
{
return line_delimiter_;
}
};
template <typename CharT>
class basic_csv_options final : public basic_csv_decode_options<CharT>, public basic_csv_encode_options<CharT>
{
using char_type = CharT;
using string_type = std::basic_string<CharT>;
public:
using basic_csv_decode_options<CharT>::enable_str_to_nan;
using basic_csv_decode_options<CharT>::enable_str_to_inf;
using basic_csv_decode_options<CharT>::enable_str_to_neginf;
using basic_csv_decode_options<CharT>::nan_to_str;
using basic_csv_decode_options<CharT>::inf_to_str;
using basic_csv_decode_options<CharT>::neginf_to_str;
using basic_csv_decode_options<CharT>::nan_to_num;
using basic_csv_decode_options<CharT>::inf_to_num;
using basic_csv_decode_options<CharT>::neginf_to_num;
using basic_csv_decode_options<CharT>::flat;
using basic_csv_decode_options<CharT>::max_nesting_depth;
using basic_csv_decode_options<CharT>::field_delimiter;
using basic_csv_decode_options<CharT>::subfield_delimiter;
using basic_csv_decode_options<CharT>::quote_char;
using basic_csv_decode_options<CharT>::quote_escape_char;
using basic_csv_decode_options<CharT>::column_names;
using basic_csv_decode_options<CharT>::column_mapping;
using basic_csv_decode_options<CharT>::header_lines;
using basic_csv_decode_options<CharT>::assume_header;
using basic_csv_decode_options<CharT>::ignore_empty_values;
using basic_csv_decode_options<CharT>::ignore_empty_lines;
using basic_csv_decode_options<CharT>::trim_leading;
using basic_csv_decode_options<CharT>::trim_trailing;
using basic_csv_decode_options<CharT>::trim_leading_inside_quotes;
using basic_csv_decode_options<CharT>::trim_trailing_inside_quotes;
using basic_csv_decode_options<CharT>::trim;
using basic_csv_decode_options<CharT>::trim_inside_quotes;
using basic_csv_decode_options<CharT>::unquoted_empty_value_is_null;
using basic_csv_decode_options<CharT>::infer_types;
using basic_csv_decode_options<CharT>::lossless_number;
using basic_csv_decode_options<CharT>::comment_starter;
using basic_csv_decode_options<CharT>::mapping_kind;
using basic_csv_decode_options<CharT>::max_lines;
using basic_csv_decode_options<CharT>::column_types;
using basic_csv_decode_options<CharT>::column_defaults;
using basic_csv_encode_options<CharT>::float_format;
using basic_csv_encode_options<CharT>::precision;
using basic_csv_encode_options<CharT>::line_delimiter;
using basic_csv_encode_options<CharT>::quote_style;
static constexpr size_t default_indent = 4;
// Constructors
basic_csv_options() = default;
basic_csv_options(const basic_csv_options&) = default;
basic_csv_options(basic_csv_options&&) = default;
basic_csv_options& operator=(const basic_csv_options&) = default;
basic_csv_options& operator=(basic_csv_options&&) = default;
basic_csv_options& float_format(float_chars_format value)
{
this->float_format_ = value;
return *this;
}
basic_csv_options& precision(int8_t value)
{
this->precision_ = value;
return *this;
}
basic_csv_options& header_lines(std::size_t value)
{
this->header_lines_ = value;
return *this;
}
basic_csv_options& assume_header(bool value)
{
this->assume_header_ = value;
return *this;
}
basic_csv_options& ignore_empty_values(bool value)
{
this->ignore_empty_values_ = value;
return *this;
}
basic_csv_options& ignore_empty_lines(bool value)
{
this->ignore_empty_lines_ = value;
return *this;
}
basic_csv_options& trim_leading(bool value)
{
this->trim_leading_ = value;
return *this;
}
basic_csv_options& trim_trailing(bool value)
{
this->trim_trailing_ = value;
return *this;
}
basic_csv_options& trim_leading_inside_quotes(bool value)
{
this->trim_leading_inside_quotes_ = value;
return *this;
}
basic_csv_options& trim_trailing_inside_quotes(bool value)
{
this->trim_trailing_inside_quotes_ = value;
return *this;
}
basic_csv_options& trim(bool value)
{
this->trim_leading_ = value;
this->trim_trailing_ = value;
return *this;
}
basic_csv_options& trim_inside_quotes(bool value)
{
this->trim_leading_inside_quotes_ = value;
this->trim_trailing_inside_quotes_ = value;
return *this;
}
basic_csv_options& unquoted_empty_value_is_null(bool value)
{
this->unquoted_empty_value_is_null_ = value;
return *this;
}
basic_csv_options& column_names(const string_type& value)
{
this->column_names_ = value;
return *this;
}
basic_csv_options& column_mapping(const std::vector<std::pair<std::string,std::string>>& value)
{
this->column_mapping_ = value;
return *this;
}
basic_csv_options& column_types(const string_type& value)
{
this->column_types_ = value;
return *this;
}
basic_csv_options& column_defaults(const string_type& value)
{
this->column_defaults_ = value;
return *this;
}
basic_csv_options& flat(bool value)
{
this->flat_ = value;
return *this;
}
basic_csv_options& max_nesting_depth(std::size_t value)
{
this->max_nesting_depth_ = value;
return *this;
}
basic_csv_options& field_delimiter(char_type value)
{
this->field_delimiter_ = value;
return *this;
}
basic_csv_options& subfield_delimiter(char_type value)
{
this->subfield_delimiter_ = value;
return *this;
}
basic_csv_options& line_delimiter(const string_type& value)
{
this->line_delimiter_ = value;
return *this;
}
basic_csv_options& quote_char(char_type value)
{
this->quote_char_ = value;
return *this;
}
basic_csv_options& infer_types(bool value)
{
this->infer_types_ = value;
return *this;
}
basic_csv_options& lossless_number(bool value)
{
this->lossless_number_ = value;
return *this;
}
basic_csv_options& quote_escape_char(char_type value)
{
this->quote_escape_char_ = value;
return *this;
}
basic_csv_options& comment_starter(char_type value)
{
this->comment_starter_ = value;
return *this;
}
basic_csv_options& quote_style(quote_style_kind value)
{
this->quote_style_ = value;
return *this;
}
basic_csv_options& mapping_kind(csv_mapping_kind value)
{
this->mapping_kind_ = value;
return *this;
}
basic_csv_options& max_lines(std::size_t value)
{
this->max_lines_ = value;
return *this;
}
basic_csv_options& nan_to_num(const string_type& value)
{
this->enable_nan_to_num_ = true;
this->nan_to_str_.clear();
this->nan_to_num_ = value;
return *this;
}
basic_csv_options& inf_to_num(const string_type& value)
{
this->enable_inf_to_num_ = true;
this->inf_to_str_.clear();
this->inf_to_num_ = value;
return *this;
}
basic_csv_options& neginf_to_num(const string_type& value)
{
this->enable_neginf_to_num_ = true;
this->neginf_to_str_.clear();
this->neginf_to_num_ = value;
return *this;
}
basic_csv_options& nan_to_str(const string_type& value, bool enable_inverse = true)
{
this->enable_nan_to_str_ = true;
this->enable_str_to_nan_ = enable_inverse;
this->nan_to_num_.clear();
this->nan_to_str_ = value;
return *this;
}
basic_csv_options& inf_to_str(const string_type& value, bool enable_inverse = true)
{
this->enable_inf_to_str_ = true;
this->enable_inf_to_str_ = enable_inverse;
this->inf_to_num_.clear();
this->inf_to_str_ = value;
return *this;
}
basic_csv_options& neginf_to_str(const string_type& value, bool enable_inverse = true)
{
this->enable_neginf_to_str_ = true;
this->enable_neginf_to_str_ = enable_inverse;
this->neginf_to_num_.clear();
this->neginf_to_str_ = value;
return *this;
}
};
using csv_options = basic_csv_options<char>;
using wcsv_options = basic_csv_options<wchar_t>;
} // namespace jsonpath
} // namespace jsoncons
#endif // JSONCONS_EXT_CSV_CSV_OPTIONS_HPP
|