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
|
package needle;
use Mojo::Base -strict, -signatures;
use autodie ':all';
use Cwd 'cwd';
use File::Find;
use Mojo::File qw(path);
use Mojo::JSON 'decode_json';
use Cpanel::JSON::XS ();
use File::Basename;
use Try::Tiny;
require IPC::System::Simple;
use OpenQA::Benchmark::Stopwatch;
use OpenQA::Isotovideo::Utils 'checkout_git_refspec';
our %needles;
our %tags;
our $cleanuphandler;
my $needles_dir;
sub is_click_point_valid ($click_point) {
return (ref $click_point eq 'HASH'
&& $click_point->{xpos}
&& $click_point->{ypos})
|| $click_point eq 'center';
}
sub new ($classname, $jsonfile) {
die 'needles not initialized via needle::init() before needle constructor called' unless defined $needles_dir;
my $json;
if (ref $jsonfile eq 'HASH') {
$json = $jsonfile;
$jsonfile = $json->{file} || path($needles_dir, $json->{name} . '.json');
}
my $self = {};
if (index($jsonfile, $needles_dir) == 0) {
$self->{file} = substr($jsonfile, length($needles_dir) + 1);
}
elsif (-f path($needles_dir, $jsonfile)) {
$self->{file} = $jsonfile;
$jsonfile = path($needles_dir, $jsonfile);
}
else {
die "Needle $jsonfile is not under needle directory $needles_dir";
}
if (!$json) {
try {
$json = decode_json(path($jsonfile)->slurp);
}
catch {
warn "broken json $jsonfile: $_";
};
return undef unless $json;
}
$self->{tags} = $json->{tags} || [];
$self->{properties} = $json->{properties} || [];
my $gotmatch;
my $got_click_point;
my $got_click_point_with_id;
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;
if (my $click_point = $area_from_json->{click_point}) {
if ($got_click_point) {
warn "$jsonfile has more than one area with a click point without assigning IDs to each\n";
return;
}
if (!is_click_point_valid($click_point)) {
warn "$jsonfile has an area with invalid click point\n";
return;
}
if (ref $click_point ne 'HASH' || !defined $click_point->{id}) {
$got_click_point = 1;
} else {
$got_click_point_with_id = 1;
}
if ($got_click_point && $got_click_point_with_id) {
warn "$jsonfile has more than one area with a click point without assigning IDs to each\n";
return;
}
$area->{click_point} = $click_point;
}
$gotmatch = 1 if $area->{type} =~ /match|ocr/;
$self->{area} ||= [];
push @{$self->{area}}, $area;
}
warn "$jsonfile missing match area\n" && return unless $gotmatch;
$self->{name} = basename($jsonfile, '.json');
my $png = $self->{png} || $self->{name} . ".png";
$self->{png} = path(dirname($jsonfile), $png)->to_string;
warn "Can't find $self->{png}" && return unless -s $self->{png};
$self = bless $self, $classname;
$self->register();
return $self;
}
sub save ($self, $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 => [$self->{properties}],
});
open(my $fh, '>', $fn);
print $fh $json;
close $fh;
}
sub unregister ($self, $reason = undef) {
for my $g (@{$self->{tags}}) {
@{$tags{$g}} = grep { $_ != $self } @{$tags{$g}};
delete $tags{$g} unless (@{$tags{$g}});
}
$self->{unregistered} //= $reason || 'unknown reason';
}
sub register ($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 ($self, $image_path) {
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;
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 ($self) {
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 ($limit = 30) {
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;
my @sorted_cache_items = sort { $a->{last_use} <=> $b->{last_use} } @cache_items;
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 $image_cache{$image_cache_item->{image_path}};
}
else {
$image_cache_item->{last_use} -= $min_last_use;
}
}
}
sub image_cache_size () { scalar keys %image_cache }
sub get_image ($self, $area = undef) {
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 ($self, $tag) {
for my $t (@{$self->{tags}}) {
return 1 if ($t eq $tag);
}
return 0;
}
sub has_property ($self, $property_name) {
return grep { ref($_) eq "HASH" ? $_->{name} eq $property_name : $_ eq $property_name } @{$self->{properties}};
}
sub get_property_value ($self, $property_name) {
for my $property (@{$self->{properties}}) {
if (ref($property) eq "HASH") {
return $property->{value} if ($property->{name} eq $property_name);
}
}
if ($property_name eq "workaround") {
if ($self->{name} =~ /\S+\-(bsc|poo|bnc|boo)(\d+)\-\S+/) {
return $1 . "#" . $2;
}
}
return undef;
}
sub TO_JSON ($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);
$needles{$needle->{name}} = $needle if $needle;
}
sub default_needles_dir () { "$bmwqemu::vars{PRODUCTDIR}/needles" }
sub init ($init_needles_dir = $bmwqemu::vars{NEEDLES_DIR} // default_needles_dir) {
$needles_dir = $init_needles_dir;
unless (-d $needles_dir) {
die "Can't init needles from $needles_dir" if (path($needles_dir)->is_abs);
$needles_dir = path($bmwqemu::vars{CASEDIR}, $needles_dir)->to_string;
die "Can't init needles from $init_needles_dir; If one doesn't specify NEEDLES_DIR, the needles will be loaded from \$PRODUCTDIR/needles firstly or $needles_dir (\$CASEDIR + $init_needles_dir), check vars.json" unless -d $needles_dir;
}
($bmwqemu::vars{NEEDLES_GIT_URL}, $bmwqemu::vars{NEEDLES_GIT_HASH}) = checkout_git_refspec($needles_dir => 'NEEDLES_GIT_REFSPEC');
%needles = ();
%tags = ();
bmwqemu::diag("init needles from $needles_dir");
find({no_chdir => 1, wanted => \&wanted_, follow => 1}, $needles_dir);
bmwqemu::diag(sprintf("loaded %d needles", scalar keys %needles));
$cleanuphandler->() if $cleanuphandler;
return $needles_dir;
}
sub needles_dir () { $needles_dir }
sub set_needles_dir ($_needles_dir) { $needles_dir = $_needles_dir }
sub tags ($wanted) {
my @wanted = split(/ /, $wanted);
my $first_tag = shift @wanted;
my $goods = $tags{$first_tag};
return $goods || [] unless $goods && @wanted;
my @results;
NEEDLE: for my $n (@$goods) {
for (@wanted) {
next NEEDLE if !$n->has_tag($_);
}
print "adding ", $n->{name}, "\n";
push(@results, $n);
}
return \@results;
}
sub all () { values %needles }
1;
|