Bug #4405
closed
WIN32OLE & Threads incompatible
Added by larsch (Lars Christensen) almost 14 years ago.
Updated over 3 years ago.
Description
=begin
The WIN32OLE library does not work when using Ruby threads. It may raise exceptions such as this:
(druby://localhost:2002) threadsys.rb:7:in connect': failed to parse display name of moniker
winmgmts://localhost/root/cimv2' (WIN32OLERuntimeError)
WIN32 OLE api's are not generally Thread safe, and it can be argued that it is the user's task to ensure that it is accessed only from one thread, or the main thread. However, there are some complications;
- Using WIN32OLE from DRb (DRb can not be used without Threads).
- Using WIN32OLE indirectly (e.g. through Sys::ProcTable).
My specific case was a DRb server that examined processes using Sys::ProcTable, which happen to use WIN32OLE. This causes an exception. Attached is a simple script that recreates the problem. Note that in this simple case, WIN32OLE is only invokes once, and only from one single thread (and it still throws the exception).
=end
Files
threadsys.rb (257 Bytes)
threadsys.rb |
Recreates the exception from WIN32OLE |
larsch (Lars Christensen), 02/17/2011 05:45 PM
|
|
=begin
We struggled with this a bit on JRuby too while implementing win32ole. The contract under which we implemented it also called for high concurrency, so we needed to figure out the right bits and pieces and threading models and so on.
Is it possible for you to try this with JRuby + jruby-win32ole gem? If it works, then what we did might help MRI.
=end
=begin
It does seem to work all right with jruby.
=end
=begin
JRuby's implementation should be prone to the same problems when accessing an STA service from multiple threads. The fact that it works should probably be considered luck more than anything. I agree with the original reporters statement that thread-safety is the users problem to work around.
One thing we could change in win32ole is the ability to specify that we want to access the service as MTA. This would allow MT programs to work at the extreme performance penalty that comes along with accessing a STA as MTA (100-1000x slower). It doesn't crash and for many COM services performance is not an issue.
=end
=begin
Charles Nutter wrote:
Is it possible for you to try this with JRuby + jruby-win32ole gem? If it works, then what we did might help MRI.
Appears to work well with jruby 1.6.0.RC2 (ruby 1.8.7 patchlevel 330) & jruby-win32ole 0.8.3.
=end
- Status changed from Open to Assigned
- Assignee set to suke (Masaki Suketa)
- Status changed from Assigned to Closed
From my testing, this was fixed between Ruby 1.9.3 and Ruby 2.0, printing WIN32OLE object instead of raising an exception. It still works on Ruby 3.0, so I think this can be closed.
Also available in: Atom
PDF
Like0
Like0Like0Like0Like0Like0Like0