Ruby  2.1.10p492(2016-04-01revision54464)
psych_to_ruby.c
Go to the documentation of this file.
1 #include <psych.h>
2 
4 
5 /* call-seq: vis.build_exception(klass, message)
6  *
7  * Create an exception with class +klass+ and +message+
8  */
9 static VALUE build_exception(VALUE self, VALUE klass, VALUE mesg)
10 {
11  VALUE e = rb_obj_alloc(klass);
12 
13  rb_iv_set(e, "mesg", mesg);
14 
15  return e;
16 }
17 
18 /* call-seq: vis.path2class(path)
19  *
20  * Convert +path+ string to a class
21  */
22 static VALUE path2class(VALUE self, VALUE path)
23 {
24 #ifdef HAVE_RUBY_ENCODING_H
25  return rb_path_to_class(path);
26 #else
27  return rb_path2class(StringValuePtr(path));
28 #endif
29 }
30 
32 {
33  VALUE psych = rb_define_module("Psych");
34  VALUE class_loader = rb_define_class_under(psych, "ClassLoader", rb_cObject);
35 
36  VALUE visitors = rb_define_module_under(psych, "Visitors");
37  VALUE visitor = rb_define_class_under(visitors, "Visitor", rb_cObject);
38  cPsychVisitorsToRuby = rb_define_class_under(visitors, "ToRuby", visitor);
39 
41  rb_define_private_method(class_loader, "path2class", path2class, 1);
42 }
43 /* vim: set noet sws=4 sw=4: */
void rb_define_private_method(VALUE klass, const char *name, VALUE(*func)(ANYARGS), int argc)
Definition: class.c:1491
VALUE rb_iv_set(VALUE, const char *, VALUE)
Definition: variable.c:2612
VALUE rb_path_to_class(VALUE)
Definition: variable.c:339
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
Definition: class.c:657
VALUE rb_path2class(const char *)
Definition: variable.c:379
VALUE cPsychVisitorsToRuby
Definition: psych_to_ruby.c:3
static VALUE path2class(VALUE self, VALUE path)
Definition: psych_to_ruby.c:22
RUBY_EXTERN VALUE rb_cObject
Definition: ruby.h:1561
VALUE rb_obj_alloc(VALUE)
Definition: object.c:1804
void Init_psych_to_ruby(void)
Definition: psych_to_ruby.c:31
unsigned long VALUE
Definition: ruby.h:88
VALUE rb_define_module_under(VALUE outer, const char *name)
Definition: class.c:747
#define StringValuePtr(v)
Definition: ruby.h:540
VALUE rb_define_module(const char *name)
Definition: class.c:727
static VALUE build_exception(VALUE self, VALUE klass, VALUE mesg)
Definition: psych_to_ruby.c:9