我正在使用 FFI 将用 C 编写的 Ruby gem 移植到 Ruby。
当我使用 MRI Ruby 运行测试时,没有任何段错误。在 jRuby 中运行时,出现段错误。
这是我认为负责的测试中的代码:
if type == Date or type == DateTime then
assert_nil param.set_value(value.strftime("%F %T"));
else
assert_nil param.set_value(value);
end
@api.sqlany_bind_param(stmt, 0, param)
puts "\n#{param.inspect}"
#return if String === value or Date === value or DateTime === value
assert_succeeded @api.sqlany_execute(stmt)
运行 sqlany_execute 时会发生分段错误,但仅当传递给 set_value 的对象属于 String 类时。
sqlany_execute 只使用 FFI 的 attach_function 方法。
param.set_value 更复杂。我将只关注字符串特定的部分。这是原始的C代码
case T_STRING:
s_bind->value.length = malloc(sizeof(size_t));
length = RSTRING_LEN(val);
*s_bind->value.length = length;
s_bind->value.buffer = malloc(length);
memcpy(s_bind->value.buffer, RSTRING_PTR(val), length);
s_bind->value.type = A_STRING;
break;
在我的港口,这变成了:
when String
self[:value][:length] = SQLAnywhere::LibC.malloc(FFI::Type::ULONG.size)
length = value.bytesize
self[:value][:length].write_int(length)
self[:value][:buffer] = SQLAnywhere::LibC.malloc(length + 1)
self[:value][:buffer_size] = length + 1
## Don't use put_string as that includes the terminating null
# value.each_byte.each_with_index do |byte, index|
# self[:value][:buffer].put_uchar(index, byte)
# end
self[:value][:buffer].put_string(0, value)
self[:value][:type] = :string
我的问题是:是什么导致 jRuby 出现段错误,我能做些什么呢?