blob 75f119eae36c00ee47db0a31be8e7f5463243056 602 bytes (raw)
name: lib/rainbows/sync_close.rb # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| | # -*- encoding: binary -*-
# :enddoc:
require 'thread'
class Rainbows::SyncClose
def initialize(body)
@body = body
@mutex = Mutex.new
@cv = ConditionVariable.new
@mutex.synchronize do
yield self
@cv.wait(@mutex)
end
end
def respond_to?(m)
@body.respond_to?(m)
end
def to_path
@body.to_path
end
def each
@body.each { |x| yield x }
end
def to_io
@body.to_io
end
# called by the writer thread to wake up the original thread (in #initialize)
def close
@body.close
ensure
@mutex.synchronize { @cv.signal }
end
end
|
debug log:
solving 75f119e ...
found 75f119e in https://yhbt.net/rainbows.git/
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://yhbt.net/rainbows.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).