month_full()->month_a() to unify month elements naming
[www.energie.vellum.cz.git] / obsah_init.pl
1 #! /usr/bin/perl
2 #
3 #       $Id$
4
5 use strict;
6 use DBI;
7
8 use vars qw/$db_driver $db_host $db_user $db_pwd $DB_PWD $db_name $db/;
9 use vars qw/$tb_obsah/;
10
11 $db_driver="mysql";
12 $db_host="";
13 $db_user="short";
14 $DB_PWD=$ENV{"HOME"}."/priv/mysql.${db_user}.pwd";
15 $db_name="short";
16 $tb_obsah="energie_obsah";
17
18 open DB_PWD or die "Failed open \"$DB_PWD\": $!";
19 $db_pwd=<DB_PWD>;
20 chomp $db_pwd;
21 close DB_PWD;
22
23 $db=DBI->connect("DBI:$db_driver:database=$db_name;host=$db_host",$db_user,$db_pwd) or die "Database open fail: $!";
24
25 sub db_do
26 {
27 my( $cmd )=@_;
28
29         $db->do($cmd) or die("SQL command \"$cmd\" failed: $!");
30 }
31
32 eval { &db_do("drop table $tb_obsah") };
33
34 &db_do("create table $tb_obsah ("
35                 ."year year(4) not null,"
36                 ."month tinyint not null,"
37                 ."month_last tinyint not null,"
38                 ."contents text not null"
39                 .")");
40
41 &db_do("alter table $tb_obsah add unique (year,month)");
42
43
44 use vars qw/$insert_tb_obsah $year $month $month_last $contents/;
45
46 sub where
47 {
48         return " in file $ARGV on line $.";
49 }
50
51 sub flush_month
52 {
53         $_=$contents;
54         return if !defined $_;
55         die "Empty contents".&where() if !$_;
56         tr/ \t\n/  \n/s;
57         s/([\001\n]) | ([\002\n])/$1$2/g;
58         s/\nstrana \.\.\. ([\d ,]+\002)/\003$1/g;
59         die "Page marker not found somewhere in this month".&where() if (/\001[^\003]*\002/);
60         tr/\002//d;
61         $insert_tb_obsah->execute($year,$month,$month_last,substr($_,1)) or die "SQL insert failure: $!";
62         undef $year,$month;
63         undef $contents;
64 }
65
66 $insert_tb_obsah=$db->prepare("insert into $tb_obsah (year,month,month_last,contents) values (?,?,?,?)")
67                 or die "Prepare fail: $!";
68
69 while (<>) {
70         chomp;
71         if (m#^EaP (\d+)(-(\d+))?/(\d+)$#) {
72                 &flush_month();
73                 $month=$1;
74                 $month_last=($3 ? $3 : $1);
75                 $year =$4;
76                 $contents="";
77                 next;
78                 }
79         if (/^\.\s(.*)$/) {
80                 $contents.="\001$1\002";
81                 next;
82                 }
83         if (/^\s(.*)$/) {
84                 $contents=substr($contents,0,-1)."\n$1\002";
85                 next;
86                 }
87         die "Unexpected text".&where().": $_" if (/\S/);
88         }
89 &flush_month();
90
91 print("success.\n");