[#54738] [ruby-trunk - Bug #8358][Open] TestSprintf#test_float test failuer on mingw32 — "phasis68 (Heesob Park)" <phasis@...>

36 messages 2013/05/02

[#54749] [ruby-trunk - Feature #8361][Open] Alternative syntax for block parameter — "alexeymuranov (Alexey Muranov)" <redmine@...>

12 messages 2013/05/02

[#54798] [ruby-trunk - Bug #8370][Open] Constants MAX_MULTIPART_LENGTH in cgi\core.rb — "xibbar (Takeyuki FUJIOKA)" <xibbar@...>

17 messages 2013/05/05

[#54850] [ruby-trunk - Feature #8377][Open] Deprecate :: for method calls in 2.1 — "charliesome (Charlie Somerville)" <charliesome@...>

27 messages 2013/05/07

[#54881] [ruby-trunk - Bug #8384][Open] Cannot build ruby against OpenSSL build with "no-ec2m" — "vo.x (Vit Ondruch)" <v.ondruch@...>

16 messages 2013/05/09

[#54921] [ruby-trunk - Bug #8393][Open] A class who's parent class is in a module can go wrong if files are required in the wrong order — "eLobato (Daniel Lobato Garcia)" <elobatocs@...>

15 messages 2013/05/12

[#54939] [ruby-trunk - Bug #8399][Open] Remove usage of RARRAY_PTR in C extensions when not needed — "dbussink (Dirkjan Bussink)" <d.bussink@...>

32 messages 2013/05/12

[#55053] [ruby-trunk - Feature #8426][Open] Implement class hierarchy method caching — "charliesome (Charlie Somerville)" <charliesome@...>

21 messages 2013/05/19

[#55096] [ruby-trunk - Feature #8430][Open] Rational number literal — "mrkn (Kenta Murata)" <muraken@...>

28 messages 2013/05/21

[#55197] [ruby-trunk - Feature #8461][Open] Easy way to disable certificate checking in XMLRPC::Client — "herwinw (Herwin Weststrate)" <herwin@...>

11 messages 2013/05/29

[ruby-core:55168] [ruby-trunk - Bug #8442] sendmesg (blocking) of class BasicSocket is repeatably sent by the ruby kernel

From: "m_josenhans (Michael Josenhans)" <m_josenhans@...>
Date: 2013-05-26 17:24:56 UTC
List: ruby-core #55168
Issue #8442 has been updated by m_josenhans (Michael Josenhans).


Similar bugs have been reported to Jruby & Rubinius:
   https://github.com/rubinius/rubinius/issues/2362
   http://jira.codehaus.org/browse/JRUBY-7169
----------------------------------------
Bug #8442: sendmesg (blocking) of class BasicSocket is repeatably sent by the ruby kernel
https://bugs.ruby-lang.org/issues/8442#change-39533

Author: m_josenhans (Michael Josenhans)
Status: Open
Priority: Normal
Assignee: 
Category: core
Target version: next minor
ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux]
Backport: 1.9.3: UNKNOWN, 2.0.0: UNKNOWN


=begin
 
(1) The error occurs with the method "sendmesg" (blocking) of class BasicSocket on Ruby 2.0.0-p0 (rvm), but does not occur on Ruby 1.9.3-p392 (rvm).
(2) The error does not occur with the method "send" (non-blocking) of class BasicSocket on Ruby 1.9.3-p392 (rvm) and Ruby 2.0.0-p0 (rvm).

The bug can be reproduced with the code attached.

* For (1) use the code as attached. The send message occurs at line 50 & 51.
* For (2) comment out line 50 & 51 and uncomment line 52 & 53.

How to reproduce the error:

run:
* (({ruby halfsync_halfasync.rb})) 

on second terminal (unix):
* (({telnet localhost 10001}))


on Windows use telnet client e.g. putty and make sure to configure putty as passive ("Connection->Telnet->Telnet negotiation mode: Passive")


What the code does: 
It implements the halfsync_halfasync design-pattern (see references in the code).
* An (({EchoAcceptor})) is registered with the reactor to accept connection setup.
* A thread pool is started waiting for tasks to be retrieved from a shared queue
* Upon connection-setup of the telnet the (({EchoAcceptor})) is called and registers an (({EchoServerHandler})) with the Reactor to handle data received via the connection from the telnet client.
* Upon reception of data via the telent connection, the (({EchoServerHandler})) assembles data until a newline (\n or \r\n) is received. When that is received, the whole line is put into the shared queue.
* The first thread from the thread pool waiting grabs the received data and the socket from the shared queue and in line 50/51 adds the thread-ID, the number of messages handled by that thread and sends it as a reply to the sender using the received socket.
  
What to expect as output:
* Upon entering e.g. text "!1234" and pressing return
On Ruby 1.9.3-p392 on Linux:
* See the as response the thread ID, the number of messages within the thread and the text.

On Ruby 2.0.0-p0 on Linux:
* See same as with Ruby 1.9.3-p392 , but when pressing very fast return after entering no text,
the message of thread-id and number of messages sent will be repeatedly received by the server. 
* As the number of messages is not increased with each sending, it will be repeatedly sent by the ruby kernel (c-code)

On Ruby 2.0.0-p0 on Windows: 
* Nothing is is sent back to the the telnet server, despite the fact that the message had been received at the servers of the thread pool.

* Everything works file, if instead of blocking send (line 50/51) the non-blocking send (line 52/53) is used. However correct implementation of the halfsync-halfasync pattern, requires reasonably the usage of blocking "send" in thread pool. 
  
I have to apologize that the program to reproduce the error is slightly large and complicated, but I believe that there is value, when ruby is able to run  well known design patterns correctly.  

Note:
The code does not run with ruby 1.8.7 and Jruby and Rubinius.
=end



-- 
http://bugs.ruby-lang.org/

In This Thread