(U) Ruby 扩展:rb_gc_mark() 和实例变量
我正在编写一个定义类的 ruby 扩展。 如果我使用 Data_Wrap_Struct()
实现 rb_define_alloc_func()
的回调,是否需要手动标记和释放实例变量? 或者仍然为我处理?
I'm writing a ruby extension that defines a class.
If I use Data_Wrap_Struct()
to implement my callback for rb_define_alloc_func()
, do I need to manually mark and free the instance variables? Or is that still handled for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ruby 的 GC 将收集 Ruby 对象的实例变量中引用的所有 Ruby 对象。 您不必也不应该自行释放 Ruby 实例变量(即在扩展中使用
rb_iv_set()
/rb_iv_get()
访问的任何对象)。但是,如果包装的 C 结构 引用 Ruby 对象,那么您必须在传递给
Data_Wrap_Struct()
的mark
回调中标记这些对象>。(并且您始终必须释放底层结构,并在
free
回调中执行任何其他可能需要的清理工作,例如关闭文件、套接字等。)Ruby's GC will collect any Ruby objects that are referenced in your Ruby object's instance variables. You don't have to, and should not, free Ruby instance variables yourself (i.e. any objects accessed with
rb_iv_set()
/rb_iv_get()
in your extension).However, if the wrapped C struct references Ruby objects, then you'll have to mark those in the
mark
callback you are passing toData_Wrap_Struct()
.(And you will always have to free the underlying struct, and do any other clean-up that may be necessary such as closing files, sockets, etc. in your
free
callback.)