Class: Fairy::PWC
Defined Under Namespace
Classes: PPostFilter
Constant Summary
collapse
- ST_ALL_IMPORTED =
:ST_ALL_IMPORTED
- ST_WAIT_EXPORT_FINISH =
:ST_WAIT_EXPORT_FINISH
- ST_EXPORT_FINISH =
:ST_EXPORT_FINISH
Constants inherited
from PIOFilter
Fairy::PIOFilter::ST_WAIT_IMPORT
Constants inherited
from PFilter
Fairy::PFilter::END_OF_STREAM, Fairy::PFilter::ST_ACTIVATE, Fairy::PFilter::ST_FINISH, Fairy::PFilter::ST_INIT
Instance Attribute Summary
Attributes inherited from PFilter
#IGNORE_EXCEPTION, #id, #log_id, #ntask
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from PIOFilter
#input=
Methods inherited from PFilter
#abort_running, #basic_start, #break_running, #each, #global_break, #global_break_from_other, #handle_exception, #key, #key=, #next, #no, #no=, #notice_status, #processor, #start, #start_watch_status, #status=, #terminate_proc
Constructor Details
#initialize(id, ntask, bjob, opts = nil) ⇒ PWC
Returns a new instance of PWC.
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/fairy/node/p-wc.rb', line 24
def initialize(id, ntask, bjob, opts=nil)
super
@file = nil
@exports = {}
@exports_queue = XThread::Queue.new
@counter = {}
@mod = opts[:no_segment]
@mod ||= CONF.GROUP_BY_NO_SEGMENT
mod = opts[:hash_module]
mod ||= CONF.GROUP_BY_HASH_MODULE
require mod
@hash_generator = Fairy::HValueGenerator.new(bjob.hash_seed)
@hash_optimize = CONF.GROUP_BY_GROUPING_OPTIMIZE
@hash_optimize = opts[:grouping_optimize] if opts.key?(:grouping_optimize)
end
|
Class Method Details
.open(processor, bjob, opts, fn) ⇒ Object
19
20
21
22
|
# File 'lib/fairy/node/p-wc.rb', line 19
def PWC.open(processor, bjob, opts, fn)
nfile = PWC.new(processor, bjob, opts)
nfile.open(fn)
end
|
Instance Method Details
#add_export(key, export) ⇒ Object
63
64
65
66
67
68
|
# File 'lib/fairy/node/p-wc.rb', line 63
def add_export(key, export)
@exports[key] = export
@bjob.add_exports(key, export, self)
end
|
#hash_key(e) ⇒ Object
122
123
124
|
# File 'lib/fairy/node/p-wc.rb', line 122
def hash_key(e)
@hash_generator.value(@key_proc.yield(e)) % @mod
end
|
#open(nfileplace) ⇒ Object
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# File 'lib/fairy/node/p-wc.rb', line 45
def open(nfileplace)
@file_name = nfileplace.path
self.no = nfileplace.no
begin
@file = File.open(@file_name)
rescue
e = $!.exception($!.message+ "(vfile entry##{nfileplace.no}: #{nfileplace.url})")
e.set_backtrace($!.backtrace)
Log::error_exception(e)
handle_exception(e)
raise e
end
self
end
|
#start_export ⇒ Object
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# File 'lib/fairy/node/p-wc.rb', line 70
def start_export
Log::debug(self, "START_EXPORT")
start do
hash_opt = @opts[:grouping_optimize]
hash_opt = CONF.GROUP_BY_GROUPING_OPTIMIZE if hash_opt.nil?
@key_proc = eval("proc{|w| w}", @context.binding)
policy = @opts[:postqueuing_policy]
begin
@file.each do |ln|
(begin
ln.chomp.split
rescue
[]
end).each do |e|
key = hash_key(e)
export = @exports[key]
unless export
export = Export.new(policy)
export.njob_id = @id
export.add_key(key)
add_export(key, export)
@counter[key] = 0
end
export.push e
@counter[key] += 1
end
end
rescue
Log::debug_exception(self)
raise
ensure
@exports_queue.push nil
@exports.each{|key, export|
Log::debug(self, "G0 #{key} => #{@counter[key]}")
export.push END_OF_STREAM}
end
end
end
|
#terminate ⇒ Object
116
117
118
119
120
|
# File 'lib/fairy/node/p-wc.rb', line 116
def terminate
@wait_cv = @terminate_mon.new_cv
wait_export_finish
super
end
|
#wait_export_finish ⇒ Object
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
# File 'lib/fairy/node/p-wc.rb', line 127
def wait_export_finish
Log::debug(self, "G1")
self.status = ST_ALL_IMPORTED
Log::debug(self, "G2")
Log::debug(self, "G3")
self.status = ST_WAIT_EXPORT_FINISH
Log::debug(self, "G4")
for key, export in @exports
Log::debug(self, "G4.WAIT #{key}")
@terminate_mon.synchronze do
export.fib_wait_finish(@wait_cv)
end
end
Log::debug(self, "G5")
self.status = ST_EXPORT_FINISH
end
|