X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-test.git;a=blobdiff_plain;f=yarrg%2Fweb%2Fquery_routesearch;h=6f051351ca2f981bf677f2bd2fa4394f78a81459;hp=9accc54bbf2dbf31987948bc2e8e2606457f2ba9;hb=8fb8cf52d2bf96beda40c30134e04a352ff988b4;hpb=2abd3537af0c697684bfb97895f230372101329d diff --git a/yarrg/web/query_routesearch b/yarrg/web/query_routesearch index 9accc54..6f05135 100644 --- a/yarrg/web/query_routesearch +++ b/yarrg/web/query_routesearch @@ -55,6 +55,8 @@ my @islandids; my $qa= \%ARGS; my $routeparams= { EmsgRef => \$emsg, SayRequiredCapacity => 1 }; my $maxdist; +my $maxcountea=10; +my $maxcpu=10; @@ -102,9 +104,26 @@ $emsgokorprint->($emsg) or return; @islandids or return; defined $routeparams->{MaxMass} or defined $routeparams->{MaxVolume} or return; +#---------- prepare island names ---------- + +my $islandname_stmt= $dbh->prepare(<execute($id); + my $row= $islandname_stmt->fetchrow_hashref(); + local $_= $row->{'islandname'}; + s/ Island$//; + return $_, $row->{'archipelago'}; +}; + #---------- compute the results ---------- -my @rsargs; +my @rsargs= qw(-DN); foreach my $k (qw(MaxMass MaxVolume MaxCapital)) { my $v= $routeparams->{$k}; @@ -112,28 +131,27 @@ foreach my $k (qw(MaxMass MaxVolume MaxCapital)) { } push @rsargs, defined $routeparams->{LossPerLeaguePct} ? $routeparams->{LossPerLeaguePct}*0.01 : 1e-9; -push @rsargs, qw(search 10 10), $maxdist, 'any', @islandids; +push @rsargs, 'search',$maxdist, $maxcountea,$maxcountea, 'any', @islandids; m/[^-.0-9a-zA-Z]/ and die "$_ $& ?" foreach @rsargs; -unshift @rsargs, dbw_filename($qa->{'Ocean'}); -unshift @rsargs, qw(-DN); - if ($qa->{'debug'}) { [[ <% "@rsargs" |h %> ]]
 <%perl>
 }
 
-unshift @rsargs, sourcebasedir().'/yarrg/routesearch';
+unshift @rsargs, sourcebasedir().'/yarrg/routesearch',
+	'-d', dbw_filename($qa->{'Ocean'});
+
+my %results; # $results{$ap}{"5 6 9 10"} = { stuff }
 
 my $fh= new IO::File;
 my $child= $fh->open("-|"); defined $child or die $!;
 if (!$child) {
 	my $cpu= BSD::Resource::RLIMIT_CPU;
 	my ($soft,$hard)= getrlimit($cpu);
-	my $max=10;
-	setrlimit($cpu,$max,$hard) or die $! if $soft>$max;
+	setrlimit($cpu,$maxcpu,$hard) or die $! if $soft>$maxcpu;
 	exec @rsargs;
 	die $!;
 }
@@ -145,10 +163,72 @@ while (<$fh>) {
 <% $_ |h %>
 <%perl>
 	}
+	next unless
+  m/^ \@ *\d+ ([ap])\# *\d+ \|.*\| *\d+ +(\d+) +(\d+) *\| ([0-9 ]+)$/;
+	my ($ap,$isles) = (uc $1,$4);
+	next if $results{$ap} && %{$results{$ap}} >= $maxcountea;
+	my $item= { A => $2, P => $3 };
+	my (@i, @a);
+	foreach (split / /, $isles) {
+		my ($name,$arch)= $isleinfo->($_);
+		push @i, $name;
+		push @a, $arch unless @a && $a[-1] eq $arch;
+	}
+	$item->{Isles}= [ @i ];
+	$item->{Archs}= [ @a ];
+	$item->{Start}= $i[0];
+	$item->{Finish}= $i[-1];
+	$item->{Vias}= [ ];
+	my $i;
+	for ($i=1; $i < @i-1; $i++) {
+		push @{ $item->{Vias} }, $i[$i];
+	}
+	$results{$ap}{$isles}= $item;
 }
 
 if ($qa->{'debug'}) {
 	print "
\n"; } + +% foreach my $ap (qw(A P)) { +

ap=<% $ap %>

+ ++++ + + + +% my $datarow=0; +% foreach my $isles (sort { +% $results{$ap}{$b}{$ap} <=> +% $results{$ap}{$a}{$ap} +% } keys %{$results{$ap}}) { +% my $item= $results{$ap}{$isles}; + + +% $datarow ^= 1; +% } # $isles +
Profit +Archipelagoes +Route +
Abs. +Per.lg. + +Start +Via +Finish +
<% $item->{A} |h %> +<% $item->{P} |h %> +<% join ', ', @{ $item->{Archs} } |h %> +<% $item->{Start} |h %>, +<% join ' ', map { $_.',' } @{ $item->{Vias} } |h %> +<% $item->{Finish} |h %> +
+% } # $ap +<%perl> + +