chiark / gitweb /
New CommodsDatabase module for broken out DBI stuff
authorIan Jackson <ian@liberator.relativity.greenend.org.uk>
Tue, 28 Jul 2009 17:11:19 +0000 (18:11 +0100)
committerIan Jackson <ian@liberator.relativity.greenend.org.uk>
Tue, 28 Jul 2009 17:11:19 +0000 (18:11 +0100)
pctb/CommodsDatabase.pm [new file with mode: 0644]
pctb/db-idempotent-populate

diff --git a/pctb/CommodsDatabase.pm b/pctb/CommodsDatabase.pm
new file mode 100644 (file)
index 0000000..4866c85
--- /dev/null
@@ -0,0 +1,69 @@
+# This is part of ypp-sc-tools, a set of third-party tools for assisting
+# players of Yohoho Puzzle Pirates.
+#
+# Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
+#
+# 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 3 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/>.
+#
+# Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
+# are used without permission.  This program is not endorsed or
+# sponsored by Three Rings.
+
+package CommodsDatabase;
+
+use strict;
+use warnings;
+
+use DBI;
+
+use Commods;
+
+BEGIN {
+    use Exporter ();
+    our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
+    $VERSION     = 1.00;
+    @ISA         = qw(Exporter);
+    @EXPORT      = qw(&db_setocean &db_connect $dbh
+                     &db_filename &db_doall);
+    %EXPORT_TAGS = ( );
+
+    @EXPORT_OK   = qw();
+}
+
+our $dbfn;
+our $dbh;
+
+sub db_setocean ($) {
+    my ($oceanname) = @_;
+    $dbfn= "OCEAN-$oceanname.db";
+}
+sub db_filename () {
+    return $dbfn;
+}
+
+sub db_connect () {
+    $dbh= DBI->connect("dbi:SQLite:$dbfn",'','',
+                      { AutoCommit=>0,
+                        RaiseError=>1, ShowErrorStatement=>1,
+                        unicode=>1 })
+       or die "$dbfn $DBI::errstr ?";
+}
+
+sub db_doall ($) {
+    foreach my $cmd (split /\;/, $_[0]) {
+       $dbh->do("$cmd;") if $cmd =~ m/\S/;
+    }
+}
+
+1;
index 66fd6f5e380a2879948fb61ed04b6051440b7ef8..b7743ed9cb1ff3f78ef9b6be379d4635ec467e1e 100755 (executable)
@@ -31,35 +31,23 @@ use strict (qw(vars));
 use DBI;
 
 use Commods;
+use CommodsDatabase;
 
 @ARGV==1 or die;
 my ($oceanname) = @ARGV;
 
-my $dbfn= "OCEAN-$oceanname.db";
-
-our $dbh;
-
-sub dbdoall ($) {
-    foreach my $cmd (split /\;/, $_[0]) {
-       $dbh->do("$cmd;") if $cmd =~ m/\S/;
-    }
-}
-
 #---------- setup ----------
 
 parse_masters_ocean($oceanname);
 our $ocean= $oceans{$oceanname};
 
-$dbh= DBI->connect("dbi:SQLite:$dbfn",'','',
-                  { AutoCommit=>0,
-                    RaiseError=>1, ShowErrorStatement=>1,
-                    unicode=>1 })
-    or die "$dbfn $DBI::errstr ?";
+db_setocean($oceanname);
+db_connect();
 
 #---------- schema ----------
 
 foreach my $bs (qw(buy sell)) {
-    dbdoall(<<END)
+    db_doall(<<END)
  CREATE TABLE IF NOT EXISTS $bs (
        commodid        INTEGER                 NOT NULL,
        islandid        INTEGER                 NOT NULL,
@@ -74,7 +62,7 @@ END
     ;
 }
 
-dbdoall(<<END)
+db_doall(<<END)
  CREATE TABLE IF NOT EXISTS commods (
        commodid        INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
        commodname      TEXT    UNIQUE          NOT NULL,
@@ -199,7 +187,7 @@ END
        distance_propagate_now(@$ref);
     }
 
-    dbdoall(<<END)
+    db_doall(<<END)
  DELETE FROM dists;
 END
     ;