Module: FFI_Yajl::FFI::Parser

Included in:
Parser
Defined in:
lib/ffi_yajl/ffi/parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#finishedObject

Returns the value of attribute finished.



7
8
9
# File 'lib/ffi_yajl/ffi/parser.rb', line 7

def finished
  @finished
end

#keyObject

Returns the value of attribute key.



7
8
9
# File 'lib/ffi_yajl/ffi/parser.rb', line 7

def key
  @key
end

#key_stackObject

stack to keep track of keys as we create nested hashes



39
40
41
# File 'lib/ffi_yajl/ffi/parser.rb', line 39

def key_stack
  @key_stack
end

#stackObject

stack used to build up our complex object



12
13
14
# File 'lib/ffi_yajl/ffi/parser.rb', line 12

def stack
  @stack
end

Instance Method Details

#do_yajl_parse(str, opts = {}) ⇒ Object



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
# File 'lib/ffi_yajl/ffi/parser.rb', line 112

def do_yajl_parse(str, 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)
  if ( stat = ::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.new(error)
  end
  if ( stat = 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.new(error)
  end
  finished
ensure
  ::FFI_Yajl.yajl_free(yajl_handle) if yajl_handle
end

#key_popObject



47
48
49
# File 'lib/ffi_yajl/ffi/parser.rb', line 47

def key_pop
  @key = key_stack.pop()
end

#key_pushObject



43
44
45
# File 'lib/ffi_yajl/ffi/parser.rb', line 43

def key_push
  key_stack.push(key)
end

#set_value(val) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/ffi_yajl/ffi/parser.rb', line 16

def set_value(val)
  case stack.last
  when Hash
    raise FFI_Yajl::ParseError.new("internal error: missing key in parse") if key.nil?
    stack.last[key] = val
  when Array
    stack.last.push(val)
  else
    raise FFI_Yajl::ParseError.new("internal error: object not a hash or array")
  end
end

#setup_callbacksObject



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
# File 'lib/ffi_yajl/ffi/parser.rb', line 52

def setup_callbacks
  @null_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx|
    set_value(nil)
    1
  end
  @boolean_callback = ::FFI::Function.new(:int, [:pointer, :int]) do |ctx, boolval|
    set_value(boolval == 1 ? true : false)
    1
  end
  @integer_callback = ::FFI::Function.new(:int, [:pointer, :long_long]) do |ctx, intval|
    set_value(intval)
    1
  end
  @number_callback = ::FFI::Function.new(:int, [: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 =~ /\./ ) ? s.to_f : s.to_i
    set_value(v)
    1
  end
  @double_callback = ::FFI::Function.new(:int, [:pointer, :double]) do |ctx, doubleval|
    set_value(doubleval)
    1
  end
  @string_callback = ::FFI::Function.new(:int, [: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(Hash.new)
    1
  end
  @map_key_callback = ::FFI::Function.new(:int, [:pointer, :string, :size_t]) do |ctx, key, keylen|
    s = key.slice(0,keylen)
    s.force_encoding('UTF-8') if defined? Encoding
    self.key = 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(Array.new)
    1
  end
  @end_array_callback = ::FFI::Function.new(:int, [:pointer]) do |ctx|
    key_pop
    stack_pop
    1
  end
end

#stack_popObject



28
29
30
31
32
33
34
# File 'lib/ffi_yajl/ffi/parser.rb', line 28

def stack_pop
  if stack.length > 1
    set_value( stack.pop )
  else
    @finished = stack.pop
  end
end