summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2009-12-24 15:10:47 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2009-12-24 15:10:47 -0800
commit8bcfb1a550415988a192f5a99a02a71760991906 (patch)
treefa8b04c09473676360e1bfea9da555d48ac70777 /ext
parent8b1ae37254535ea1d8cacbae95d5870ed64bea3d (diff)
downloadpsych-8bcfb1a550415988a192f5a99a02a71760991906.zip
adding tag emission on documents
Diffstat (limited to 'ext')
-rw-r--r--ext/psych/emitter.c30
1 files changed, 28 insertions, 2 deletions
diff --git a/ext/psych/emitter.c b/ext/psych/emitter.c
index b9cda96..14ed6d0 100644
--- a/ext/psych/emitter.c
+++ b/ext/psych/emitter.c
@@ -80,17 +80,43 @@ static VALUE start_document(VALUE self, VALUE version, VALUE tags, VALUE imp)
version_directive.minor = NUM2INT(minor);
}
+ yaml_tag_directive_t * head = NULL;
+ yaml_tag_directive_t * tail = NULL;
+
+ if(RTEST(tags)) {
+ int i = 0;
+
+ head = xcalloc(RARRAY_LEN(tags), sizeof(yaml_tag_directive_t));
+ tail = head;
+
+ for(i = 0; i < RARRAY_LEN(tags); i++) {
+ VALUE tuple = RARRAY_PTR(tags)[i];
+
+ if(RARRAY_LEN(tuple) < 2) {
+ xfree(head);
+ rb_raise(rb_eRuntimeError, "tag tuple must be of length 2");
+ }
+
+ tail->handle = StringValuePtr(RARRAY_PTR(tuple)[0]);
+ tail->prefix = StringValuePtr(RARRAY_PTR(tuple)[1]);
+
+ tail++;
+ }
+ }
+
yaml_event_t event;
yaml_document_start_event_initialize(
&event,
(RARRAY_LEN(version) > 0) ? &version_directive : NULL,
- NULL,
- NULL,
+ head,
+ tail,
imp == Qtrue ? 1 : 0
);
emit(emitter, &event);
+ if(head) xfree(head);
+
return self;
}