Module: FFI_Yajl::FFI::Parser
- Included in:
- Parser
- Defined in:
- lib/ffi_yajl/ffi/parser.rb
Instance Method Summary collapse
- #do_yajl_parse(str, yajl_opts = {}) ⇒ Object
- #key_pop ⇒ Object
- #key_push ⇒ Object
-
#set_value(val) ⇒ Object
rubocop:disable Naming/AccessorMethodName.
- #setup_callbacks ⇒ Object
- #stack_pop ⇒ Object
Instance Method Details
#do_yajl_parse(str, yajl_opts = {}) ⇒ Object
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 |
# File 'lib/ffi_yajl/ffi/parser.rb', line 113 def do_yajl_parse(str, yajl_opts = {}) setup_callbacks callback_ptr = ::FFI::MemoryPointer.new(::FFI_Yajl::YajlCallbacks) callbacks = ::FFI_Yajl::YajlCallbacks.new(callback_ptr) callbacks[:yajl_null] = @null_callback callbacks[:yajl_boolean] = @boolean_callback callbacks[:yajl_integer] = @integer_callback callbacks[:yajl_double] = @double_callback callbacks[:yajl_number] = @number_callback callbacks[:yajl_string] = @string_callback callbacks[:yajl_start_map] = @start_map_callback callbacks[:yajl_map_key] = @map_key_callback callbacks[:yajl_end_map] = @end_map_callback callbacks[:yajl_start_array] = @start_array_callback callbacks[:yajl_end_array] = @end_array_callback yajl_handle = ::FFI_Yajl.yajl_alloc(callback_ptr, nil, nil) # configure the yajl parser if yajl_opts[:yajl_allow_comments] ::FFI_Yajl.yajl_config(yajl_handle, :yajl_allow_comments, :int, 1) end if yajl_opts[:yajl_dont_validate_strings] ::FFI_Yajl.yajl_config(yajl_handle, :yajl_dont_validate_strings, :int, 1) end if yajl_opts[:yajl_allow_trailing_garbage] ::FFI_Yajl.yajl_config(yajl_handle, :yajl_allow_trailing_garbage, :int, 1) end if yajl_opts[:yajl_allow_multiple_values] ::FFI_Yajl.yajl_config(yajl_handle, :yajl_allow_multiple_values, :int, 1) end if yajl_opts[:yajl_allow_partial_values] ::FFI_Yajl.yajl_config(yajl_handle, :yajl_allow_partial_values, :int, 1) end if ::FFI_Yajl.yajl_parse(yajl_handle, str, str.bytesize) != :yajl_status_ok # FIXME: dup the error and call yajl_free_error? error = ::FFI_Yajl.yajl_get_error(yajl_handle, 1, str, str.bytesize) raise ::FFI_Yajl::ParseError, error end if ::FFI_Yajl.yajl_complete_parse(yajl_handle) != :yajl_status_ok # FIXME: dup the error and call yajl_free_error? error = ::FFI_Yajl.yajl_get_error(yajl_handle, 1, str, str.bytesize) raise ::FFI_Yajl::ParseError, error end stack.pop ensure ::FFI_Yajl.yajl_free(yajl_handle) if yajl_handle end |
#key_pop ⇒ Object
50 51 52 |
# File 'lib/ffi_yajl/ffi/parser.rb', line 50 def key_pop @key = key_stack.pop end |
#key_push ⇒ Object
46 47 48 |
# File 'lib/ffi_yajl/ffi/parser.rb', line 46 def key_push key_stack.push(key) end |
#set_value(val) ⇒ Object
rubocop:disable Naming/AccessorMethodName
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/ffi_yajl/ffi/parser.rb', line 26 def set_value(val) # rubocop:disable Naming/AccessorMethodName case stack.last when Hash raise FFI_Yajl::ParseError, "internal error: missing key in parse" if key.nil? if @opts[:unique_key_checking] && stack.last.key?(key) raise FFI_Yajl::ParseError, "repeated key: #{key}" end stack.last[key] = val when Array stack.last.push(val) else stack.push(val) end end |
#setup_callbacks ⇒ Object
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 |
# File 'lib/ffi_yajl/ffi/parser.rb', line 54 def setup_callbacks @null_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx| set_value(nil) 1 end @boolean_callback = ::FFI::Function.new(:int, %i{pointer int}) do |ctx, boolval| set_value(boolval == 1 ? true : false) 1 end @integer_callback = ::FFI::Function.new(:int, %i{pointer long_long}) do |ctx, intval| set_value(intval) 1 end @number_callback = ::FFI::Function.new(:int, %i{pointer string size_t}) do |ctx, stringval, stringlen| s = stringval.slice(0, stringlen) s.force_encoding("UTF-8") if defined? Encoding # XXX: I can't think of a better way to do this right now. need to call to_f if and only if its a float. v = ( s =~ /[\.eE]/ ) ? s.to_f : s.to_i set_value(v) 1 end @double_callback = ::FFI::Function.new(:int, %i{pointer double}) do |ctx, doubleval| set_value(doubleval) 1 end @string_callback = ::FFI::Function.new(:int, %i{pointer string size_t}) do |ctx, stringval, stringlen| s = stringval.slice(0, stringlen) s.force_encoding("UTF-8") if defined? Encoding set_value(s) 1 end @start_map_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx| key_push # for key => { } case, save the key stack.push({}) 1 end @map_key_callback = ::FFI::Function.new(:int, %i{pointer string size_t}) do |ctx, key, keylen| s = key.slice(0, keylen) s.force_encoding("UTF-8") if defined? Encoding self.key = @opts[:symbolize_keys] ? s.to_sym : s 1 end @end_map_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx| key_pop stack_pop 1 end @start_array_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx| key_push # for key => [ ] case, save the key stack.push([]) 1 end @end_array_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx| key_pop stack_pop 1 end end |
#stack_pop ⇒ Object
42 43 44 |
# File 'lib/ffi_yajl/ffi/parser.rb', line 42 def stack_pop set_value( stack.pop ) if stack.length > 1 end |