From: Steinar H. Gunderson Date: Sun, 13 Feb 2005 17:31:49 +0000 (+0000) Subject: Improve DDR Europe parsing; we now understand groups and rounds X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=d06b81c2a6cd1abb6e0d2b38a148f4daeb0931d2 Improve DDR Europe parsing; we now understand groups and rounds --- diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index ccee272..0aea467 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -6,7 +6,7 @@ use Date::Manip; # Parses tournament results from the DDR Europe result list my $season = shift; -my $name; +my ($name, $round, @rsongs); die "Missing season (give on command line)." if (!defined($season)); print "begin;\n"; @@ -36,6 +36,53 @@ while (<>) { print " (SELECT scoringsystem FROM scoringsystems WHERE name='$system')\n"; print ");\n"; } + + # New round + if (/

Round \s* (\d+) \s* <\/h3>/x) { + $round = $1; + + print "INSERT INTO rounds (tournament, round, randomsongs, chosensongs) \n"; + print " VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round,\n"; + print " 0, 0);\n"; # Don't worry, we'll fix it later :-P + } + + # New group, and the random songs for it + if (/ ( Players | Group (\d+) )<\/th>/x) { + # bit of an evil hack here + my $group = $2; + $group = 0 if ($1 eq 'Players'); + + print "INSERT INTO groups (tournament, round, parallel) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group);\n"; + + # Find the random songs, if any + @rsongs = (); + + while (s/ .*? "color:white"> (.*?) <\/a><\/th>//x) { + push @rsongs, $1; + + print "INSERT INTO roundrandomsongs (tournament, round, parallel, song) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group,\n"; + print " (SELECT song FROM songs WHERE title='$1')\n"; + print ");\n"; + } + + # Correct the random songs in the table + printf "UPDATE rounds SET randomsongs=%u WHERE \n", scalar @rsongs; + print " tournament=(SELECT tournament FROM tournaments WHERE name='$name') AND \n"; + print " round=$round;\n"; + } + + # Header for chosen song + if (/ <\/th>/x) { + printf "UPDATE rounds SET chosensongs=chosensongs+1 WHERE \n"; + print " tournament=(SELECT tournament FROM tournaments WHERE name='$name') AND \n"; + print " round=$round;\n"; + } } printf "commit;\n";