chiark / gitweb /
Make query more directly useful for display[
[ypp-sc-tools.db-live.git] / yarrg / web / routetrade
1 <%doc>
2
3  This is part of the YARRG website.  YARRG is a tool and website
4  for assisting players of Yohoho Puzzle Pirates.
5
6  Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
7  Copyright (C) 2009 Clare Boothby
8
9   YARRG's client code etc. is covered by the ordinary GNU GPL (v3 or later).
10   The YARRG website is covered by the GNU Affero GPL v3 or later, which
11    basically means that every installation of the website will let you
12    download the source.
13
14  This program is free software: you can redistribute it and/or modify
15  it under the terms of the GNU Affero General Public License as
16  published by the Free Software Foundation, either version 3 of the
17  License, or (at your option) any later version.
18
19  This program is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  GNU Affero General Public License for more details.
23
24  You should have received a copy of the GNU Affero General Public License
25  along with this program.  If not, see <http://www.gnu.org/licenses/>.
26
27  Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
28  are used without permission.  This program is not endorsed or
29  sponsored by Three Rings.
30
31
32  This Mason component is the core trade planner for a specific route.
33
34
35 </%doc>
36 <%args>
37 $dbh
38 @islandids
39 @archipelagoes
40 $qa
41 </%args>
42 <%perl>
43
44 my @flow_conds;
45 my @query_params;
46
47 my $sd_condition= sub {
48         my ($bs, $ix) = @_;
49         my $islandid= $islandids[$ix];
50         if (defined $islandid) {
51                 return "${bs}.islandid = $islandid";
52         } else {
53                 push @query_params, $archipelagoes[$ix];
54                 return "${bs}_islands.archipelago = ?";
55         }
56 };
57
58 foreach my $src_i (0..$#islandids) {
59         my $src_cond= $sd_condition->('sell',$src_i);
60         my @dst_conds;
61         foreach my $dst_i ($src_i..$#islandids) {
62                 my $dst_cond= $sd_condition->('buy',$dst_i);
63                 if ($dst_i==$src_i and !defined $islandids[$src_i]) {
64                         # we always want arbitrage, but mentioning an arch
65                         # once shouldn't produce intra-arch trades
66                         $dst_cond=
67                                 "($dst_cond AND sell.islandid = buy.islandid)";
68                 }
69                 push @dst_conds, $dst_cond;
70         }
71         push @flow_conds, "$src_cond AND (
72                         ".join("
73                      OR ",@dst_conds)."
74                 )";
75 }
76
77 my $stmt= "             
78         SELECT  sell_islands.islandname                         org_name,
79                 sell_islands.islandid                           org_id,
80                 sell.price                                      org_price,
81                 sum(sell.qty)                                   org_qty,
82                 buy_islands.islandname                          dst_name,
83                 buy_islands.islandid                            dst_id,
84                 buy.price                                       dst_price,
85                 sum(buy.qty)                                    dst_qty,
86                 commods.commodname                              commodname,
87                 commods.commodid                                commodid,
88                 commods.unitmass                                mass,
89                 commods.unitvolume                              volume,
90                 buy.price - sell.price                          unitprofit,
91                 min(sell.qty,buy.qty)                           tqty,
92                 min(sell.qty,buy.qty) * (buy.price-sell.price)  profit
93         FROM commods
94         JOIN buy  on commods.commodid = buy.commodid
95         JOIN sell on commods.commodid = sell.commodid
96         JOIN islands as sell_islands on sell.islandid = sell_islands.islandid
97         JOIN islands as buy_islands  on buy.islandid  = buy_islands.islandid
98         WHERE   (
99                 ".join("
100            OR   ", @flow_conds)."
101         )
102           AND   buy.price > sell.price
103         GROUP BY commodname, commods.commodid,
104                 org_id, org_price, dst_id, dst_price
105         ORDER BY org_name, dst_name, profit DESC, commodname,
106                  org_price, dst_price DESC
107      ";
108
109 my $sth= $dbh->prepare($stmt);
110 $sth->execute(@query_params);
111
112 </%perl>
113 % if ($qa->{'debug'}) {
114 <pre>
115 <% $stmt |h %>
116 <% join(' | ',@query_params) |h %>
117 </pre>
118 % }
119
120 <& dumpqueryresults, sth =>$sth &>
121
122 <%init>
123 use CommodsWeb;
124 </%init>