-
Notifications
You must be signed in to change notification settings - Fork 18
/
Neslib.LibYaml.pas
1939 lines (1717 loc) · 59.8 KB
/
Neslib.LibYaml.pas
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
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit Neslib.LibYaml;
{ Header translation for LibYaml (https://github.com/yaml/libyaml).
This unit is partially generated by Chet (https://github.com/neslib/Chet). }
{$MINENUMSIZE 4}
{$IF Defined(MACOS) or Defined(ANDROID) or Defined(LINUX64)}
{$DEFINE USE_LIB}
{$ENDIF}
interface
{$IF Defined(WIN32)}
const
_PU = '_';
{$LINK 'Lib\Windows32\dumper.obj'}
{$LINK 'Lib\Windows32\loader.obj'}
{$LINK 'Lib\Windows32\emitter.obj'}
{$LINK 'Lib\Windows32\writer.obj'}
{$LINK 'Lib\Windows32\parser.obj'}
{$LINK 'Lib\Windows32\scanner.obj'}
{$LINK 'Lib\Windows32\reader.obj'}
{$LINK 'Lib\Windows32\api.obj'}
{$ELSEIF Defined(WIN64)}
const
_PU = '';
{$LINK 'Lib\Windows64\dumper.obj'}
{$LINK 'Lib\Windows64\loader.obj'}
{$LINK 'Lib\Windows64\emitter.obj'}
{$LINK 'Lib\Windows64\writer.obj'}
{$LINK 'Lib\Windows64\parser.obj'}
{$LINK 'Lib\Windows64\scanner.obj'}
{$LINK 'Lib\Windows64\reader.obj'}
{$LINK 'Lib\Windows64\api.obj'}
{$ELSEIF Defined(ANDROID32)}
const
LIB_YAML = 'libyaml_android32.a';
_PU = '';
{$ELSEIF Defined(ANDROID64)}
const
LIB_YAML = 'libyaml_android64.a';
_PU = '';
{$ELSEIF Defined(IOS)}
const
LIB_YAML = 'libyaml_ios.a';
_PU = '';
{$ELSEIF Defined(MACOS32)}
const
LIB_YAML = 'libyaml_mac32.dylib';
_PU = '_';
{$ELSEIF Defined(MACOS64)}
const
LIB_YAML = 'libyaml_mac64.a';
_PU = '';
{$ELSEIF Defined(LINUX64)}
const
LIB_YAML = 'libyaml_linux64.a';
_PU = '';
{$ELSE}
{$MESSAGE Error 'Unsupported platform'}
{$ENDIF}
(**
* @defgroup version Version Information
* @{
*)
(**
* Get the library version as a string.
*
* @returns The function returns the pointer to a static string of the form
* @c "X.Y.Z", where @c X is the major version number, @c Y is a minor version
* number, and @c Z is the patch version number.
*)
function yaml_get_version_string(): PUTF8Char; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_get_version_string';
(**
* Get the library version numbers.
*
* @param[out] major Major version number.
* @param[out] minor Minor version number.
* @param[out] patch Patch version number.
*)
procedure yaml_get_version(out major, minor, patch: Integer); cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_get_version';
(**
* @defgroup basic Basic Types
* @{
*)
(** The character type (UTF-8 octet). *)
type
yaml_char_t = UTF8Char;
Pyaml_char_t = PUTF8Char;
(** The version directive data. *)
type
yaml_version_directive_t = record
(** The major version number. *)
major: Integer;
(** The minor version number. *)
minor: Integer;
end;
Pyaml_version_directive_t = ^yaml_version_directive_t;
(** The tag directive data. *)
type
yaml_tag_directive_t = record
(** The tag handle. *)
handle: Pyaml_char_t;
(** The tag prefix. *)
prefix: Pyaml_char_t;
end;
Pyaml_tag_directive_t = ^yaml_tag_directive_t;
(** The stream encoding. *)
type
yaml_encoding_t = (
(** Let the parser choose the encoding. *)
YAML_ANY_ENCODING,
(** The default UTF-8 encoding. *)
YAML_UTF8_ENCODING,
(** The UTF-16-LE encoding with BOM. *)
YAML_UTF16LE_ENCODING,
(** The UTF-16-BE encoding with BOM. *)
YAML_UTF16BE_ENCODING);
(** Line break types. *)
type
yaml_break_t = (
(** Let the parser choose the break type. *)
YAML_ANY_BREAK,
(** Use CR for line breaks (Mac style). *)
YAML_CR_BREAK,
(** Use LN for line breaks (Unix style). *)
YAML_LN_BREAK,
(** Use CR LN for line breaks (DOS style). *)
YAML_CRLN_BREAK);
(** Many bad things could happen with the parser and emitter. *)
type
yaml_error_type_t = (
(** No error is produced. *)
YAML_NO_ERROR,
(** Cannot allocate or reallocate a block of memory. *)
YAML_MEMORY_ERROR,
(** Cannot read or decode the input stream. *)
YAML_READER_ERROR,
(** Cannot scan the input stream. *)
YAML_SCANNER_ERROR,
(** Cannot parse the input stream. *)
YAML_PARSER_ERROR,
(** Cannot compose a YAML document. *)
YAML_COMPOSER_ERROR,
(** Cannot write to the output stream. *)
YAML_WRITER_ERROR,
(** Cannot emit a YAML stream. *)
YAML_EMITTER_ERROR);
(** The pointer position. *)
type
yaml_mark_t = record
(** The position index. *)
index: NativeInt;
(** The position line. *)
line: NativeInt;
(** The position column. *)
column: NativeInt;
end;
Pyaml_mark_t = ^yaml_mark_t;
(**
* @defgroup styles Node Styles
* @{
*)
(** Scalar styles. *)
type
yaml_scalar_style_t = (
(** Let the emitter choose the style. *)
YAML_ANY_SCALAR_STYLE,
(** The plain scalar style. *)
YAML_PLAIN_SCALAR_STYLE,
(** The single-quoted scalar style. *)
YAML_SINGLE_QUOTED_SCALAR_STYLE,
(** The double-quoted scalar style. *)
YAML_DOUBLE_QUOTED_SCALAR_STYLE,
(** The literal scalar style. *)
YAML_LITERAL_SCALAR_STYLE,
(** The folded scalar style. *)
YAML_FOLDED_SCALAR_STYLE);
(** Sequence styles. *)
type
yaml_sequence_style_t = (
(** Let the emitter choose the style. *)
YAML_ANY_SEQUENCE_STYLE,
(** The block sequence style. *)
YAML_BLOCK_SEQUENCE_STYLE,
(** The flow sequence style. *)
YAML_FLOW_SEQUENCE_STYLE);
(** Mapping styles. *)
type
yaml_mapping_style_t = (
(** Let the emitter choose the style. *)
YAML_ANY_MAPPING_STYLE,
(** The block mapping style. *)
YAML_BLOCK_MAPPING_STYLE,
(** The flow mapping style. *)
YAML_FLOW_MAPPING_STYLE);
(**
* @defgroup tokens Tokens
* @{
*)
(** Token types. *)
type
yaml_token_type_t = (
(** An empty token. *)
YAML_NO_TOKEN,
(** A STREAM-START token. *)
YAML_STREAM_START_TOKEN,
(** A STREAM-END token. *)
YAML_STREAM_END_TOKEN,
(** A VERSION-DIRECTIVE token. *)
YAML_VERSION_DIRECTIVE_TOKEN,
(** A TAG-DIRECTIVE token. *)
YAML_TAG_DIRECTIVE_TOKEN,
(** A DOCUMENT-START token. *)
YAML_DOCUMENT_START_TOKEN,
(** A DOCUMENT-END token. *)
YAML_DOCUMENT_END_TOKEN,
(** A BLOCK-SEQUENCE-START token. *)
YAML_BLOCK_SEQUENCE_START_TOKEN,
(** A BLOCK-MAPPING-START token. *)
YAML_BLOCK_MAPPING_START_TOKEN,
(** A BLOCK-END token. *)
YAML_BLOCK_END_TOKEN,
(** A FLOW-SEQUENCE-START token. *)
YAML_FLOW_SEQUENCE_START_TOKEN,
(** A FLOW-SEQUENCE-END token. *)
YAML_FLOW_SEQUENCE_END_TOKEN,
(** A FLOW-MAPPING-START token. *)
YAML_FLOW_MAPPING_START_TOKEN,
(** A FLOW-MAPPING-END token. *)
YAML_FLOW_MAPPING_END_TOKEN,
(** A BLOCK-ENTRY token. *)
YAML_BLOCK_ENTRY_TOKEN,
(** A FLOW-ENTRY token. *)
YAML_FLOW_ENTRY_TOKEN,
(** A KEY token. *)
YAML_KEY_TOKEN,
(** A VALUE token. *)
YAML_VALUE_TOKEN,
(** An ALIAS token. *)
YAML_ALIAS_TOKEN,
(** An ANCHOR token. *)
YAML_ANCHOR_TOKEN,
(** A TAG token. *)
YAML_TAG_TOKEN,
(** A SCALAR token. *)
YAML_SCALAR_TOKEN);
(** The token structure. *)
type
yaml_token_t = record
(** The token type. *)
_type: yaml_token_type_t;
(** The token data. *)
data: record
case Byte of
(** The stream start (for @c YAML_STREAM_START_TOKEN). *)
0: (stream_start: record
(** The stream encoding. *)
encoding: yaml_encoding_t;
end);
(** The alias (for @c YAML_ALIAS_TOKEN). *)
1: (alias: record
(** The alias value. *)
value: Pyaml_char_t;
end);
(** The anchor (for @c YAML_ANCHOR_TOKEN). *)
2: (anchor: record
(** The anchor value. *)
value: Pyaml_char_t;
end);
(** The tag (for @c YAML_TAG_TOKEN). *)
3: (tag: record
(** The tag handle. *)
handle: Pyaml_char_t;
(** The tag suffix. *)
suffix: Pyaml_char_t;
end);
(** The scalar value (for @c YAML_SCALAR_TOKEN). *)
4: (scalar: record
(** The scalar value. *)
value: Pyaml_char_t;
(** The length of the scalar value. *)
length: NativeInt;
(** The scalar style. *)
style: yaml_scalar_style_t;
end);
(** The version directive (for @c YAML_VERSION_DIRECTIVE_TOKEN). *)
5: (version_directive: record
(** The major version number. *)
major: Integer;
(** The minor version number. *)
minor: Integer;
end);
(** The tag directive (for @c YAML_TAG_DIRECTIVE_TOKEN). *)
6: (tag_directive: record
(** The tag handle. *)
handle: Pyaml_char_t;
(** The tag prefix. *)
prefix: Pyaml_char_t;
end);
end;
(** The beginning of the token. *)
start_mark: yaml_mark_t;
(** The end of the token. *)
end_mark: yaml_mark_t;
end;
Pyaml_token_t = ^yaml_token_t;
(**
* Free any memory allocated for a token object.
*
* @param[in,out] token A token object.
*)
procedure yaml_token_delete(token: Pyaml_token_t); cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_token_delete';
(**
* @defgroup events Events
* @{
*)
(** Event types. *)
type
yaml_event_type_t = (
(** An empty event. *)
YAML_NO_EVENT,
(** A STREAM-START event. *)
YAML_STREAM_START_EVENT,
(** A STREAM-END event. *)
YAML_STREAM_END_EVENT,
(** A DOCUMENT-START event. *)
YAML_DOCUMENT_START_EVENT,
(** A DOCUMENT-END event. *)
YAML_DOCUMENT_END_EVENT,
(** An ALIAS event. *)
YAML_ALIAS_EVENT,
(** A SCALAR event. *)
YAML_SCALAR_EVENT,
(** A SEQUENCE-START event. *)
YAML_SEQUENCE_START_EVENT,
(** A SEQUENCE-END event. *)
YAML_SEQUENCE_END_EVENT,
(** A MAPPING-START event. *)
YAML_MAPPING_START_EVENT,
(** A MAPPING-END event. *)
YAML_MAPPING_END_EVENT);
type
yaml_document_start_event_t = record
(** The version directive. *)
version_directive: Pyaml_version_directive_t;
(** The list of tag directives. *)
tag_directives: record
(** The beginning of the tag directives list. *)
start: Pyaml_tag_directive_t;
(** The end of the tag directives list. *)
_end: Pyaml_tag_directive_t;
end;
(** Is the document indicator implicit? *)
implicit: Integer;
end;
type
yaml_scalar_event_t = record
(** The anchor. *)
anchor: Pyaml_char_t;
(** The tag. *)
tag: Pyaml_char_t;
(** The scalar value. *)
value: Pyaml_char_t;
(** The length of the scalar value. *)
length: NativeInt;
(** Is the tag optional for the plain style? *)
plain_implicit: Integer;
(** Is the tag optional for any non-plain style? *)
quoted_implicit: Integer;
(** The scalar style. *)
style: yaml_scalar_style_t;
end;
type
yaml_mapping_start_event_t = record
(** The anchor. *)
anchor: Pyaml_char_t;
(** The tag. *)
tag: Pyaml_char_t;
(** Is the tag optional? *)
implicit: Integer;
(** The mapping style. *)
style: yaml_mapping_style_t;
end;
type
yaml_sequence_start_event_t = record
(** The anchor. *)
anchor: Pyaml_char_t;
(** The tag. *)
tag: Pyaml_char_t;
(** Is the tag optional? *)
implicit: Integer;
(** The sequence style. *)
style: yaml_sequence_style_t;
end;
(** The event structure. *)
type
yaml_event_t = record
(** The event type. *)
_type: yaml_event_type_t;
(** The event data. *)
data: record
case Byte of
(** The stream parameters (for @c YAML_STREAM_START_EVENT). *)
0: (stream_start: record
(** The document encoding. *)
encoding: yaml_encoding_t;
end);
(** The document parameters (for @c YAML_DOCUMENT_START_EVENT). *)
1: (document_start: yaml_document_start_event_t);
(** The document end parameters (for @c YAML_DOCUMENT_END_EVENT). *)
3: (document_end: record
(** Is the document end indicator implicit? *)
implicit: Integer;
end);
(** The alias parameters (for @c YAML_ALIAS_EVENT). *)
4: (alias: record
(** The anchor. *)
anchor: Pyaml_char_t;
end);
(** The scalar parameters (for @c YAML_SCALAR_EVENT). *)
5: (scalar: yaml_scalar_event_t);
(** The sequence parameters (for @c YAML_SEQUENCE_START_EVENT). *)
6: (sequence_start: yaml_sequence_start_event_t);
(** The mapping parameters (for @c YAML_MAPPING_START_EVENT). *)
7: (mapping_start: yaml_mapping_start_event_t);
end;
(** The beginning of the event. *)
start_mark: yaml_mark_t;
(** The end of the event. *)
end_mark: yaml_mark_t;
end;
Pyaml_event_t = ^yaml_event_t;
(**
* Create the STREAM-START event.
*
* @param[out] event An empty event object.
* @param[in] encoding The stream encoding.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_stream_start_event_initialize(event: Pyaml_event_t; encoding: yaml_encoding_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_stream_start_event_initialize';
(**
* Create the STREAM-END event.
*
* @param[out] event An empty event object.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_stream_end_event_initialize(event: Pyaml_event_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_stream_end_event_initialize';
(**
* Create the DOCUMENT-START event.
*
* The @a implicit argument is considered as a stylistic parameter and may be
* ignored by the emitter.
*
* @param[out] event An empty event object.
* @param[in] version_directive The %YAML directive value or
* @c NULL.
* @param[in] tag_directives_start The beginning of the %TAG
* directives list.
* @param[in] tag_directives_end The end of the %TAG directives
* list.
* @param[in] implicit If the document start indicator is
* implicit.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_document_start_event_initialize(event: Pyaml_event_t; version_directive: Pyaml_version_directive_t; tag_directives_start: Pyaml_tag_directive_t; tag_directives_end: Pyaml_tag_directive_t; implicit: Integer): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_start_event_initialize';
(**
* Create the DOCUMENT-END event.
*
* The @a implicit argument is considered as a stylistic parameter and may be
* ignored by the emitter.
*
* @param[out] event An empty event object.
* @param[in] implicit If the document end indicator is implicit.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_document_end_event_initialize(event: Pyaml_event_t; implicit: Integer): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_end_event_initialize';
(**
* Create an ALIAS event.
*
* @param[out] event An empty event object.
* @param[in] anchor The anchor value.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_alias_event_initialize(event: Pyaml_event_t; anchor: Pyaml_char_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_alias_event_initialize';
(**
* Create a SCALAR event.
*
* The @a style argument may be ignored by the emitter.
*
* Either the @a tag attribute or one of the @a plain_implicit and
* @a quoted_implicit flags must be set.
*
* @param[out] event An empty event object.
* @param[in] anchor The scalar anchor or @c NULL.
* @param[in] tag The scalar tag or @c NULL.
* @param[in] value The scalar value.
* @param[in] length The length of the scalar value.
* @param[in] plain_implicit If the tag may be omitted for the plain
* style.
* @param[in] quoted_implicit If the tag may be omitted for any
* non-plain style.
* @param[in] style The scalar style.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_scalar_event_initialize(event: Pyaml_event_t; anchor: Pyaml_char_t; tag: Pyaml_char_t; value: Pyaml_char_t; length: Integer; plain_implicit: Integer; quoted_implicit: Integer; style: yaml_scalar_style_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_scalar_event_initialize';
(**
* Create a SEQUENCE-START event.
*
* The @a style argument may be ignored by the emitter.
*
* Either the @a tag attribute or the @a implicit flag must be set.
*
* @param[out] event An empty event object.
* @param[in] anchor The sequence anchor or @c NULL.
* @param[in] tag The sequence tag or @c NULL.
* @param[in] implicit If the tag may be omitted.
* @param[in] style The sequence style.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_sequence_start_event_initialize(event: Pyaml_event_t; anchor: Pyaml_char_t; tag: Pyaml_char_t; implicit: Integer; style: yaml_sequence_style_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_sequence_start_event_initialize';
(**
* Create a SEQUENCE-END event.
*
* @param[out] event An empty event object.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_sequence_end_event_initialize(event: Pyaml_event_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_sequence_end_event_initialize';
(**
* Create a MAPPING-START event.
*
* The @a style argument may be ignored by the emitter.
*
* Either the @a tag attribute or the @a implicit flag must be set.
*
* @param[out] event An empty event object.
* @param[in] anchor The mapping anchor or @c NULL.
* @param[in] tag The mapping tag or @c NULL.
* @param[in] implicit If the tag may be omitted.
* @param[in] style The mapping style.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_mapping_start_event_initialize(event: Pyaml_event_t; anchor: Pyaml_char_t; tag: Pyaml_char_t; implicit: Integer; style: yaml_mapping_style_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_mapping_start_event_initialize';
(**
* Create a MAPPING-END event.
*
* @param[out] event An empty event object.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_mapping_end_event_initialize(event: Pyaml_event_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_mapping_end_event_initialize';
(**
* Free any memory allocated for an event object.
*
* @param[in,out] event An event object.
*)
procedure yaml_event_delete(event: Pyaml_event_t); cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_event_delete';
(**
* @defgroup nodes Nodes
* @{
*)
const
(** The tag @c !!null with the only possible value: @c null. *)
YAML_NULL_TAG = 'tag:yaml.org,2002:null';
(** The tag @c !!bool with the values: @c true and @c false. *)
YAML_BOOL_TAG = 'tag:yaml.org,2002:bool';
(** The tag @c !!str for string values. *)
YAML_STR_TAG = 'tag:yaml.org,2002:str';
(** The tag @c !!int for integer values. *)
YAML_INT_TAG = 'tag:yaml.org,2002:int';
(** The tag @c !!float for float values. *)
YAML_FLOAT_TAG = 'tag:yaml.org,2002:float';
(** The tag @c !!timestamp for date and time values. *)
YAML_TIMESTAMP_TAG = 'tag:yaml.org,2002:timestamp';
(** The tag @c !!seq is used to denote sequences. *)
YAML_SEQ_TAG = 'tag:yaml.org,2002:seq';
(** The tag @c !!map is used to denote mapping. *)
YAML_MAP_TAG = 'tag:yaml.org,2002:map';
(** The default scalar tag is @c !!str. *)
YAML_DEFAULT_SCALAR_TAG = YAML_STR_TAG;
(** The default sequence tag is @c !!seq. *)
YAML_DEFAULT_SEQUENCE_TAG = YAML_SEQ_TAG;
(** The default mapping tag is @c !!map. *)
YAML_DEFAULT_MAPPING_TAG = YAML_MAP_TAG;
(** Node types. *)
type
yaml_node_type_t = (
(** An empty node. *)
YAML_NO_NODE,
(** A scalar node. *)
YAML_SCALAR_NODE,
(** A sequence node. *)
YAML_SEQUENCE_NODE,
(** A mapping node. *)
YAML_MAPPING_NODE);
(** An element of a sequence node. *)
type
yaml_node_item_t = Integer;
Pyaml_node_item_t = PInteger;
(** An element of a mapping node. *)
type
yaml_node_pair_t = record
(** The key of the element. *)
key: Integer;
(** The value of the element. *)
value: Integer;
end;
Pyaml_node_pair_t = ^yaml_node_pair_t;
(** The node structure. *)
type
yaml_node_t = record
(** The node type. *)
_type: yaml_node_type_t;
(** The node tag. *)
tag: Pyaml_char_t;
(** The node data. *)
data: record
case Byte of
(** The scalar parameters (for @c YAML_SCALAR_NODE). *)
0: (scalar: record
(** The scalar value. *)
value: Pyaml_char_t;
(** The length of the scalar value. *)
length: NativeInt;
(** The scalar style. *)
style: yaml_scalar_style_t;
end);
(** The sequence parameters (for @c YAML_SEQUENCE_NODE). *)
1: (sequence: record
(** The stack of sequence items. *)
items: record
(** The beginning of the stack. *)
start: Pyaml_node_item_t;
(** The end of the stack. *)
_end: Pyaml_node_item_t;
(** The top of the stack. *)
top: Pyaml_node_item_t;
end;
(** The sequence style. *)
style: yaml_sequence_style_t;
end);
(** The mapping parameters (for @c YAML_MAPPING_NODE). *)
2: (mapping: record
(** The stack of mapping pairs (key, value). *)
pairs: record
(** The beginning of the stack. *)
start: Pyaml_node_pair_t;
(** The end of the stack. *)
_end: Pyaml_node_pair_t;
(** The top of the stack. *)
top: Pyaml_node_pair_t;
end;
(** The mapping style. *)
style: yaml_mapping_style_t;
end);
end;
(** The beginning of the node. *)
start_marp: yaml_mark_t;
(** The end of the node. *)
end_mark: yaml_mark_t;
end;
Pyaml_node_t = ^yaml_node_t;
(** The document structure. *)
type
yaml_document_t = record
(** The document nodes. *)
node: record
(** The beginning of the stack. *)
start: Pyaml_node_t;
(** The end of the stack. *)
_end: Pyaml_node_t;
(** The top of the stack. *)
top: Pyaml_node_t;
end;
(** The version directive. *)
version_directive: Pyaml_version_directive_t;
(** The list of tag directives. *)
tag_directives: record
(** The beginning of the tag directives list. *)
start: Pyaml_tag_directive_t;
(** The end of the tag directives list. *)
_end: Pyaml_tag_directive_t;
end;
(** Is the document start indicator implicit? *)
start_implicit: Integer;
(** Is the document end indicator implicit? *)
end_implicit: Integer;
(** The beginning of the document. *)
start_mark: yaml_mark_t;
(** The end of the document. *)
end_mark: yaml_mark_t;
end;
Pyaml_document_t = ^yaml_document_t;
(**
* Create a YAML document.
*
* @param[out] document An empty document object.
* @param[in] version_directive The %YAML directive value or
* @c NULL.
* @param[in] tag_directives_start The beginning of the %TAG
* directives list.
* @param[in] tag_directives_end The end of the %TAG directives
* list.
* @param[in] start_implicit If the document start indicator is
* implicit.
* @param[in] end_implicit If the document end indicator is
* implicit.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_document_initialize(document: Pyaml_document_t; version_directive: Pyaml_version_directive_t; tag_directives_start: Pyaml_tag_directive_t; tag_directives_end: Pyaml_tag_directive_t; start_implicit: Integer; end_implicit: Integer): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_initialize';
(**
* Delete a YAML document and all its nodes.
*
* @param[in,out] document A document object.
*)
procedure yaml_document_delete(document: Pyaml_document_t); cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_delete';
(**
* Get a node of a YAML document.
*
* The pointer returned by this function is valid until any of the functions
* modifying the documents are called.
*
* @param[in] document A document object.
* @param[in] index The node id.
*
* @returns the node objct or @c NULL if @c node_id is out of range.
*)
function yaml_document_get_node(document: Pyaml_document_t; index: Integer): Pyaml_node_t; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_get_node';
(**
* Get the root of a YAML document node.
*
* The root object is the first object added to the document.
*
* The pointer returned by this function is valid until any of the functions
* modifying the documents are called.
*
* An empty document produced by the parser signifies the end of a YAML
* stream.
*
* @param[in] document A document object.
*
* @returns the node object or @c NULL if the document is empty.
*)
function yaml_document_get_root_node(document: Pyaml_document_t): Pyaml_node_t; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_get_root_node';
(**
* Create a SCALAR node and attach it to the document.
*
* The @a style argument may be ignored by the emitter.
*
* @param[in,out] document A document object.
* @param[in] tag The scalar tag.
* @param[in] value The scalar value.
* @param[in] length The length of the scalar value.
* @param[in] style The scalar style.
*
* @returns the node id or @c 0 on error.
*)
function yaml_document_add_scalar(document: Pyaml_document_t; tag: Pyaml_char_t; value: Pyaml_char_t; length: Integer; style: yaml_scalar_style_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_add_scalar';
(**
* Create a SEQUENCE node and attach it to the document.
*
* The @a style argument may be ignored by the emitter.
*
* @param[in,out] document A document object.
* @param[in] tag The sequence tag.
* @param[in] style The sequence style.
*
* @returns the node id or @c 0 on error.
*)
function yaml_document_add_sequence(document: Pyaml_document_t; tag: Pyaml_char_t; style: yaml_sequence_style_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_add_sequence';
(**
* Create a MAPPING node and attach it to the document.
*
* The @a style argument may be ignored by the emitter.
*
* @param[in,out] document A document object.
* @param[in] tag The sequence tag.
* @param[in] style The sequence style.
*
* @returns the node id or @c 0 on error.
*)
function yaml_document_add_mapping(document: Pyaml_document_t; tag: Pyaml_char_t; style: yaml_mapping_style_t): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_add_mapping';
(**
* Add an item to a SEQUENCE node.
*
* @param[in,out] document A document object.
* @param[in] sequence The sequence node id.
* @param[in] item The item node id.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_document_append_sequence_item(document: Pyaml_document_t; sequence: Integer; item: Integer): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_append_sequence_item';
(**
* Add a pair of a key and a value to a MAPPING node.
*
* @param[in,out] document A document object.
* @param[in] mapping The mapping node id.
* @param[in] key The key node id.
* @param[in] value The value node id.
*
* @returns @c 1 if the function succeeded, @c 0 on error.
*)
function yaml_document_append_mapping_pair(document: Pyaml_document_t; mapping: Integer; key: Integer; value: Integer): Integer; cdecl;
external {$IFDEF USE_LIB}LIB_YAML{$ENDIF} name _PU + 'yaml_document_append_mapping_pair';
(**
* @defgroup parser Parser Definitions
* @{
*)
(**
* The prototype of a read handler.
*
* The read handler is called when the parser needs to read more bytes from the
* source. The handler should write not more than @a size bytes to the @a
* buffer. The number of written bytes should be set to the @a length variable.
*
* @param[in,out] data A pointer to an application data specified by
* yaml_parser_set_input().
* @param[out] buffer The buffer to write the data from the source.
* @param[in] size The size of the buffer.
* @param[out] size_read The actual number of bytes read from the source.
*
* @returns On success, the handler should return @c 1. If the handler failed,
* the returned value should be @c 0. On EOF, the handler should set the
* @a size_read to @c 0 and return @c 1.
*)
type
yaml_read_handler_t = function(data, buffer: Pointer; size: NativeUInt; size_read: PNativeUInt): Integer; cdecl;
(**
* This structure holds information about a potential simple key.
*)
type
yaml_simple_key_t = record
(** Is a simple key possible? *)
possible: Integer;
(** Is a simple key required? *)
required: Integer;
(** The number of the token. *)
token_number: NativeInt;
(** The position mark. *)
mark: yaml_mark_t;
end;
Pyaml_simple_key_t = ^yaml_simple_key_t;
(**
* The states of the parser.
*)
type
yaml_parser_state_t = (
(** Expect STREAM-START. *)
YAML_PARSE_STREAM_START_STATE,
(** Expect the beginning of an implicit document. *)
YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE,
(** Expect DOCUMENT-START. *)