line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package MogileFS::Worker::Monitor; |
2
|
21
|
|
|
21
|
|
132
|
use strict; |
|
21
|
|
|
|
|
68
|
|
|
21
|
|
|
|
|
909
|
|
3
|
21
|
|
|
21
|
|
137
|
use warnings; |
|
21
|
|
|
|
|
49
|
|
|
21
|
|
|
|
|
1580
|
|
4
|
|
|
|
|
|
|
|
5
|
21
|
|
|
21
|
|
117
|
use base 'MogileFS::Worker'; |
|
21
|
|
|
|
|
55
|
|
|
21
|
|
|
|
|
3813
|
|
6
|
|
|
|
|
|
|
use fields ( |
7
|
21
|
|
|
|
|
262
|
'last_test_write', # devid -> time. time we last tried writing to a device. |
8
|
|
|
|
|
|
|
'monitor_start', # main monitor start time |
9
|
|
|
|
|
|
|
'skip_host', # hostid -> 1 if already noted dead (reset every loop) |
10
|
|
|
|
|
|
|
'seen_hosts', # IP -> 1 (reset every loop) |
11
|
|
|
|
|
|
|
'iow', # MogileFS::IOStatWatcher object |
12
|
|
|
|
|
|
|
'prev_data', # DB data from previous run |
13
|
|
|
|
|
|
|
'devutil', # Running tally of device utilization |
14
|
|
|
|
|
|
|
'events', # Queue of state events |
15
|
|
|
|
|
|
|
'refresh_state', # devid -> { used, total, callbacks }, temporary data in each refresh run |
16
|
|
|
|
|
|
|
'have_masterdb', # Hint flag for if the master DB is available |
17
|
|
|
|
|
|
|
'updateable_devices', # devid -> Device, avoids device table updates |
18
|
|
|
|
|
|
|
'parent', # socketpair to parent process |
19
|
|
|
|
|
|
|
'refresh_pending', # set if there was a manually-requested refresh |
20
|
|
|
|
|
|
|
'db_monitor_ran', # We announce "monitor_just_ran" every time the |
21
|
|
|
|
|
|
|
# device checks are run, but only if the DB has |
22
|
|
|
|
|
|
|
# been checked inbetween. |
23
|
21
|
|
|
21
|
|
173
|
); |
|
21
|
|
|
|
|
51
|
|
24
|
|
|
|
|
|
|
|
25
|
21
|
|
|
21
|
|
2862
|
use Danga::Socket 1.56; |
|
21
|
|
|
|
|
811
|
|
|
21
|
|
|
|
|
652
|
|
26
|
21
|
|
|
21
|
|
126
|
use MogileFS::Config; |
|
21
|
|
|
|
|
95
|
|
|
21
|
|
|
|
|
3805
|
|
27
|
21
|
|
|
21
|
|
140
|
use MogileFS::Util qw(error debug encode_url_args apply_state_events_list); |
|
21
|
|
|
|
|
60
|
|
|
21
|
|
|
|
|
1508
|
|
28
|
21
|
|
|
21
|
|
12132
|
use MogileFS::IOStatWatcher; |
|
21
|
|
|
|
|
65
|
|
|
21
|
|
|
|
|
651
|
|
29
|
21
|
|
|
21
|
|
133
|
use MogileFS::Server; |
|
21
|
|
|
|
|
44
|
|
|
21
|
|
|
|
|
438
|
|
30
|
21
|
|
|
21
|
|
13553
|
use MogileFS::Connection::Parent; |
|
21
|
|
|
|
|
64
|
|
|
21
|
|
|
|
|
1824
|
|
31
|
21
|
|
|
21
|
|
125
|
use Digest::MD5 qw(md5_base64); |
|
21
|
|
|
|
|
41
|
|
|
21
|
|
|
|
|
1579
|
|
32
|
|
|
|
|
|
|
|
33
|
21
|
|
|
21
|
|
195
|
use constant UPDATE_DB_EVERY => 15; |
|
21
|
|
|
|
|
42
|
|
|
21
|
|
|
|
|
107395
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
sub new { |
36
|
0
|
|
|
0
|
0
|
|
my ($class, $psock) = @_; |
37
|
0
|
|
|
|
|
|
my $self = fields::new($class); |
38
|
0
|
|
|
|
|
|
$self->SUPER::new($psock); |
39
|
|
|
|
|
|
|
|
40
|
0
|
|
|
|
|
|
$self->{last_test_write} = {}; |
41
|
0
|
|
|
|
|
|
$self->{iow} = MogileFS::IOStatWatcher->new; |
42
|
0
|
|
|
|
|
|
$self->{prev_data} = { domain => {}, class => {}, host => {}, |
43
|
|
|
|
|
|
|
device => {} }; |
44
|
0
|
|
|
|
|
|
$self->{devutil} = { cur => {}, prev => {}, tmp => {} }; |
45
|
0
|
|
|
|
|
|
$self->{events} = []; |
46
|
0
|
|
|
|
|
|
$self->{have_masterdb} = 0; |
47
|
0
|
|
|
|
|
|
return $self; |
48
|
|
|
|
|
|
|
} |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
sub watchdog_timeout { |
51
|
0
|
|
|
0
|
0
|
|
30; |
52
|
|
|
|
|
|
|
} |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
# returns 1 if a DB update was attempted |
55
|
|
|
|
|
|
|
# returns 0 immediately if the (device) monitor is already running |
56
|
|
|
|
|
|
|
sub cache_refresh { |
57
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
58
|
|
|
|
|
|
|
|
59
|
0
|
0
|
|
|
|
|
if ($self->{refresh_state}) { |
60
|
0
|
|
|
|
|
|
debug("Monitor run in progress, will not check for DB updates"); |
61
|
0
|
|
|
|
|
|
return 0; |
62
|
|
|
|
|
|
|
} |
63
|
|
|
|
|
|
|
|
64
|
0
|
|
|
|
|
|
debug("Monitor running; checking DB for updates"); |
65
|
|
|
|
|
|
|
# "Fix" our local cache of this flag, so we always check the master DB. |
66
|
0
|
|
|
|
|
|
MogileFS::Config->cache_server_setting('_master_db_alive', 1); |
67
|
0
|
|
|
|
|
|
my $have_dbh = $self->validate_dbh; |
68
|
0
|
0
|
0
|
|
|
|
if ($have_dbh && !$self->{have_masterdb}) { |
|
|
0
|
|
|
|
|
|
69
|
0
|
|
|
|
|
|
$self->{have_masterdb} = 1; |
70
|
0
|
|
|
|
|
|
$self->set_event('srvset', '_master_db_alive', { value => 1 }); |
71
|
|
|
|
|
|
|
} elsif (!$have_dbh) { |
72
|
0
|
|
|
|
|
|
$self->{have_masterdb} = 0; |
73
|
0
|
|
|
|
|
|
$self->set_event('srvset', '_master_db_alive', { value => 0 }); |
74
|
0
|
|
|
|
|
|
error("Cannot connect to master database!"); |
75
|
|
|
|
|
|
|
} |
76
|
|
|
|
|
|
|
|
77
|
0
|
0
|
|
|
|
|
if ($have_dbh) { |
78
|
0
|
|
|
|
|
|
my $db_data = $self->grab_all_data; |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
# Stack diffs to ship back later |
81
|
0
|
|
|
|
|
|
$self->diff_data($db_data); |
82
|
|
|
|
|
|
|
} |
83
|
|
|
|
|
|
|
|
84
|
0
|
|
|
|
|
|
$self->send_events_to_parent; |
85
|
0
|
|
|
|
|
|
$self->{db_monitor_ran} = 1; |
86
|
|
|
|
|
|
|
|
87
|
0
|
|
|
|
|
|
return 1; |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
sub usage_refresh { |
91
|
0
|
|
|
0
|
0
|
|
my ($self) = @_; |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
# prevent concurrent refresh |
94
|
0
|
0
|
|
|
|
|
return if $self->{refresh_state}; |
95
|
|
|
|
|
|
|
|
96
|
0
|
|
|
|
|
|
debug("Monitor running; scanning usage files"); |
97
|
|
|
|
|
|
|
|
98
|
0
|
|
|
|
|
|
$self->{refresh_state} = {}; # devid -> ... |
99
|
0
|
|
|
|
|
|
$self->{monitor_start} = Time::HiRes::time(); |
100
|
|
|
|
|
|
|
|
101
|
0
|
|
|
|
|
|
my $have_dbh = $self->validate_dbh; |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
# See if we should be allowed to update the device table rows. |
104
|
0
|
0
|
0
|
|
|
|
if ($have_dbh && Mgd::get_store()->get_lock('mgfs:device_update', 0)) { |
105
|
|
|
|
|
|
|
# Fetch the freshlist list of entries, to avoid excessive writes. |
106
|
0
|
|
|
|
|
|
$self->{updateable_devices} = { map { $_->{devid} => $_ } |
|
0
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
Mgd::get_store()->get_all_devices }; |
108
|
|
|
|
|
|
|
} else { |
109
|
0
|
|
|
|
|
|
$self->{updateable_devices} = undef; |
110
|
|
|
|
|
|
|
} |
111
|
|
|
|
|
|
|
|
112
|
0
|
|
|
|
|
|
$self->{skip_host} = {}; # hostid -> 1 if already noted dead. |
113
|
0
|
|
|
|
|
|
$self->{seen_hosts} = {}; # IP -> 1 |
114
|
|
|
|
|
|
|
|
115
|
0
|
|
|
|
|
|
my $dev_factory = MogileFS::Factory::Device->get_factory(); |
116
|
0
|
|
|
|
|
|
my $devutil = $self->{devutil}; |
117
|
|
|
|
|
|
|
|
118
|
0
|
|
|
|
|
|
$devutil->{tmp} = {}; |
119
|
|
|
|
|
|
|
# kick off check_device to test host/devs. diff against old values. |
120
|
0
|
|
|
|
|
|
for my $dev ($dev_factory->get_all) { |
121
|
0
|
0
|
|
|
|
|
if (my $state = $self->is_iow_diff($dev)) { |
122
|
0
|
|
|
|
|
|
$self->state_event('device', $dev->id, {utilization => $state}); |
123
|
|
|
|
|
|
|
} |
124
|
0
|
|
|
|
|
|
$devutil->{tmp}->{$dev->id} = $devutil->{cur}->{$dev->id}; |
125
|
|
|
|
|
|
|
|
126
|
0
|
0
|
|
|
|
|
$dev->can_read_from or next; |
127
|
0
|
|
|
|
|
|
$self->check_device_begin($dev); |
128
|
|
|
|
|
|
|
} |
129
|
|
|
|
|
|
|
# we're done if we didn't schedule any work |
130
|
0
|
0
|
|
|
|
|
$self->usage_refresh_done unless keys %{$self->{refresh_state}}; |
|
0
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
} |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
sub usage_refresh_done { |
134
|
0
|
|
|
0
|
0
|
|
my ($self) = @_; |
135
|
|
|
|
|
|
|
|
136
|
0
|
0
|
|
|
|
|
if ($self->{updateable_devices}) { |
137
|
0
|
|
|
|
|
|
Mgd::get_store()->release_lock('mgfs:device_update'); |
138
|
0
|
|
|
|
|
|
$self->{updateable_devices} = undef; |
139
|
|
|
|
|
|
|
} |
140
|
|
|
|
|
|
|
|
141
|
0
|
|
|
|
|
|
$self->{devutil}->{prev} = $self->{devutil}->{tmp}; |
142
|
|
|
|
|
|
|
# Set the IOWatcher hosts (once old monitor code has been disabled) |
143
|
|
|
|
|
|
|
|
144
|
0
|
|
|
|
|
|
$self->send_events_to_parent; |
145
|
|
|
|
|
|
|
|
146
|
0
|
|
|
|
|
|
$self->{iow}->set_hosts(keys %{$self->{seen_hosts}}); |
|
0
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
|
148
|
0
|
|
|
|
|
|
foreach my $devid (keys %{$self->{refresh_state}}) { |
|
0
|
|
|
|
|
|
|
149
|
0
|
|
|
|
|
|
error("device check incomplete for dev$devid"); |
150
|
|
|
|
|
|
|
} |
151
|
|
|
|
|
|
|
|
152
|
0
|
|
|
|
|
|
my $start = delete $self->{monitor_start}; |
153
|
0
|
|
|
|
|
|
my $elapsed = Time::HiRes::time() - $start; |
154
|
0
|
|
|
|
|
|
debug("device refresh finished after $elapsed"); |
155
|
|
|
|
|
|
|
|
156
|
0
|
|
|
|
|
|
$self->{refresh_state} = undef; |
157
|
0
|
|
|
|
|
|
my $pending_since = $self->{refresh_pending}; |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
# schedule another usage_refresh immediately if somebody requested it |
160
|
|
|
|
|
|
|
# Don't announce :monitor_just_ran if somebody requested a refresh |
161
|
|
|
|
|
|
|
# while we were running, we could've been refreshing on a stale DB |
162
|
0
|
0
|
0
|
|
|
|
if ($pending_since && $pending_since > $start) { |
163
|
|
|
|
|
|
|
# using AddTimer to schedule the refresh to avoid stack overflow |
164
|
|
|
|
|
|
|
# since usage_refresh can call usage_refresh_done directly if |
165
|
|
|
|
|
|
|
# there are no devices |
166
|
|
|
|
|
|
|
Danga::Socket->AddTimer(0, sub { |
167
|
0
|
|
|
0
|
|
|
$self->cache_refresh; |
168
|
0
|
|
|
|
|
|
$self->usage_refresh; |
169
|
0
|
|
|
|
|
|
}); |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
# announce we're done if we ran on schedule, or we had a |
173
|
|
|
|
|
|
|
# forced refresh that was requested before we started. |
174
|
0
|
0
|
0
|
|
|
|
if (!$pending_since || $pending_since <= $start) { |
175
|
|
|
|
|
|
|
# totally done refreshing, accept manual refresh requests again |
176
|
0
|
|
|
|
|
|
$self->{parent}->watch_read(1); |
177
|
0
|
|
|
|
|
|
delete $self->{refresh_pending}; |
178
|
0
|
0
|
0
|
|
|
|
if (delete $self->{db_monitor_ran} || $pending_since) { |
179
|
0
|
|
|
|
|
|
$self->send_to_parent(":monitor_just_ran"); |
180
|
|
|
|
|
|
|
} |
181
|
|
|
|
|
|
|
} |
182
|
|
|
|
|
|
|
} |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
sub work { |
185
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
# It makes sense to have monitor use a shorter timeout |
188
|
|
|
|
|
|
|
# (conn_timeout) across the board to skip slow hosts. Other workers |
189
|
|
|
|
|
|
|
# are less tolerant, and may use a higher value in node_timeout. |
190
|
0
|
|
|
|
|
|
MogileFS::Config->set_config_no_broadcast("node_timeout", MogileFS::Config->config("conn_timeout")); |
191
|
|
|
|
|
|
|
|
192
|
0
|
|
|
|
|
|
my $iow = $self->{iow}; |
193
|
|
|
|
|
|
|
$iow->on_stats(sub { |
194
|
0
|
|
|
0
|
|
|
my ($hostname, $stats) = @_; |
195
|
|
|
|
|
|
|
|
196
|
0
|
|
|
|
|
|
while (my ($devid, $util) = each %$stats) { |
197
|
|
|
|
|
|
|
# Lets not propagate devices that we accidentally find. |
198
|
0
|
|
|
|
|
|
my $dev = Mgd::device_factory()->get_by_id($devid); |
199
|
0
|
0
|
|
|
|
|
next unless $dev; |
200
|
0
|
|
|
|
|
|
$self->{devutil}->{cur}->{$devid} = $util; |
201
|
|
|
|
|
|
|
} |
202
|
0
|
|
|
|
|
|
}); |
203
|
|
|
|
|
|
|
|
204
|
0
|
|
|
|
|
|
my $db_monitor; |
205
|
|
|
|
|
|
|
$db_monitor = sub { |
206
|
0
|
|
|
0
|
|
|
$self->still_alive; |
207
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
# reschedule immediately if we were blocked by main_monitor. |
209
|
|
|
|
|
|
|
# setting refresh_pending will call cache_refresh again |
210
|
0
|
0
|
|
|
|
|
if (!$self->cache_refresh) { |
211
|
0
|
|
0
|
|
|
|
$self->{refresh_pending} ||= Time::HiRes::time(); |
212
|
|
|
|
|
|
|
} |
213
|
|
|
|
|
|
|
|
214
|
|
|
|
|
|
|
# always reschedule in 4 seconds, regardless |
215
|
0
|
|
|
|
|
|
Danga::Socket->AddTimer(4, $db_monitor); |
216
|
0
|
|
|
|
|
|
}; |
217
|
|
|
|
|
|
|
|
218
|
0
|
|
|
|
|
|
$db_monitor->(); |
219
|
0
|
|
|
|
|
|
$self->read_from_parent; |
220
|
|
|
|
|
|
|
|
221
|
0
|
|
|
|
|
|
my $main_monitor; |
222
|
|
|
|
|
|
|
$main_monitor = sub { |
223
|
0
|
|
|
0
|
|
|
$self->{parent}->ping; |
224
|
0
|
|
|
|
|
|
$self->usage_refresh; |
225
|
0
|
|
|
|
|
|
Danga::Socket->AddTimer(2.5, $main_monitor); |
226
|
0
|
|
|
|
|
|
}; |
227
|
|
|
|
|
|
|
|
228
|
0
|
|
|
|
|
|
$self->parent_ping; # ensure we get the initial DB state back |
229
|
0
|
|
|
|
|
|
$self->{parent} = MogileFS::Connection::Parent->new($self); |
230
|
0
|
|
|
|
|
|
Danga::Socket->AddTimer(0, $main_monitor); |
231
|
0
|
|
|
|
|
|
Danga::Socket->EventLoop; |
232
|
|
|
|
|
|
|
} |
233
|
|
|
|
|
|
|
|
234
|
|
|
|
|
|
|
sub process_line { |
235
|
0
|
|
|
0
|
0
|
|
my MogileFS::Worker::Monitor $self = shift; |
236
|
0
|
|
|
|
|
|
my $lineref = shift; |
237
|
0
|
0
|
|
|
|
|
if ($$lineref =~ /^:refresh_monitor$/) { |
238
|
0
|
0
|
|
|
|
|
if ($self->cache_refresh) { |
239
|
0
|
|
|
|
|
|
$self->usage_refresh; |
240
|
|
|
|
|
|
|
} else { |
241
|
0
|
|
0
|
|
|
|
$self->{refresh_pending} ||= Time::HiRes::time(); |
242
|
|
|
|
|
|
|
} |
243
|
|
|
|
|
|
|
# try to stop processing further refresh_monitor requests |
244
|
|
|
|
|
|
|
# if we're acting on a manual refresh |
245
|
0
|
|
|
|
|
|
$self->{parent}->watch_read(0); |
246
|
0
|
|
|
|
|
|
return 1; |
247
|
|
|
|
|
|
|
} |
248
|
0
|
|
|
|
|
|
return 0; |
249
|
|
|
|
|
|
|
} |
250
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
# -------------------------------------------------------------------------- |
252
|
|
|
|
|
|
|
|
253
|
|
|
|
|
|
|
# Flattens and flips events up to the parent. Can be huge on startup! |
254
|
|
|
|
|
|
|
# Events: set type foo=bar&baz=quux |
255
|
|
|
|
|
|
|
# remove type id |
256
|
|
|
|
|
|
|
# setstate type id foo=bar&baz=quux |
257
|
|
|
|
|
|
|
# Combined: ev_mode=set&ev_type=device&foo=bar |
258
|
|
|
|
|
|
|
# ev_mode=setstate&ev_type=device&ev_id=1&foo=bar |
259
|
|
|
|
|
|
|
sub send_events_to_parent { |
260
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
261
|
0
|
|
|
|
|
|
my @flat = (); |
262
|
0
|
|
|
|
|
|
for my $ev (@{$self->{events}}) { |
|
0
|
|
|
|
|
|
|
263
|
0
|
|
|
|
|
|
my ($mode, $type, $args) = @$ev; |
264
|
0
|
|
|
|
|
|
$args->{ev_mode} = $mode; |
265
|
0
|
|
|
|
|
|
$args->{ev_type} = $type; |
266
|
0
|
|
|
|
|
|
push(@flat, encode_url_args($args)); |
267
|
|
|
|
|
|
|
} |
268
|
0
|
0
|
|
|
|
|
return unless @flat; |
269
|
0
|
|
|
|
|
|
$self->{events} = []; |
270
|
|
|
|
|
|
|
|
271
|
|
|
|
|
|
|
{ |
272
|
|
|
|
|
|
|
# $events can be several MB, so let it go out-of-scope soon: |
273
|
0
|
|
|
|
|
|
my $events = join(' ', ':monitor_events', @flat); |
|
0
|
|
|
|
|
|
|
274
|
0
|
|
|
|
|
|
debug("sending state changes $events", 2); |
275
|
0
|
|
|
|
|
|
$self->send_to_parent($events); |
276
|
|
|
|
|
|
|
} |
277
|
|
|
|
|
|
|
|
278
|
0
|
|
|
|
|
|
apply_state_events_list(@flat); |
279
|
|
|
|
|
|
|
} |
280
|
|
|
|
|
|
|
|
281
|
|
|
|
|
|
|
sub add_event { |
282
|
0
|
|
|
0
|
0
|
|
push(@{$_[0]->{events}}, $_[1]); |
|
0
|
|
|
|
|
|
|
283
|
|
|
|
|
|
|
} |
284
|
|
|
|
|
|
|
|
285
|
|
|
|
|
|
|
sub set_event { |
286
|
|
|
|
|
|
|
# Allow callers to use shorthand |
287
|
0
|
|
|
0
|
0
|
|
$_[3]->{ev_id} = $_[2]; |
288
|
0
|
|
|
|
|
|
$_[0]->add_event(['set', $_[1], $_[3]]); |
289
|
|
|
|
|
|
|
} |
290
|
0
|
|
|
0
|
0
|
|
sub remove_event { $_[0]->add_event(['remove', $_[1], { ev_id => $_[2] }]); } |
291
|
|
|
|
|
|
|
sub state_event { |
292
|
0
|
|
|
0
|
0
|
|
$_[3]->{ev_id} = $_[2]; |
293
|
0
|
|
|
|
|
|
$_[0]->add_event(['setstate', $_[1], $_[3]]); |
294
|
|
|
|
|
|
|
} |
295
|
|
|
|
|
|
|
|
296
|
|
|
|
|
|
|
sub is_iow_diff { |
297
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
298
|
0
|
|
|
|
|
|
my $devid = $dev->id; |
299
|
0
|
|
|
|
|
|
my $p = $self->{devutil}->{prev}->{$devid}; |
300
|
0
|
|
|
|
|
|
my $c = $self->{devutil}->{cur}->{$devid}; |
301
|
0
|
0
|
0
|
|
|
|
if ( ! defined $p || $p ne $c ) { |
302
|
0
|
|
|
|
|
|
return $c; |
303
|
|
|
|
|
|
|
} |
304
|
0
|
|
|
|
|
|
return undef; |
305
|
|
|
|
|
|
|
} |
306
|
|
|
|
|
|
|
|
307
|
|
|
|
|
|
|
sub diff_data { |
308
|
0
|
|
|
0
|
0
|
|
my ($self, $db_data) = @_; |
309
|
|
|
|
|
|
|
|
310
|
0
|
|
|
|
|
|
my $new_data = {}; |
311
|
0
|
|
|
|
|
|
my $prev_data = $self->{prev_data}; |
312
|
0
|
|
|
|
|
|
for my $type (keys %{$db_data}) { |
|
0
|
|
|
|
|
|
|
313
|
0
|
|
|
|
|
|
my $d_data = $db_data->{$type}; |
314
|
0
|
|
|
|
|
|
my $p_data = $prev_data->{$type}; |
315
|
0
|
|
|
|
|
|
my $n_data = {}; |
316
|
|
|
|
|
|
|
|
317
|
0
|
|
|
|
|
|
for my $item (@{$d_data}) { |
|
0
|
|
|
|
|
|
|
318
|
0
|
0
|
|
|
|
|
my $id = $type eq 'domain' ? $item->{dmid} |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
319
|
|
|
|
|
|
|
: $type eq 'class' ? $item->{dmid} . '-' . $item->{classid} |
320
|
|
|
|
|
|
|
: $type eq 'host' ? $item->{hostid} |
321
|
|
|
|
|
|
|
: $type eq 'device' ? $item->{devid} |
322
|
|
|
|
|
|
|
: $type eq 'srvset' ? $item->{field} |
323
|
|
|
|
|
|
|
: die "Unknown type"; |
324
|
0
|
|
|
|
|
|
my $old = delete $p_data->{$id}; |
325
|
|
|
|
|
|
|
# Special case: for devices, we don't care if mb_asof changes. |
326
|
|
|
|
|
|
|
# FIXME: Change the grab routine (or filter there?). |
327
|
0
|
0
|
|
|
|
|
delete $item->{mb_asof} if $type eq 'device'; |
328
|
0
|
0
|
0
|
|
|
|
if (!$old || $self->diff_hash($old, $item)) { |
329
|
0
|
|
|
|
|
|
$self->set_event($type, $id, { %$item }); |
330
|
|
|
|
|
|
|
} |
331
|
0
|
|
|
|
|
|
$n_data->{$id} = $item; |
332
|
|
|
|
|
|
|
} |
333
|
0
|
|
|
|
|
|
for my $id (keys %{$p_data}) { |
|
0
|
|
|
|
|
|
|
334
|
0
|
|
|
|
|
|
$self->remove_event($type, $id); |
335
|
|
|
|
|
|
|
} |
336
|
|
|
|
|
|
|
|
337
|
0
|
|
|
|
|
|
$new_data->{$type} = $n_data; |
338
|
|
|
|
|
|
|
} |
339
|
0
|
|
|
|
|
|
$self->{prev_data} = $new_data; |
340
|
|
|
|
|
|
|
} |
341
|
|
|
|
|
|
|
|
342
|
|
|
|
|
|
|
# returns 1 if the hashes are different. |
343
|
|
|
|
|
|
|
sub diff_hash { |
344
|
0
|
|
|
0
|
0
|
|
my ($self, $old, $new) = @_; |
345
|
|
|
|
|
|
|
|
346
|
0
|
|
|
|
|
|
my %keys = (); |
347
|
0
|
|
|
|
|
|
map { $keys{$_}++ } keys %$old, keys %$new; |
|
0
|
|
|
|
|
|
|
348
|
0
|
|
|
|
|
|
for my $k (keys %keys) { |
349
|
0
|
0
|
0
|
|
|
|
return 1 if (exists $old->{$k} && ! exists $new->{$k}); |
350
|
0
|
0
|
0
|
|
|
|
return 1 if (exists $new->{$k} && ! exists $old->{$k}); |
351
|
0
|
0
|
0
|
|
|
|
return 1 if (defined $old->{$k} && ! defined $new->{$k}); |
352
|
0
|
0
|
0
|
|
|
|
return 1 if (defined $new->{$k} && ! defined $old->{$k}); |
353
|
0
|
0
|
0
|
|
|
|
next if (! defined $new->{$k} && ! defined $old->{$k}); |
354
|
0
|
0
|
|
|
|
|
return 1 if ($old->{$k} ne $new->{$k}); |
355
|
|
|
|
|
|
|
} |
356
|
0
|
|
|
|
|
|
return 0; |
357
|
|
|
|
|
|
|
} |
358
|
|
|
|
|
|
|
|
359
|
|
|
|
|
|
|
sub grab_all_data { |
360
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
361
|
0
|
|
|
|
|
|
my $sto = Mgd::get_store(); |
362
|
|
|
|
|
|
|
|
363
|
|
|
|
|
|
|
# Normalize the domain data to the rest to simplify the differ. |
364
|
|
|
|
|
|
|
# FIXME: Once new objects are swapped in, fix the original |
365
|
0
|
|
|
|
|
|
my %dom = $sto->get_all_domains; |
366
|
0
|
|
|
|
|
|
my @fixed_dom = (); |
367
|
0
|
|
|
|
|
|
while (my ($name, $id) = each %dom) { |
368
|
0
|
|
|
|
|
|
push(@fixed_dom, { namespace => $name, dmid => $id }); |
369
|
|
|
|
|
|
|
} |
370
|
|
|
|
|
|
|
|
371
|
0
|
|
|
|
|
|
my $set = $sto->server_settings; |
372
|
0
|
|
|
|
|
|
my @fixed_set = (); |
373
|
0
|
|
|
|
|
|
while (my ($field, $value) = each %$set) { |
374
|
0
|
|
|
|
|
|
push(@fixed_set, { field => $field, value => $value }); |
375
|
|
|
|
|
|
|
} |
376
|
|
|
|
|
|
|
|
377
|
0
|
|
|
|
|
|
my %ret = ( domain => \@fixed_dom, |
378
|
|
|
|
|
|
|
class => [$sto->get_all_classes], |
379
|
|
|
|
|
|
|
host => [$sto->get_all_hosts], |
380
|
|
|
|
|
|
|
device => [$sto->get_all_devices], |
381
|
|
|
|
|
|
|
srvset => \@fixed_set, ); |
382
|
0
|
|
|
|
|
|
return \%ret; |
383
|
|
|
|
|
|
|
} |
384
|
|
|
|
|
|
|
|
385
|
|
|
|
|
|
|
# returns true on success, false on failure |
386
|
|
|
|
|
|
|
sub check_usage_response { |
387
|
0
|
|
|
0
|
0
|
|
my ($self, $dev, $response) = @_; |
388
|
0
|
|
|
|
|
|
my $devid = $dev->id; |
389
|
|
|
|
|
|
|
|
390
|
0
|
|
|
|
|
|
my %stats; |
391
|
0
|
|
|
|
|
|
my $data = $response->content; |
392
|
0
|
|
|
|
|
|
foreach (split(/\r?\n/, $data)) { |
393
|
0
|
0
|
|
|
|
|
next unless /^(\w+)\s*:\s*(.+)$/; |
394
|
0
|
|
|
|
|
|
$stats{$1} = $2; |
395
|
|
|
|
|
|
|
} |
396
|
|
|
|
|
|
|
|
397
|
0
|
|
|
|
|
|
my ($used, $total) = ($stats{used}, $stats{total}); |
398
|
0
|
0
|
0
|
|
|
|
unless ($used && $total) { |
399
|
0
|
0
|
|
|
|
|
$used = "" unless defined $used; |
400
|
0
|
0
|
|
|
|
|
$total = "" unless defined $total; |
401
|
0
|
|
0
|
|
|
|
my $clen = length($data || ""); |
402
|
0
|
|
|
|
|
|
error("dev$devid reports used = $used, total = $total, content-length: $clen, error?"); |
403
|
0
|
|
|
|
|
|
return 0; |
404
|
|
|
|
|
|
|
} |
405
|
|
|
|
|
|
|
|
406
|
0
|
|
|
|
|
|
my $rstate = $self->{refresh_state}->{$devid}; |
407
|
0
|
|
|
|
|
|
($rstate->{used}, $rstate->{total}) = ($used, $total); |
408
|
|
|
|
|
|
|
|
409
|
|
|
|
|
|
|
# only update database every ~15 seconds per device |
410
|
0
|
0
|
|
|
|
|
if ($self->{updateable_devices}) { |
411
|
0
|
|
|
|
|
|
my $devrow = $self->{updateable_devices}->{$devid}; |
412
|
0
|
0
|
0
|
|
|
|
my $last = ($devrow && $devrow->{mb_asof}) ? $devrow->{mb_asof} : 0; |
413
|
0
|
0
|
|
|
|
|
if ($last + UPDATE_DB_EVERY < time()) { |
414
|
0
|
|
|
|
|
|
Mgd::get_store()->update_device_usage(mb_total => int($total / 1024), |
415
|
|
|
|
|
|
|
mb_used => int($used / 1024), |
416
|
|
|
|
|
|
|
devid => $devid); |
417
|
|
|
|
|
|
|
} |
418
|
|
|
|
|
|
|
} |
419
|
0
|
|
|
|
|
|
return 1; |
420
|
|
|
|
|
|
|
} |
421
|
|
|
|
|
|
|
|
422
|
|
|
|
|
|
|
sub dev_debug { |
423
|
0
|
|
|
0
|
0
|
|
my ($self, $dev, $writable) = @_; |
424
|
0
|
0
|
|
|
|
|
return unless $Mgd::DEBUG >= 1; |
425
|
0
|
|
|
|
|
|
my $devid = $dev->id; |
426
|
0
|
|
|
|
|
|
my $rstate = $self->{refresh_state}->{$devid}; |
427
|
0
|
|
|
|
|
|
my ($used, $total) = ($rstate->{used}, $rstate->{total}); |
428
|
|
|
|
|
|
|
|
429
|
0
|
|
|
|
|
|
debug("dev$devid: used = $used, total = $total, writeable = $writable"); |
430
|
|
|
|
|
|
|
} |
431
|
|
|
|
|
|
|
|
432
|
|
|
|
|
|
|
sub check_write { |
433
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
434
|
0
|
|
|
|
|
|
my $rstate = $self->{refresh_state}->{$dev->id}; |
435
|
0
|
|
|
|
|
|
my $test_write = $rstate->{test_write}; |
436
|
|
|
|
|
|
|
|
437
|
0
|
0
|
0
|
|
|
|
if (!$test_write || $test_write->{tries} > 0) { |
438
|
|
|
|
|
|
|
# this was "$$-$now" before, but we don't yet have a cleaner in |
439
|
|
|
|
|
|
|
# mogstored for these files |
440
|
0
|
|
|
|
|
|
my $num = int(rand 100); |
441
|
0
|
|
0
|
|
|
|
$test_write = $rstate->{test_write} ||= {}; |
442
|
0
|
|
|
|
|
|
$test_write->{path} = "/dev${\$dev->id}/test-write/test-write-$num"; |
|
0
|
|
|
|
|
|
|
443
|
0
|
|
|
|
|
|
$test_write->{content} = "time=" . time . " rand=$num"; |
444
|
0
|
|
0
|
|
|
|
$test_write->{tries} ||= 2; |
445
|
|
|
|
|
|
|
} |
446
|
0
|
|
|
|
|
|
$test_write->{tries}--; |
447
|
|
|
|
|
|
|
|
448
|
0
|
|
|
|
|
|
my $opts = { content => $test_write->{content} }; |
449
|
|
|
|
|
|
|
$dev->host->http("PUT", $test_write->{path}, $opts, sub { |
450
|
0
|
|
|
0
|
|
|
my ($response) = @_; |
451
|
0
|
|
|
|
|
|
$self->on_check_write_response($dev, $response); |
452
|
0
|
|
|
|
|
|
}); |
453
|
|
|
|
|
|
|
} |
454
|
|
|
|
|
|
|
|
455
|
|
|
|
|
|
|
# starts the lengthy device check process |
456
|
|
|
|
|
|
|
sub check_device_begin { |
457
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
458
|
0
|
|
|
|
|
|
$self->{refresh_state}->{$dev->id} = {}; |
459
|
|
|
|
|
|
|
|
460
|
0
|
|
|
|
|
|
$self->check_device($dev); |
461
|
|
|
|
|
|
|
} |
462
|
|
|
|
|
|
|
|
463
|
|
|
|
|
|
|
# the lengthy device check process |
464
|
|
|
|
|
|
|
sub check_device { |
465
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
466
|
0
|
0
|
|
|
|
|
return $self->check_device_done($dev) if $self->{skip_host}{$dev->hostid}; |
467
|
|
|
|
|
|
|
|
468
|
0
|
|
|
|
|
|
my $devid = $dev->id; |
469
|
0
|
|
|
|
|
|
my $url = $dev->usage_url; |
470
|
0
|
|
|
|
|
|
my $host = $dev->host; |
471
|
|
|
|
|
|
|
|
472
|
0
|
|
|
|
|
|
$self->{seen_hosts}{$host->ip} = 1; |
473
|
|
|
|
|
|
|
|
474
|
|
|
|
|
|
|
# now try to get the data with a short timeout |
475
|
0
|
|
|
|
|
|
my $start_time = Time::HiRes::time(); |
476
|
|
|
|
|
|
|
$host->http_get("GET", $dev->usage_url, undef, sub { |
477
|
0
|
|
|
0
|
|
|
my ($response) = @_; |
478
|
0
|
0
|
|
|
|
|
if (!$self->on_usage_response($dev, $response, $start_time)) { |
479
|
0
|
|
|
|
|
|
return $self->check_device_done($dev); |
480
|
|
|
|
|
|
|
} |
481
|
|
|
|
|
|
|
# next if we're not going to try this now |
482
|
0
|
|
|
|
|
|
my $now = time(); |
483
|
0
|
0
|
0
|
|
|
|
if (($self->{last_test_write}{$devid} || 0) + UPDATE_DB_EVERY > $now) { |
484
|
0
|
|
|
|
|
|
return $self->check_device_done($dev); |
485
|
|
|
|
|
|
|
} |
486
|
0
|
|
|
|
|
|
$self->{last_test_write}{$devid} = $now; |
487
|
|
|
|
|
|
|
|
488
|
0
|
0
|
|
|
|
|
unless ($dev->can_delete_from) { |
489
|
|
|
|
|
|
|
# we should not try to write on readonly devices because it can be |
490
|
|
|
|
|
|
|
# mounted as RO. |
491
|
0
|
|
|
|
|
|
return $self->dev_observed_readonly($dev); |
492
|
|
|
|
|
|
|
} |
493
|
|
|
|
|
|
|
# now we want to check if this device is writeable |
494
|
|
|
|
|
|
|
|
495
|
|
|
|
|
|
|
# first, create the test-write directory. this will return |
496
|
|
|
|
|
|
|
# immediately after the first time, as the 'create_directory' |
497
|
|
|
|
|
|
|
# function caches what it's already created. |
498
|
|
|
|
|
|
|
$dev->create_directory("/dev$devid/test-write", sub { |
499
|
0
|
|
|
|
|
|
$self->check_write($dev); |
500
|
0
|
|
|
|
|
|
}); |
501
|
0
|
|
|
|
|
|
}); |
502
|
|
|
|
|
|
|
} |
503
|
|
|
|
|
|
|
|
504
|
|
|
|
|
|
|
# called on a successful PUT, ensure the data we get back is what we uploaded |
505
|
|
|
|
|
|
|
sub check_reread { |
506
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
507
|
|
|
|
|
|
|
# now let's get it back to verify; note we use the get_port to |
508
|
|
|
|
|
|
|
# verify that the distinction works (if we have one) |
509
|
0
|
|
|
|
|
|
my $test_write = $self->{refresh_state}->{$dev->id}->{test_write}; |
510
|
|
|
|
|
|
|
$dev->host->http_get("GET", $test_write->{path}, undef, sub { |
511
|
0
|
|
|
0
|
|
|
my ($response) = @_; |
512
|
0
|
|
|
|
|
|
$self->on_check_reread_response($dev, $response); |
513
|
0
|
|
|
|
|
|
}); |
514
|
|
|
|
|
|
|
} |
515
|
|
|
|
|
|
|
|
516
|
|
|
|
|
|
|
sub on_check_reread_response { |
517
|
0
|
|
|
0
|
0
|
|
my ($self, $dev, $response) = @_; |
518
|
0
|
|
|
|
|
|
my $test_write = $self->{refresh_state}->{$dev->id}->{test_write}; |
519
|
|
|
|
|
|
|
|
520
|
|
|
|
|
|
|
# if success and the content matches, mark it writeable |
521
|
0
|
0
|
|
|
|
|
if ($response->is_success) { |
522
|
0
|
0
|
|
|
|
|
if ($response->content eq $test_write->{content}) { |
523
|
0
|
0
|
|
|
|
|
if (!$dev->observed_writeable) { |
524
|
0
|
|
|
|
|
|
my $event = { observed_state => 'writeable' }; |
525
|
0
|
|
|
|
|
|
$self->state_event('device', $dev->id, $event); |
526
|
|
|
|
|
|
|
} |
527
|
0
|
|
|
|
|
|
$self->dev_debug($dev, 1); |
528
|
|
|
|
|
|
|
|
529
|
0
|
|
|
|
|
|
return $self->check_bogus_md5($dev); # onto the final check... |
530
|
|
|
|
|
|
|
} |
531
|
|
|
|
|
|
|
|
532
|
|
|
|
|
|
|
# content didn't match due to race, retry and hope we're lucky |
533
|
0
|
0
|
|
|
|
|
return $self->check_write($dev) if ($test_write->{tries} > 0); |
534
|
|
|
|
|
|
|
} |
535
|
|
|
|
|
|
|
|
536
|
0
|
|
|
|
|
|
return $self->dev_observed_readonly($dev); # it's read-only at least |
537
|
|
|
|
|
|
|
} |
538
|
|
|
|
|
|
|
|
539
|
|
|
|
|
|
|
sub on_check_write_response { |
540
|
0
|
|
|
0
|
0
|
|
my ($self, $dev, $response) = @_; |
541
|
0
|
0
|
|
|
|
|
return $self->check_reread($dev) if $response->is_success; |
542
|
0
|
|
|
|
|
|
return $self->dev_observed_readonly($dev); |
543
|
|
|
|
|
|
|
} |
544
|
|
|
|
|
|
|
|
545
|
|
|
|
|
|
|
# returns true on success, false on failure |
546
|
|
|
|
|
|
|
sub on_usage_response { |
547
|
0
|
|
|
0
|
0
|
|
my ($self, $dev, $response, $start_time) = @_; |
548
|
0
|
|
|
|
|
|
my $host = $dev->host; |
549
|
0
|
|
|
|
|
|
my $hostip = $host->ip; |
550
|
|
|
|
|
|
|
|
551
|
0
|
0
|
|
|
|
|
if ($response->is_success) { |
552
|
|
|
|
|
|
|
# at this point we can reach the host |
553
|
0
|
0
|
|
|
|
|
if (!$host->observed_reachable) { |
554
|
0
|
|
|
|
|
|
my $event = { observed_state => 'reachable' }; |
555
|
0
|
|
|
|
|
|
$self->state_event('host', $dev->hostid, $event); |
556
|
|
|
|
|
|
|
} |
557
|
0
|
|
|
|
|
|
$self->{iow}->restart_monitoring_if_needed($hostip); |
558
|
|
|
|
|
|
|
|
559
|
0
|
|
|
|
|
|
return $self->check_usage_response($dev, $response); |
560
|
|
|
|
|
|
|
} |
561
|
|
|
|
|
|
|
|
562
|
0
|
|
|
|
|
|
my $url = $dev->usage_url; |
563
|
0
|
|
|
|
|
|
my $failed_after = Time::HiRes::time() - $start_time; |
564
|
0
|
0
|
|
|
|
|
if ($failed_after < 0.5) { |
565
|
0
|
0
|
|
|
|
|
if (!$dev->observed_unreachable) { |
566
|
0
|
|
|
|
|
|
my $event = { observed_state => 'unreachable' }; |
567
|
0
|
|
|
|
|
|
$self->state_event('device', $dev->id, $event); |
568
|
|
|
|
|
|
|
} |
569
|
0
|
|
|
|
|
|
my $get_port = $host->http_get_port; |
570
|
0
|
|
|
|
|
|
error("Port $get_port not listening on $hostip ($url)? Error was: " . $response->status_line); |
571
|
|
|
|
|
|
|
} else { |
572
|
0
|
|
|
|
|
|
$failed_after = sprintf("%.02f", $failed_after); |
573
|
0
|
0
|
|
|
|
|
if (!$host->observed_unreachable) { |
574
|
0
|
|
|
|
|
|
my $event = { observed_state => 'unreachable' }; |
575
|
0
|
|
|
|
|
|
$self->state_event('host', $dev->hostid, $event); |
576
|
|
|
|
|
|
|
} |
577
|
0
|
|
|
|
|
|
$self->{skip_host}{$dev->hostid} = 1; |
578
|
|
|
|
|
|
|
} |
579
|
0
|
|
|
|
|
|
return 0; # failure |
580
|
|
|
|
|
|
|
} |
581
|
|
|
|
|
|
|
|
582
|
|
|
|
|
|
|
sub check_bogus_md5 { |
583
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
584
|
0
|
|
|
|
|
|
my $put_path = "/dev${\$dev->id}/test-write/test-md5"; |
|
0
|
|
|
|
|
|
|
585
|
0
|
|
|
|
|
|
my $opts = { |
586
|
|
|
|
|
|
|
headers => { "Content-MD5" => md5_base64("!") . "==", }, |
587
|
|
|
|
|
|
|
content => '.', |
588
|
|
|
|
|
|
|
}; |
589
|
|
|
|
|
|
|
|
590
|
|
|
|
|
|
|
# success is bad here, it means the server doesn't understand how to |
591
|
|
|
|
|
|
|
# verify and reject corrupt bodies from Content-MD5 headers. |
592
|
|
|
|
|
|
|
# most servers /will/ succeed here :< |
593
|
|
|
|
|
|
|
$dev->host->http("PUT", $put_path, $opts, sub { |
594
|
0
|
|
|
0
|
|
|
my ($response) = @_; |
595
|
0
|
|
|
|
|
|
$self->on_bogus_md5_response($dev, $response); |
596
|
0
|
|
|
|
|
|
}); |
597
|
|
|
|
|
|
|
} |
598
|
|
|
|
|
|
|
|
599
|
|
|
|
|
|
|
sub on_bogus_md5_response { |
600
|
0
|
|
|
0
|
0
|
|
my ($self, $dev, $response) = @_; |
601
|
0
|
0
|
|
|
|
|
my $rej = $response->is_success ? 0 : 1; |
602
|
0
|
|
|
|
|
|
my $prev = $dev->reject_bad_md5; |
603
|
|
|
|
|
|
|
|
604
|
0
|
0
|
0
|
|
|
|
if (!defined($prev) || $prev != $rej) { |
605
|
0
|
|
|
|
|
|
debug("dev${\$dev->id}: reject_bad_md5 = $rej"); |
|
0
|
|
|
|
|
|
|
606
|
0
|
|
|
|
|
|
$self->state_event('device', $dev->id, { reject_bad_md5 => $rej }); |
607
|
|
|
|
|
|
|
} |
608
|
0
|
|
|
|
|
|
return $self->check_device_done($dev); |
609
|
|
|
|
|
|
|
} |
610
|
|
|
|
|
|
|
|
611
|
|
|
|
|
|
|
# if we fall through to here, then we know that something is not so |
612
|
|
|
|
|
|
|
# good, so mark it readable which is guaranteed given we even tested |
613
|
|
|
|
|
|
|
# writeability |
614
|
|
|
|
|
|
|
sub dev_observed_readonly { |
615
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
616
|
|
|
|
|
|
|
|
617
|
0
|
0
|
|
|
|
|
if (!$dev->observed_readable) { |
618
|
0
|
|
|
|
|
|
my $event = { observed_state => 'readable' }; |
619
|
0
|
|
|
|
|
|
$self->state_event('device', $dev->id, $event); |
620
|
|
|
|
|
|
|
} |
621
|
0
|
|
|
|
|
|
$self->dev_debug($dev, 0); |
622
|
0
|
|
|
|
|
|
return $self->check_device_done($dev); |
623
|
|
|
|
|
|
|
} |
624
|
|
|
|
|
|
|
|
625
|
|
|
|
|
|
|
# called when all checks are done for a particular device |
626
|
|
|
|
|
|
|
sub check_device_done { |
627
|
0
|
|
|
0
|
0
|
|
my ($self, $dev) = @_; |
628
|
|
|
|
|
|
|
|
629
|
0
|
|
|
|
|
|
$self->still_alive; # Ping parent if needed so we don't time out |
630
|
|
|
|
|
|
|
# given lots of devices. |
631
|
0
|
|
|
|
|
|
delete $self->{refresh_state}->{$dev->id}; |
632
|
|
|
|
|
|
|
|
633
|
|
|
|
|
|
|
# if refresh_state is totally empty, we're done |
634
|
0
|
0
|
|
|
|
|
if ((scalar keys %{$self->{refresh_state}}) == 0) { |
|
0
|
|
|
|
|
|
|
635
|
0
|
|
|
|
|
|
$self->usage_refresh_done; |
636
|
|
|
|
|
|
|
} |
637
|
|
|
|
|
|
|
} |
638
|
|
|
|
|
|
|
|
639
|
|
|
|
|
|
|
1; |
640
|
|
|
|
|
|
|
|
641
|
|
|
|
|
|
|
# Local Variables: |
642
|
|
|
|
|
|
|
# mode: perl |
643
|
|
|
|
|
|
|
# c-basic-indent: 4 |
644
|
|
|
|
|
|
|
# indent-tabs-mode: nil |
645
|
|
|
|
|
|
|
# End: |