332 RYML_ASSERT_BASIC_(m_evt_handler);
333 m_evt_handler->m_stack.reserve(capacity);
340 _resize_locations(num_source_lines);
354 Callbacks const&
callbacks()
const { RYML_ASSERT_BASIC_(m_evt_handler);
return m_evt_handler->m_stack.m_callbacks; }
437 bool _scan_scalar_plain_blck(ScannedScalar *C4_RESTRICT sc,
size_t indentation);
438 bool _scan_scalar_plain_seq_flow(ScannedScalar *C4_RESTRICT sc);
439 bool _scan_scalar_plain_seq_blck(ScannedScalar *C4_RESTRICT sc);
440 bool _scan_scalar_plain_map_flow(ScannedScalar *C4_RESTRICT sc);
441 bool _scan_scalar_plain_map_blck(ScannedScalar *C4_RESTRICT sc);
442 bool _scan_scalar_map_json(ScannedScalar *C4_RESTRICT sc);
443 bool _scan_scalar_seq_json(ScannedScalar *C4_RESTRICT sc);
444 bool _scan_scalar_plain_unk(ScannedScalar *C4_RESTRICT sc);
445 bool _is_valid_start_scalar_plain_flow(
csubstr s);
446 bool _is_valid_start_scalar_plain_flow_check_block_token(
csubstr s);
447 bool _is_valid_start_scalar_plain_flow_check_qmrk(
csubstr s);
448 bool _scan_scalar_plain_handle_newline(
csubstr s,
size_t offs);
449 void _check_valid_newline_in_quoted_scalar();
451 ScannedScalar _scan_scalar_squot();
452 ScannedScalar _scan_scalar_dquot();
454 void _scan_block(ScannedBlock *C4_RESTRICT sb,
size_t indref);
467 csubstr _filter_scalar_literal(
substr s,
size_t indentation, BlockChomp_e chomp);
468 csubstr _filter_scalar_folded(
substr s,
size_t indentation, BlockChomp_e chomp);
471 csubstr _maybe_filter_key_scalar_plain(ScannedScalar
const& sc,
size_t indendation);
472 csubstr _maybe_filter_val_scalar_plain(ScannedScalar
const& sc,
size_t indendation);
473 csubstr _maybe_filter_key_scalar_squot(ScannedScalar
const& sc);
474 csubstr _maybe_filter_val_scalar_squot(ScannedScalar
const& sc);
475 csubstr _maybe_filter_key_scalar_dquot(ScannedScalar
const& sc);
476 csubstr _maybe_filter_val_scalar_dquot(ScannedScalar
const& sc);
477 csubstr _maybe_filter_key_scalar_literal(ScannedBlock
const& sb);
478 csubstr _maybe_filter_val_scalar_literal(ScannedBlock
const& sb);
479 csubstr _maybe_filter_key_scalar_folded(ScannedBlock
const& sb);
480 csubstr _maybe_filter_val_scalar_folded(ScannedBlock
const& sb);
485 void _handle_map_block();
486 bool _handle_map_block_qmrk();
487 bool _handle_map_block_rkcl();
488 void _handle_seq_block();
489 void _handle_map_flow();
490 void _handle_seq_flow();
491 void _handle_seq_imap();
492 void _handle_map_json();
493 void _handle_seq_json();
496 void _handle_unk_json();
500 void _handle_flow_skip_whitespace();
501 void _handle_flow_line_beginning();
503 size_t _handle_unk_check_left_tokens(
size_t realindent,
size_t col,
bool skip_annotations=
true);
504 void _handle_unk_get_first_non_pending_token_pos(
csubstr s,
size_t *indent,
size_t *first_non_token_pos);
505 void _handle_unk_begin_doc();
507 size_t _handle_block_skip_leading_whitespace();
509 size_t _handle_block_get_whitespace_mark() const noexcept {
return m_evt_handler->m_curr->pos.offset; }
510 void _handle_block_check_leading_tabs(
size_t prev_mark) {
return _handle_block_check_leading_tabs(prev_mark, m_evt_handler->m_curr->pos.offset); }
511 void _handle_block_check_leading_tabs(
size_t start_mark,
size_t end_mark);
513 void _end_map_flow();
514 void _end_seq_flow();
515 void _end_map_blck();
516 void _end_seq_blck();
519 void _end_flow_container(
size_t orig_indent,
bool multiline);
520 void _flow_container_was_a_key(
size_t orig_indent);
523 void _begin2_doc_expl();
525 void _end2_doc_expl();
526 void _check_doc_end_tokens()
const;
528 void _maybe_begin_doc();
529 void _maybe_end_doc();
531 void _start_doc_suddenly();
532 void _end_doc_suddenly();
533 void _end_doc_suddenly__pop();
534 void _check_trailing_doc_token();
537 void _set_indentation(
size_t indentation)
noexcept;
538 void _save_indentation();
539 void _mark_seqflow_val_end() noexcept;
540 void _handle_indentation_pop_from_block_seq();
541 void _handle_indentation_pop_from_block_map();
542 void _handle_indentation_pop(ParserState const* dst);
544 void _maybe_skip_comment();
545 void _maybe_skip_comment_strict();
546 void _skip_comment();
547 void _maybe_skip_whitespace_tokens();
548 void _maybe_skipchars(
char c);
550 void _skipchars(const
char (&chars)[N]);
551 bool _maybe_scan_following_colon() noexcept;
556 template<class FilterProcessor> auto _filter_plain(FilterProcessor &C4_RESTRICT proc,
size_t indentation) -> decltype(proc.result());
557 template<class FilterProcessor> auto _filter_squoted(FilterProcessor &C4_RESTRICT proc) -> decltype(proc.result());
558 template<class FilterProcessor> auto _filter_dquoted(FilterProcessor &C4_RESTRICT proc) -> decltype(proc.result());
559 template<class FilterProcessor> auto _filter_block_literal(FilterProcessor &C4_RESTRICT proc,
size_t indentation, BlockChomp_e chomp) -> decltype(proc.result());
560 template<class FilterProcessor> auto _filter_block_folded(FilterProcessor &C4_RESTRICT proc,
size_t indentation, BlockChomp_e chomp) -> decltype(proc.result());
566 template<class FilterProcessor>
void _filter_nl_plain(FilterProcessor &C4_RESTRICT proc,
size_t indentation);
567 template<class FilterProcessor>
void _filter_nl_squoted(FilterProcessor &C4_RESTRICT proc);
568 template<class FilterProcessor>
void _filter_nl_dquoted(FilterProcessor &C4_RESTRICT proc);
570 template<class FilterProcessor>
bool _filter_ws_handle_to_first_non_space(FilterProcessor &C4_RESTRICT proc);
571 template<class FilterProcessor>
void _filter_ws_copy_trailing(FilterProcessor &C4_RESTRICT proc);
572 template<class FilterProcessor>
void _filter_ws_skip_trailing(FilterProcessor &C4_RESTRICT proc);
574 template<class FilterProcessor>
void _filter_dquoted_backslash(FilterProcessor &C4_RESTRICT proc);
575 template<class FilterProcessor>
void _filter_dquoted_backslash_decode(FilterProcessor &C4_RESTRICT proc,
size_t sz);
577 template<class FilterProcessor>
void _filter_chomp(FilterProcessor &C4_RESTRICT proc, BlockChomp_e chomp,
size_t indentation);
578 template<class FilterProcessor>
size_t _handle_all_whitespace(FilterProcessor &C4_RESTRICT proc, BlockChomp_e chomp);
579 template<class FilterProcessor>
size_t _extend_to_chomp(FilterProcessor &C4_RESTRICT proc,
size_t contents_len);
580 template<class FilterProcessor>
void _filter_block_indentation(FilterProcessor &C4_RESTRICT proc,
size_t indentation);
581 template<class FilterProcessor>
void _filter_block_folded_newlines(FilterProcessor &C4_RESTRICT proc,
size_t indentation,
size_t len);
582 template<class FilterProcessor>
size_t _filter_block_folded_newlines_compress(FilterProcessor &C4_RESTRICT proc,
size_t num_newl,
size_t wpos_at_first_newl);
583 template<class FilterProcessor>
void _filter_block_folded_newlines_leading(FilterProcessor &C4_RESTRICT proc,
size_t indentation,
size_t len);
584 template<class FilterProcessor>
void _filter_block_folded_indented_block(FilterProcessor &C4_RESTRICT proc,
size_t indentation,
size_t len,
size_t curr_indentation) noexcept;
586 substr _alloc_arena(
size_t len,
substr *relocated=
nullptr);
587 substr _alloc_arena(
size_t len,
csubstr *relocated) {
return _alloc_arena(len,
reinterpret_cast<substr*
>(relocated)); }
593 void _line_progressed(
size_t ahead);
595 void _line_ended_undo();
597 bool _finished_file()
const;
598 bool _finished_line()
const;
601 substr _peek_next_line(
size_t pos=
npos)
const;
607 C4_ALWAYS_INLINE
substr _buf() const noexcept {
return m_evt_handler->m_src; }
609 C4_ALWAYS_INLINE
bool has_all(
ParserFlag_t f)
const noexcept {
return (m_evt_handler->m_curr->flags & f) == f; }
610 C4_ALWAYS_INLINE
bool has_any(
ParserFlag_t f)
const noexcept {
return (m_evt_handler->m_curr->flags & f) != 0; }
611 C4_ALWAYS_INLINE
bool has_none(
ParserFlag_t f)
const noexcept {
return (m_evt_handler->m_curr->flags & f) == 0; }
612 static C4_ALWAYS_INLINE
bool has_all(
ParserFlag_t f, ParserState
const* C4_RESTRICT s)
noexcept {
return (s->flags & f) == f; }
613 static C4_ALWAYS_INLINE
bool has_any(
ParserFlag_t f, ParserState
const* C4_RESTRICT s)
noexcept {
return (s->flags & f) != 0; }
614 static C4_ALWAYS_INLINE
bool has_none(
ParserFlag_t f, ParserState
const* C4_RESTRICT s)
noexcept {
return (s->flags & f) == 0; }
617 C4_ALWAYS_INLINE
void add_flags(
ParserFlag_t on)
noexcept { m_evt_handler->m_curr->flags |= on; }
618 C4_ALWAYS_INLINE
void addrem_flags(
ParserFlag_t on,
ParserFlag_t off)
noexcept { m_evt_handler->m_curr->flags &= ~off; m_evt_handler->m_curr->flags |= on; }
619 C4_ALWAYS_INLINE
void rem_flags(
ParserFlag_t off)
noexcept { m_evt_handler->m_curr->flags &= ~off; }
628 void _prepare_locations();
629 void _resize_locations(
size_t sz);
630 bool _locations_dirty()
const;
638 template<
class ...Args> C4_NORETURN C4_NO_INLINE
void _err(Location
const& cpploc,
const char *fmt, Args
const& ...args)
const;
639 template<
class ...Args> C4_NORETURN C4_NO_INLINE
void _err(Location
const& cpploc, Location
const& ymlloc,
const char *fmt, Args
const& ...args)
const;
641 template<
class ...Args> C4_NO_INLINE
void _dbg(
csubstr fmt, Args
const& ...args)
const;
642 template<
class DumpFn> C4_NO_INLINE
void _fmt_msg(DumpFn &&dumpfn)
const;
643 C4_NO_INLINE
void _print_state_stack()
const;
644 C4_NO_INLINE
void _print_state_stack(
substr buf)
const;
649 void _handle_colon();
650 void _add_annotation(Annotation *C4_RESTRICT dst,
csubstr str,
size_t indentation,
size_t line);
651 void _add_annotation(Annotation *C4_RESTRICT dst,
csubstr str,
size_t indentation,
size_t line,
csubstr orig);
652 void _add_annotation(Annotation *C4_RESTRICT dst,
csubstr str);
653 C4_ALWAYS_INLINE
void _clear_annotations(Annotation *C4_RESTRICT dst)
noexcept { dst->num_entries = 0; }
654 bool _annotations_require_key_container()
const;
655 bool _handle_annotations_before_unexpected_flow_token_rkey();
656 void _handle_annotations_before_blck_key_scalar();
657 void _handle_annotations_before_blck_val_scalar();
658 void _handle_annotations_before_start_mapblck(
size_t current_line);
659 void _handle_annotations_before_start_mapblck_as_key();
660 void _handle_annotations_and_indentation_after_start_mapblck(
size_t key_indentation,
size_t key_line);
661 size_t _select_indentation_from_annotations(
size_t val_indentation,
size_t val_line);
663 void _handle_keyref(
csubstr alias);
664 void _handle_valref(
csubstr alias);
666 void _handle_directive(
csubstr rem);
668 bool _validate_directive_tag(
csubstr *C4_RESTRICT directive,
csubstr *C4_RESTRICT handle,
csubstr *C4_RESTRICT prefix)
const;
674 ParserOptions m_options;
679 EventHandler *C4_RESTRICT m_evt_handler;
684 Annotation m_pending_anchors;
685 Annotation m_pending_tags;
687 bool m_has_directives_yaml;
688 bool m_has_directives;
691 size_t m_prev_val_end;
701 size_t *m_newline_offsets;
702 size_t m_newline_offsets_size;
703 size_t m_newline_offsets_capacity;
710 RYML_DEPRECATED(
"filter arena no longer needed") size_t filter_arena_capacity()
const {
return 0u; }
711 RYML_DEPRECATED(
"filter arena no longer needed") void reserve_filter_arena(
size_t) {}
713 template<
class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_place(
csubstr filename,
substr yaml, Tree *t,
size_t node_id);
714 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_place(
substr yaml, Tree *t,
size_t node_id);
715 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_place(
csubstr filename,
substr yaml, Tree *t );
716 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_place(
substr yaml, Tree *t );
717 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_place(
csubstr filename,
substr yaml, NodeRef node );
718 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_place(
substr yaml, NodeRef node );
719 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree, Tree>::type
parse_in_place(
csubstr filename,
substr yaml );
720 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree, Tree>::type
parse_in_place(
substr yaml );
721 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr filename,
csubstr yaml, Tree *t,
size_t node_id);
722 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr yaml, Tree *t,
size_t node_id);
723 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr filename,
csubstr yaml, Tree *t );
724 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr yaml, Tree *t );
725 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr filename,
csubstr yaml, NodeRef node );
726 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr yaml, NodeRef node );
727 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree, Tree>::type
parse_in_arena(
csubstr filename,
csubstr yaml );
728 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the function in parse.hpp.") typename std::enable_if<U::is_wtree, Tree>::type
parse_in_arena(
csubstr yaml );
729 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr filename,
substr yaml, Tree *t,
size_t node_id);
730 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
substr yaml, Tree *t,
size_t node_id);
731 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr filename,
substr yaml, Tree *t );
732 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
substr yaml, Tree *t );
733 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
csubstr filename,
substr yaml, NodeRef node );
734 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree,
void>::type
parse_in_arena(
substr yaml, NodeRef node );
735 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree, Tree>::type
parse_in_arena(
csubstr filename,
substr yaml );
736 template<class U=EventHandler> RYML_DEPRECATED(
"removed, deliberately undefined. use the csubstr version in parse.hpp.") typename std::enable_if<U::is_wtree, Tree>::type
parse_in_arena(
substr yaml );
739 RYML_DEPRECATED(
"moved to Tree::location(Parser const&). deliberately undefined here.")
740 auto location(Tree const&,
id_type node) const -> typename std::enable_if<U::is_wtree, Location>::type;
743 RYML_DEPRECATED(
"moved to ConstNodeRef::location(Parser const&), deliberately undefined here.")
744 auto location(ConstNodeRef const&) const -> typename std::enable_if<U::is_wtree, Location>::type;