summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-04 01:02:16 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-04 01:02:16 +0000
commit594eb2e0fe69956a2945a5cd85b6ee4fcc8117a0 (patch)
tree4d752bb29eb1bde93b907fc37ba5c88b149eab9e /lib
parent79c0605534b0db23ec715ebfa30f8645e46b9fcb (diff)
* lib/net/imap.rb (receive_responses): raise exception to
client_thread. Thanks to William Webber. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/imap.rb50
1 files changed, 33 insertions, 17 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb
index e3f6902e98..8902378e61 100644
--- a/lib/net/imap.rb
+++ b/lib/net/imap.rb
@@ -206,6 +206,9 @@ module Net
# Returns all response handlers.
attr_reader :response_handlers
+ # The thread to receive exceptions.
+ attr_accessor :client_thread
+
# Flag indicating a message has been seen
SEEN = :Seen
@@ -841,29 +844,42 @@ module Net
raise ByeResponseError, resp[0]
end
+ @client_thread = Thread.current
@receiver_thread = Thread.start {
receive_responses
}
end
def receive_responses
- while resp = get_response
- synchronize do
- case resp
- when TaggedResponse
- @tagged_responses[resp.tag] = resp
- @tag_arrival.broadcast
- when UntaggedResponse
- record_response(resp.name, resp.data)
- if resp.data.instance_of?(ResponseText) &&
- (code = resp.data.code)
- record_response(code.name, code.data)
- end
- end
- @response_handlers.each do |handler|
- handler.call(resp)
- end
- end
+ while true
+ begin
+ resp = get_response
+ rescue Exception
+ @sock.close
+ @client_thread.raise($!)
+ break
+ end
+ break unless resp
+ begin
+ synchronize do
+ case resp
+ when TaggedResponse
+ @tagged_responses[resp.tag] = resp
+ @tag_arrival.broadcast
+ when UntaggedResponse
+ record_response(resp.name, resp.data)
+ if resp.data.instance_of?(ResponseText) &&
+ (code = resp.data.code)
+ record_response(code.name, code.data)
+ end
+ end
+ @response_handlers.each do |handler|
+ handler.call(resp)
+ end
+ end
+ rescue Exception
+ @client_thread.raise($!)
+ end
end
end