Feature #3511
closedrb_path_to_class should call custom const_defined? methods
Description
=begin
It would be nice if rb_path_to_class called custom const_defined? methods. This would give marshaled objects a chance to locate and define classes when they are being unmarshalled.
I've attached a patch with a test that demonstrates the desired functionality and a (probably naive) implementation.
=end
Files
Updated by nahi (Hiroshi Nakamura) over 12 years ago
- Description updated (diff)
- Status changed from Open to Feedback
Aaron, is this hook extension still needed for your usecase? (assuming Rails?)
Not bad but it would affect performance...
Updated by mame (Yusuke Endoh) almost 12 years ago
- Target version set to 2.6
Updated by oggy (George Ogata) over 8 years ago
Hiroshi Nakamura wrote:
Aaron, is this hook extension still needed for your usecase? (assuming Rails?)
Not bad but it would affect performance...
Would this idea still be considered? I find this issue comes up fairly frequently in Rails apps when an object is serialized and deserialized in a separate process.
I think the performance problem could be addressed by keeping the rb_const_defined call, and then only if that fails try the rb_funcall. WDYT?
Updated by oggy (George Ogata) over 8 years ago
- File marshal-dynamic.patch marshal-dynamic.patch added
I've attached an updated patch for current ruby trunk, which I think is a little more consistent with non-lazily-defined constant lookup. Also simplified the test case a little.
Updated by matz (Yukihiro Matsumoto) about 8 years ago
- Status changed from Feedback to Closed
This is kind of autoload that sometimes cause problems.
I think it can cause issues than solving problem.
If you have a concrete use-case of this feature, please reopen.
Matz.
Updated by oggy (George Ogata) about 8 years ago
Thanks for considering!
I've opened a new ticket and described my concrete use case, as I don't see a way to reopen this one.