]> git.sesse.net Git - ccbs/commitdiff
Improve DDR Europe parsing; we now understand groups and rounds
authorSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 17:31:49 +0000 (17:31 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sun, 13 Feb 2005 17:31:49 +0000 (17:31 +0000)
parse/parse-ddreurope-tournament.pl

index ccee272c6d4f414827c925eb97b6f4fc30c7b5cc..0aea46768744ca07dd9cf65c7449ccf545069cc8 100644 (file)
@@ -6,7 +6,7 @@ use Date::Manip;
 # Parses tournament results from the DDR Europe result list
 
 my $season = shift;
 # 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";
 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";
        }
                print "    (SELECT scoringsystem FROM scoringsystems WHERE name='$system')\n";
                print ");\n";
        }
+
+       # New round
+       if (/<h3 \s* class=dthr> 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 (/<th \s* class=dthp> ( 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/<th \s* class=dthpsong> .*? "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 \s* class=dthp \s* colspan=2>&nbsp<\/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";
 }
 
 printf "commit;\n";