OSDN Git Service

in mode=suggest, add a queue with convert_b25_ts if asked to move after dec/rec
[rec10/rec10-git.git] / rectool / trunk / rectool.pl
1 #!/usr/bin/perl
2 # -d:SmallProf
3 #use Perl6::Slurp;
4 #use XML::Simple;
5 #use CGI;
6 #use CGI::Lite;
7 #use Date::Manip;
8 #Date_Init("TZ=JST","ConvTZ=JST");
9 #use SVG;
10 #use KCatch;
11 use warnings;
12 use utf8;
13 use Algorithm::Diff qw(LCS);
14 use Archive::Zip;
15 use CGI;
16 use CGI::Carp qw( fatalsToBrowser warningsToBrowser );
17 use Config::Simple;
18 use Data::Dumper::Concise;
19 use Date::Simple;
20 use DateTime;
21 use DBI;
22 use Encode;
23 use File::Slurp;
24 use List::Compare;
25 use List::Util;
26 use MIME::Base64;
27 use Sort::Naturally;
28 use SVG;
29 use Time::Piece;
30 use Time::Seconds;
31 use Time::HiRes;
32 use Tie::IxHash;
33 use XML::Atom::Feed;
34 use XML::Atom::Entry;
35 use XML::Generator::DBI;
36 use XML::SAX::Writer;
37 use XML::TreePP;
38 #%DB::packages = ( 'main' => 1 );
39
40
41 ################ バージョン定義 ################
42
43
44 my $rectool_version = 102;
45
46
47 ################ 初期化ここから ################
48
49
50 my $tz = DateTime::TimeZone->new( name => 'local' );
51 my $hires = Time::HiRes::time();
52
53 my $cfg = new Config::Simple;
54 if ( -e 'rec10.conf' ) {
55         $cfg->read( 'rec10.conf' );
56 }
57 elsif ( -e '/etc/rec10.conf' ) {
58         $cfg->read( '/etc/rec10.conf' );
59 }
60 else { 
61         die 'rec10.confが見つかりません。';
62 }
63
64 my $sql = $cfg->param( 'db.db' );
65
66 if ( $sql eq 'MySQL' ) {
67         my $name = $cfg->param( 'db.mysql_dbname' );
68         my $host = $cfg->param( 'db.mysql_host' );
69         my $port = $cfg->param( 'db.mysql_port' );
70         my $user = $cfg->param( 'db.mysql_user' );
71         my $pass = $cfg->param( 'db.mysql_passwd' );
72         $dbh = DBI->connect("dbi:mysql:$name:$host:$port", $user, $pass, {
73                 AutoCommit => 1,
74                 RaiseError => 1,
75                 mysql_enable_utf8 => 1, # only availavle for MySQL
76         });
77         $dbh->do( 'SET NAMES utf8' );
78 }
79
80 my $rec10_version = eval {
81         $dbh->selectrow_array( "SELECT version FROM in_status " );
82 };
83
84 my $HTML;
85
86 $HTTP_HEADER = "Content-Type: text/html\n\n";
87 $HTML .= <<EOM;
88 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
89 <html lang="ja">
90 <head>
91 <title>Rec10%HTML_TITLE_OPT%</title>
92 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
93 <meta http-equiv="Content-Script-Type" content="text/javascript">
94 <meta http-equiv="Content-Style-Type" content="text/css">
95 <meta name="robots" content="noindex,nofollow,noarchive">
96 <link rev="made" href="Rea10">
97 <link rel="alternate" type="application/atom+xml" title= "Rec10 Atom Feed" href="./rectool.pl?mode=atom">
98 %REFRESH%
99 %SCRIPT%
100 %CSS%
101 </head>
102 <body>
103 %HTML_HEADER%
104 EOM
105
106 my ( $user, $pass, $auth );
107 ( $user, $pass ) = eval {
108         $dbh->selectrow_array( "SELECT webuser, webpass FROM in_settings " );
109 };
110
111 if ( $user and $pass ) {
112         if ( $ENV{'HTTP_AUTHORIZATION'} ) {
113                 my ( $base64 ) = $ENV{'HTTP_AUTHORIZATION'} =~ /Basic\s(.*)/;
114                 if ( $base64 eq encode_base64( "$user:$pass" ) ) {
115                         $auth = 1;
116                 }
117                 else {
118                         $auth = 0;
119                 }
120         }
121         else {
122                 $auth = 0;
123         }
124 }
125 else {
126         $auth = 1;
127 }
128
129 if ( !$auth ) {
130         my ( $base64 ) = $ENV{'REMOTE_USER'} =~ /Basic (.*)/;
131         $HTTP_HEADER = qq {Status: 401 Authorization Required\nWWW-Authenticate: Basic realm="Protected Rec10 $ENV{'HTTP_AUTHORIZATION'}"\n} . $HTTP_HEADER;
132         goto end;
133 }
134
135 if ( $rec10_version != $rectool_version ) {
136         $HTML .= qq {<div style="font-size: 200%; font-weight: bold; color: red">\n};
137
138         if ( $rec10_version > $rectool_version ) {
139                 $HTML .= qq {Rec10本体のバージョンが新しいため、実行できません。<br>\n};
140                 $HTML .= qq {rectoolのバージョンアップを行ってください。<br>\n};
141         }
142
143         if ( $rec10_version < $rectool_version ) {
144                 $HTML .= qq {Rec10本体のバージョンが古いため、実行できません。<br>\n};
145                 $HTML .= qq {Rec10のバージョンアップを行ってください。<br>\n};
146         }
147
148         $HTML .= qq {Rec10のバージョンは$rec10_version 、rectoolのバージョンは$rectool_version です。<br>\n};
149         $HTML .= qq {<a href="http://sourceforge.jp/projects/rec10/">公式ページ</a>\n};
150         goto end;
151 }
152
153 $q = new CGI;
154 %params = $q->Vars;
155 $mode = $params{ 'mode' };
156 $mode_sub = $params{ 'mode_sub' };
157
158 ################ %chtxt_chnameの準備 ################
159
160 my %chtxt_chname;
161 my %chtxt_0_chname;
162 tie %chtxt_0_chname, 'Tie::IxHash';
163
164 my $ary_ref = $dbh->selectall_arrayref(
165         "SELECT chtxt, chname, ch, bctype FROM epg_ch
166         WHERE visible = 1
167         AND chname != ''
168         ORDER BY chtxt"
169 );
170
171 %chtxt_chname = map { $_->[0], $_->[1] } @{$ary_ref};
172
173 # te: 地上波
174 # bc: BS、CS
175 my @te_ary = grep $_->[0]=~ /^\d/, @{$ary_ref};
176 my @bc_ary = grep $_->[0]!~ /^\d/, @{$ary_ref};
177
178 # teの操作(まとめる)
179 foreach my $line ( @te_ary ) {
180         # te xx_yyyy(chtxt) -> xx(ch)
181         if ( $line->[3] =~ /te/ ) {
182                 push @{ $chtxt_0_chname{        $line->[2] . '_0'} }, $line->[1];
183         }
184         else {
185                 push @{ $chtxt_0_chname{'BS_' . $line->[2]       } }, $line->[1];
186         }
187 }
188 foreach my $key ( keys %chtxt_0_chname ) {
189         my @chname = @{ $chtxt_0_chname{$key} };
190         if ( @chname >= 2 ) {
191                 # 2つ以上ある場合
192                 my @tmp = map { my @ary = split //, $_; \@ary } @chname;
193                 # 1つ目と2つ目のみ比較
194                 # FIXME: すべてを比較するべき
195                 $chtxt_0_chname{$key} = join '', LCS( $tmp[0], $tmp[1] );
196         }
197         else {
198                 # 1つしかない場合
199                 $chtxt_0_chname{$key} = $chname[0];
200         }
201 }
202
203 # bs/csの操作(そのまま)
204 foreach my $line ( @bc_ary ) {
205         $chtxt_0_chname{$line->[0]} = $line->[1];
206 }
207 undef $ary_ref;
208
209
210 ################ 定数宣言 ################
211
212
213 tie %type, 'Tie::IxHash';
214 %type = (
215         'search_everyday'          => '隔日検索',
216         'search_today'             => '当日検索',
217         'reserve_flexible'         => '浮動予約',
218         'reserve_fixed'            => '確定予約',
219
220         'reserve_running'          => '録画途中',
221
222         'convert_b25_ts'           => '解読予約',
223         'convert_b25_ts_running'   => '解読途中',
224         'convert_b25_ts_miss'      => '解読失敗',
225
226         'convert_ts_mp4'           => '縁故予約',
227         'convert_ts_mp4_running'   => '縁故於鯖',
228         'convert_ts_mp4_network'   => '縁故於網',
229         'convert_ts_mp4_finished'  => '縁故完了',
230
231         'convert_avi_mkv'          => '変換旧露',
232         'convert_avi_mp4'          => '変換旧四',
233         'convert_mkv_mp4'          => '変換露四',
234         'convert_mkv_mp4_runnings' => '換途露四',
235
236         'auto_suggest_dec'         => '予測解読',
237         'auto_suggest_enc'         => '予測縁故',
238         'auto_suggest_avi2fp'      => '予測旧四',
239         'auto_suggest_ap2fp'       => '予測露四',
240
241         'move_end'                 => '移動完了',
242 );
243
244 %type_suggest = (
245         'auto_suggest_dec'    => 'convert_b25_ts',
246         'auto_suggest_enc'    => 'convert_ts_mp4',
247         'auto_suggest_avi2fp' => 'convert_avi_mkv',
248         'auto_suggest_ap2fp'  => 'convert_mp4_mkv',
249 );
250
251 %color = (
252         'search_everyday'        => '#8B008B',
253         'search_today'           => '#8B008B',
254         'reserve_flexible'       => '#4169E1',
255         'reserve_fixed'          => '#4169E1',
256         'reserve_running'        => '#FF8C00',
257         'convert_b25_ts'         => '#CD5C5C',
258         'convert_b25_ts_running' => '#DC143C',
259         'convert_ts_mp4'         => '#32CD32',
260         'convert_ts_mp4_running' => '#2E8B57',
261         'convert_ts_mp4_network' => '#808000',
262
263         'other'                  => '#A0A0A0',
264 );
265
266 $type_user_made = "( 'search_everyday', 'search_today', 'reserve_flexible', 'reserve_fixed', 'reserve_running' )";
267
268 tie %category, 'Tie::IxHash';
269 %category = (
270         'news'        => { name => 'ニュース・報道'          , color => '#ff0000' }, 
271         'sports'      => { name => 'スポーツ'                , color => '#ff8000' }, 
272         'information' => { name => '情報'                    , color => '#ffff00' }, 
273         'drama'       => { name => 'ドラマ'                  , color => '#80ff00' }, 
274         'music'       => { name => '音楽'                    , color => '#00ff00' }, 
275         'variety'     => { name => 'バラエティ'              , color => '#00ff80' }, 
276         'cinema'      => { name => '映画'                    , color => '#00ffff' }, 
277         'anime'       => { name => 'アニメ・特撮'            , color => '#0080ff' }, 
278         'documentary' => { name => 'ドキュメンタリー・教養'  , color => '#0000ff' }, 
279         'stage'       => { name => '演劇'                    , color => '#8000ff' }, 
280         'hobby'       => { name => '趣味・実用'              , color => '#ff00ff' }, 
281         'welfare'     => { name => '福祉'                    , color => '#ff0080' }, 
282         'reserved'    => { name => '予備'                    , color => '#808080' }, 
283         'etc'         => { name => 'その他'                  , color => '#808080' }, 
284 );
285
286 ################ 初期化ここまで ################
287
288
289 ################ mode=schedule ################
290
291 if ( $mode eq 'schedule' ) {
292
293         $HTML =~ s/%HTML_TITLE_OPT%/ - Schedule Viewer/;
294         #$HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
295         $css = <<EOM;
296                 <style type="text/css">
297                 td {
298                         white-space: nowrap;
299                 }
300                 </style>
301 EOM
302         $css =~ s/^\t{2}//gm;
303         $HTML =~ s/%CSS%/$css/;
304
305         my $order = $params{ 'order' };
306         my $extra = $params{ 'extra' };
307         if ( $order ne 'id' ) {
308                 $order = 'btime';
309         }
310         $reverse_extra = $extra            ? '' : '&amp;extra=1';
311         $forward_order = $order eq 'btime' ? '' : '&amp;order=id';
312
313         my $ary_ref = $dbh->selectall_arrayref(
314                 "SELECT id, type, timeline.chtxt, epg_ch.chname, title, btime, etime, opt, deltaday, deltatime, 
315                 epgtitle, epgbtime, epgetime, epgexp, epgduplicate, epgchange, counter 
316                 FROM timeline 
317                 LEFT OUTER JOIN epg_ch ON timeline.chtxt = epg_ch.chtxt 
318                 ORDER BY $order"
319                 , {Slice=>{}});
320
321         $HTML .= qq {<div style="font-size: 80%; float: left">\n};
322         $HTML .= qq {<form method="get" action="rectool.pl">\n};
323         $HTML .= qq {<div>\n};
324         $HTML .= qq {<input type="hidden" name="mode" value="change">\n};
325         $HTML .= qq {<table summary="rectimetable" border=1 cellspacing=0>\n<tr>\n};
326         $HTML .= qq {<th><a href="rectool.pl?mode=schedule$forward_order$reverse_extra">■</a></th>\n};
327         $HTML .= qq {<th><a href="rectool.pl?mode=schedule&amp;order=id">ID</a></th>\n};
328         $HTML .= qq {<th>タイプ</th>\n};
329         $HTML .= qq {<th>チャンネル</th>\n};
330         $HTML .= qq {<th>タイトル</th>\n};
331         $HTML .= qq {<th><a href="rectool.pl?mode=schedule">開始時刻</a></th>\n};
332         $HTML .= qq {<th>終了時刻</th>\n};
333         $HTML .= qq {<th>録画時間</th>\n};
334         $HTML .= qq {<th>オプション</th>\n};
335         $HTML .= qq {<th>dd</th>\n};
336         $HTML .= qq {<th>dt</th>\n};
337         $HTML .= qq {<th>残り</th>\n};
338         $HTML .= qq {</tr>\n};
339         foreach my $line ( @{ $ary_ref } ) {
340
341                 $type = $type{$line->{type}} || $line->{type};
342                 if    ( $line->{type} =~ /^search/ ) {
343                         $type = qq {<span style="color: #8B008B">$type</span>};
344                         $line->{deltaday} = qq {<span style="color: #FF0000">空</span>} if ( !$line->{deltaday} && $line->{type} eq 'search_everyday' );
345                         $line->{deltatime} = qq {<span style="color: #FF0000">空</span>} if ( !$line->{deltatime} );
346                 }
347                 else {
348                         my $color = $color{$line->{type}} ? $color{$line->{type}} : $color{'other'};
349                         $type = qq {<span style="color: $color">$type</span>};
350                 }
351                 # 地上波の場合、xx_yyyをxx_0に置換する
352                 ( $line->{chtxt_0} = $line->{chtxt} ) =~ s/(\d+)_/$1_0/;
353                 # chnameが無いとき(移動縁故など)、chtxtを代わりに使う
354                 $line->{chname} = 
355                         $line->{chname} || 
356                         $chtxt_0_chname{$line->{chtxt}} || 
357                         $chtxt_0_chname{$line->{chtxt_0}};
358                 if ( !$line->{chname} ) {
359                         # chnameが無いとき、リンクを作成しない
360                         $line->{chname} = $line->{chtxt};
361                         $line->{chname_link} = qq {$line->{chname}</a>};
362                 }
363                 else {
364                         $line->{chname_link} = qq {<a href="rectool.pl?mode=program&amp;chtxt=$line->{chtxt}">$line->{chname}</a>};
365                 }
366                 $line->{title} = 'タイトルなし' if ( !$line->{title} );
367                 $line->{tr_style} = '';
368                 $line->{title_2} = '';
369                 my $unix_b = str2datetime( $line->{btime} );
370                 my $unix_e = str2datetime( $line->{etime} );
371
372                 my $btime = $unix_b->strftime( '%Y%m%d%H%M%S' );
373                 my $etime = $unix_e->strftime( '%Y%m%d%H%M%S' );
374                 if ( $extra and $line->{type} =~ /^search_|^reserve_(?!running)/ ) {
375                         #my @ary = $dbh->selectrow_array(
376                         #       "SELECT title, exp FROM epg_timeline 
377                         #       WHERE channel = '$line->{chname}' 
378                         #       AND start = '$btime' 
379                         #       AND stop  = '$etime' ");
380                         #my @ary = ( $line->{epgtitle}, $line->{epgexp} );
381                         my ( $epgtitle, $epgexp ) = ( $line->{epgtitle}, $line->{epgexp} );
382
383                         if ( $epgtitle ) {
384                                 $epgtitle =~ s/無料≫//;
385
386                                 if ( $epgtitle ne $line->{title} ) {
387                                         # epgtitleとtitleが一致しない
388                                         # []に囲まれた部分を除去して比較
389                                         my @brackets = $line->{title} =~ /(\[.+\])+/;
390                                         my $epgtitle_nobrackets = $epgtitle;
391                                         my $title_nobrackets = $line->{title};
392                                         if ( @brackets && $epgtitle =~ /(\[.+\])+/ >= @brackets ) {
393                                                 foreach ( @brackets ) {
394                                                         $epgtitle_nobrackets =~ s/\Q$_\E//;
395                                                 }
396                                         }
397                                         $title_nobrackets =~ s/(\[.+\])+//;
398                                         if ( !scalar $epgtitle_nobrackets =~ s/\Q$title_nobrackets\E// ) {
399                                                 # epgtitleにtitleが含まれていない
400                                                 my $href  = qq {<a href="rectool.pl?mode=edit&amp;id=$line->{id}&amp;suggest=auto">自動検索</a>};
401                                                 $epgtitle = qq {<span style="color: #FF4000">$epgtitle■$href■</span>};
402                                         }
403                                         else {
404                                                 # epgtitleにtitleが含まれている
405                                                 $epgtitle = $epgtitle_nobrackets;
406                                         }
407                                 }
408                                 else {
409                                         # epgtitleとtitleが一致している
410                                         $epgtitle = '説明';
411                                 }
412
413                                 $line->{title_2} = qq {<div style="float: right; cursor: help" title="$epgexp">$epgtitle</div>};
414                         }
415                         else {
416                                 # epgtitleがない
417                                 my $href    = qq {<a href="rectool.pl?mode=edit&amp;id=$line->{id}&amp;suggest=auto">自動検索</a>};
418                                 $line->{title_2}  = qq {<span style="float: right; color: #FF0000">■$href■</span>};
419                                 $line->{tr_style} = qq {style="background-color: #A0A0A0"};
420                         }
421                 }
422
423                 my ( $begin, $end, $diff ) = &str2readable( $unix_b, $unix_e );
424
425                 my $hr = '';
426                 if ( 
427                         $line->{type} eq 'reserve_running' 
428                                 &&
429                         $unix_b->epoch <= time && time <= $unix_e->epoch
430                 )
431                 {
432                         $percent = int( ( 100 * ( time - $unix_b->epoch ) ) / ( $unix_e->epoch - $unix_b->epoch ) );
433                         $hr .= qq {<hr style="margin: 0 auto 0 0; height: 4px; width: $percent%;};
434                         $hr .= qq { background-color: blue; border: none" title="$percent%">};
435                 }
436
437                 $line->{title} = qq {<a href="rectool.pl?mode=edit&amp;id=$line->{id}">$line->{title}</a>};
438                 #$line->{title} = qq {<div style="float: left">$line->{title}</div>} if ( $line->{title_2} );
439                 $HTML .= qq {<tr align="center" $line->{tr_style}>\n};
440                 $HTML .= qq {<td><input type="checkbox" name="id" value="$line->{id}"></td>\n};
441                 $HTML .= qq {<td>$line->{id}</td>\n};
442                 $HTML .= qq {<td>$type</td>\n};
443                 $HTML .= qq {<td>$line->{chname_link}</td>\n};
444                 $HTML .= qq {<td align="left" style="white-space: normal">$line->{title}$line->{title_2}</td>\n};
445                 $HTML .= qq {<td>$begin</td>\n<td>$end</td>\n};
446                 $HTML .= qq {<td>$hr$diff</td>\n};
447                 $HTML .= qq {<td>$line->{opt}</td>\n<td>$line->{deltaday}</td>\n<td>$line->{deltatime}</td>\n<td>$line->{counter}</td>\n};
448                 $HTML .= qq {</tr>\n};
449         }
450         $HTML .= qq {</table>\n};
451         #$HTML .= qq {<input type="submit" name="edit" value="編集(要JS)">\n};
452         $HTML .= qq {<input type="submit" name="delete" value="削除">\n</div>\n</form>\n};
453         goto end;
454 }
455
456 ################ mode=graph ################
457
458 if ( $mode eq 'graph' ) {
459
460         my $date = $params{ 'date' };
461
462         if ( $date )
463         {
464                 print "Content-Type: image/svg+xml\n\n";
465
466                 $date = Date::Simple->new( split /-/, $date );
467                 $graph_bgn = $date->format('%Y-%m-%d');
468                 $graph_end = $date->next->format('%Y-%m-%d');
469                 $day = $date->day;
470                 $today = $date eq Date::Simple->today() ? 1 : 0;
471
472                 $tuner{terrestrial} = $cfg->param( 'env.te_max'   );# 2;
473                 $tuner{satellite}   = $cfg->param( 'env.bscs_max' );# 2;
474                 $tuner{all} = $tuner{terrestrial} + $tuner{satellite};
475                 $hours = 24;
476                 $width = 30 * $hours;
477                 my %category_color = map { $_->{name}, $_->{color} } values %category;
478
479                 $svg = new SVG( width => 820, height => $tuner{all} * 20 + 40 );
480                 $svg->rectangle( 'x' => 40, 'y' => 20, 
481                         width => $width + 20, height => $tuner{all} * 20 + 10, 
482                         rx => 15, ry => 15, 
483                         style => { stroke => 'blue', fill => 'white' } );
484                 for ( 1..$tuner{terrestrial} ) {
485                         $svg->text( 'x' => 10, 'y' => ( $_ + 1 ) * 20 )
486                                 ->cdata( "T$_" );
487                 }
488                 for ( 1..$tuner{satellite} ) {
489                         $svg->text( 'x' => 10, 'y' => ( $_ + $tuner{terrestrial} + 1 ) * 20 )
490                                 ->cdata( "S$_" );
491                 }
492                 for ( 0..$hours ) {
493                         $svg->text( 'x' => $_ * 30 + 65, 'y' => 15, 
494                                 style => { 'text-anchor' => 'middle' } )
495                                 ->cdata( sprintf( '%02d', $_ ) ) if ( $_ < $hours );
496                         # $svg->line( ); # can't be used when required
497                         $svg->tag( 'line', x1 => $_ * 30 + 50, x2 => $_ * 30 + 50, y1 => 30, y2 => $tuner{all} * 20 + 20, 
498                                 style => { stroke => 'gray' } );
499                 }
500                 for ( 1..$tuner{all} ) {
501 #                       $svg->tag( 'line', x1 =>50, x2 => 50 + $width, y1 => $_ * 20 + 10, y2 => $_ * 20 + 10, 
502 #                               style => { stroke => 'gray' } );
503 #                       $svg->rectangle( 'x' => 50, 'y' => $_ * 20 + 10, width => $width, height => 10 );
504                         $svg->rectangle( 'x' => 50, 'y' => $_ * 20 + 14, width => $width, height => 2 );
505                 }
506                 if ( $today ) {
507                         my $time = Time::Piece->localtime;
508                         my $x = ( $time->hour * 60 + $time->minute ) * 0.5 + 50;
509                         $svg->tag( 'line', x1 => $x, x2 => $x, y1 => 30, y2 => $tuner{all} * 20 + 20, 
510                                 style => { stroke => 'red', 'fill-opacity' => '1.0' } );
511                 }
512                 my $ary_ref = $dbh->selectall_arrayref(
513                         #       epg_timeline.channel = timeline.chtxt && 
514                         "SELECT id, title, chtxt, btime, etime, epgcategory, opt FROM timeline 
515                         WHERE type IN $type_user_made 
516                         AND 
517                         (
518                                 '$graph_bgn 00:00' <= btime AND btime <  '$graph_end 00:00'
519                                         OR
520                                 '$graph_bgn 00:00' <  etime AND etime <= '$graph_end 00:00'
521                         )
522                         ORDER BY btime"
523                         , {Slice=>{}}
524                 );
525
526                 foreach my $bctype ( '\d+_', 'S_' ) {
527                         my $tuner = $bctype eq '\d+_' ? $tuner{terrestrial} : $tuner{satellite};
528                         my @ary_ref = grep { $_->{chtxt} =~ /$bctype/ } @{ $ary_ref };
529                         my @y_drawn = ('') x $tuner;
530                         foreach my $line ( @ary_ref ) {
531                                 @start = $line->{btime} =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2})/;
532                                 @stop  = $line->{etime} =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2})/;
533                                 $start = ( ( $day == $start[2] ? 0 : 24 * 60 ) + $start[3] * 60 + $start[4] ) * 0.5;
534                                 $stop  = ( ( $day == $stop [2] ? 0 : 24 * 60 ) + $stop [3] * 60 + $stop [4] ) * 0.5;
535                                 $start = 0      if ( $start < 0 || $day > $start[2] ); # 月の変わり目はスルー
536                                 $stop  = $width if ( $stop  > $width );
537                                 $begin = $line->{btime};
538                                 $end   = $line->{etime};
539
540                                 my @ary = grep { ( $_->{etime} cmp $line->{btime} ) > 0 and ( $_->{btime} cmp $line->{etime} ) < 0 and $_->{id} != $line->{id} } @ary_ref;
541                                 foreach my $i ( 0..$tuner - 1 ) {
542                                         next if ( ( $y_drawn[$i] cmp $line->{btime} ) > 0 );
543                                         #for ( 'chtxt', 'btime', 'etime' ) {
544                                         #       $f = 0 if ( $line->{$_} ne $ary[$i]->{$_} );
545                                         #}
546                                         $line->{slot} = $i;
547                                         $y_drawn[$i] = $line->{etime};
548                                         last;
549                                 }
550                                 my ( $r, $g, $b ) = ( 0, 0, 0 );
551                                 $r += 255 if ( $line->{opt} =~ /a/ );
552                                 $g += 255 if ( $line->{opt} =~ /H/ );
553                                 $b += 255 if ( $line->{opt} =~ /I/ );
554                                 if ( $r + $g + $b == 255 * 3 ){
555                                         $r = 0;
556                                         $g = 255;
557                                         $b = 255;
558                                 }
559                                 if ( $r + $g + $b == 0 ){
560                                         $r = $g = $b = 128;
561                                 }
562                                 my %escaped = ( '&' => 'amp', '<' => 'lt', '>' => 'gt', '"' => 'quot' );
563                                 sub html_escape{
564                                         my $str = shift or return;
565                                         my $result = '';
566                                         $result .= $escaped{$_} ? '&' . $escaped{$_} . ';' : $_
567                                                 for (split //, $str);
568                                         $result;
569                                 }
570                                 $svg->anchor(
571                                         -href  => "rectool.pl?mode=edit&amp;id=$line->{id}",
572                                         target => '_blank',
573                                         -title => html_escape( $line->{title} ),
574                                 )->rectangle( 
575                                         'x' => 50 + $start, 
576                                         'y' => 30 + ( $bctype eq '\d+_' ? 0 : $tuner{terrestrial} * 20 ) + $line->{slot} * 20, 
577                                         width  => $stop - $start, 
578                                         height => 10, 
579                                         style  => { fill => $category_color{$line->{epgcategory}} || $category_color{'その他'} } );
580                                         #style  => { fill => "rgb($r,$g,$b)" } );
581                         }
582                 }
583                 my $xml = $svg->xmlify;
584                 utf8::encode( $xml );
585                 print $xml;
586                 #warningsToBrowser(true);
587                 exit;
588         }
589         else
590         {
591                 $HTML =~ s/%HTML_TITLE_OPT%/ - Schedule Viewer - Graphical/;
592                 $HTML .= qq {<div style="float: left">\n};
593                 # $base64 = encode_base64( $svg->xmlify );
594                 # $HTML .= qq {<object data="data:image/svg+xml;base64,$base64">\n</object>\n};
595                 $HTML .= qq {予約状況一覧です。T1,T2は地上波、S1,S2はBS/CSを示しています。<br>\n};
596                 $HTML .= qq {SVGが利用可能なブラウザでご覧ください。<br>\n};
597                 $HTML .= qq {色とジャンルの対応\n};
598                 map { 
599                         $HTML .= qq {<span style="background: $_->{color}; top: 10px; left: 250px;">$_->{name}</span>\n};
600                 } values %category;
601                 $HTML .= qq {<br>\n};
602
603                 $ary_ref = $dbh->selectcol_arrayref(
604                         "SELECT DISTINCT DATE( btime ) 
605                         FROM timeline 
606                         WHERE type in $type_user_made 
607                         ORDER BY btime"
608                 );
609                 foreach my $date ( @{ $ary_ref } ) {
610                         my @date = $date =~ /(.{4})-(.{2})-(.{2})/;
611                         my $dn = DateTime->new( year => $date[0], month => $date[1], day => $date[2], locale => 'ja_JP' )->day_name;
612                         #utf8::encode( $dn );
613                         $HTML .= qq {$date[1]/$date[2]($dn)の予約状況<br>\n};
614                         # <img src="">
615                         $HTML .= qq {<object type="image/svg+xml" data="rectool.pl?mode=graph&amp;date=$date" width="820">\n};
616                         $HTML .= qq {SVG Image $date\n</object>\n<br>\n};
617
618                         $date2 = Date::Simple->new( @date )->next->format('%Y-%m-%d');
619                         my $ary_ref = $dbh->selectall_arrayref(
620                                 "SELECT chtxt, title, btime, etime FROM timeline 
621                                 WHERE '$date 00:00' <= btime AND etime <= '$date2 01:00'
622                                 ORDER BY btime"
623                         );
624
625                         foreach my $line ( @{ $ary_ref } ) {
626                                 #$HTML .= qq {$line->[0] $line->[1] $line->[2] $line->[3]<br>\n};
627                         }
628
629                 }
630
631                 goto end;
632         }
633 }
634
635 ################ mode=atom ################
636
637 if ( $mode eq 'atom' ) {
638         my $recording_count = $encoding_count = $jbk_count = 0;
639         my $ary_ref = $dbh->selectall_arrayref(
640                 "SELECT chtxt, title, btime, etime, opt 
641                 FROM timeline 
642                 WHERE type = 'reserve_running' ");
643         foreach my $line ( @{$ary_ref} ) {
644                 my ( $begin, $end, $diff ) = &str2readable( $line->[2], $line->[3] );
645                 $recording_status .= qq {$line->[0] $line->[1] $begin - $end $diff $line->[4]<br />\n};
646                 $recording_count++;
647         }
648         $ary_ref = $dbh->selectall_arrayref(
649                 "SELECT chtxt, title, btime, etime, opt 
650                 FROM timeline 
651                 WHERE type = 'convert_ts_mp4_running' ");
652         foreach my $line ( @{$ary_ref} ) {
653                 my ( $begin, $end, $diff ) = &str2readable( $line->[2], $line->[3] );
654                 $encoding_status .= qq {$line->[0] $line->[1] $begin - $end $diff $line->[4]<br />\n};
655                 $encoding_count++;
656         }
657         $ary_ref = $dbh->selectall_arrayref(
658                 "SELECT id, chtxt, title, btime, etime 
659                 FROM auto_timeline_keyword " );
660         foreach my $line ( @{$ary_ref} ) {
661                 my ( $begin, $end, $diff ) = &str2readable( $line->[3], $line->[4] );
662                 $jbk_status .= qq {$line->[0] $line->[1] $line->[2] $begin - $end $diff<br />\n};
663                 $jbk_count++;
664         }
665
666         my $feed = XML::Atom::Feed->new( Version => 1.0 );
667         $feed->title('Rec10 フィード');
668
669         my $entry = XML::Atom::Entry->new( Version => 1.0 );
670         $entry->title("Rec10 録画状況 ($recording_count)");
671         $entry->id('tag:recording_status');
672         $entry->content($recording_status);
673         $entry->add_link(str_to_link( './rectool.pl?mode=schedule' ) );
674         $feed->add_entry($entry);
675
676         $entry = XML::Atom::Entry->new( Version => 1.0 );
677         $entry->title("Rec10 縁故状況 ($encoding_count)");
678         $entry->id('tag:encoding_status');
679         $entry->content($encoding_status);
680         $entry->add_link(str_to_link( './rectool.pl?mode=schedule' ) );
681         $feed->add_entry($entry);
682
683         $entry = XML::Atom::Entry->new( Version => 1.0 );
684         $entry->title("Rec10 地引状況 ($jbk_count)");
685         $entry->id('tag:jbk_status');
686         $entry->content($jbk_status);
687         $entry->add_link(str_to_link( './rectool.pl?mode=jbk' ) );
688         $feed->add_entry($entry);
689
690         my $xml = $feed->as_xml;
691         print "Content-Type: application/atom+xml\n\n";
692         print $xml;
693         exit;
694
695         sub str_to_link {
696                 my $link = XML::Atom::Link->new( Version => 1.0 );
697                 $link->type('text/html');
698                 $link->rel('alternate');
699                 $link->href(shift);
700                 return $link;
701         }
702 }
703
704 ################ mode=edit ################
705
706 if ( $mode eq 'edit' ) {
707         my $id = $params{ 'id' };
708
709         $HTML =~ s/%HTML_TITLE_OPT%/ - Schedule Editor/;
710         $HTML .= qq {<div style="float: left">\n};
711
712         $script = <<EOM;
713                 <script type="text/javascript" src="http://www.enjoyxstudy.com/javascript/dateformat/dateformat.js">
714                 </script>
715                 <script type="text/javascript">
716                 function setType(value){
717                         var index = document.reserve.type.selectedIndex;
718                         var value = document.reserve.type[index].value;
719                         if ( value == 'search_everyday' ) {
720                                 document.reserve.deltaday.value  = 7;
721                                 document.reserve.deltatime.value = 3;
722                         }
723                         if ( value == 'convert_b25_ts' || value == 'convert_ts_mp4' ){
724                                 var date       = new Date();
725                                 var dateFormat = new DateFormat("yyyy-MM-dd HH:mm:ss");
726                                 var minutes    = date.getMinutes();
727                                 minutes = minutes - minutes % 5 + 10;
728                                 date.setMinutes(minutes, 0, 0);
729                                 document.reserve.begin.value = dateFormat.format(date);
730                                 date.setSeconds( date.getSeconds() + 3600 );
731                                 document.reserve.end.value   = dateFormat.format(date);
732                         }
733                 }
734                 function setSuggest(start, stop){
735                         document.reserve.begin.value = start;
736                         document.reserve.end.value   = stop;
737                 }
738                 function shiftEndTime(value){
739                         var dateFormat = new DateFormat("yyyy-MM-dd HH:mm:ss");
740                         var date = dateFormat.parse(document.reserve.end.value || document.reserve.begin.value);
741                         date.setSeconds( date.getSeconds() + value );
742                         document.reserve.end.value = dateFormat.format(date);
743                 }
744                 </script>
745 EOM
746         $script =~ s/^\t{2}//gm;
747         $HTML =~ s/%SCRIPT%/$script/;
748
749         $HTML .= "スケジュール編集画面です。<br>\n";
750         $HTML .= "実装がとても適当なので、利用には細心の注意を払ってください。<br>\n<br>\n";
751         if ( $id ) {
752                 # 予約の編集
753                 &parse_program();
754                 $button_bgn = $button_end = '';
755         }
756         else {
757                 # 新規予約
758                 $type = 'reserve_flexible';
759                 $counter = -1;
760                 $datetime_now = DateTime->now( time_zone => $tz )->set_second( 0 )->add( minutes => 1)->strftime( '%Y-%m-%d %H:%M:%S' );
761                 $button_bgn = qq{<button type="button" onClick="document.reserve.begin.value='$datetime_now'">現在</button>\n<br>\n};
762                 $button_end = 
763                          qq{<button type="button" onClick="document.reserve.end.value=document.reserve.begin.value">一致</button>}
764                         .qq{<button type="button" onClick="shiftEndTime(300);">+5m</button>}
765                         .qq{<button type="button" onClick="shiftEndTime(1800);">+30m</button>};
766         }
767
768         if ( $params{ 'suggest' } eq 'auto' ) {
769                 my @btime = $begin =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
770                 my @etime = $end   =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
771                 my $btime = DateTime->new(
772                         year => $btime[0], month  => $btime[1], day    => $btime[2],
773                         hour => $btime[3], minute => $btime[4], second => $btime[5], 
774                 );
775                 my $etime = DateTime->new(
776                         year => $etime[0], month  => $etime[1], day    => $etime[2],
777                         hour => $etime[3], minute => $etime[4], second => $etime[5], 
778                 );
779                 my %hash = &sqlgetsuggested( $btime, $etime );
780
781                 $HTML .= qq {可能性のある番組<br>\n};
782                 $HTML .= qq {<table summary="suggesttable" border=1 cellspacing=0>\n<tr>\n};
783                 $HTML .= qq {<th>優先度</th>\n};
784                 $HTML .= qq {<th>タイトル</th>\n};
785                 $HTML .= qq {<th>開始時刻</th>\n};
786                 $HTML .= qq {<th>終了時刻</th>\n};
787                 $HTML .= qq {<th>説明</th>\n};
788                 $HTML .= qq {<th>適用</th>\n};
789                 $HTML .= qq {</tr>\n};
790
791                 foreach my $key (sort keys %hash){
792                         my $val = $hash{$key};
793                         foreach my $val ( @{$val} ) {
794                                 my $style = qq {style="white-space: nowrap"};
795                                 $val->[0] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
796                                 $val->[1] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
797                                 $HTML .= qq {<tr>\n<td>$key</td>\n<td>$val->[2]</td>\n};
798                                 $HTML .= qq {<td $style>$val->[0]</td>\n<td $style>$val->[1]</td>\n<td>$val->[3]</td>\n};
799                                 $HTML .= qq {<td><button onClick="setSuggest('$val->[0]','$val->[1]');">適用</button></td>\n</tr>\n};
800                         }
801                 }
802                 $HTML .= qq {</table>\n<br>\n};
803         }
804
805         my $len = length $id;
806         $HTML .= qq {<form method="get" action="rectool.pl" name="reserve">\n};
807         $HTML .= qq {<input type="hidden" name="mode" value="change">\n};
808         $HTML .= qq {<input type="hidden" name="mode_sub" value="update">\n};
809         $HTML .= qq {<input type="hidden" name="id" value="$id">\n};
810         $HTML .= qq {ID\n<input type="text" name="id" value="$id" size=$len disabled>\n};
811         $HTML .= qq {タイプ\n<select name="type" onChange="setType();">\n};
812         foreach my $key ( keys %type ) {
813                 next if ( $key !~ /^search|^reserve_flexible$|^reserve_fixed$|^convert_b25_ts$|^convert_ts_mp4$|^$type$/ );
814                 $value = $type{$key};
815                 if ( $key eq $type ) {
816                         $HTML .= qq {<option value="$key" selected>$value</option>\n};
817                 }
818                 else {
819                         $HTML .= qq {<option value="$key">$value</option>\n};
820                 }
821         }
822         $HTML .= qq {</select>\n};
823
824         $HTML .= qq {チャンネル\n<select name="chtxt">\n};
825         # 移動縁故など、チャンネルリスト内にchtxtが存在しない場合に備えて
826         $chtxt_0_chname{$chtxt} = $chname || $chtxt if ( !$chtxt_0_chname{$chtxt} );
827         foreach my $key ( sort keys %chtxt_0_chname ) {
828                 if ( $key eq $chtxt || $key eq $chtxt_0 ) {
829                         $HTML .= qq {<option value="$key" selected>$chtxt_0_chname{$key}</option>\n};
830                 }
831                 else {
832                         $HTML .= qq {<option value="$key">$chtxt_0_chname{$key}</option>\n};
833                 }
834         }
835         $HTML .= qq {</select><br>\n};
836         $HTML .= qq {タイトル\n<input type="text" name="title" value="$title" size=64><br>\n};
837         $HTML .= qq {開始時刻\n<input type="text" name="begin" value="$begin" maxlength=19 size=24>\n};
838         $HTML .= $button_bgn;
839         $HTML .= qq {終了時刻\n<input type="text" name="end" value="$end" maxlength=19 size=24>\n};
840         $HTML .= $button_end . "<br>\n";
841         $HTML .= qq {隔日周期\n<input type="text" name="deltaday" value="$deltaday" maxlength=2  size=2 >\n};
842         $HTML .= qq {時刻誤差\n<input type="text" name="deltatime" value="$deltatime" maxlength=2  size=2 >\n};
843         $HTML .= qq {オプション\n<input type="text" name="opt" value="$opt">\n};
844         $HTML .= qq {回数\n<input type="text" name="counter" value="$counter" size=2 >\n};
845         $HTML .= qq {<input type="submit" name="update" value="更新">\n</form>\n};
846 }
847
848 ################ mode=change ################
849
850 if ( $mode eq 'change' ) {
851         @id     = $q->param( 'id' );
852
853         $HTML =~ s/%HTML_TITLE_OPT%/ - Change/;
854         $HTML .= qq {<div style="float: left">\n};
855
856         if ( $params{ 'delete' } )
857         {
858                 if ( @id ) {
859                         foreach my $id ( @id ) {
860                                 $dbh->do( "DELETE FROM timeline WHERE id = '$id'" );
861                         }
862                         $HTML .= "削除しました。<br>\n5秒後に予約確認画面に移動します。<br>\n";
863                         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl?mode=schedule">|;
864                         goto end;
865                 }
866         }
867         if ( $params{ 'update' } )
868         {
869                 $type      = $params{ 'type' };
870                 $chtxt     = $params{ 'chtxt' };
871                 $title     = $params{ 'title' };
872                 $begin     = $params{ 'begin' };
873                 $end       = $params{ 'end' };
874                 $deltaday  = $params{ 'deltaday' };
875                 $deltatime = $params{ 'deltatime' };
876                 $opt       = $params{ 'opt' };
877                 $counter   = $params{ 'counter' };
878                 $id        = $id[0];
879                 if ( $id ) {
880                         $dbh->do( 
881                                 "UPDATE timeline SET type = '$type', chtxt = '$chtxt', title = '$title', 
882                                 btime = '$begin', etime = '$end', 
883                                 deltaday = '$deltaday', deltatime = '$deltatime', opt = '$opt', counter = '$counter' 
884                                 WHERE id = '$id'" 
885                         );
886                 }
887                 else {
888                         $dbh->do( 
889                                 "INSERT INTO timeline ( type, chtxt, title, btime, etime, deltaday, deltatime, opt, counter ) 
890                                 VALUES ( '$type', '$chtxt', '$title', '$begin', '$end', '$deltaday', '$deltatime', '$opt', '$counter' )" 
891                         );
892                 }
893                 $HTML .= "更新しました。<br>\n5秒後に予約確認画面に移動します。<br>\n";
894                 $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl?mode=schedule">|;
895                 goto end;
896         }
897         if ( $mode_sub eq 'proc' ) {
898                 my $type  = $params{ 'type' };
899                 my $chtxt = $params{ 'chtxt' } || 'nhk-k';
900                 my $title = $params{ 'title' };
901                 my @opt   = $q->param( 'opt' );
902                 my $opt   = join '', @opt;
903
904                 my $datetime_now = DateTime->now( time_zone => $tz )->set_second( 0 )->add( minutes => 10);
905                 my $sql_type = $type_suggest{$type};
906                 my $begin = $datetime_now->strftime( '%Y-%m-%d %H:%M:%S' );
907                 $datetime_now = $datetime_now->add( minutes => 60 );
908                 my $end = $datetime_now->strftime( '%Y-%m-%d %H:%M:%S' );
909
910                 # 録画後/解読後移動ならば、解読予約にオーバーライドする
911                 $sql_type = 'convert_b25_ts' if ( $opt =~ /R|D/ );
912
913                 $dbh->do( 
914                         "INSERT INTO timeline ( type, chtxt, title, btime, etime, opt ) 
915                         VALUES ( '$sql_type', '$chtxt', '$title', '$begin', '$end', '$opt' )"
916                 );
917
918                 goto end;
919         }
920         if ( $mode_sub eq 'move' ) {
921                 my $mode_sub2  = $params{ 'mode_sub2' };
922                 my $title      = $params{ 'title' };
923                 my $response;
924
925                 $ENV{'LANG'} = 'ja_JP.UTF-8';
926                 if ( $mode_sub2 eq 'predict' ) {
927                         $HTML .= "移動後のシミュレーション結果です。\n<br>";
928                         eval '$response = `python26 ' . $cfg->param( 'path.rec10' ) . "/classify.py -s '$title'`";
929                 }
930                 elsif ( $mode_sub2 eq 'exec' ) {
931                         eval '$response = `python26 ' . $cfg->param( 'path.rec10' ) . "/classify.py -e '$title'`";
932                 }
933                 utf8::decode( $response );
934                 $HTML .= $response;
935
936                 goto end;
937         }
938         if ( $mode_sub eq 'setting' ) {
939                 my $jbk     = $params{ 'jbk' }     || '0';
940                 my $bayes   = $params{ 'bayes' }   || '0';
941                 my $del_tmp = $params{ 'del_tmp' } || '0';
942                 my $opt     = $params{ 'opt' }     || '';
943                 my $user    = $params{ 'user' }    || '';
944                 my $pass    = $params{ 'pass' }    || '';
945
946                 $dbh->do( 
947                         "UPDATE in_settings SET auto_jbk = '$jbk', auto_bayes = '$bayes', 
948                         auto_del_tmp = '$del_tmp', auto_opt = '$opt'"
949                 );
950
951                 goto end;
952         }
953         if ( $mode_sub eq 'fixstatus' ) {
954                 my $key = $params{ 'terec'  } ? 'terec'  : $params{ 'bscsrec' } ? 'bscsrec' : 
955                           $params{ 'b252ts' } ? 'b252ts' : $params{ 'ts2avi'  } ? 'ts2avi'  : '';
956
957                 $dbh->do( 
958                         "UPDATE in_status SET $key = 0"
959                 );
960
961                 goto end;
962         }
963
964 }
965
966 ################ mode=confirm ################
967
968 if ( $mode eq 'confirm' ) {
969         if ( $mode_sub eq 'reserve' ) {
970                 $HTML =~ s/%HTML_TITLE_OPT%/ - Reserver/;
971                 $HTML .= qq {<div style="float: left">\n};
972                 &parse_program();
973
974                 my $duration = ( str2datetime( $end ) - str2datetime( $begin ) )->delta_minutes;
975                 $HTML .= "番組名:$title<br>\nチャンネル:$chname<br>\n放送継続時間:$duration 分<br>\n番組内容:$desc<br>\nジャンル:$category<br>\n";
976                 if ( $longdesc ) {
977                         $longdesc =~ s/\\n/<br>\n/gs;
978                         $HTML .= "番組内容(長):$longdesc<br>\n";
979                 }
980                 my $error = &check_error();
981                 if ( $error )
982                 {
983                         # エラー
984
985                         $ary_ref = $dbh->selectall_arrayref(
986                                 "SELECT start, stop FROM epg_timeline WHERE channel = '$chtxt' AND title = '$title' "
987                         );
988                         if ( $error != 1 ) {
989                                 $HTML .= "同一の番組の他の放送予定です。<br>\n";
990                                 foreach my $line ( @{$ary_ref} ) {
991                                         $begin = $line->[0];
992                                         $end   = $line->[1];
993                                         $begin =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
994                                         $end   =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
995                                         $overlap = &get_overlap() >= 2 ? '不可能' : 
996                                                 qq {<a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$chtxt&amp;start=$line->[0]&amp;stop=$line->[1]">可能</a>};
997                                         $HTML .= "開始:$begin\n終了:$end\n録画は$overlap<br>\n";
998                                 }
999                         }
1000                 }
1001                 else {
1002                         $HTML .= "録画予約の詳細設定を行ってください。<br>\n";
1003                         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1004                         $HTML .= qq {<input type="hidden" name="mode"  value="reserve">\n};
1005                         $HTML .= qq {<input type="hidden" name="chtxt" value="$chtxt">\n};
1006                         $HTML .= qq {<input type="hidden" name="start" value="$start">\n};
1007                         $HTML .= qq {<input type="hidden" name="stop"  value="$stop">\n};
1008                         $HTML .= qq {<input type="hidden" name="title" value="$title">\n} if ( $params{ 'title' } );
1009                         &draw_form_opt( 'reserve' );
1010                         $HTML .= qq {<input type="submit" value="予約">\n</form>\n};
1011                 }
1012                 goto end;
1013         }
1014         # End of $mode_sub eq 'reserve';
1015
1016         if ( $mode_sub eq 'proc' ) {
1017                 my    $type  = $params{ 'type' };
1018                 local $chtxt = $params{ 'chtxt' };
1019                 my    $title = $params{ 'title' };
1020                 local $opt   = $params{ 'opt' };
1021                 utf8::decode( $title );
1022
1023                 $HTML .= "詳細設定を行ってください。<br>\n";
1024                 $HTML .= "タイトル:$title\n<br>\n";
1025
1026                 $HTML .= qq {<form method="get" action="rectool.pl">\n};
1027                 $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1028                 $HTML .= qq {<input type="hidden" name="mode_sub" value="proc">\n};
1029                 $HTML .= qq {<input type="hidden" name="type"     value="$type">\n};
1030                 $HTML .= qq {<input type="hidden" name="title"    value="$title">\n};
1031                 &draw_form_channel( 'nonone' );
1032                 &draw_form_opt();
1033                 $HTML .= qq {<input type="submit" value="予約">\n</form>\n};
1034                 goto end;
1035         }
1036 }
1037
1038 ################ mode=reserve ################
1039
1040 if ( $mode eq 'reserve' ) {
1041         $HTML .= qq {<div style="float: left">\n};
1042         &parse_program();
1043         $title = $params{ 'title' } if ( !$title );
1044         @opt = $q->param( 'opt' );
1045         $opt = join '', @opt;
1046         my ( $deltaday, $deltatime );
1047
1048         if ( $params{'every'} eq '1' ) {
1049                 $type = 'search_everyday';
1050                 ( $changed_t ) = $title =~ /(.*)#/;
1051                 $title = $changed_t if ( $changed_t );
1052                 ( $changed_t ) = $title =~ /(.*)第/;
1053                 $title = $changed_t if ( $changed_t );
1054                 ( $changed_t ) = $title =~ /(.*)▽/;
1055                 $title = $changed_t if ( $changed_t );
1056                 $title =~ s/「.*」//;
1057                 $title =~ s/<.*>//;
1058                 $title =~ s/(.*)//;
1059                 $title =~ s/\[新\]//;
1060                 $title =~ s/無料≫//;
1061                 $title =~ s/\s*$//;
1062                 $deltaday  = 7;
1063                 $deltatime = 3;
1064         }
1065         else {
1066                 $type = 'reserve_flexible';
1067         }
1068         $chtxt = $chtxt_0 if ( $chtxt_0 );
1069         if ( !&check_error ) {
1070                 $dbh->do( 
1071                         "INSERT INTO timeline ( type, chtxt, title, btime, etime, opt, deltaday, deltatime ) 
1072                         VALUES ( '$type', '$chtxt', '$title', '$begin', '$end', '$opt', '$deltaday', '$deltatime' )" 
1073                 );
1074         }
1075         $HTML .= "録画予約を実行しました。<br>\n5秒後にトップへ移動します。<br>\n";
1076         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl">|;
1077         goto end;
1078 }
1079
1080 ################ mode=program ################
1081
1082 if ( $mode eq 'program' ) {
1083         &draw_form();
1084
1085         $HTML =~ s/%HTML_TITLE_OPT%/ - Program Viewer/;
1086         $unix = DateTime->now( time_zone => $tz )->strftime( '%Y%m%d%H%M%S' );
1087         $sql = 
1088                 "SELECT channel, epg_ch.chname, start, stop, title, category 
1089                 FROM epg_timeline 
1090                 INNER JOIN epg_ch ON epg_timeline.channel = epg_ch.chtxt 
1091                 WHERE $unix <= stop %CH% %DATE% %CATEGORY% %KEY% ORDER BY start";
1092
1093         if ( $chtxt ) {
1094                 my $ch;
1095                 if ( $chtxt =~ /^\d+(_0)?$/ ) {
1096                         # teはxx_yyy形式であるため
1097                         $chtxt =~ s/_0//;
1098                         $ch = "AND channel LIKE '$chtxt\_%'";
1099                 }
1100                 else {
1101                         $ch = "AND channel = '$chtxt'";
1102                 }
1103                 $sql =~ s/%CH%/$ch/;
1104         }
1105         if ( $date_sel ) {
1106                 $date_1 = $date_sel . '000000';
1107                 $date_2 = Date::Simple->new( $date_sel =~ /(.{4})(.{2})(.{2})/ )->next->format('%Y%m%d') . '000000';
1108                 my $date = "AND '$date_1' <= stop AND start <= '$date_2'";
1109                 $sql =~ s/%DATE%/$date/;
1110         }
1111         if ( $category_sel ) {
1112                 # 一時的
1113                 #       $category_tmp = $category{$category_sel} . $category_sel;
1114                 my $category = "AND category = '$category{$category_sel}->{name}'";
1115                 $sql =~ s/%CATEGORY%/$category/;
1116         }
1117         if ( $key ) {
1118                 my $key = "AND TITLE LIKE '%$key%'";
1119                 $sql =~ s/%KEY%/$key/;
1120         }
1121         $sql =~ s/%CH%//;
1122         $sql =~ s/%DATE%//;
1123         $sql =~ s/%KEY%//;
1124         $sql =~ s/%CATEGORY%//;
1125
1126         $ary_ref = $dbh->selectall_arrayref( $sql );
1127         foreach my $prg ( @{ $ary_ref } ) {
1128                 my @date = $prg->[2] =~ /(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/;
1129
1130                 $date = $date[2];
1131                 if ( $date != $prev ) {
1132                         my $date = DateTime->new(
1133                                 year => $date[0], month  => $date[1], day    => $date[2], 
1134                                 locale => 'ja_JP'
1135                         );
1136
1137                         my $dn = $date->day_name;
1138                         #utf8::encode( $dn );
1139                         $HTML .= qq {--------$date[1]/$date[2]($dn)--------<br>\n};
1140                 }
1141                 $HTML .= qq {$date[1]/$date[2] $date[3]:$date[4] };
1142                 $HTML .= qq {$prg->[1] } if ( !$chtxt );
1143                 $HTML .= qq {<a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$prg->[0]&amp;start=$prg->[2]&amp;stop=$prg->[3]">$prg->[4]</a><br>\n};
1144                 $prev = $date;
1145         }
1146 }
1147
1148 ################ mode=list ################
1149
1150 if ( $mode eq 'list' ) {
1151         $HTML =~ s/%HTML_TITLE_OPT%/ - List/;
1152         $HTML .= qq {<div>\n};
1153
1154         $script = <<EOM;
1155                 <link rel="stylesheet" type="text/css" href="http://cdn.sencha.io/ext-3.4.0/resources/css/ext-all.css" />
1156                 <script type="text/javascript" src="http://cdn.sencha.io/ext-3.4.0/adapter/ext/ext-base.js"></script>
1157                 <script type="text/javascript" src="http://cdn.sencha.io/ext-3.4.0/ext-all.js"></script>
1158                 <script>
1159                 Ext.onReady(function() {
1160                   Ext.select('.ffmpeg').on('contextmenu', function(eventObj, elRef) {
1161                     var win = new Ext.Window({
1162                       title: 'FFmpeg info', 
1163                       //autoShow: true, 
1164                       autoLoad: "rectool.pl?mode=list&mode_sub=ffmpeg&path=" + Ext.Element(elRef).getAttribute("path") + 
1165                         "&pathtype=" + Ext.Element(elRef).getAttribute("pathtype"), 
1166                     });
1167                     win.show();
1168                   }, null, {stopEvent:true});
1169 /*
1170                   Ext.select( '.ffmpeg' , true ).each(function (elem) {
1171                     // elem.dom.textContent
1172                     var tooltip = new Ext.ToolTip({
1173                       target: elem,
1174                       width: 400,
1175                       autoLoad: {url: "rectool.pl?mode=list&mode_sub=ffmpeg&path=" + elem.getAttribute("path")},
1176                       autoHide: false,
1177                       closable: true,
1178                       draggable: true, 
1179                       title: 'FFmpeg info',
1180                     });
1181                   });
1182 */
1183                 });
1184                 </script>
1185 EOM
1186         $script =~ s/^\t{2}//gm;
1187         $HTML =~ s/%SCRIPT%/$script/;
1188
1189         my $recording = $cfg->param( 'path.recpath' );
1190         my $movedest  = $cfg->param( 'path.ts_movepath' );
1191         my $recorded  = $cfg->param( 'path.recorded' );
1192
1193         if ( $mode_sub eq 'log' ) {
1194                 my $title = $params{ 'title' };
1195                 my $log = read_file( "$recording/$title.log" ) if ( -e "$recording/$title.log" );
1196                 utf8::decode( $log );
1197                 $HTML .= '<pre>'.$log."</pre>\n";
1198                 goto end;
1199         }
1200         if ( $mode_sub eq 'logzip' ) {
1201                 my $title = $params{ 'title' };
1202                 my $zip = Archive::Zip->new();
1203                 my $logzip;
1204                 die 'read error' unless $zip->read("$recording/$title.log.zip") == AZ_OK;
1205                 my @members = $zip->members();
1206                 foreach (@members) {
1207                         $logzip .= $_->fileName() . "\n";
1208                         my @lines = split /\n|\r/, $zip->contents( $_->fileName() );
1209                         my %count;
1210                         @lines = grep {!$count{$_}++} @lines;
1211                         $logzip .= join "\n", @lines;
1212                         $logzip .= "\n<hr>\n";
1213                 }
1214
1215                 utf8::decode( $logzip );
1216                 $HTML .= '<pre>'.$logzip."</pre>\n";
1217                 goto end;
1218         }
1219         if ( $mode_sub eq 'ffmpeg' ) {
1220                 my $path = $params{ 'path' };
1221                 my $pathtype = $params{ 'pathtype' };
1222                 my $pathdir;
1223                 $pathdir = $recording if ( $pathtype eq 'ing');
1224                 $pathdir = $recorded  if ( $pathtype eq 'ed' );
1225                 $pathdir = $movedest  if ( $pathtype eq 'dst');
1226                 # mediainfo (not working)
1227                 # ffprobe
1228                 # FIXME: sanitize
1229                 my $ffmpeg = `ffmpeg -i "$pathdir/$path" 2>&1` if ( -f "$pathdir/$path" );
1230                 utf8::decode($ffmpeg);
1231                 $ffmpeg = join "<br>\n", grep /Duration|Stream/, split /\n/, $ffmpeg;
1232                 $HTML = $ffmpeg;
1233                 goto end;
1234         }
1235         if ( !$mode_sub ) {
1236                 $HTML .= qq {<a href="rectool.pl?mode=list&amp;mode_sub=new">録画中のみ</a>\n};
1237                 $HTML .= qq {<a href="rectool.pl?mode=list&amp;mode_sub=old">録画後のみ</a>\n<br>\n};
1238         }
1239         if ( !$mode_sub || $mode_sub eq 'new' ) {
1240                 $HTML .= "録画中のファイル一覧<br>\n";
1241                 &list( $recording );
1242         }
1243         if ( !$mode_sub ) {
1244                 $HTML .= "<br>\n";
1245         }
1246         if ( !$mode_sub || $mode_sub eq 'old' ) {
1247                 $HTML .= "録画後のファイル一覧<br>\n";
1248                 &simple_list( $movedest );
1249                 &simple_list( $recorded );
1250         }
1251
1252         sub list {
1253                 local $path = shift;
1254                 local %list = ();
1255                 my @exp = ( 'log', 'log.zip', 'ts.b25', 'ts.tsmix', 'ts', 'ts.log', 
1256                         'aac', 'srt', 'm2v', 'wav', '264', 'mp4', 'mkv' );
1257                 for ( 0..$#exp ) {
1258                         $exp{$exp[$_]} = $_;
1259                 }
1260                 my $exp_count = scalar keys %exp;
1261
1262                 &get_file_list_wrapper( $path, \&wanted );
1263
1264                 my $help;
1265                 foreach my $name ( sort { $exp{$a} <=> $exp{$b} } keys %exp ) {
1266                         $help .= $exp{$name} + 1 . " = $name / ";
1267                 }
1268                 $HTML .= $help;
1269                 $help  = qq {<tr style="background-color: #87CEEB"><td>$help\n</td>\n};
1270                 $help .= qq {<td>$_</td>\n} for ( 1..$exp_count );
1271
1272                 $HTML .= qq {<br>\n○ = 完了 / ● = 書き込み中 / ◆ = ファイルサイズ異常<br>\n};
1273                 $HTML .= qq {<table summary="listtable" border=1 cellspacing=0>\n<tr>\n};
1274                 $HTML .= qq {<th>タイトル</th>\n};
1275                 $HTML .= qq {<th>$_</th>\n} for ( 1..$exp_count );
1276                 $HTML .= qq {</tr>\n};
1277
1278                 my $count = 0;
1279
1280                 foreach my $title ( sort keys %list ) {
1281                         my $value = $list{$title};
1282                         my @flag = ( 0 ) x ( $exp_count );
1283                         $HTML .= qq {<tr>\n<td width="600" style="width: 600px; white-space: normal">$title</td>\n};
1284                         foreach my $exp ( keys %{$value} ) {
1285                                 if ( $exp eq 'log' ) {
1286                                         # ログへのリンクを追加
1287                                         my $title = $q->escape( $title );
1288                                         my $extra = qq {<td><a href="rectool.pl?mode=list&amp;mode_sub=log&amp;title=$title">○</a></td>\n};
1289
1290                                         $value->{$exp}->{extra} = $extra;
1291                                 }
1292                                 elsif ( $exp eq 'log.zip' ) {
1293                                         # ZIPログへのリンクを追加
1294                                         my $title = $q->escape( $title );
1295                                         my $extra = qq {<td><a href="rectool.pl?mode=list&amp;mode_sub=logzip&amp;title=$title">○</a></td>\n};
1296
1297                                         $value->{$exp}->{extra} = $extra;
1298                                 }
1299                                 elsif ( $exp eq 'mp4' ) {
1300                                         # ○などの代わりにサイズを表示
1301                                         # $value->{$exp}->{style} = $value->{$exp}->{size};
1302                                         my $size = $value->{$exp}->{size};
1303                                         my $extra = qq {<td><span class="ffmpeg" path="$title.mp4" pathtype="ing">$size</span></td>\n};
1304                                         $value->{$exp}->{extra} = $extra;
1305                                 }
1306                                 elsif ( $exp eq 'mkv' ) {
1307                                         # サムネイルへのリンクを追加
1308                                         my $title = $q->escape( $title );
1309
1310                                         my $extra = qq {<td><a title="$value->{$exp}->{size}" href="rectool.pl?mode=thumb&amp;title=$title">■</a></td>\n};
1311                                         $value->{$exp}->{extra} = $extra;
1312                                 }
1313                                 $flag[$exp{$exp}] = $value->{$exp};
1314                         }
1315                         foreach ( @flag ) {
1316                                 my $size  = $_->{size};
1317                                 my $style = $_->{style};
1318                                 my $span  =  $size ? qq {<span title="$size">$style</span>} : '<br>';
1319                                 $HTML .= $_->{extra} || qq {<td>$span</td>\n};
1320                         }
1321                         $HTML .= qq {</tr>\n};
1322                         $HTML .= $help unless ( ++$count % 20 );
1323                 }
1324                 $HTML .= qq {</table>\n};
1325
1326                 sub wanted {
1327                         my $rel = shift;
1328                         my $abs = shift;
1329
1330                         return if ( $rel =~ /Thumbs\.db/ );
1331                         return if ( $rel =~ /\.idx/ );
1332
1333                         $rel =~ s/\.temp$//;
1334                         my $regexp = join '|', keys %exp;
1335                         my ( $title, $exp ) = $rel =~ /(.*?)\.($regexp)$/;
1336                         my ( $size, $style ) = &get_size( $abs );
1337                         $rel =~ s/\.temp$//;
1338                         if ( !$title ) {
1339                                 $title = '_error_exp_'.$rel;
1340                                 $exp   = 'log';
1341                         }
1342                         if ( $title !~ /[^0-9A-F]+/ ) {
1343                                 my $tmp = pack( 'H*', $title );
1344                                 if ( !$tmp ) {
1345                                         $title = '_error_b16_'.$rel;
1346                                         $exp   = 'log';
1347                                 }
1348                                 else {
1349                                         $title = 'Base16_'.$tmp;
1350                                 }
1351                         }
1352                         $list{$title}->{$exp} = { 'style' => $style, 'size' => $size };
1353                 }
1354         }
1355
1356         sub simple_list {
1357                 local $path = shift;
1358                 local @list = ();
1359
1360                 &get_file_list_wrapper( $path, \&simple_wanted );
1361
1362                 @list = nsort @list;
1363
1364                 foreach ( @list ) {
1365                         $HTML .= "$_<br>\n";
1366                 }
1367
1368                 sub simple_wanted {
1369                         my $rel = shift;
1370                         my $abs = shift;
1371
1372                         my ( $size ) = &get_size( $abs );
1373                         $rel = qq {<span class="ffmpeg" path="$rel" pathtype="ed">$rel</span>};
1374                         push @list, $rel ."\t\t". $size;
1375                 }
1376         }
1377
1378         sub get_size {
1379                 my $file = shift;
1380                 my ( $size, $last ) = (stat( $file ))[7,9];
1381                 my @unim = ("B","KiB","MiB","GiB","TiB","PiB");
1382                 my $count = 0;
1383
1384                 while($size >= 1024 ){
1385                         $count++;
1386                         $size = $size / 1024;
1387                 }
1388                 $size *= 100;
1389                 $size  = int( $size );
1390                 $size /= 100;
1391                 if ( time - $last < 10 ) {
1392                         $style = '●';
1393                 }
1394                 elsif ( $size == 0 ) {
1395                         $style = '◆';
1396                 }
1397                 else {
1398                         $style = '○';
1399                 }
1400                 return ( "$size $unim[$count]", $style );
1401         }
1402 }
1403
1404 ################ mode=thumb ################
1405
1406 if ( $mode eq 'thumb' ) {
1407         my $title = $params{ 'title' };
1408         my $pos  = $params{ 'pos' };
1409         my $recording = $cfg->param( 'path.recpath' );
1410
1411         print "Content-Type: image/jpeg\n\n";
1412         exec "ffmpeg -ss 300 -i '$recording/$title.mkv' -f image2 -pix_fmt jpg -vframes 1 -s 320x240 -";
1413         exit;
1414 }
1415
1416 ################ mode=check ################
1417
1418 if ( $mode eq 'check' ) {
1419 }
1420
1421 ################ mode=bravia ################
1422
1423 if ( $mode eq 'bravia' ) {
1424         $HTML =~ s/%HTML_TITLE_OPT%/ - Bravia/;
1425         $HTML .= qq {<div>\n};
1426         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1427         $HTML .= qq {<div>\n};
1428         $HTML .= qq {<table summary="bayestable" border=1 cellspacing=0>\n<tr>\n};
1429         $HTML .= qq {<th>ID</th>\n};
1430         $HTML .= qq {<th>チャンネル</th>\n};
1431         $HTML .= qq {<th>タイトル</th>\n};
1432         $HTML .= qq {<th><a href="rectool.pl?mode=bravia">開始時刻</a></th>\n};
1433         $HTML .= qq {<th>終了時刻</th>\n};
1434         $HTML .= qq {<th>録画時間</th>\n};
1435         $HTML .= qq {<th><a href="rectool.pl?mode=bravia&amp;order=point">ポイント</a></th>\n};
1436         $HTML .= qq {<th>予約</th>\n};
1437         $HTML .= qq {</tr>\n};
1438         my $order = $params{ 'order' };
1439         if ( $order ne 'point' ) {
1440                 $order = 'btime';
1441         }
1442         else {
1443                 $order = 'point DESC';
1444         }
1445         my $ary_ref = $dbh->selectall_arrayref(
1446                 "SELECT id, chtxt, title, btime, etime, point 
1447                 FROM auto_timeline_bayes 
1448                 ORDER BY $order" );
1449
1450         foreach my $line ( @{ $ary_ref } ) {
1451                 my ( $begin, $end, $diff ) = &str2readable( $line->[3], $line->[4] );
1452
1453                 $line->[1] = $chtxt_chname{$line->[1]} || $line->[1];
1454                 $HTML .= qq {<tr align="center">\n};
1455                 $HTML .= qq {<td>$line->[0]</td>\n};
1456                 $HTML .= qq {<td>$line->[1]</td>\n};
1457                 $HTML .= qq {<td>$line->[2]</td>\n};
1458                 $HTML .= qq {<td>$begin</td>\n<td>$end</td>\n<td>$diff</td>\n};
1459                 $HTML .= qq {<td>$line->[5]</td>\n};
1460                 $HTML .= qq {<td><a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;bayesid=$line->[0]">予約</a></td>\n};
1461                 $HTML .= qq {</tr>\n};
1462         }
1463         $HTML .= qq {</table>\n};
1464         $HTML .= qq {</div>\n};
1465         $HTML .= qq {</form>\n};
1466
1467 }
1468
1469 ################ mode=proc ################
1470
1471 if ( $mode eq 'proc' ) {
1472         $HTML =~ s/%HTML_TITLE_OPT%/ - Proposal/;
1473         $HTML .= qq {<div>\n};
1474         $HTML .= qq {<table summary="proctable" border=1 cellspacing=0>\n<tr>\n};
1475         $HTML .= qq {<th>タイプ</th>\n};
1476         $HTML .= qq {<th>タイトル</th>\n};
1477         $HTML .= qq {<th>予約</th>\n};
1478         $HTML .= qq {</tr>\n};
1479
1480         my $ary_ref = $dbh->selectall_arrayref(
1481                 "SELECT type, chtxt, title 
1482                 FROM auto_proc 
1483                 ORDER BY title " );
1484
1485         foreach my $line ( @{ $ary_ref } ) {
1486                 my $url;
1487                 $line->[3] = $q->escape( $line->[2] );
1488                 my $opt = $dbh->selectrow_array( 
1489                         "SELECT opt FROM in_timeline_log 
1490                         WHERE title = '$line->[2]' "
1491                 );
1492
1493                 if ( $line->[0] eq 'auto_suggest_dec' ) {
1494                         unless ( $dbh->selectrow_array( 
1495                                 "SELECT 1 FROM timeline 
1496                                 WHERE ( type = 'convert_b25_ts' OR type = 'convert_b25_ts_running' )
1497                                 AND title = '$line->[2]' "
1498                         ) ) {
1499                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]&amp;opt=$opt};
1500                         }
1501                 }
1502                 elsif ( $line->[0] eq 'auto_suggest_enc' ) {
1503                         unless ( $dbh->selectrow_array( 
1504                                 "SELECT 1 FROM timeline 
1505                                 WHERE ( type = 'convert_ts_mp4' OR type = 'convert_ts_mp4_running' ) 
1506                                 AND title = '$line->[2]' "
1507                         ) ) {
1508                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]&amp;opt=$opt};
1509                         }
1510                 }
1511                 else {
1512                         unless ( $dbh->selectrow_array( 
1513                                 "SELECT 1 FROM timeline 
1514                                 WHERE ( type LIKE 'convert_avi%' OR type = 'convert_mkv' ) 
1515                                 AND title = '$line->[2]' "
1516                         ) ) {
1517                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]};
1518                         }
1519                 }
1520                 if ( $url ) { 
1521                         $href = qq {<a href="$url">予約</a>};
1522                 }
1523                 else {
1524                         $href = q {予約済};
1525                 }
1526
1527                 my $color = $color{$type_suggest{$line->[0]}} ? $color{$type_suggest{$line->[0]}} : '';
1528                 $line->[0] = $type{$line->[0]} ? $type{$line->[0]} : $line->[0];
1529                 $line->[0] = qq {<span style="color: $color">$line->[0]</span>} if ( $color );
1530                 $HTML .= qq {<tr align="center">\n};
1531                 $HTML .= qq {<td>$line->[0]</td>\n};
1532                 $HTML .= qq {<td align="left">$line->[2]</td>\n};
1533                 $HTML .= qq {<td>$href</td>\n};
1534                 $HTML .= qq {</tr>\n};
1535         }
1536
1537         $HTML .= qq {</table>\n};
1538 }
1539
1540 ################ mode=jbk ################
1541
1542 if ( $mode eq 'jbk' ) {
1543         $HTML =~ s/%HTML_TITLE_OPT%/ - JBK/;
1544         $HTML .= qq {<div>\n};
1545
1546         if ( $mode_sub eq 'add' ) {
1547                 my $keyword = $params{ 'keyword' };
1548                 utf8::decode( $keyword );
1549                 $HTML .= "キーワード「$keyword」を追加しました。<br>\n";
1550                 $dbh->do( 
1551                         "INSERT INTO in_auto_jbk_key ( keyword ) 
1552                         VALUES ( '$keyword' )" 
1553                 );
1554         }
1555         elsif ( $mode_sub eq 'del' ) {
1556                 my $id = $params{ 'id' };
1557                 my $keyword = $dbh->selectrow_array( 
1558                         "SELECT keyword FROM in_auto_jbk_key 
1559                         WHERE id = '$id' " );
1560                 $HTML .= "キーワード「$keyword」を削除しました。<br>\n";
1561                 $dbh->do( 
1562                         "DELETE FROM in_auto_jbk_key WHERE id = '$id'" 
1563                 );
1564         }
1565         elsif ( $mode_sub eq 'on' ) {
1566                 my $id = $params{ 'id' };
1567                 $HTML .= "キーワード「$keyword」を自動録画対象にしました。<br>\n";
1568                 $dbh->do( 
1569                         "UPDATE in_auto_jbk_key SET auto = 1 WHERE id = '$id'" 
1570                 );
1571         }
1572         elsif ( $mode_sub eq 'off' ) {
1573                 my $id = $params{ 'id' };
1574                 $HTML .= "キーワード「$keyword」を自動録画対象から外しました。<br>\n";
1575                 $dbh->do( 
1576                         "UPDATE in_auto_jbk_key SET auto = 0 WHERE id = '$id'" 
1577                 );
1578         }
1579
1580         $HTML .= qq {<table summary="jbktable" border=1 cellspacing=0>\n<tr>\n};
1581         $HTML .= qq {<th>ID</th>\n};
1582         $HTML .= qq {<th>キーワード</th>\n};
1583         $HTML .= qq {<th>自動録画</th>\n};
1584         $HTML .= qq {<th>切り替え</th>\n};
1585         $HTML .= qq {<th>録画オプション</th>\n};
1586         $HTML .= qq {<th>削除</th>\n};
1587         $HTML .= qq {</tr>\n};
1588
1589         my $ary_ref = $dbh->selectall_arrayref(
1590                 "SELECT id, keyword, auto, opt 
1591                 FROM in_auto_jbk_key
1592                 ORDER BY id " );
1593
1594         foreach my $line ( @{ $ary_ref } ) {
1595                 my $delurl = "rectool.pl?mode=jbk&amp;mode_sub=del&amp;id=$line->[0]";
1596                 my $auto = $line->[2] ? 'on' : 'off';
1597                 my $oppo = $line->[2] ? 'off' : 'on';
1598                 my $oppourl = "rectool.pl?mode=jbk&amp;mode_sub=$oppo&amp;id=$line->[0]";
1599                 $oppo .= "にする";
1600
1601                 $HTML .= qq {<tr align="center">\n};
1602                 $HTML .= qq {<td>$line->[0]</td>\n};
1603                 $HTML .= qq {<td>$line->[1]</td>\n};
1604                 $HTML .= qq {<td>$auto</td>\n};
1605                 $HTML .= qq {<td><a href="$oppourl">$oppo</a></td>\n};
1606                 $HTML .= qq {<td>$line->[3]</a></td>\n};
1607                 $HTML .= qq {<td><a href="$delurl">削除</a></td>\n};
1608                 $HTML .= qq {</tr>\n};
1609         }
1610
1611         $HTML .= qq {</table>\n};
1612
1613         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1614         $HTML .= qq {<div>\n};
1615         $HTML .= qq {<input type="hidden" name="mode" value="jbk">\n};
1616         $HTML .= qq {<input type="hidden" name="mode_sub" value="add">\n};
1617         $HTML .= qq {<input name="keyword" type="text">\n};
1618         $HTML .= qq {<input type="submit" value="追加">\n</div>\n</form>\n<br>\n};
1619
1620         $HTML .= qq {<table summary="jbkrestable" border=1 cellspacing=0>\n<tr>\n};
1621         $HTML .= qq {<th>ID</th>\n};
1622         $HTML .= qq {<th>チャンネル</th>\n};
1623         $HTML .= qq {<th>タイトル</th>\n};
1624         $HTML .= qq {<th>開始時刻</th>\n};
1625         $HTML .= qq {<th>終了時刻</th>\n};
1626         $HTML .= qq {<th>録画時間</th>\n};
1627         $HTML .= qq {<th>予約</th>\n};
1628         $HTML .= qq {</tr>\n};
1629
1630         $ary_ref = $dbh->selectall_arrayref(
1631                 "SELECT id, auto_timeline_keyword.chtxt, epg_ch.chname, title, btime, etime 
1632                 FROM auto_timeline_keyword 
1633                 INNER JOIN epg_ch ON auto_timeline_keyword.chtxt = epg_ch.chtxt 
1634                 ORDER BY btime" 
1635                 , {Slice=>{}} );
1636
1637         foreach my $line ( @{ $ary_ref } ) {
1638                 my ( $begin, $end, $diff ) = &str2readable( $line->{btime}, $line->{etime} );
1639                 $line->{btime} =~ s/(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/$1$2$3$4$5$6/;
1640                 $line->{etime} =~ s/(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/$1$2$3$4$5$6/;
1641                 my $url = qq "rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$line->{chtxt}&amp;start=$line->{btime}&amp;stop=$line->{etime}";
1642
1643                 $HTML .= qq {<tr align="center">\n};
1644                 $HTML .= qq {<td>$line->{id}</td>\n};
1645                 $HTML .= qq {<td>$line->{chname}</td>\n};
1646                 $HTML .= qq {<td>$line->{title}</td>\n};
1647                 $HTML .= qq {<td>$begin</td>\n};
1648                 $HTML .= qq {<td>$end</td>\n};
1649                 $HTML .= qq {<td>$diff</td>\n};
1650                 $HTML .= qq {<td><a href="$url">予約</a></td>\n};
1651                 $HTML .= qq {</tr>\n};
1652         }
1653
1654         $HTML .= qq {</table>\n};
1655
1656 }
1657
1658 ################ mode=recognize ################
1659
1660 if ( $mode eq 'recognize' ) {
1661         $HTML =~ s/%HTML_TITLE_OPT%/ - Recognizer/;
1662
1663         my $text  = $params{ 'text' };
1664         utf8::decode( $text );
1665         $chtxt = $params{ 'chtxt' };
1666         my $title = $params{ 'title' };
1667         utf8::decode( $title );
1668
1669         $HTML .= qq {<div>\n};
1670         $HTML .= qq {与えられた文字列のうち、番組の放送時刻と思われる文字列を認識します。<br>\n};
1671         $HTML .= qq {番組表が取得できない一週間以上先の予約ができます。<br>\n};
1672         $HTML .= qq {<form method="post" action="rectool.pl">\n};
1673         $HTML .= qq {<div>\n};
1674         &draw_form_channel( 'nonone' );
1675         $HTML .= qq {<input type="text" name="title" value="$title">\n};
1676         $HTML .= qq {<br>\n};
1677         $HTML .= qq {<input type="hidden" name="mode" value="recognize">\n};
1678         $HTML .= qq {<textarea name="text" cols=40 rows=4>\n$text</textarea>\n};
1679         $HTML .= qq {<input type="submit" value="実行">\n</div>\n</form>\n};
1680
1681         my $ch_list = join '|', grep /.+/, values %chtxt_0_chname;
1682         my %ch_reverse = reverse %chtxt_0_chname;
1683
1684         if ( $text ) {
1685                 my ( $year, $month, $day );
1686                 my ( $bhour, $bminute, $ehour, $eminute );
1687                 my $next_day = 0;
1688                 foreach ( split /\n/, $text ) {
1689                         my @bdate = /(\d{4}).(\d{1,2}).(\d{1,2})/;
1690                         s/(\d{4}).(\d{2}).(\d{2})//;
1691                         my @btime = /(\d{1,2})[::](\d{1,2})/;
1692                         s/(\d{1,2})[::](\d{2})//;
1693                         my @etime = /(\d{1,2})[::](\d{1,2})/;
1694                         s/(\d{1,2})[::](\d{2})//;
1695                         s/\(.*\)//;
1696                         if ( !@bdate ) {
1697                                 $bdate[0] = Time::Piece->localtime->year;
1698                                 ( $bdate[1], $bdate[2] ) = /(\d{1,2})月(\d{1,2})日/;
1699                                 s/(\d{1,2})月(\d{1,2})日//;
1700                         }
1701                         next if (!( @bdate || @btime ));
1702                         ( $year,  $month, $day ) = @bdate if ( $bdate[0] && $bdate[1] && $bdate[2] );
1703                         ( $bhour, $bminute )     = @btime if ( defined $btime[0] && defined $btime[1] );
1704                         ( $ehour, $eminute )     = @etime if ( defined $etime[0] && defined $etime[1] );
1705                         $next_day = 1 if ( /深夜/ );
1706                         my ( $ch ) = /($ch_list)/;
1707                         my $chtxt = $ch_reverse{$ch} if ( $ch && $ch_reverse{$ch} );
1708                         s/($ch_list)//;
1709
1710                         if ( $year && $month && $day && defined $bhour && defined $bminute ) {
1711                                 my $tp  = Time::Piece->strptime( "$year-$month-$day $bhour:$bminute", '%Y-%m-%d %H:%M' );
1712                                 my $etp = Time::Piece->strptime( "$year-$month-$day $ehour:$eminute", '%Y-%m-%d %H:%M' ) if ( defined $ehour && defined $eminute );
1713                                 $tp += ONE_DAY if ( $next_day );
1714                                 my $start = $tp->strftime( '%Y%m%d%H%M%S' );
1715                                 my $stop  = defined $etp ? 
1716                                         $etp->strftime( '%Y%m%d%H%M%S' ) :
1717                                         ( $tp + ONE_MINUTE * 30 )->strftime( '%Y%m%d%H%M%S' );
1718                                 $title = $_ if ( !$title );
1719                                 my $url = qq "rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$chtxt&amp;start=$start&amp;stop=$stop&amp;title=$title";
1720                                 $HTML .= qq {認識結果:$year-$month-$day $bhour:$bminute -> $ehour:$eminute 残り:$_<a href="$url">リンク</a> <br>\n};
1721                         }
1722                 }
1723         }
1724 }
1725
1726 ################ mode=expert ################
1727
1728 if ( $mode eq 'expert' ) {
1729         my $ary_ref;
1730
1731         $HTML =~ s/%HTML_TITLE_OPT%/ - Expert/;
1732         $HTML .= qq {<div>\n};
1733
1734         if ( $mode_sub eq 'reget' ) {
1735                 my $bctype = $params{ 'bctype' };
1736                 my ( $chtxt, $chname ) = $dbh->selectrow_array( 
1737                         "SELECT chtxt, chname FROM epg_ch 
1738                         WHERE bctype = '$bctype' " );
1739                 $HTML .= "Update for $chname ( chtxt: $chtxt ) has been reserved.<br>\n";
1740                 $dbh->do( "UPDATE epg_ch SET status = '2' WHERE chtxt = '$chtxt' " );
1741                 goto end;
1742         }
1743
1744         if ( $params{ 'dump' } ) {
1745                 # id、epgXXを除外して出力
1746                 my $sth = $dbh->prepare(
1747                         "SELECT type, chtxt, title, btime, etime, deltatime, deltaday, opt, counter 
1748                         FROM timeline"
1749                 );
1750                 # my $yaw = XML::Handler::YAWriter->new;
1751                 my $output;
1752                 my $wri = XML::SAX::Writer->new( Output => \$output );
1753                 my $gen = XML::Generator::DBI->new(
1754                         Handler => $wri,
1755                         AsAttributes => 1,
1756                 );
1757                 $gen->execute($sth);
1758                 # $HTML .= join "\n", @{$yaw->{Strings}};
1759                 utf8::encode($output);
1760                 my $len = length $output;
1761                 print "Content-Type: text/xml\n";
1762                 print "Content-Length: $len\n";
1763                 print "Content-Disposition: attachment; filename=\"rec10-reserve-dump.xml\"\n\n";
1764                 print $output;
1765                 exit;
1766         }
1767
1768         if ( $params{ 'restore' } ) {
1769                 my $fh = $q->upload('upfile');
1770                 my $xml = read_file( $fh );
1771                 my $tpp = XML::TreePP->new;
1772                 my $tree = $tpp->parse( $xml );
1773                 my @rows = @{ $tree->{database}->{select}->{row} };
1774
1775                 # 高速化のためVALUESを連結
1776                 # INSERT INTO timeline ( ... ) VALUES ( aa, bb, cc ), ( kk, ll, mm ), ( xx, yy, zz )
1777                 my @keys = qw/type chtxt title btime etime deltatime deltaday opt counter/;
1778                 my $keys = join ', ', @keys;
1779                 my @values;
1780
1781                 foreach my $row ( @rows ) {
1782                         my $values = join ', ', map { "'".$row->{'-'.$_}."'" } @keys;
1783                         utf8::decode( $values );
1784                         push @values, "( $values )";
1785                 }
1786                 my $sql = "INSERT INTO timeline ( $keys ) VALUES " . join ', ', @values;
1787                 $dbh->do( "TRUNCATE TABLE timeline" );
1788                 $dbh->do( $sql );
1789                 goto end;
1790         }
1791
1792         my @ary = $dbh->selectrow_array(
1793                 "SELECT auto_jbk, auto_bayes, auto_del_tmp, auto_opt 
1794                 FROM in_settings " );
1795         my $opt = pop @ary;
1796         @ary = map( $_ ? 'checked' : '', @ary );
1797
1798         $HTML .= qq {内部オプションの変更\n<br>};
1799         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1800         $HTML .= qq {<div>\n};
1801         $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1802         $HTML .= qq {<input type="hidden" name="mode_sub" value="setting">\n};
1803         $HTML .= qq {<input type="checkbox" name="jbk"     value="1" $ary[0]>自動地引\n};
1804         $HTML .= qq {<input type="checkbox" name="bayes"   value="1" $ary[1]>自動ベイズ\n};
1805         $HTML .= qq {<input type="checkbox" name="del_tmp" value="1" $ary[2]>自動一時ファイル削除\n};
1806         $HTML .= qq {自動オプション:<input type="text" name="opt" value="$opt">\n};
1807         $HTML .= qq {<input type="submit" value="保存">\n</div>\n</form>\n};
1808
1809
1810         $HTML .= qq {<hr>\n番組表のカテゴリ一覧と内蔵のカテゴリ一覧の合致を確認中...\n};
1811         $ary_ref = $dbh->selectcol_arrayref(
1812                 "SELECT DISTINCT category FROM epg_timeline"
1813         );
1814         my @category = map {$_->{name}} sort values %category;
1815         if ( List::Compare->new( $ary_ref, \@category )->get_symdiff ) {
1816                 $HTML .= qq {一致しません<br>\n};
1817                 $HTML .= qq {番組表:@{$ary_ref}<br>\n内蔵:@category<br>\n};
1818         }
1819         else {
1820                 $HTML .= qq {一致しました<br>\n};
1821         }
1822
1823
1824         @ary = $dbh->selectrow_array( "SELECT terec, bscsrec, b252ts, ts2avi FROM in_status" );
1825         $HTML .= qq {<hr>\n地上波録画数:$ary[0]\n衛星波録画数:$ary[1]\n解読数:$ary[2]\n縁故数:$ary[3]\n<br>\n};
1826         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1827         $HTML .= qq {<div>\n};
1828         $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1829         $HTML .= qq {<input type="hidden" name="mode_sub" value="fixstatus">\n};
1830         $HTML .= qq {<input type="submit" name="terec"   value="地上波録画数をリセット">\n};
1831         $HTML .= qq {<input type="submit" name="bscsrec" value="衛星波録画数をリセット">\n};
1832         $HTML .= qq {<input type="submit" name="b252ts"  value="解読数をリセット">\n};
1833         $HTML .= qq {<input type="submit" name="ts2avi"  value="縁故数をリセット">\n</div>\n</form>\n};
1834
1835
1836         $HTML .= qq {<hr>\nRec10 バージョン:$rec10_version\nrectool バージョン:$rectool_version\n<br>\n};
1837
1838
1839         if (0) {
1840         $HTML .= qq {<hr>\n番組表の欠落<br>\n};
1841         $ary_ref = $dbh->selectall_arrayref( "SELECT chname, chtxt FROM epg_ch" );
1842         foreach my $line ( @{$ary_ref} ) {
1843                 my $ary_ref = $dbh->selectall_arrayref( 
1844                         "SELECT start, stop, title FROM epg_timeline WHERE channel = '$line->[1]' ORDER BY start" 
1845                 );
1846                 my $error;
1847                 my @program_old = ( '', $ary_ref->[0]->[0] );
1848                 my $program_old = \@program_old;
1849
1850                 foreach my $program_new ( @{$ary_ref} ) {
1851                         if ( $program_old->[1] ne $program_new->[0] && 
1852                                 $program_old->[2] !~ /クロ?ジング|クロージング|エンディング|休止|ミッドナイト|ending/ && 
1853                                 $program_new->[2] !~ /オープニング|ウィークリー・インフォメーション|モーニング|opening/ && 
1854                                 ( str2datetime( $program_new->[0] ) - str2datetime( $program_old->[1] ) )->delta_minutes > 30 ) {
1855                                 $program_old->[1] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
1856                                 $program_new->[0] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
1857                                 $error .= qq{    $program_old->[2]    $program_old->[1]\n    ->  $program_new->[2]    $program_new->[0]\n};
1858                         }
1859                         $program_old = $program_new;
1860                 }
1861                 $HTML .= qq {<pre>\n$line->[0]\n$error</pre>\n} if ( $error );
1862         }
1863         }
1864
1865
1866         $HTML .= qq {<hr>\n予約の保存・復元<br>\n};
1867         $HTML .= qq {<form action="rectool.pl" method="post" enctype="multipart/form-data">\n};
1868         $HTML .= qq {<div>\n};
1869         $HTML .= qq {<input type="hidden" name="mode" value="expert">\n};
1870         $HTML .= qq {<input type="submit" name="dump" value="保存">\n};
1871         $HTML .= qq {<input type="file" name="upfile">\n};
1872         $HTML .= qq {<input type="submit" name="restore" value="復元">\n};
1873         $HTML .= qq {</div>\n};
1874         $HTML .= qq {</form>\n};
1875
1876
1877         $ary_ref = $dbh->selectall_arrayref( 
1878                 "SELECT chname, chtxt, bctype, ch, csch, tsid, updatetime, status, visible 
1879                 FROM epg_ch 
1880                 ORDER BY chtxt " );
1881         $HTML .= qq {<hr>\n番組表の更新状況<br>\n};
1882         $HTML .= qq {<table summary="channeltable" border=1 cellspacing=0>\n<tr>\n};
1883         $HTML .= qq {<th>チャンネル名</th>\n};
1884         $HTML .= qq {<th>chtxt</th>\n};
1885         $HTML .= qq {<th>bctype</th>\n};
1886         $HTML .= qq {<th>ch</th>\n};
1887         $HTML .= qq {<th>csch</th>\n};
1888         $HTML .= qq {<th>tsid</th>\n};
1889         $HTML .= qq {<th>最終更新時刻</th>\n};
1890         $HTML .= qq {<th>状態</th>\n};
1891         $HTML .= qq {<th>表示</th>\n};
1892         $HTML .= qq {</tr>\n};
1893         foreach my $status ( @{$ary_ref} ) {
1894                 $HTML .= qq {<tr>\n};
1895                 $HTML .= qq {<td>$status->[0]</td>\n<td>$status->[1]</td>\n<td>$status->[2]</td>\n<td>$status->[3]</td>\n};
1896                 $HTML .= qq {<td>$status->[4]</td>\n<td>$status->[5]</td>\n<td>$status->[6]</td>\n<td>$status->[7]</td>\n};
1897                 $HTML .= qq {<td>$status->[8]</td>\n};
1898                 $HTML .= qq {</tr>\n};
1899         }
1900         $HTML .= qq {</table>\n};
1901
1902         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1903         $HTML .= qq {<div>\n};
1904         $HTML .= qq {番組表を再取得する\n};
1905         $HTML .= qq {<input type="hidden" name="mode" value="expert">\n};
1906         $HTML .= qq {<input type="hidden" name="mode_sub" value="reget">\n};
1907         $HTML .= qq {<select name="bctype">\n};
1908         $ary_ref = $dbh->selectall_arrayref(
1909                 "SELECT DISTINCT bctype 
1910                 FROM epg_ch WHERE bctype NOT LIKE '_s%' "
1911         );
1912         foreach my $line ( @{$ary_ref} ) {
1913                 $HTML .= qq {<option value="$line->[0]">$line->[0]</option>\n};
1914         }
1915         $HTML .= qq {<option value="bs">BS</option>\n};
1916         $HTML .= qq {<option value="cs1">CS1</option>\n};
1917         $HTML .= qq {<option value="cs2">CS2</option>\n};
1918         $HTML .= qq {</select>\n};
1919         $HTML .= qq {<input type="submit" value="実行">\n</div>\n</form>\n};
1920
1921
1922
1923         $ary_ref = $dbh->selectall_arrayref(
1924                 "SELECT id, type, chtxt, title, btime, etime, opt, deltaday, deltatime 
1925                 FROM timeline 
1926                 ORDER BY id ");
1927         $HTML .= qq {<hr>\n予約表<br>\n};
1928         $HTML .= qq {<table summary="rectimetable" border=1 cellspacing=0>\n<tr>\n};
1929         $HTML .= qq {<th>ID</th>\n};
1930         $HTML .= qq {<th>type</th>\n};
1931         $HTML .= qq {<th>chtxt</th>\n};
1932         $HTML .= qq {<th>title</th>\n};
1933         $HTML .= qq {<th>btime</th>\n};
1934         $HTML .= qq {<th>etime</th>\n};
1935         $HTML .= qq {<th>opt</th>\n};
1936         $HTML .= qq {<th>deltaday</th>\n};
1937         $HTML .= qq {<th>deltatime</th>\n};
1938         $HTML .= qq {</tr>\n};
1939         foreach my $status ( @{$ary_ref} ) {
1940                 $HTML .= qq {<tr>\n};
1941                 $HTML .= qq {<td>$status->[0]</td>\n<td>$status->[1]</td>\n<td>$status->[2]</td>\n<td>$status->[3]</td>\n};
1942                 $HTML .= qq {<td>$status->[4]</td>\n<td>$status->[5]</td>\n<td>$status->[6]</td>\n<td>$status->[7]</td>\n};
1943                 $HTML .= qq {<td>$status->[8]</td>\n};
1944                 $HTML .= qq {</tr>\n};
1945         }
1946         $HTML .= qq {</table>\n};
1947 }
1948
1949 ################ mode=log ################
1950
1951 if ( $mode eq 'log' ) {
1952         $HTML =~ s/%HTML_TITLE_OPT%/ - Log/;
1953
1954         $HTML .= qq {<div>\n};
1955         $HTML .= qq {<table summary="reclogtable" border=1 cellspacing=0>\n<tr>\n};
1956         $HTML .= qq {<th>ID</th>\n};
1957         $HTML .= qq {<th>chtxt</th>\n};
1958         $HTML .= qq {<th>title</th>\n};
1959         $HTML .= qq {<th>btime</th>\n};
1960         $HTML .= qq {<th>etime</th>\n};
1961         $HTML .= qq {<th>opt</th>\n};
1962         $HTML .= qq {<th>exp</th>\n};
1963         $HTML .= qq {<th>longexp</th>\n};
1964         $HTML .= qq {<th>category</th>\n};
1965         $HTML .= qq {</tr>\n};
1966         $ary_ref = $dbh->selectall_arrayref(
1967                 "SELECT id, chtxt, title, btime, etime, opt, exp, longexp, category 
1968                 FROM in_timeline_log "
1969         );
1970         foreach my $line ( @{$ary_ref} ) {
1971                 $HTML .= qq {<tr>\n};
1972                 $HTML .= qq {<td>$line->[0]</td>\n<td>$line->[1]</td>\n<td>$line->[2]</td>\n<td>$line->[3]</td>\n};
1973                 $HTML .= qq {<td>$line->[4]</td>\n<td>$line->[5]</td>\n<td>$line->[6]</td>\n<td>$line->[7]</td>\n};
1974                 $HTML .= qq {<td>$line->[8]</td>\n};
1975                 $HTML .= qq {</tr>\n};
1976         }
1977         $HTML .= qq {</table>\n};
1978 }
1979
1980 ################ mode=help ################
1981
1982 if ( $mode eq 'help' ) {
1983         $HTML =~ s/%HTML_TITLE_OPT%/ - Help/;
1984         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
1985         $HTML .= qq {<div>\n};
1986         $HTML .= qq {ヘルプ\n};
1987 }
1988
1989 ################ mode=test ################
1990
1991 if ( $mode eq 'test' ) {
1992         $HTML =~ s/%HTML_TITLE_OPT%/ - Test/;
1993         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
1994         $HTML .= qq {<div>\n};
1995
1996         $tmp = read_file( '/etc/rec10.conf' );
1997         $tmp =~ s/\n/<br>\n/gs;
1998         $HTML .= $tmp;
1999
2000         # $HTML .= Dumper( $ary_ref );
2001 }
2002
2003 ################ mode nasi ################
2004
2005 if ( !$mode ) {
2006         &draw_form();
2007         $HTML =~ s/%HTML_TITLE_OPT%/ - Top/;
2008         $HTML .= qq {Welcome to Rec10!<br>\n};
2009         goto end;
2010 }
2011
2012
2013 end:
2014 #<div style="float: right">
2015 $HTML .= <<EOM;
2016 </div>
2017 </body>
2018 </html>
2019 EOM
2020
2021 #<div align="center">
2022 #$HTML_ADV = $HTML_ADV_IMG . $HTML_ADV_TEXT if ( !$HTML_ADV );
2023 my $HTML_ADV = '';
2024 $HTML_HEADER = qq {<div style="text-align: center">\n$HTML_ADV\n</div>\n};
2025
2026 &draw_menu();
2027 $HTML =~ s/%HTML_TITLE_OPT%//;
2028 $HTML =~ s/%REFRESH%//;
2029 $HTML =~ s/%SCRIPT%//;
2030 $HTML =~ s/%CSS%//;
2031 $HTML =~ s/%HTML_HEADER%/$HTML_HEADER/;
2032
2033 utf8::encode( $HTML );
2034 print $HTTP_HEADER;
2035 print $HTML;
2036 exit;
2037
2038 sub draw_menu {
2039         $hires = Time::HiRes::time() - $hires;
2040         $last_modified = localtime((stat 'rectool.pl')[9]);
2041
2042         $HTML_HEADER .= qq {<div>\n};
2043         $HTML_HEADER .= qq {<span style="float: right; font-size: 8px">Last-Modified: $last_modified<br>Time-Elapsed: $hires 秒</span>\n};
2044         $HTML_HEADER .= qq {<span style="float: left">\n};
2045         $HTML_HEADER .= qq {<a href="rectool.pl">トップ(検索)</a>\n};
2046         $HTML_HEADER .= qq {<a href="rectool.pl?mode=schedule">予約確認</a>\n};
2047         $HTML_HEADER .= qq {<a href="rectool.pl?mode=graph">予約状況(画像版)</a>\n};
2048         $HTML_HEADER .= qq {<a href="rectool.pl?mode=list">録画一覧</a>\n};
2049         $HTML_HEADER .= qq {<a href="rectool.pl?mode=bravia">おまかせ</a>\n};
2050         $HTML_HEADER .= qq {<a href="rectool.pl?mode=expert">玄人仕様</a>\n};
2051         $HTML_HEADER .= qq {<a href="rectool.pl?mode=proc">復旧支援</a>\n};
2052         $HTML_HEADER .= qq {<a href="rectool.pl?mode=jbk">地引</a>\n};
2053         $HTML_HEADER .= qq {<a href="rectool.pl?mode=log">録画履歴</a>\n};
2054         $HTML_HEADER .= qq {<a href="rectool.pl?mode=recognize">文字認識</a>\n};
2055         $HTML_HEADER .= qq {<a href="rectool.pl?mode=edit">新規予約</a>\n};
2056 #       $HTML_HEADER .= qq {<a href="../rec10web/rec10web.py">新規予約</a>\n};
2057         $HTML_HEADER .= qq {</span>\n};
2058         $HTML_HEADER .= qq {<hr style="clear: both; background-color: grey; height: 4px">\n};
2059         $HTML_HEADER .= qq {</div>\n};
2060 }
2061
2062 sub draw_form {
2063         $chname = $params{ 'chname' };
2064         $chtxt  = $params{ 'chtxt' };
2065         $key    = $params{ 'key' };
2066         utf8::decode( $key );
2067         if ( $chname ) {
2068                 $chtxt = $dbh->selectrow_array("SELECT chtxt FROM epg_ch WHERE chname = '$chname' ");
2069         }
2070
2071         $HTML .= qq {<div style="float: left">\n};
2072         $HTML .= qq {<form method="get" action="rectool.pl">\n};
2073         $HTML .= qq {<div>\n};
2074         $HTML .= qq {<input type="hidden" name="mode" value="program">\n};
2075
2076         # チャンネル指定
2077         &draw_form_channel();
2078
2079         # 日付指定
2080         $HTML .= qq {<select name="date">\n<option value="" selected>無指定</option>\n};
2081         $ary_ref = $dbh->selectcol_arrayref(
2082                 "SELECT DISTINCT SUBSTRING(start, 1, 8) FROM epg_timeline ORDER BY start"
2083         );
2084         $date_sel = $params{ 'date' };
2085         foreach my $date ( @{ $ary_ref } ) {
2086                 my @date = $date =~ /(.{4})(.{2})(.{2})/;
2087                 $date_prt = "$date[1]/$date[2]";
2088
2089                 if ( $date eq $date_sel ) {
2090                         $HTML .= qq {<option value="$date" selected>$date_prt</option>\n};
2091                 }
2092                 else {
2093                         $HTML .= qq {<option value="$date">$date_prt</option>\n};
2094                 }
2095         }
2096         $HTML .= qq {</select>\n};
2097
2098         # カテゴリ指定
2099         $HTML .= qq {<select name="category">\n<option value="" selected>無指定</option>\n};
2100         $category_sel = $params{ 'category' };
2101         foreach my $category ( keys %category ) {
2102                 if ( $category eq $category_sel ) {
2103                         $HTML .= qq {<option value="$category" selected>$category{$category}->{name}</option>\n};
2104                 }
2105                 else {
2106                         $HTML .= qq {<option value="$category">$category{$category}->{name}</option>\n};
2107                 }
2108         }
2109         $HTML .= qq {</select>\n};
2110
2111         # キーワード指定
2112         $HTML .= qq {<input name="key" type="text" value="$key" style="width:200px" accesskey="s">\n};
2113
2114         # フォーム描画
2115         $HTML .= qq {<input type="submit" value="更新" accesskey="r">\n</div>\n</form>\n};
2116 }
2117
2118 sub draw_form_channel {
2119         $HTML .= qq {<select name="chtxt">\n};
2120         $HTML .= qq {<option value="" selected>無指定</option>\n} if ( shift ne 'nonone' );
2121
2122         foreach my $key ( keys %chtxt_0_chname ) {
2123                 my $value = $chtxt_0_chname{$key};
2124                 if ( ($chtxt && $key eq $chtxt ) || ( $chname && $value eq $chname ) ) {
2125                         $HTML .= qq {<option value="$key" selected>$value</option>\n};
2126                 }
2127                 else {
2128                         $HTML .= qq {<option value="$key">$value</option>\n};
2129                 }
2130         }
2131         $HTML .= qq {</select>\n};
2132 }
2133
2134 sub draw_form_opt {
2135         my $shift = shift;
2136         my ( %selected, %checked );
2137
2138         if ( $chtxt  =~ /BS_103/ ) {
2139                 $selected{F} = 'selected';
2140         }
2141         elsif ( $chtxt  =~ /CS_239|CS_240|CS_335/ ) {
2142                 $selected{H} = 'selected';
2143         }
2144         elsif ( $chtxt =~ /BS_101|BS_102/ || $bctype =~ /cs/ ) {
2145                 $selected{W} = 'selected';
2146         }
2147         elsif ( $bctype =~ /bs|te/ ) {
2148                 $selected{H} = 'selected';
2149         }
2150         $selected{g} = 'selected';
2151         $selected{s} = 'selected';
2152         $checked{a} = $chtxt =~ /CS_331|CS_332|CS_333|CS_334|CS_335/ || $category =~ /アニメ/ ? 'checked' : '';
2153         $checked{l} = '';
2154         $checked{d} = $title =~ /\Q[二]\E|[二]|\Q(二)\E|(二)/ ? 'checked' : '';
2155         $checked{5} = $title =~ /5\.1|5.1/ ? 'checked' : '';
2156         $checked{2} = 'checked';
2157
2158         if ( $opt ) {
2159                 undef %checked;
2160                 undef %selected;
2161                 my @opt = split //, $opt;
2162                 foreach my $opt ( @opt ) {
2163                         $selected{$opt} = 'selected' if ( $opt =~ /S|L|G|H|F/ );
2164                         $checked {$opt} = 'checked'  if ( $opt =~ /a|h|l|d|2|5/ );
2165                 }
2166                 $checked{d} = $title =~ /\Q[二]\E|[二]|\Q(二)\E|(二)/ ? 'checked' : '';
2167                 $checked{5} = $title =~ /5\.1|5.1/ ? 'checked' : '';
2168         }
2169         # 画質/圧縮率ともに指定されていない場合、真ん中をselectedにする
2170         $selected{g} = 'selected' unless ( $selected{u} || $selected{i} || $selected{o} || $selected{p} );
2171         $selected{s} = 'selected' unless ( $selected{q} || $selected{w} || $selected{e} || $selected{r} );
2172
2173         $HTML .= qq {<select name="opt">\n};
2174         #$HTML .= qq {<option value="S" $selected{S}>S 720x480</option>\n};
2175         $HTML .= qq {<option value="W" $selected{W}>W 854x480</option>\n};
2176         $HTML .= qq {<option value="H" $selected{H}>H 1280x720</option>\n};
2177         $HTML .= qq {<option value="F" $selected{F}>F 1920x1080</option>\n};
2178         $HTML .= qq {<option value="I" $selected{I}>I インタレ保持</option>\n};
2179         $HTML .= qq {</select>\n};
2180
2181         $HTML .= qq {<select name="opt">\n};
2182         $HTML .= qq {<option value="u" $selected{u}>最低</option>\n};
2183         $HTML .= qq {<option value="i" $selected{i}>低</option>\n};
2184         $HTML .= qq {<option value=""  $selected{g}>画質</option>\n};
2185         $HTML .= qq {<option value="o" $selected{o}>高</option>\n};
2186         $HTML .= qq {<option value="p" $selected{p}>最高</option>\n};
2187         $HTML .= qq {</select>\n};
2188
2189         $HTML .= qq {<select name="opt">\n};
2190         $HTML .= qq {<option value="q" $selected{q}>最低</option>\n};
2191         $HTML .= qq {<option value="w" $selected{w}>低</option>\n};
2192         $HTML .= qq {<option value=""  $selected{s}>圧縮率</option>\n};
2193         $HTML .= qq {<option value="e" $selected{e}>高</option>\n};
2194         $HTML .= qq {<option value="r" $selected{r}>最高</option>\n};
2195         $HTML .= qq {</select>\n};
2196
2197         $HTML .= qq {<select name="opt">\n};
2198         $HTML .= qq {<option value=""  $selected{s}>コンテナ</option>\n};
2199         $HTML .= qq {<option value="m" $selected{e}>MKV</option>\n};
2200         $HTML .= qq {<option value="4" $selected{r}>MP4</option>\n};
2201         $HTML .= qq {</select>\n};
2202
2203         $HTML .= qq {<select name="opt">\n};
2204         $HTML .= qq {<option value=""  $selected{s}>モバイル向け</option>\n};
2205         $HTML .= qq {<option value="1" $selected{e}>QVGA</option>\n};
2206         $HTML .= qq {<option value="2" $selected{r}>WVGA</option>\n};
2207         $HTML .= qq {<option value="B" $selected{B}>Blu-ray向け</option>\n};
2208         $HTML .= qq {</select>\n};
2209
2210         $HTML .= qq {<input type="checkbox" name="opt" value="a" $checked{a}>24fps(主にアニメ)\n};
2211         $HTML .= qq {<input type="checkbox" name="opt" value="d" $checked{d}>二ヶ国語放送\n};
2212         #$HTML .= qq {<input type="checkbox" name="opt" value="2" $checked{2}>2passモード\n};
2213         $HTML .= qq {<input type="checkbox" name="opt" value="5" $checked{5}>5.1ch放送\n};
2214         $HTML .= qq {<br>\n};
2215         $HTML .= qq {<select name="opt">\n};
2216         $HTML .= qq {<option value="">移動なし</option>\n};
2217         $HTML .= qq {<option value="R">録画後移動</option>\n};
2218         $HTML .= qq {<option value="D">解読後移動</option>\n};
2219         $HTML .= qq {<option value="E">縁故後移動</option>\n};
2220         $HTML .= qq {</select>\n};
2221         $HTML .= qq {<input type="checkbox" name="opt"   value="N">ファイル名日時追加\n} if ( $shift eq 'reserve' );
2222         $HTML .= qq {<input type="checkbox" name="every" value="1">隔週録画\n}           if ( $shift eq 'reserve' );
2223 }
2224
2225 sub parse_program {
2226         $chname  = $params{ 'chname' };
2227         $chtxt   = $params{ 'chtxt' };
2228         $start   = $params{ 'start' };
2229         $stop    = $params{ 'stop' };
2230         $bayesid = $params{ 'bayesid' };
2231         $id      = $params{ 'id' };
2232
2233         # chtxt と chname を相互に補完
2234         if ( $chname ) {
2235                 $chtxt = $dbh->selectrow_array("SELECT chtxt FROM epg_ch WHERE chname = '$chname'");
2236         }
2237         elsif ( $chtxt && $chtxt_0_chname{$chtxt} ) {
2238                 $chname = $chtxt_0_chname{$chtxt};
2239                 ( $chtxt_sql = $chtxt ) =~ s/_0/_%/;
2240                 $bctype = $dbh->selectrow_array("SELECT bctype FROM epg_ch WHERE chtxt LIKE '$chtxt_sql'");
2241         }
2242         elsif ( $chtxt ) {
2243                 $chname = $dbh->selectrow_array("SELECT chname FROM epg_ch WHERE chtxt = '$chtxt'")
2244         }
2245
2246         # EPGから番組の情報を取得
2247         ( $title, $desc, $longdesc, $category ) = $dbh->selectrow_array(
2248                 "SELECT title, exp, longexp, category
2249                 FROM epg_timeline 
2250                 WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' ");
2251         if ( !$bctype ) {
2252                 $bctype = $dbh->selectrow_array("SELECT bctype FROM epg_ch WHERE chtxt = '$chtxt'");
2253         }
2254
2255         if ( $bayesid ) {
2256                 ( $chtxt, $title, $begin, $end ) = $dbh->selectrow_array( 
2257                         "SELECT chtxt, title, btime, etime FROM auto_timeline_bayes WHERE id = '$bayesid' " 
2258                 );
2259                 ( $chname, $bctype ) = $dbh->selectrow_array( 
2260                         "SELECT chname, bctype FROM epg_ch WHERE chtxt = '$chtxt' " 
2261                 );
2262                 $start = str2datetime( $begin )->strftime( '%Y%m%d%H%M%S' );
2263                 $stop  = str2datetime( $end   )->strftime( '%Y%m%d%H%M%S' );
2264                 ( $desc, $longdesc, $category ) = $dbh->selectrow_array( 
2265                         "SELECT exp, longexp, category FROM epg_timeline WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' " 
2266                 );
2267         }
2268         if ( $id ) {
2269                 ( $type, $chtxt, $title, $begin, $end, $deltaday, $deltatime, $opt, $counter ) = $dbh->selectrow_array( 
2270                         "SELECT type, chtxt, title, btime, etime, deltaday, deltatime, opt, counter 
2271                         FROM timeline WHERE id = '$id' " 
2272                 );
2273                 &chtxt_format();
2274                 ( $chname, $bctype ) = $dbh->selectrow_array( 
2275                         "SELECT chname, bctype FROM epg_ch WHERE chtxt LIKE '$chtxt_sql' " 
2276                 );
2277                 $start = str2datetime( $begin )->strftime( '%Y%m%d%H%M%S' );
2278                 $stop  = str2datetime( $end   )->strftime( '%Y%m%d%H%M%S' );
2279                 ( $desc, $longdesc, $category ) = $dbh->selectrow_array( 
2280                         "SELECT exp, longexp, category FROM epg_timeline WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' " 
2281                 );
2282         }
2283         # set $chtxt_0, $chtxt_sql, $bctype_sql
2284         &chtxt_format();
2285         #( $chtxt_no0 ) = $chtxt   =~ /(\d+)_/;
2286         @start = $start =~ /(.{4})(.{2})(.{2})(.{2})(.{2})/;
2287         @stop  = $stop  =~ /(.{4})(.{2})(.{2})(.{2})(.{2})/;
2288         $begin = sprintf( '%04d-%02d-%02d %02d:%02d:%02d', @start, '00' );
2289         $end   = sprintf( '%04d-%02d-%02d %02d:%02d:%02d', @stop , '00' );
2290
2291         if ( $params{ 'title' } ) {
2292                 $title = $params{ 'title' };
2293                 utf8::decode( $title );
2294         }
2295         $HTML .= qq {<!-- chtxt=$chtxt chtxt_0=$chtxt_0 chtxt_sql=$chtxt_sql bctype=$bctype -->\n};
2296 }
2297
2298 sub check_error {
2299         my $is_error;
2300         my $is_same = $dbh->selectrow_array( 
2301                 "SELECT COUNT(*) FROM timeline WHERE chtxt = '$chtxt' AND btime = '$begin' AND etime = '$end'" 
2302         );
2303         my @overlap = &get_overlap();
2304
2305         if ( $is_same ) {
2306                 $HTML .= "同一の番組が既に存在します。<br>\n";
2307                 $is_error = 1;
2308         }
2309         elsif ( $overlap[0] >= 2 ) {
2310                 $HTML .= "時間が被る番組が既に2個存在します。<br>\n";
2311                 $HTML .= $overlap[1];
2312                 $is_error = 2;
2313         }
2314         else {
2315                 $is_error = 0;
2316         }
2317         return $is_error;
2318 }
2319
2320 sub get_overlap {
2321         my $ary_ref = $dbh->selectall_arrayref(
2322                 "SELECT btime, etime, title
2323                 FROM timeline 
2324                 INNER JOIN epg_ch ON timeline.chtxt = epg_ch.chtxt 
2325                 WHERE bctype LIKE '$bctype_sql' AND type IN $type_user_made 
2326                 AND btime < '$end' 
2327                 AND etime > '$begin' 
2328                 "
2329         );
2330
2331         my %overlap;
2332         my $overlap = $max = 0;
2333         my $str;
2334         foreach my $prg ( @{ $ary_ref } ) {
2335                 $str .= "$prg->[0] ? $prg->[1] : $prg->[2]<br>\n";
2336                 $overlap{$prg->[0]} += 1;
2337                 $overlap{$prg->[1]} -= 1;
2338         }
2339         foreach my $key ( sort keys %overlap ) {
2340                 $overlap += $overlap{$key};
2341                 $max = List::Util::max( $max, $overlap );
2342         }
2343         if ( wantarray ) {
2344                 return ( $max, $str );
2345         }
2346         else {
2347                 return $max;
2348         }
2349 }
2350
2351 sub get_file_list_wrapper {
2352         local $base_dir = shift;
2353         local $ptr = shift;
2354
2355         &get_file_list( $base_dir );
2356 }
2357
2358 sub get_file_list{
2359         my $dir = shift;
2360
2361         opendir ( DIR, $dir );
2362         my @list = sort readdir( DIR );
2363         closedir( DIR );
2364
2365         foreach my $file ( @list ) {
2366                 next if ( $file =~ /^\.{1,2}$/ );
2367                 if ( -d "$dir/$file" ){
2368                         &get_file_list("$dir/$file");
2369                 }
2370                 else{
2371                         $abs = "$dir/$file";
2372                         utf8::decode( $abs );
2373                         ( $rel ) = $abs =~ /^$base_dir\/(.*)$/;
2374                         $ptr->( $rel, $abs );
2375                 }
2376         }
2377 }
2378
2379 sub strisjoined {
2380         my $str = shift;
2381
2382         return $str =~ /.{4}-.{2}-.{2} .{2}:.{2}:.{2}/ ? 0 : 1;
2383 }
2384
2385 sub str2datetime {
2386         my $str    = shift;
2387         my @time;
2388
2389         if ( strisjoined( $str ) ) {
2390                 @time = $str =~ /(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/;
2391         }
2392         else {
2393                 @time = $str =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
2394         }
2395         return DateTime->new(
2396                 year   => $time[0], month     => $time[1], day    => $time[2],
2397                 hour   => $time[3], minute    => $time[4], second => $time[5], 
2398                 locale => 'ja_JP' , time_zone => $tz
2399         );
2400 }
2401
2402 sub str2dayname {
2403         my  $str = shift;
2404         our %day_name_cache;
2405
2406         if ( !$day_name_cache{$str} ) {
2407                 $day_name_cache{$str} = str2datetime( $str )->day_name;
2408         }
2409         return $day_name_cache{$str};
2410 }
2411
2412 sub str2readable { 
2413         my $begin = shift;
2414         my $end   = shift;
2415
2416         my $dt_begin = ref( $begin ) eq 'DateTime' ? $begin : &str2datetime( $begin );
2417         my $dt_end   = ref( $end   ) eq 'DateTime' ? $end   : &str2datetime( $end );
2418
2419         my $str_begin = $dt_begin->strftime( '%m/%d(%a) %H:%M' );
2420         my $str_end   = $dt_end  ->strftime( $dt_begin->day == $dt_end->day ? '%H:%M' : '翌 %H:%M' );
2421         # utf8::encode( $str_begin );
2422
2423         my ( $sec, $min, $hour );
2424         $sec  = $dt_end->epoch - $dt_begin->epoch;
2425         $min  = int( $sec / 60 );
2426         $sec  = $sec - $min * 60;
2427         $hour = int( $min / 60 );
2428         $min  = $min - $hour * 60;
2429         my $str_diff = '';
2430         $str_diff .= $hour . '時間' if ( $hour );
2431         $str_diff .= $min  . '分'   if ( $min );
2432         $str_diff .= $sec  . '秒'   if ( $sec );
2433
2434         return ( $str_begin, $str_end, $str_diff );
2435 }
2436
2437 sub sqlgetsuggested {
2438         my ( $btime, $etime ) = @_;
2439         $deltatime = 3 if ( !$deltatime );
2440
2441         $btime_bgn = $btime->clone->subtract( hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2442         $btime_end = $btime->clone->add(      hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2443         $etime_bgn = $etime->clone->subtract( hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2444         $etime_end = $etime->clone->add(      hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2445
2446         $ary_ref = $dbh->selectall_arrayref(
2447                 "SELECT start, stop, title, exp 
2448                 FROM epg_timeline 
2449                 WHERE channel LIKE '$chtxt_sql' 
2450                 AND start BETWEEN '$btime_bgn' AND '$btime_end' 
2451                 AND stop  BETWEEN '$etime_bgn' AND '$etime_end' "
2452         );
2453         #die Dumper $ary_ref;
2454
2455         my %hash;
2456         my $hash_r = ngram_counts( $title, 2 ); # bi-gram
2457         foreach my $program ( @{$ary_ref} ) {
2458                 no warnings;
2459                 my $hash_k = ngram_counts( $program->[2], 2 );
2460                 my $point;
2461                 map $point += $hash_k->{$_}, keys %{$hash_r};
2462                 push @{$hash{$point}}, $program if ( $point );
2463         }
2464
2465         return %hash;
2466 }
2467
2468 sub ngram_counts {
2469         my $str  = shift;
2470         my $klen = shift;
2471         my $slen = length($str);  
2472
2473         my $href;
2474         for (my $i=0; $i < $slen-$klen+1; $i++){  
2475                 $href->{substr($str, $i, $klen)}++;
2476         }
2477         return $href;
2478 }
2479
2480 sub chtxt_format {
2481         ( $chtxt_0   = $chtxt ) =~ s/(\d+)_\d+/$1_0/;
2482         ( $chtxt_sql = $chtxt ) =~ s/(\d+)_\d+/$1_%/;
2483         if ( $bctype =~ /bs|cs/ ) {
2484                 $bctype_sql = '_s%';
2485         }
2486         elsif ( $bctype =~ /te/ ) {
2487                 $bctype_sql = 'te%';
2488         }
2489 }
2490