forked from os-autoinst/os-autoinst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
needle.pm
331 lines (275 loc) · 8.96 KB
/
needle.pm
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
115
116
117
118
119
120
121
122
123
124
125
126
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
# Copyright © 2009-2013 Bernhard M. Wiedemann
# Copyright © 2012-2017 SUSE LLC
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, see <http://www.gnu.org/licenses/>.
package needle;
use strict;
use warnings;
use autodie ':all';
use File::Find;
use File::Spec;
use Mojo::JSON 'decode_json';
use Cpanel::JSON::XS ();
use File::Basename;
require IPC::System::Simple;
use OpenQA::Benchmark::Stopwatch;
our %needles;
our %tags;
our $needledir;
our $cleanuphandler;
sub new {
my ($classname, $jsonfile) = @_;
my $json;
if (ref $jsonfile eq 'HASH') {
$json = $jsonfile;
$jsonfile = $json->{file} || File::Spec->catfile($needledir, $json->{name} . '.json');
}
my $self = {};
if (index($jsonfile, $bmwqemu::vars{PRJDIR}) == 0) {
$self->{file} = substr($jsonfile, length($bmwqemu::vars{PRJDIR}) + 1);
}
elsif (-f File::Spec->catfile($bmwqemu::vars{PRJDIR}, $jsonfile)) {
# json file path already relative
$self->{file} = $jsonfile;
$jsonfile = File::Spec->catfile($bmwqemu::vars{PRJDIR}, $jsonfile);
}
else {
die "Needle $jsonfile is not under project directory $bmwqemu::vars{PRJDIR}";
}
# $json->{file} contains path relative to $bmwqemu::vars{PRJDIR}
# $jsonfile contains absolute path within $bmwqemu::vars{PRJDIR}
if (!$json) {
local $/;
open(my $fh, '<', $jsonfile);
$json = decode_json(<$fh>);
close($fh);
if (!$json || $@) {
warn "broken json $jsonfile: $@";
return;
}
}
$self->{tags} = $json->{tags} || [];
$self->{properties} = $json->{properties} || [];
my $gotmatch;
for my $area_from_json (@{$json->{area}}) {
my $area = {};
for my $tag (qw(xpos ypos width height)) {
$area->{$tag} = $area_from_json->{$tag} || 0;
}
for my $tag (qw(processing_flags max_offset)) {
$area->{$tag} = $area_from_json->{$tag} if $area_from_json->{$tag};
}
$area->{match} = $area_from_json->{match} if $area_from_json->{match};
$area->{type} = $area_from_json->{type} || 'match';
$area->{margin} = $area_from_json->{margin} || 50;
$gotmatch = 1 if $area->{type} =~ /match|ocr/;
$self->{area} ||= [];
push @{$self->{area}}, $area;
}
# one match is mandatory
unless ($gotmatch) {
warn "$jsonfile missing match area\n";
return;
}
$self->{name} = basename($jsonfile, '.json');
my $png = $self->{png} || $self->{name} . ".png";
$self->{png} = File::Spec->catdir(dirname($jsonfile), $png);
if (!-s $self->{png}) {
warn "Can't find $self->{png}";
return;
}
$self = bless $self, $classname;
$self->register();
return $self;
}
sub save {
my ($self, $fn) = @_;
$fn ||= $self->{file};
my @area;
for my $area_from_json (@{$self->{area}}) {
my $area = {};
for my $tag (qw(xpos ypos width height max_offset processing_flags match type margin)) {
$area->{$tag} = $area_from_json->{$tag} if defined $area_from_json->{$tag};
}
push @area, $area;
}
my $json = Cpanel::JSON::XS->new->pretty->utf8->canonical->encode(
{
tags => [sort(@{$self->{tags}})],
area => \@area,
properties => [sort(@{$self->{properties}})],
});
open(my $fh, '>', $fn);
print $fh $json;
close $fh;
}
sub unregister {
my ($self, $reason) = @_;
for my $g (@{$self->{tags}}) {
@{$tags{$g}} = grep { $_ != $self } @{$tags{$g}};
delete $tags{$g} unless (@{$tags{$g}});
}
$self->{unregistered} //= $reason || 'unknown reason';
}
sub register {
my ($self) = @_;
my %check_dups;
for my $g (@{$self->{tags}}) {
if ($check_dups{$g}) {
bmwqemu::diag("$self->{name} contains $g twice");
next;
}
$check_dups{$g} = 1;
$tags{$g} ||= [];
push(@{$tags{$g}}, $self);
}
}
sub _load_image {
my ($self, $image_path) = @_;
# read PNG file measuring required time
my $watch = OpenQA::Benchmark::Stopwatch->new();
$watch->start();
my $image = tinycv::read($image_path);
$watch->stop();
if ($watch->as_data()->{total_time} > 0.1) {
bmwqemu::diag(sprintf("load of $image_path took %.2f seconds", $watch->as_data()->{total_time}));
}
return undef unless $image;
# call replacerect for non-exclude areas
for my $area (@{$self->{area}}) {
next unless $area->{type} eq 'exclude';
$image->replacerect($area->{xpos}, $area->{ypos}, $area->{width}, $area->{height});
}
return {
image => $image,
image_path => $image_path,
};
}
my %image_cache;
my $image_cache_tick = 0;
sub _load_image_with_caching {
my ($self) = @_;
# insert newly loaded image to cache or recycle previously cached image
my $image_path = $self->{png};
my $image_cache_item = $image_cache{$image_path};
if (!$image_cache_item) {
my $new_image_cache_item = $self->_load_image($image_path);
return undef unless $new_image_cache_item;
$image_cache_item = $image_cache{$image_path} = $new_image_cache_item;
}
$image_cache_item->{last_use} = ++$image_cache_tick;
return $image_cache_item->{image};
}
sub clean_image_cache {
my ($limit) = @_;
$limit //= 30;
# compute the number of images to delete
my @cache_items = values %image_cache;
my $cache_size = scalar @cache_items;
my $to_delete = $cache_size - $limit;
return unless $to_delete > 0 && $to_delete <= $cache_size;
# sort the cache items by their last use (ascending)
my @sorted_cache_items = sort { $a->{last_use} <=> $b->{last_use} } @cache_items;
# determine the minimum last use to lower the cache tick (so it won't overflow)
my $min_last_use = $to_delete == $cache_size ? $image_cache_tick : $sorted_cache_items[$to_delete]->{last_use};
$image_cache_tick -= $min_last_use;
my $index = -1;
for my $image_cache_item (@sorted_cache_items) {
if (++$index < $to_delete) {
# delete cache items up to the number of items to delete
delete $image_cache{$image_cache_item->{image_path}};
}
else {
# adapt last_use of items to keep to new $image_cache_tick
$image_cache_item->{last_use} -= $min_last_use;
}
}
}
sub image_cache_size {
return scalar keys %image_cache;
}
sub get_image {
my ($self, $area) = @_;
my $image = $self->_load_image_with_caching;
return undef unless $image;
return $image unless $area;
return $area->{img} //= $image->copyrect($area->{xpos}, $area->{ypos}, $area->{width}, $area->{height});
}
sub has_tag {
my ($self, $tag) = @_;
for my $t (@{$self->{tags}}) {
return 1 if ($t eq $tag);
}
return 0;
}
sub has_property {
my ($self, $tag) = @_;
for my $t (@{$self->{properties}}) {
return 1 if ($t eq $tag);
}
return 0;
}
sub TO_JSON {
my ($self) = @_;
my %hash = map { $_ => $self->{$_} } qw(tags properties area file png unregistered name);
return \%hash;
}
sub wanted_ {
return unless (m/.json$/);
my $needle = needle->new($File::Find::name);
if ($needle) {
$needles{$needle->{name}} = $needle;
}
}
sub default_needle_dir {
return "$bmwqemu::vars{PRODUCTDIR}/needles/";
}
sub init {
($needledir) = @_;
$needledir //= default_needle_dir();
-d $needledir || die "needledir not found: $needledir (check vars.json?)";
%needles = ();
%tags = ();
bmwqemu::diag("init needles from $needledir");
find({no_chdir => 1, wanted => \&wanted_, follow => 1}, $needledir);
bmwqemu::diag(sprintf("loaded %d needles", scalar keys %needles));
if ($cleanuphandler) {
&$cleanuphandler();
}
}
sub tags {
my ($wanted) = @_;
my @wanted = split(/ /, $wanted);
my $first_tag = shift @wanted;
my $goods = $tags{$first_tag};
# go out early if there is nothing to do
if (!$goods || !@wanted) {
return $goods || [];
}
my @results;
# now check that it contains all the other tags too
NEEDLE: for my $n (@$goods) {
for my $t (@wanted) {
next NEEDLE if (!$n->has_tag($t));
}
print "adding ", $n->{name}, "\n";
push(@results, $n);
}
return \@results;
}
sub all {
return values %needles;
}
1;
# vim: set sw=4 et: