OSDN Git Service

category fix, EPG reget fix
[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                 $dbh->do( 
911                         "INSERT INTO timeline ( type, chtxt, title, btime, etime, opt ) 
912                         VALUES ( '$sql_type', '$chtxt', '$title', '$begin', '$end', '$opt' )"
913                 );
914
915                 goto end;
916         }
917         if ( $mode_sub eq 'move' ) {
918                 my $mode_sub2  = $params{ 'mode_sub2' };
919                 my $title      = $params{ 'title' };
920                 my $response;
921
922                 $ENV{'LANG'} = 'ja_JP.UTF-8';
923                 if ( $mode_sub2 eq 'predict' ) {
924                         $HTML .= "移動後のシミュレーション結果です。\n<br>";
925                         eval '$response = `python26 ' . $cfg->param( 'path.rec10' ) . "/classify.py -s '$title'`";
926                 }
927                 elsif ( $mode_sub2 eq 'exec' ) {
928                         eval '$response = `python26 ' . $cfg->param( 'path.rec10' ) . "/classify.py -e '$title'`";
929                 }
930                 utf8::decode( $response );
931                 $HTML .= $response;
932
933                 goto end;
934         }
935         if ( $mode_sub eq 'setting' ) {
936                 my $jbk     = $params{ 'jbk' }     || '0';
937                 my $bayes   = $params{ 'bayes' }   || '0';
938                 my $del_tmp = $params{ 'del_tmp' } || '0';
939                 my $opt     = $params{ 'opt' }     || '';
940                 my $user    = $params{ 'user' }    || '';
941                 my $pass    = $params{ 'pass' }    || '';
942
943                 $dbh->do( 
944                         "UPDATE in_settings SET auto_jbk = '$jbk', auto_bayes = '$bayes', 
945                         auto_del_tmp = '$del_tmp', auto_opt = '$opt'"
946                 );
947
948                 goto end;
949         }
950         if ( $mode_sub eq 'fixstatus' ) {
951                 my $key = $params{ 'terec'  } ? 'terec'  : $params{ 'bscsrec' } ? 'bscsrec' : 
952                           $params{ 'b252ts' } ? 'b252ts' : $params{ 'ts2avi'  } ? 'ts2avi'  : '';
953
954                 $dbh->do( 
955                         "UPDATE in_status SET $key = 0"
956                 );
957
958                 goto end;
959         }
960
961 }
962
963 ################ mode=confirm ################
964
965 if ( $mode eq 'confirm' ) {
966         if ( $mode_sub eq 'reserve' ) {
967                 $HTML =~ s/%HTML_TITLE_OPT%/ - Reserver/;
968                 $HTML .= qq {<div style="float: left">\n};
969                 &parse_program();
970
971                 my $duration = ( str2datetime( $end ) - str2datetime( $begin ) )->delta_minutes;
972                 $HTML .= "番組名:$title<br>\nチャンネル:$chname<br>\n放送継続時間:$duration 分<br>\n番組内容:$desc<br>\nジャンル:$category<br>\n";
973                 if ( $longdesc ) {
974                         $longdesc =~ s/\\n/<br>\n/gs;
975                         $HTML .= "番組内容(長):$longdesc<br>\n";
976                 }
977                 my $error = &check_error();
978                 if ( $error )
979                 {
980                         # エラー
981
982                         $ary_ref = $dbh->selectall_arrayref(
983                                 "SELECT start, stop FROM epg_timeline WHERE channel = '$chtxt' AND title = '$title' "
984                         );
985                         if ( $error != 1 ) {
986                                 $HTML .= "同一の番組の他の放送予定です。<br>\n";
987                                 foreach my $line ( @{$ary_ref} ) {
988                                         $begin = $line->[0];
989                                         $end   = $line->[1];
990                                         $begin =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
991                                         $end   =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
992                                         $overlap = &get_overlap() >= 2 ? '不可能' : 
993                                                 qq {<a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$chtxt&amp;start=$line->[0]&amp;stop=$line->[1]">可能</a>};
994                                         $HTML .= "開始:$begin\n終了:$end\n録画は$overlap<br>\n";
995                                 }
996                         }
997                 }
998                 else {
999                         $HTML .= "録画予約の詳細設定を行ってください。<br>\n";
1000                         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1001                         $HTML .= qq {<input type="hidden" name="mode"  value="reserve">\n};
1002                         $HTML .= qq {<input type="hidden" name="chtxt" value="$chtxt">\n};
1003                         $HTML .= qq {<input type="hidden" name="start" value="$start">\n};
1004                         $HTML .= qq {<input type="hidden" name="stop"  value="$stop">\n};
1005                         $HTML .= qq {<input type="hidden" name="title" value="$title">\n} if ( $params{ 'title' } );
1006                         &draw_form_opt( 'reserve' );
1007                         $HTML .= qq {<input type="submit" value="予約">\n</form>\n};
1008                 }
1009                 goto end;
1010         }
1011         # End of $mode_sub eq 'reserve';
1012
1013         if ( $mode_sub eq 'proc' ) {
1014                 my    $type  = $params{ 'type' };
1015                 local $chtxt = $params{ 'chtxt' };
1016                 my    $title = $params{ 'title' };
1017                 local $opt   = $params{ 'opt' };
1018                 utf8::decode( $title );
1019
1020                 $HTML .= "詳細設定を行ってください。<br>\n";
1021                 $HTML .= "タイトル:$title\n<br>\n";
1022
1023                 $HTML .= qq {<form method="get" action="rectool.pl">\n};
1024                 $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1025                 $HTML .= qq {<input type="hidden" name="mode_sub" value="proc">\n};
1026                 $HTML .= qq {<input type="hidden" name="type"     value="$type">\n};
1027                 $HTML .= qq {<input type="hidden" name="title"    value="$title">\n};
1028                 &draw_form_channel( 'nonone' );
1029                 &draw_form_opt();
1030                 $HTML .= qq {<input type="submit" value="予約">\n</form>\n};
1031                 goto end;
1032         }
1033 }
1034
1035 ################ mode=reserve ################
1036
1037 if ( $mode eq 'reserve' ) {
1038         $HTML .= qq {<div style="float: left">\n};
1039         &parse_program();
1040         $title = $params{ 'title' } if ( !$title );
1041         @opt = $q->param( 'opt' );
1042         $opt = join '', @opt;
1043         my ( $deltaday, $deltatime );
1044
1045         if ( $params{'every'} eq '1' ) {
1046                 $type = 'search_everyday';
1047                 ( $changed_t ) = $title =~ /(.*)#/;
1048                 $title = $changed_t if ( $changed_t );
1049                 ( $changed_t ) = $title =~ /(.*)第/;
1050                 $title = $changed_t if ( $changed_t );
1051                 ( $changed_t ) = $title =~ /(.*)▽/;
1052                 $title = $changed_t if ( $changed_t );
1053                 $title =~ s/「.*」//;
1054                 $title =~ s/<.*>//;
1055                 $title =~ s/(.*)//;
1056                 $title =~ s/\[新\]//;
1057                 $title =~ s/無料≫//;
1058                 $title =~ s/\s*$//;
1059                 $deltaday  = 7;
1060                 $deltatime = 3;
1061         }
1062         else {
1063                 $type = 'reserve_flexible';
1064         }
1065         $chtxt = $chtxt_0 if ( $chtxt_0 );
1066         if ( !&check_error ) {
1067                 $dbh->do( 
1068                         "INSERT INTO timeline ( type, chtxt, title, btime, etime, opt, deltaday, deltatime ) 
1069                         VALUES ( '$type', '$chtxt', '$title', '$begin', '$end', '$opt', '$deltaday', '$deltatime' )" 
1070                 );
1071         }
1072         $HTML .= "録画予約を実行しました。<br>\n5秒後にトップへ移動します。<br>\n";
1073         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl">|;
1074         goto end;
1075 }
1076
1077 ################ mode=program ################
1078
1079 if ( $mode eq 'program' ) {
1080         &draw_form();
1081
1082         $HTML =~ s/%HTML_TITLE_OPT%/ - Program Viewer/;
1083         $unix = DateTime->now( time_zone => $tz )->strftime( '%Y%m%d%H%M%S' );
1084         $sql = 
1085                 "SELECT channel, epg_ch.chname, start, stop, title, category 
1086                 FROM epg_timeline 
1087                 INNER JOIN epg_ch ON epg_timeline.channel = epg_ch.chtxt 
1088                 WHERE $unix <= stop %CH% %DATE% %CATEGORY% %KEY% ORDER BY start";
1089
1090         if ( $chtxt ) {
1091                 my $ch;
1092                 if ( $chtxt =~ /^\d+(_0)?$/ ) {
1093                         # teはxx_yyy形式であるため
1094                         $chtxt =~ s/_0//;
1095                         $ch = "AND channel LIKE '$chtxt\_%'";
1096                 }
1097                 else {
1098                         $ch = "AND channel = '$chtxt'";
1099                 }
1100                 $sql =~ s/%CH%/$ch/;
1101         }
1102         if ( $date_sel ) {
1103                 $date_1 = $date_sel . '000000';
1104                 $date_2 = Date::Simple->new( $date_sel =~ /(.{4})(.{2})(.{2})/ )->next->format('%Y%m%d') . '000000';
1105                 my $date = "AND '$date_1' <= stop AND start <= '$date_2'";
1106                 $sql =~ s/%DATE%/$date/;
1107         }
1108         if ( $category_sel ) {
1109                 # 一時的
1110                 #       $category_tmp = $category{$category_sel} . $category_sel;
1111                 my $category = "AND category = '$category{$category_sel}->{name}'";
1112                 $sql =~ s/%CATEGORY%/$category/;
1113         }
1114         if ( $key ) {
1115                 my $key = "AND TITLE LIKE '%$key%'";
1116                 $sql =~ s/%KEY%/$key/;
1117         }
1118         $sql =~ s/%CH%//;
1119         $sql =~ s/%DATE%//;
1120         $sql =~ s/%KEY%//;
1121         $sql =~ s/%CATEGORY%//;
1122
1123         $ary_ref = $dbh->selectall_arrayref( $sql );
1124         foreach my $prg ( @{ $ary_ref } ) {
1125                 my @date = $prg->[2] =~ /(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/;
1126
1127                 $date = $date[2];
1128                 if ( $date != $prev ) {
1129                         my $date = DateTime->new(
1130                                 year => $date[0], month  => $date[1], day    => $date[2], 
1131                                 locale => 'ja_JP'
1132                         );
1133
1134                         my $dn = $date->day_name;
1135                         #utf8::encode( $dn );
1136                         $HTML .= qq {--------$date[1]/$date[2]($dn)--------<br>\n};
1137                 }
1138                 $HTML .= qq {$date[1]/$date[2] $date[3]:$date[4] };
1139                 $HTML .= qq {$prg->[1] } if ( !$chtxt );
1140                 $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};
1141                 $prev = $date;
1142         }
1143 }
1144
1145 ################ mode=list ################
1146
1147 if ( $mode eq 'list' ) {
1148         $HTML =~ s/%HTML_TITLE_OPT%/ - List/;
1149         $HTML .= qq {<div>\n};
1150
1151         $script = <<EOM;
1152                 <link rel="stylesheet" type="text/css" href="http://cdn.sencha.io/ext-3.4.0/resources/css/ext-all.css" />
1153                 <script type="text/javascript" src="http://cdn.sencha.io/ext-3.4.0/adapter/ext/ext-base.js"></script>
1154                 <script type="text/javascript" src="http://cdn.sencha.io/ext-3.4.0/ext-all.js"></script>
1155                 <script>
1156                 Ext.onReady(function() {
1157                   Ext.select('.ffmpeg').on('contextmenu', function(eventObj, elRef) {
1158                     var win = new Ext.Window({
1159                       title: 'FFmpeg info', 
1160                       //autoShow: true, 
1161                       autoLoad: "rectool.pl?mode=list&mode_sub=ffmpeg&path=" + Ext.Element(elRef).getAttribute("path") + 
1162                         "&pathtype=" + Ext.Element(elRef).getAttribute("pathtype"), 
1163                     });
1164                     win.show();
1165                   }, null, {stopEvent:true});
1166 /*
1167                   Ext.select( '.ffmpeg' , true ).each(function (elem) {
1168                     // elem.dom.textContent
1169                     var tooltip = new Ext.ToolTip({
1170                       target: elem,
1171                       width: 400,
1172                       autoLoad: {url: "rectool.pl?mode=list&mode_sub=ffmpeg&path=" + elem.getAttribute("path")},
1173                       autoHide: false,
1174                       closable: true,
1175                       draggable: true, 
1176                       title: 'FFmpeg info',
1177                     });
1178                   });
1179 */
1180                 });
1181                 </script>
1182 EOM
1183         $script =~ s/^\t{2}//gm;
1184         $HTML =~ s/%SCRIPT%/$script/;
1185
1186         my $recording = $cfg->param( 'path.recpath' );
1187         my $movedest  = $cfg->param( 'path.ts_movepath' );
1188         my $recorded  = $cfg->param( 'path.recorded' );
1189
1190         if ( $mode_sub eq 'log' ) {
1191                 my $title = $params{ 'title' };
1192                 my $log = read_file( "$recording/$title.log" ) if ( -e "$recording/$title.log" );
1193                 utf8::decode( $log );
1194                 $HTML .= '<pre>'.$log."</pre>\n";
1195                 goto end;
1196         }
1197         if ( $mode_sub eq 'logzip' ) {
1198                 my $title = $params{ 'title' };
1199                 my $zip = Archive::Zip->new();
1200                 my $logzip;
1201                 die 'read error' unless $zip->read("$recording/$title.log.zip") == AZ_OK;
1202                 my @members = $zip->members();
1203                 foreach (@members) {
1204                         $logzip .= $_->fileName() . "\n";
1205                         my @lines = split /\n|\r/, $zip->contents( $_->fileName() );
1206                         my %count;
1207                         @lines = grep {!$count{$_}++} @lines;
1208                         $logzip .= join "\n", @lines;
1209                         $logzip .= "\n<hr>\n";
1210                 }
1211
1212                 utf8::decode( $logzip );
1213                 $HTML .= '<pre>'.$logzip."</pre>\n";
1214                 goto end;
1215         }
1216         if ( $mode_sub eq 'ffmpeg' ) {
1217                 my $path = $params{ 'path' };
1218                 my $pathtype = $params{ 'pathtype' };
1219                 my $pathdir;
1220                 $pathdir = $recording if ( $pathtype eq 'ing');
1221                 $pathdir = $recorded  if ( $pathtype eq 'ed' );
1222                 $pathdir = $movedest  if ( $pathtype eq 'dst');
1223                 # mediainfo (not working)
1224                 # ffprobe
1225                 # FIXME: sanitize
1226                 my $ffmpeg = `ffmpeg -i "$pathdir/$path" 2>&1` if ( -f "$pathdir/$path" );
1227                 utf8::decode($ffmpeg);
1228                 $ffmpeg = join "<br>\n", grep /Duration|Stream/, split /\n/, $ffmpeg;
1229                 $HTML = $ffmpeg;
1230                 goto end;
1231         }
1232         if ( !$mode_sub ) {
1233                 $HTML .= qq {<a href="rectool.pl?mode=list&amp;mode_sub=new">録画中のみ</a>\n};
1234                 $HTML .= qq {<a href="rectool.pl?mode=list&amp;mode_sub=old">録画後のみ</a>\n<br>\n};
1235         }
1236         if ( !$mode_sub || $mode_sub eq 'new' ) {
1237                 $HTML .= "録画中のファイル一覧<br>\n";
1238                 &list( $recording );
1239         }
1240         if ( !$mode_sub ) {
1241                 $HTML .= "<br>\n";
1242         }
1243         if ( !$mode_sub || $mode_sub eq 'old' ) {
1244                 $HTML .= "録画後のファイル一覧<br>\n";
1245                 &simple_list( $movedest );
1246                 &simple_list( $recorded );
1247         }
1248
1249         sub list {
1250                 local $path = shift;
1251                 local %list = ();
1252                 my @exp = ( 'log', 'log.zip', 'ts.b25', 'ts.tsmix', 'ts', 'ts.log', 
1253                         'aac', 'srt', 'm2v', 'wav', '264', 'mp4', 'mkv' );
1254                 for ( 0..$#exp ) {
1255                         $exp{$exp[$_]} = $_;
1256                 }
1257                 my $exp_count = scalar keys %exp;
1258
1259                 &get_file_list_wrapper( $path, \&wanted );
1260
1261                 my $help;
1262                 foreach my $name ( sort { $exp{$a} <=> $exp{$b} } keys %exp ) {
1263                         $help .= $exp{$name} + 1 . " = $name / ";
1264                 }
1265                 $HTML .= $help;
1266                 $help  = qq {<tr style="background-color: #87CEEB"><td>$help\n</td>\n};
1267                 $help .= qq {<td>$_</td>\n} for ( 1..$exp_count );
1268
1269                 $HTML .= qq {<br>\n○ = 完了 / ● = 書き込み中 / ◆ = ファイルサイズ異常<br>\n};
1270                 $HTML .= qq {<table summary="listtable" border=1 cellspacing=0>\n<tr>\n};
1271                 $HTML .= qq {<th>タイトル</th>\n};
1272                 $HTML .= qq {<th>$_</th>\n} for ( 1..$exp_count );
1273                 $HTML .= qq {</tr>\n};
1274
1275                 my $count = 0;
1276
1277                 foreach my $title ( sort keys %list ) {
1278                         my $value = $list{$title};
1279                         my @flag = ( 0 ) x ( $exp_count );
1280                         $HTML .= qq {<tr>\n<td width="600" style="width: 600px; white-space: normal">$title</td>\n};
1281                         foreach my $exp ( keys %{$value} ) {
1282                                 if ( $exp eq 'log' ) {
1283                                         # ログへのリンクを追加
1284                                         my $title = $q->escape( $title );
1285                                         my $extra = qq {<td><a href="rectool.pl?mode=list&amp;mode_sub=log&amp;title=$title">○</a></td>\n};
1286
1287                                         $value->{$exp}->{extra} = $extra;
1288                                 }
1289                                 elsif ( $exp eq 'log.zip' ) {
1290                                         # ZIPログへのリンクを追加
1291                                         my $title = $q->escape( $title );
1292                                         my $extra = qq {<td><a href="rectool.pl?mode=list&amp;mode_sub=logzip&amp;title=$title">○</a></td>\n};
1293
1294                                         $value->{$exp}->{extra} = $extra;
1295                                 }
1296                                 elsif ( $exp eq 'mp4' ) {
1297                                         # ○などの代わりにサイズを表示
1298                                         # $value->{$exp}->{style} = $value->{$exp}->{size};
1299                                         my $size = $value->{$exp}->{size};
1300                                         my $extra = qq {<td><span class="ffmpeg" path="$title.mp4" pathtype="ing">$size</span></td>\n};
1301                                         $value->{$exp}->{extra} = $extra;
1302                                 }
1303                                 elsif ( $exp eq 'mkv' ) {
1304                                         # サムネイルへのリンクを追加
1305                                         my $title = $q->escape( $title );
1306
1307                                         my $extra = qq {<td><a title="$value->{$exp}->{size}" href="rectool.pl?mode=thumb&amp;title=$title">■</a></td>\n};
1308                                         $value->{$exp}->{extra} = $extra;
1309                                 }
1310                                 $flag[$exp{$exp}] = $value->{$exp};
1311                         }
1312                         foreach ( @flag ) {
1313                                 my $size  = $_->{size};
1314                                 my $style = $_->{style};
1315                                 my $span  =  $size ? qq {<span title="$size">$style</span>} : '<br>';
1316                                 $HTML .= $_->{extra} || qq {<td>$span</td>\n};
1317                         }
1318                         $HTML .= qq {</tr>\n};
1319                         $HTML .= $help unless ( ++$count % 20 );
1320                 }
1321                 $HTML .= qq {</table>\n};
1322
1323                 sub wanted {
1324                         my $rel = shift;
1325                         my $abs = shift;
1326
1327                         return if ( $rel =~ /Thumbs\.db/ );
1328                         return if ( $rel =~ /\.idx/ );
1329
1330                         $rel =~ s/\.temp$//;
1331                         my $regexp = join '|', keys %exp;
1332                         my ( $title, $exp ) = $rel =~ /(.*?)\.($regexp)$/;
1333                         my ( $size, $style ) = &get_size( $abs );
1334                         $rel =~ s/\.temp$//;
1335                         if ( !$title ) {
1336                                 $title = '_error_exp_'.$rel;
1337                                 $exp   = 'log';
1338                         }
1339                         if ( $title !~ /[^0-9A-F]+/ ) {
1340                                 my $tmp = pack( 'H*', $title );
1341                                 if ( !$tmp ) {
1342                                         $title = '_error_b16_'.$rel;
1343                                         $exp   = 'log';
1344                                 }
1345                                 else {
1346                                         $title = 'Base16_'.$tmp;
1347                                 }
1348                         }
1349                         $list{$title}->{$exp} = { 'style' => $style, 'size' => $size };
1350                 }
1351         }
1352
1353         sub simple_list {
1354                 local $path = shift;
1355                 local @list = ();
1356
1357                 &get_file_list_wrapper( $path, \&simple_wanted );
1358
1359                 @list = nsort @list;
1360
1361                 foreach ( @list ) {
1362                         $HTML .= "$_<br>\n";
1363                 }
1364
1365                 sub simple_wanted {
1366                         my $rel = shift;
1367                         my $abs = shift;
1368
1369                         my ( $size ) = &get_size( $abs );
1370                         $rel = qq {<span class="ffmpeg" path="$rel" pathtype="ed">$rel</span>};
1371                         push @list, $rel ."\t\t". $size;
1372                 }
1373         }
1374
1375         sub get_size {
1376                 my $file = shift;
1377                 my ( $size, $last ) = (stat( $file ))[7,9];
1378                 my @unim = ("B","KiB","MiB","GiB","TiB","PiB");
1379                 my $count = 0;
1380
1381                 while($size >= 1024 ){
1382                         $count++;
1383                         $size = $size / 1024;
1384                 }
1385                 $size *= 100;
1386                 $size  = int( $size );
1387                 $size /= 100;
1388                 if ( time - $last < 10 ) {
1389                         $style = '●';
1390                 }
1391                 elsif ( $size == 0 ) {
1392                         $style = '◆';
1393                 }
1394                 else {
1395                         $style = '○';
1396                 }
1397                 return ( "$size $unim[$count]", $style );
1398         }
1399 }
1400
1401 ################ mode=thumb ################
1402
1403 if ( $mode eq 'thumb' ) {
1404         my $title = $params{ 'title' };
1405         my $pos  = $params{ 'pos' };
1406         my $recording = $cfg->param( 'path.recpath' );
1407
1408         print "Content-Type: image/jpeg\n\n";
1409         exec "ffmpeg -ss 300 -i '$recording/$title.mkv' -f image2 -pix_fmt jpg -vframes 1 -s 320x240 -";
1410         exit;
1411 }
1412
1413 ################ mode=check ################
1414
1415 if ( $mode eq 'check' ) {
1416 }
1417
1418 ################ mode=bravia ################
1419
1420 if ( $mode eq 'bravia' ) {
1421         $HTML =~ s/%HTML_TITLE_OPT%/ - Bravia/;
1422         $HTML .= qq {<div>\n};
1423         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1424         $HTML .= qq {<div>\n};
1425         $HTML .= qq {<table summary="bayestable" border=1 cellspacing=0>\n<tr>\n};
1426         $HTML .= qq {<th>ID</th>\n};
1427         $HTML .= qq {<th>チャンネル</th>\n};
1428         $HTML .= qq {<th>タイトル</th>\n};
1429         $HTML .= qq {<th><a href="rectool.pl?mode=bravia">開始時刻</a></th>\n};
1430         $HTML .= qq {<th>終了時刻</th>\n};
1431         $HTML .= qq {<th>録画時間</th>\n};
1432         $HTML .= qq {<th><a href="rectool.pl?mode=bravia&amp;order=point">ポイント</a></th>\n};
1433         $HTML .= qq {<th>予約</th>\n};
1434         $HTML .= qq {</tr>\n};
1435         my $order = $params{ 'order' };
1436         if ( $order ne 'point' ) {
1437                 $order = 'btime';
1438         }
1439         else {
1440                 $order = 'point DESC';
1441         }
1442         my $ary_ref = $dbh->selectall_arrayref(
1443                 "SELECT id, chtxt, title, btime, etime, point 
1444                 FROM auto_timeline_bayes 
1445                 ORDER BY $order" );
1446
1447         foreach my $line ( @{ $ary_ref } ) {
1448                 my ( $begin, $end, $diff ) = &str2readable( $line->[3], $line->[4] );
1449
1450                 $line->[1] = $chtxt_chname{$line->[1]} || $line->[1];
1451                 $HTML .= qq {<tr align="center">\n};
1452                 $HTML .= qq {<td>$line->[0]</td>\n};
1453                 $HTML .= qq {<td>$line->[1]</td>\n};
1454                 $HTML .= qq {<td>$line->[2]</td>\n};
1455                 $HTML .= qq {<td>$begin</td>\n<td>$end</td>\n<td>$diff</td>\n};
1456                 $HTML .= qq {<td>$line->[5]</td>\n};
1457                 $HTML .= qq {<td><a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;bayesid=$line->[0]">予約</a></td>\n};
1458                 $HTML .= qq {</tr>\n};
1459         }
1460         $HTML .= qq {</table>\n};
1461         $HTML .= qq {</div>\n};
1462         $HTML .= qq {</form>\n};
1463
1464 }
1465
1466 ################ mode=proc ################
1467
1468 if ( $mode eq 'proc' ) {
1469         $HTML =~ s/%HTML_TITLE_OPT%/ - Proposal/;
1470         $HTML .= qq {<div>\n};
1471         $HTML .= qq {<table summary="proctable" border=1 cellspacing=0>\n<tr>\n};
1472         $HTML .= qq {<th>タイプ</th>\n};
1473         $HTML .= qq {<th>タイトル</th>\n};
1474         $HTML .= qq {<th>予約</th>\n};
1475         $HTML .= qq {</tr>\n};
1476
1477         my $ary_ref = $dbh->selectall_arrayref(
1478                 "SELECT type, chtxt, title 
1479                 FROM auto_proc 
1480                 ORDER BY title " );
1481
1482         foreach my $line ( @{ $ary_ref } ) {
1483                 my $url;
1484                 $line->[3] = $q->escape( $line->[2] );
1485                 my $opt = $dbh->selectrow_array( 
1486                         "SELECT opt FROM in_timeline_log 
1487                         WHERE title = '$line->[2]' "
1488                 );
1489
1490                 if ( $line->[0] eq 'auto_suggest_dec' ) {
1491                         unless ( $dbh->selectrow_array( 
1492                                 "SELECT 1 FROM timeline 
1493                                 WHERE ( type = 'convert_b25_ts' OR type = 'convert_b25_ts_running' )
1494                                 AND title = '$line->[2]' "
1495                         ) ) {
1496                                 $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};
1497                         }
1498                 }
1499                 elsif ( $line->[0] eq 'auto_suggest_enc' ) {
1500                         unless ( $dbh->selectrow_array( 
1501                                 "SELECT 1 FROM timeline 
1502                                 WHERE ( type = 'convert_ts_mp4' OR type = 'convert_ts_mp4_running' ) 
1503                                 AND title = '$line->[2]' "
1504                         ) ) {
1505                                 $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};
1506                         }
1507                 }
1508                 else {
1509                         unless ( $dbh->selectrow_array( 
1510                                 "SELECT 1 FROM timeline 
1511                                 WHERE ( type LIKE 'convert_avi%' OR type = 'convert_mkv' ) 
1512                                 AND title = '$line->[2]' "
1513                         ) ) {
1514                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]};
1515                         }
1516                 }
1517                 if ( $url ) { 
1518                         $href = qq {<a href="$url">予約</a>};
1519                 }
1520                 else {
1521                         $href = q {予約済};
1522                 }
1523
1524                 my $color = $color{$type_suggest{$line->[0]}} ? $color{$type_suggest{$line->[0]}} : '';
1525                 $line->[0] = $type{$line->[0]} ? $type{$line->[0]} : $line->[0];
1526                 $line->[0] = qq {<span style="color: $color">$line->[0]</span>} if ( $color );
1527                 $HTML .= qq {<tr align="center">\n};
1528                 $HTML .= qq {<td>$line->[0]</td>\n};
1529                 $HTML .= qq {<td align="left">$line->[2]</td>\n};
1530                 $HTML .= qq {<td>$href</td>\n};
1531                 $HTML .= qq {</tr>\n};
1532         }
1533
1534         $HTML .= qq {</table>\n};
1535 }
1536
1537 ################ mode=jbk ################
1538
1539 if ( $mode eq 'jbk' ) {
1540         $HTML =~ s/%HTML_TITLE_OPT%/ - JBK/;
1541         $HTML .= qq {<div>\n};
1542
1543         if ( $mode_sub eq 'add' ) {
1544                 my $keyword = $params{ 'keyword' };
1545                 utf8::decode( $keyword );
1546                 $HTML .= "キーワード「$keyword」を追加しました。<br>\n";
1547                 $dbh->do( 
1548                         "INSERT INTO in_auto_jbk_key ( keyword ) 
1549                         VALUES ( '$keyword' )" 
1550                 );
1551         }
1552         elsif ( $mode_sub eq 'del' ) {
1553                 my $id = $params{ 'id' };
1554                 my $keyword = $dbh->selectrow_array( 
1555                         "SELECT keyword FROM in_auto_jbk_key 
1556                         WHERE id = '$id' " );
1557                 $HTML .= "キーワード「$keyword」を削除しました。<br>\n";
1558                 $dbh->do( 
1559                         "DELETE FROM in_auto_jbk_key WHERE id = '$id'" 
1560                 );
1561         }
1562         elsif ( $mode_sub eq 'on' ) {
1563                 my $id = $params{ 'id' };
1564                 $HTML .= "キーワード「$keyword」を自動録画対象にしました。<br>\n";
1565                 $dbh->do( 
1566                         "UPDATE in_auto_jbk_key SET auto = 1 WHERE id = '$id'" 
1567                 );
1568         }
1569         elsif ( $mode_sub eq 'off' ) {
1570                 my $id = $params{ 'id' };
1571                 $HTML .= "キーワード「$keyword」を自動録画対象から外しました。<br>\n";
1572                 $dbh->do( 
1573                         "UPDATE in_auto_jbk_key SET auto = 0 WHERE id = '$id'" 
1574                 );
1575         }
1576
1577         $HTML .= qq {<table summary="jbktable" border=1 cellspacing=0>\n<tr>\n};
1578         $HTML .= qq {<th>ID</th>\n};
1579         $HTML .= qq {<th>キーワード</th>\n};
1580         $HTML .= qq {<th>自動録画</th>\n};
1581         $HTML .= qq {<th>切り替え</th>\n};
1582         $HTML .= qq {<th>録画オプション</th>\n};
1583         $HTML .= qq {<th>削除</th>\n};
1584         $HTML .= qq {</tr>\n};
1585
1586         my $ary_ref = $dbh->selectall_arrayref(
1587                 "SELECT id, keyword, auto, opt 
1588                 FROM in_auto_jbk_key
1589                 ORDER BY id " );
1590
1591         foreach my $line ( @{ $ary_ref } ) {
1592                 my $delurl = "rectool.pl?mode=jbk&amp;mode_sub=del&amp;id=$line->[0]";
1593                 my $auto = $line->[2] ? 'on' : 'off';
1594                 my $oppo = $line->[2] ? 'off' : 'on';
1595                 my $oppourl = "rectool.pl?mode=jbk&amp;mode_sub=$oppo&amp;id=$line->[0]";
1596                 $oppo .= "にする";
1597
1598                 $HTML .= qq {<tr align="center">\n};
1599                 $HTML .= qq {<td>$line->[0]</td>\n};
1600                 $HTML .= qq {<td>$line->[1]</td>\n};
1601                 $HTML .= qq {<td>$auto</td>\n};
1602                 $HTML .= qq {<td><a href="$oppourl">$oppo</a></td>\n};
1603                 $HTML .= qq {<td>$line->[3]</a></td>\n};
1604                 $HTML .= qq {<td><a href="$delurl">削除</a></td>\n};
1605                 $HTML .= qq {</tr>\n};
1606         }
1607
1608         $HTML .= qq {</table>\n};
1609
1610         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1611         $HTML .= qq {<div>\n};
1612         $HTML .= qq {<input type="hidden" name="mode" value="jbk">\n};
1613         $HTML .= qq {<input type="hidden" name="mode_sub" value="add">\n};
1614         $HTML .= qq {<input name="keyword" type="text">\n};
1615         $HTML .= qq {<input type="submit" value="追加">\n</div>\n</form>\n<br>\n};
1616
1617         $HTML .= qq {<table summary="jbkrestable" border=1 cellspacing=0>\n<tr>\n};
1618         $HTML .= qq {<th>ID</th>\n};
1619         $HTML .= qq {<th>チャンネル</th>\n};
1620         $HTML .= qq {<th>タイトル</th>\n};
1621         $HTML .= qq {<th>開始時刻</th>\n};
1622         $HTML .= qq {<th>終了時刻</th>\n};
1623         $HTML .= qq {<th>録画時間</th>\n};
1624         $HTML .= qq {<th>予約</th>\n};
1625         $HTML .= qq {</tr>\n};
1626
1627         $ary_ref = $dbh->selectall_arrayref(
1628                 "SELECT id, auto_timeline_keyword.chtxt, epg_ch.chname, title, btime, etime 
1629                 FROM auto_timeline_keyword 
1630                 INNER JOIN epg_ch ON auto_timeline_keyword.chtxt = epg_ch.chtxt 
1631                 ORDER BY btime" 
1632                 , {Slice=>{}} );
1633
1634         foreach my $line ( @{ $ary_ref } ) {
1635                 my ( $begin, $end, $diff ) = &str2readable( $line->{btime}, $line->{etime} );
1636                 $line->{btime} =~ s/(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/$1$2$3$4$5$6/;
1637                 $line->{etime} =~ s/(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/$1$2$3$4$5$6/;
1638                 my $url = qq "rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$line->{chtxt}&amp;start=$line->{btime}&amp;stop=$line->{etime}";
1639
1640                 $HTML .= qq {<tr align="center">\n};
1641                 $HTML .= qq {<td>$line->{id}</td>\n};
1642                 $HTML .= qq {<td>$line->{chname}</td>\n};
1643                 $HTML .= qq {<td>$line->{title}</td>\n};
1644                 $HTML .= qq {<td>$begin</td>\n};
1645                 $HTML .= qq {<td>$end</td>\n};
1646                 $HTML .= qq {<td>$diff</td>\n};
1647                 $HTML .= qq {<td><a href="$url">予約</a></td>\n};
1648                 $HTML .= qq {</tr>\n};
1649         }
1650
1651         $HTML .= qq {</table>\n};
1652
1653 }
1654
1655 ################ mode=recognize ################
1656
1657 if ( $mode eq 'recognize' ) {
1658         $HTML =~ s/%HTML_TITLE_OPT%/ - Recognizer/;
1659
1660         my $text  = $params{ 'text' };
1661         utf8::decode( $text );
1662         $chtxt = $params{ 'chtxt' };
1663         my $title = $params{ 'title' };
1664         utf8::decode( $title );
1665
1666         $HTML .= qq {<div>\n};
1667         $HTML .= qq {与えられた文字列のうち、番組の放送時刻と思われる文字列を認識します。<br>\n};
1668         $HTML .= qq {番組表が取得できない一週間以上先の予約ができます。<br>\n};
1669         $HTML .= qq {<form method="post" action="rectool.pl">\n};
1670         $HTML .= qq {<div>\n};
1671         &draw_form_channel( 'nonone' );
1672         $HTML .= qq {<input type="text" name="title" value="$title">\n};
1673         $HTML .= qq {<br>\n};
1674         $HTML .= qq {<input type="hidden" name="mode" value="recognize">\n};
1675         $HTML .= qq {<textarea name="text" cols=40 rows=4>\n$text</textarea>\n};
1676         $HTML .= qq {<input type="submit" value="実行">\n</div>\n</form>\n};
1677
1678         my $ch_list = join '|', grep /.+/, values %chtxt_0_chname;
1679         my %ch_reverse = reverse %chtxt_0_chname;
1680
1681         if ( $text ) {
1682                 my ( $year, $month, $day );
1683                 my ( $bhour, $bminute, $ehour, $eminute );
1684                 my $next_day = 0;
1685                 foreach ( split /\n/, $text ) {
1686                         my @bdate = /(\d{4}).(\d{1,2}).(\d{1,2})/;
1687                         s/(\d{4}).(\d{2}).(\d{2})//;
1688                         my @btime = /(\d{1,2})[::](\d{1,2})/;
1689                         s/(\d{1,2})[::](\d{2})//;
1690                         my @etime = /(\d{1,2})[::](\d{1,2})/;
1691                         s/(\d{1,2})[::](\d{2})//;
1692                         s/\(.*\)//;
1693                         if ( !@bdate ) {
1694                                 $bdate[0] = Time::Piece->localtime->year;
1695                                 ( $bdate[1], $bdate[2] ) = /(\d{1,2})月(\d{1,2})日/;
1696                                 s/(\d{1,2})月(\d{1,2})日//;
1697                         }
1698                         next if (!( @bdate || @btime ));
1699                         ( $year,  $month, $day ) = @bdate if ( $bdate[0] && $bdate[1] && $bdate[2] );
1700                         ( $bhour, $bminute )     = @btime if ( defined $btime[0] && defined $btime[1] );
1701                         ( $ehour, $eminute )     = @etime if ( defined $etime[0] && defined $etime[1] );
1702                         $next_day = 1 if ( /深夜/ );
1703                         my ( $ch ) = /($ch_list)/;
1704                         my $chtxt = $ch_reverse{$ch} if ( $ch && $ch_reverse{$ch} );
1705                         s/($ch_list)//;
1706
1707                         if ( $year && $month && $day && defined $bhour && defined $bminute ) {
1708                                 my $tp  = Time::Piece->strptime( "$year-$month-$day $bhour:$bminute", '%Y-%m-%d %H:%M' );
1709                                 my $etp = Time::Piece->strptime( "$year-$month-$day $ehour:$eminute", '%Y-%m-%d %H:%M' ) if ( defined $ehour && defined $eminute );
1710                                 $tp += ONE_DAY if ( $next_day );
1711                                 my $start = $tp->strftime( '%Y%m%d%H%M%S' );
1712                                 my $stop  = defined $etp ? 
1713                                         $etp->strftime( '%Y%m%d%H%M%S' ) :
1714                                         ( $tp + ONE_MINUTE * 30 )->strftime( '%Y%m%d%H%M%S' );
1715                                 $title = $_ if ( !$title );
1716                                 my $url = qq "rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$chtxt&amp;start=$start&amp;stop=$stop&amp;title=$title";
1717                                 $HTML .= qq {認識結果:$year-$month-$day $bhour:$bminute -> $ehour:$eminute 残り:$_<a href="$url">リンク</a> <br>\n};
1718                         }
1719                 }
1720         }
1721 }
1722
1723 ################ mode=expert ################
1724
1725 if ( $mode eq 'expert' ) {
1726         my $ary_ref;
1727
1728         $HTML =~ s/%HTML_TITLE_OPT%/ - Expert/;
1729         $HTML .= qq {<div>\n};
1730
1731         if ( $mode_sub eq 'reget' ) {
1732                 my $bctype = $params{ 'bctype' };
1733                 my ( $chtxt, $chname ) = $dbh->selectrow_array( 
1734                         "SELECT chtxt, chname FROM epg_ch 
1735                         WHERE bctype = '$bctype' " );
1736                 $HTML .= "Update for $chname ( chtxt: $chtxt ) has been reserved.<br>\n";
1737                 $dbh->do( "UPDATE epg_ch SET status = '2' WHERE chtxt = '$chtxt' " );
1738                 goto end;
1739         }
1740
1741         if ( $params{ 'dump' } ) {
1742                 # id、epgXXを除外して出力
1743                 my $sth = $dbh->prepare(
1744                         "SELECT type, chtxt, title, btime, etime, deltatime, deltaday, opt, counter 
1745                         FROM timeline"
1746                 );
1747                 # my $yaw = XML::Handler::YAWriter->new;
1748                 my $output;
1749                 my $wri = XML::SAX::Writer->new( Output => \$output );
1750                 my $gen = XML::Generator::DBI->new(
1751                         Handler => $wri,
1752                         AsAttributes => 1,
1753                 );
1754                 $gen->execute($sth);
1755                 # $HTML .= join "\n", @{$yaw->{Strings}};
1756                 utf8::encode($output);
1757                 my $len = length $output;
1758                 print "Content-Type: text/xml\n";
1759                 print "Content-Length: $len\n";
1760                 print "Content-Disposition: attachment; filename=\"rec10-reserve-dump.xml\"\n\n";
1761                 print $output;
1762                 exit;
1763         }
1764
1765         if ( $params{ 'restore' } ) {
1766                 my $fh = $q->upload('upfile');
1767                 my $xml = read_file( $fh );
1768                 my $tpp = XML::TreePP->new;
1769                 my $tree = $tpp->parse( $xml );
1770                 my @rows = @{ $tree->{database}->{select}->{row} };
1771
1772                 # 高速化のためVALUESを連結
1773                 # INSERT INTO timeline ( ... ) VALUES ( aa, bb, cc ), ( kk, ll, mm ), ( xx, yy, zz )
1774                 my @keys = qw/type chtxt title btime etime deltatime deltaday opt counter/;
1775                 my $keys = join ', ', @keys;
1776                 my @values;
1777
1778                 foreach my $row ( @rows ) {
1779                         my $values = join ', ', map { "'".$row->{'-'.$_}."'" } @keys;
1780                         utf8::decode( $values );
1781                         push @values, "( $values )";
1782                 }
1783                 my $sql = "INSERT INTO timeline ( $keys ) VALUES " . join ', ', @values;
1784                 $dbh->do( "TRUNCATE TABLE timeline" );
1785                 $dbh->do( $sql );
1786                 goto end;
1787         }
1788
1789         my @ary = $dbh->selectrow_array(
1790                 "SELECT auto_jbk, auto_bayes, auto_del_tmp, auto_opt 
1791                 FROM in_settings " );
1792         my $opt = pop @ary;
1793         @ary = map( $_ ? 'checked' : '', @ary );
1794
1795         $HTML .= qq {内部オプションの変更\n<br>};
1796         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1797         $HTML .= qq {<div>\n};
1798         $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1799         $HTML .= qq {<input type="hidden" name="mode_sub" value="setting">\n};
1800         $HTML .= qq {<input type="checkbox" name="jbk"     value="1" $ary[0]>自動地引\n};
1801         $HTML .= qq {<input type="checkbox" name="bayes"   value="1" $ary[1]>自動ベイズ\n};
1802         $HTML .= qq {<input type="checkbox" name="del_tmp" value="1" $ary[2]>自動一時ファイル削除\n};
1803         $HTML .= qq {自動オプション:<input type="text" name="opt" value="$opt">\n};
1804         $HTML .= qq {<input type="submit" value="保存">\n</div>\n</form>\n};
1805
1806
1807         $HTML .= qq {<hr>\n番組表のカテゴリ一覧と内蔵のカテゴリ一覧の合致を確認中...\n};
1808         $ary_ref = $dbh->selectcol_arrayref(
1809                 "SELECT DISTINCT category FROM epg_timeline"
1810         );
1811         my @category = map {$_->{name}} sort values %category;
1812         if ( List::Compare->new( $ary_ref, \@category )->get_symdiff ) {
1813                 $HTML .= qq {一致しません<br>\n};
1814                 $HTML .= qq {番組表:@{$ary_ref}<br>\n内蔵:@category<br>\n};
1815         }
1816         else {
1817                 $HTML .= qq {一致しました<br>\n};
1818         }
1819
1820
1821         @ary = $dbh->selectrow_array( "SELECT terec, bscsrec, b252ts, ts2avi FROM in_status" );
1822         $HTML .= qq {<hr>\n地上波録画数:$ary[0]\n衛星波録画数:$ary[1]\n解読数:$ary[2]\n縁故数:$ary[3]\n<br>\n};
1823         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1824         $HTML .= qq {<div>\n};
1825         $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1826         $HTML .= qq {<input type="hidden" name="mode_sub" value="fixstatus">\n};
1827         $HTML .= qq {<input type="submit" name="terec"   value="地上波録画数をリセット">\n};
1828         $HTML .= qq {<input type="submit" name="bscsrec" value="衛星波録画数をリセット">\n};
1829         $HTML .= qq {<input type="submit" name="b252ts"  value="解読数をリセット">\n};
1830         $HTML .= qq {<input type="submit" name="ts2avi"  value="縁故数をリセット">\n</div>\n</form>\n};
1831
1832
1833         $HTML .= qq {<hr>\nRec10 バージョン:$rec10_version\nrectool バージョン:$rectool_version\n<br>\n};
1834
1835
1836         if (0) {
1837         $HTML .= qq {<hr>\n番組表の欠落<br>\n};
1838         $ary_ref = $dbh->selectall_arrayref( "SELECT chname, chtxt FROM epg_ch" );
1839         foreach my $line ( @{$ary_ref} ) {
1840                 my $ary_ref = $dbh->selectall_arrayref( 
1841                         "SELECT start, stop, title FROM epg_timeline WHERE channel = '$line->[1]' ORDER BY start" 
1842                 );
1843                 my $error;
1844                 my @program_old = ( '', $ary_ref->[0]->[0] );
1845                 my $program_old = \@program_old;
1846
1847                 foreach my $program_new ( @{$ary_ref} ) {
1848                         if ( $program_old->[1] ne $program_new->[0] && 
1849                                 $program_old->[2] !~ /クロ?ジング|クロージング|エンディング|休止|ミッドナイト|ending/ && 
1850                                 $program_new->[2] !~ /オープニング|ウィークリー・インフォメーション|モーニング|opening/ && 
1851                                 ( str2datetime( $program_new->[0] ) - str2datetime( $program_old->[1] ) )->delta_minutes > 30 ) {
1852                                 $program_old->[1] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
1853                                 $program_new->[0] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
1854                                 $error .= qq{    $program_old->[2]    $program_old->[1]\n    ->  $program_new->[2]    $program_new->[0]\n};
1855                         }
1856                         $program_old = $program_new;
1857                 }
1858                 $HTML .= qq {<pre>\n$line->[0]\n$error</pre>\n} if ( $error );
1859         }
1860         }
1861
1862
1863         $HTML .= qq {<hr>\n予約の保存・復元<br>\n};
1864         $HTML .= qq {<form action="rectool.pl" method="post" enctype="multipart/form-data">\n};
1865         $HTML .= qq {<div>\n};
1866         $HTML .= qq {<input type="hidden" name="mode" value="expert">\n};
1867         $HTML .= qq {<input type="submit" name="dump" value="保存">\n};
1868         $HTML .= qq {<input type="file" name="upfile">\n};
1869         $HTML .= qq {<input type="submit" name="restore" value="復元">\n};
1870         $HTML .= qq {</div>\n};
1871         $HTML .= qq {</form>\n};
1872
1873
1874         $ary_ref = $dbh->selectall_arrayref( 
1875                 "SELECT chname, chtxt, bctype, ch, csch, tsid, updatetime, status, visible 
1876                 FROM epg_ch 
1877                 ORDER BY chtxt " );
1878         $HTML .= qq {<hr>\n番組表の更新状況<br>\n};
1879         $HTML .= qq {<table summary="channeltable" border=1 cellspacing=0>\n<tr>\n};
1880         $HTML .= qq {<th>チャンネル名</th>\n};
1881         $HTML .= qq {<th>chtxt</th>\n};
1882         $HTML .= qq {<th>bctype</th>\n};
1883         $HTML .= qq {<th>ch</th>\n};
1884         $HTML .= qq {<th>csch</th>\n};
1885         $HTML .= qq {<th>tsid</th>\n};
1886         $HTML .= qq {<th>最終更新時刻</th>\n};
1887         $HTML .= qq {<th>状態</th>\n};
1888         $HTML .= qq {<th>表示</th>\n};
1889         $HTML .= qq {</tr>\n};
1890         foreach my $status ( @{$ary_ref} ) {
1891                 $HTML .= qq {<tr>\n};
1892                 $HTML .= qq {<td>$status->[0]</td>\n<td>$status->[1]</td>\n<td>$status->[2]</td>\n<td>$status->[3]</td>\n};
1893                 $HTML .= qq {<td>$status->[4]</td>\n<td>$status->[5]</td>\n<td>$status->[6]</td>\n<td>$status->[7]</td>\n};
1894                 $HTML .= qq {<td>$status->[8]</td>\n};
1895                 $HTML .= qq {</tr>\n};
1896         }
1897         $HTML .= qq {</table>\n};
1898
1899         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1900         $HTML .= qq {<div>\n};
1901         $HTML .= qq {番組表を再取得する\n};
1902         $HTML .= qq {<input type="hidden" name="mode" value="expert">\n};
1903         $HTML .= qq {<input type="hidden" name="mode_sub" value="reget">\n};
1904         $HTML .= qq {<select name="bctype">\n};
1905         $ary_ref = $dbh->selectall_arrayref(
1906                 "SELECT DISTINCT bctype 
1907                 FROM epg_ch WHERE bctype NOT LIKE '_s%' "
1908         );
1909         foreach my $line ( @{$ary_ref} ) {
1910                 $HTML .= qq {<option value="$line->[0]">$line->[0]</option>\n};
1911         }
1912         $HTML .= qq {<option value="bs">BS</option>\n};
1913         $HTML .= qq {<option value="cs1">CS1</option>\n};
1914         $HTML .= qq {<option value="cs2">CS2</option>\n};
1915         $HTML .= qq {</select>\n};
1916         $HTML .= qq {<input type="submit" value="実行">\n</div>\n</form>\n};
1917
1918
1919
1920         $ary_ref = $dbh->selectall_arrayref(
1921                 "SELECT id, type, chtxt, title, btime, etime, opt, deltaday, deltatime 
1922                 FROM timeline 
1923                 ORDER BY id ");
1924         $HTML .= qq {<hr>\n予約表<br>\n};
1925         $HTML .= qq {<table summary="rectimetable" border=1 cellspacing=0>\n<tr>\n};
1926         $HTML .= qq {<th>ID</th>\n};
1927         $HTML .= qq {<th>type</th>\n};
1928         $HTML .= qq {<th>chtxt</th>\n};
1929         $HTML .= qq {<th>title</th>\n};
1930         $HTML .= qq {<th>btime</th>\n};
1931         $HTML .= qq {<th>etime</th>\n};
1932         $HTML .= qq {<th>opt</th>\n};
1933         $HTML .= qq {<th>deltaday</th>\n};
1934         $HTML .= qq {<th>deltatime</th>\n};
1935         $HTML .= qq {</tr>\n};
1936         foreach my $status ( @{$ary_ref} ) {
1937                 $HTML .= qq {<tr>\n};
1938                 $HTML .= qq {<td>$status->[0]</td>\n<td>$status->[1]</td>\n<td>$status->[2]</td>\n<td>$status->[3]</td>\n};
1939                 $HTML .= qq {<td>$status->[4]</td>\n<td>$status->[5]</td>\n<td>$status->[6]</td>\n<td>$status->[7]</td>\n};
1940                 $HTML .= qq {<td>$status->[8]</td>\n};
1941                 $HTML .= qq {</tr>\n};
1942         }
1943         $HTML .= qq {</table>\n};
1944 }
1945
1946 ################ mode=log ################
1947
1948 if ( $mode eq 'log' ) {
1949         $HTML =~ s/%HTML_TITLE_OPT%/ - Log/;
1950
1951         $HTML .= qq {<div>\n};
1952         $HTML .= qq {<table summary="reclogtable" border=1 cellspacing=0>\n<tr>\n};
1953         $HTML .= qq {<th>ID</th>\n};
1954         $HTML .= qq {<th>chtxt</th>\n};
1955         $HTML .= qq {<th>title</th>\n};
1956         $HTML .= qq {<th>btime</th>\n};
1957         $HTML .= qq {<th>etime</th>\n};
1958         $HTML .= qq {<th>opt</th>\n};
1959         $HTML .= qq {<th>exp</th>\n};
1960         $HTML .= qq {<th>longexp</th>\n};
1961         $HTML .= qq {<th>category</th>\n};
1962         $HTML .= qq {</tr>\n};
1963         $ary_ref = $dbh->selectall_arrayref(
1964                 "SELECT id, chtxt, title, btime, etime, opt, exp, longexp, category 
1965                 FROM in_timeline_log "
1966         );
1967         foreach my $line ( @{$ary_ref} ) {
1968                 $HTML .= qq {<tr>\n};
1969                 $HTML .= qq {<td>$line->[0]</td>\n<td>$line->[1]</td>\n<td>$line->[2]</td>\n<td>$line->[3]</td>\n};
1970                 $HTML .= qq {<td>$line->[4]</td>\n<td>$line->[5]</td>\n<td>$line->[6]</td>\n<td>$line->[7]</td>\n};
1971                 $HTML .= qq {<td>$line->[8]</td>\n};
1972                 $HTML .= qq {</tr>\n};
1973         }
1974         $HTML .= qq {</table>\n};
1975 }
1976
1977 ################ mode=help ################
1978
1979 if ( $mode eq 'help' ) {
1980         $HTML =~ s/%HTML_TITLE_OPT%/ - Help/;
1981         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
1982         $HTML .= qq {<div>\n};
1983         $HTML .= qq {ヘルプ\n};
1984 }
1985
1986 ################ mode=test ################
1987
1988 if ( $mode eq 'test' ) {
1989         $HTML =~ s/%HTML_TITLE_OPT%/ - Test/;
1990         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
1991         $HTML .= qq {<div>\n};
1992
1993         $tmp = read_file( '/etc/rec10.conf' );
1994         $tmp =~ s/\n/<br>\n/gs;
1995         $HTML .= $tmp;
1996
1997         # $HTML .= Dumper( $ary_ref );
1998 }
1999
2000 ################ mode nasi ################
2001
2002 if ( !$mode ) {
2003         &draw_form();
2004         $HTML =~ s/%HTML_TITLE_OPT%/ - Top/;
2005         $HTML .= qq {Welcome to Rec10!<br>\n};
2006         goto end;
2007 }
2008
2009
2010 end:
2011 #<div style="float: right">
2012 $HTML .= <<EOM;
2013 </div>
2014 </body>
2015 </html>
2016 EOM
2017
2018 #<div align="center">
2019 #$HTML_ADV = $HTML_ADV_IMG . $HTML_ADV_TEXT if ( !$HTML_ADV );
2020 my $HTML_ADV = '';
2021 $HTML_HEADER = qq {<div style="text-align: center">\n$HTML_ADV\n</div>\n};
2022
2023 &draw_menu();
2024 $HTML =~ s/%HTML_TITLE_OPT%//;
2025 $HTML =~ s/%REFRESH%//;
2026 $HTML =~ s/%SCRIPT%//;
2027 $HTML =~ s/%CSS%//;
2028 $HTML =~ s/%HTML_HEADER%/$HTML_HEADER/;
2029
2030 utf8::encode( $HTML );
2031 print $HTTP_HEADER;
2032 print $HTML;
2033 exit;
2034
2035 sub draw_menu {
2036         $hires = Time::HiRes::time() - $hires;
2037         $last_modified = localtime((stat 'rectool.pl')[9]);
2038
2039         $HTML_HEADER .= qq {<div>\n};
2040         $HTML_HEADER .= qq {<span style="float: right; font-size: 8px">Last-Modified: $last_modified<br>Time-Elapsed: $hires 秒</span>\n};
2041         $HTML_HEADER .= qq {<span style="float: left">\n};
2042         $HTML_HEADER .= qq {<a href="rectool.pl">トップ(検索)</a>\n};
2043         $HTML_HEADER .= qq {<a href="rectool.pl?mode=schedule">予約確認</a>\n};
2044         $HTML_HEADER .= qq {<a href="rectool.pl?mode=graph">予約状況(画像版)</a>\n};
2045         $HTML_HEADER .= qq {<a href="rectool.pl?mode=list">録画一覧</a>\n};
2046         $HTML_HEADER .= qq {<a href="rectool.pl?mode=bravia">おまかせ</a>\n};
2047         $HTML_HEADER .= qq {<a href="rectool.pl?mode=expert">玄人仕様</a>\n};
2048         $HTML_HEADER .= qq {<a href="rectool.pl?mode=proc">復旧支援</a>\n};
2049         $HTML_HEADER .= qq {<a href="rectool.pl?mode=jbk">地引</a>\n};
2050         $HTML_HEADER .= qq {<a href="rectool.pl?mode=log">録画履歴</a>\n};
2051         $HTML_HEADER .= qq {<a href="rectool.pl?mode=recognize">文字認識</a>\n};
2052         $HTML_HEADER .= qq {<a href="rectool.pl?mode=edit">新規予約</a>\n};
2053 #       $HTML_HEADER .= qq {<a href="../rec10web/rec10web.py">新規予約</a>\n};
2054         $HTML_HEADER .= qq {</span>\n};
2055         $HTML_HEADER .= qq {<hr style="clear: both; background-color: grey; height: 4px">\n};
2056         $HTML_HEADER .= qq {</div>\n};
2057 }
2058
2059 sub draw_form {
2060         $chname = $params{ 'chname' };
2061         $chtxt  = $params{ 'chtxt' };
2062         $key    = $params{ 'key' };
2063         utf8::decode( $key );
2064         if ( $chname ) {
2065                 $chtxt = $dbh->selectrow_array("SELECT chtxt FROM epg_ch WHERE chname = '$chname' ");
2066         }
2067
2068         $HTML .= qq {<div style="float: left">\n};
2069         $HTML .= qq {<form method="get" action="rectool.pl">\n};
2070         $HTML .= qq {<div>\n};
2071         $HTML .= qq {<input type="hidden" name="mode" value="program">\n};
2072
2073         # チャンネル指定
2074         &draw_form_channel();
2075
2076         # 日付指定
2077         $HTML .= qq {<select name="date">\n<option value="" selected>無指定</option>\n};
2078         $ary_ref = $dbh->selectcol_arrayref(
2079                 "SELECT DISTINCT SUBSTRING(start, 1, 8) FROM epg_timeline ORDER BY start"
2080         );
2081         $date_sel = $params{ 'date' };
2082         foreach my $date ( @{ $ary_ref } ) {
2083                 my @date = $date =~ /(.{4})(.{2})(.{2})/;
2084                 $date_prt = "$date[1]/$date[2]";
2085
2086                 if ( $date eq $date_sel ) {
2087                         $HTML .= qq {<option value="$date" selected>$date_prt</option>\n};
2088                 }
2089                 else {
2090                         $HTML .= qq {<option value="$date">$date_prt</option>\n};
2091                 }
2092         }
2093         $HTML .= qq {</select>\n};
2094
2095         # カテゴリ指定
2096         $HTML .= qq {<select name="category">\n<option value="" selected>無指定</option>\n};
2097         $category_sel = $params{ 'category' };
2098         foreach my $category ( keys %category ) {
2099                 if ( $category eq $category_sel ) {
2100                         $HTML .= qq {<option value="$category" selected>$category{$category}->{name}</option>\n};
2101                 }
2102                 else {
2103                         $HTML .= qq {<option value="$category">$category{$category}->{name}</option>\n};
2104                 }
2105         }
2106         $HTML .= qq {</select>\n};
2107
2108         # キーワード指定
2109         $HTML .= qq {<input name="key" type="text" value="$key" style="width:200px" accesskey="s">\n};
2110
2111         # フォーム描画
2112         $HTML .= qq {<input type="submit" value="更新" accesskey="r">\n</div>\n</form>\n};
2113 }
2114
2115 sub draw_form_channel {
2116         $HTML .= qq {<select name="chtxt">\n};
2117         $HTML .= qq {<option value="" selected>無指定</option>\n} if ( shift ne 'nonone' );
2118
2119         foreach my $key ( keys %chtxt_0_chname ) {
2120                 my $value = $chtxt_0_chname{$key};
2121                 if ( ($chtxt && $key eq $chtxt ) || ( $chname && $value eq $chname ) ) {
2122                         $HTML .= qq {<option value="$key" selected>$value</option>\n};
2123                 }
2124                 else {
2125                         $HTML .= qq {<option value="$key">$value</option>\n};
2126                 }
2127         }
2128         $HTML .= qq {</select>\n};
2129 }
2130
2131 sub draw_form_opt {
2132         my $shift = shift;
2133         my ( %selected, %checked );
2134
2135         if ( $chtxt  =~ /BS_103/ ) {
2136                 $selected{F} = 'selected';
2137         }
2138         elsif ( $chtxt  =~ /CS_239|CS_240|CS_335/ ) {
2139                 $selected{H} = 'selected';
2140         }
2141         elsif ( $chtxt =~ /BS_101|BS_102/ || $bctype =~ /cs/ ) {
2142                 $selected{W} = 'selected';
2143         }
2144         elsif ( $bctype =~ /bs|te/ ) {
2145                 $selected{H} = 'selected';
2146         }
2147         $selected{g} = 'selected';
2148         $selected{s} = 'selected';
2149         $checked{a} = $chtxt =~ /CS_331|CS_332|CS_333|CS_334|CS_335/ || $category =~ /アニメ/ ? 'checked' : '';
2150         $checked{l} = '';
2151         $checked{d} = $title =~ /\Q[二]\E|[二]|\Q(二)\E|(二)/ ? 'checked' : '';
2152         $checked{5} = $title =~ /5\.1|5.1/ ? 'checked' : '';
2153         $checked{2} = 'checked';
2154
2155         if ( $opt ) {
2156                 undef %checked;
2157                 undef %selected;
2158                 my @opt = split //, $opt;
2159                 foreach my $opt ( @opt ) {
2160                         $selected{$opt} = 'selected' if ( $opt =~ /S|L|G|H|F/ );
2161                         $checked {$opt} = 'checked'  if ( $opt =~ /a|h|l|d|2|5/ );
2162                 }
2163                 $checked{d} = $title =~ /\Q[二]\E|[二]|\Q(二)\E|(二)/ ? 'checked' : '';
2164                 $checked{5} = $title =~ /5\.1|5.1/ ? 'checked' : '';
2165         }
2166         # 画質/圧縮率ともに指定されていない場合、真ん中をselectedにする
2167         $selected{g} = 'selected' unless ( $selected{u} || $selected{i} || $selected{o} || $selected{p} );
2168         $selected{s} = 'selected' unless ( $selected{q} || $selected{w} || $selected{e} || $selected{r} );
2169
2170         $HTML .= qq {<select name="opt">\n};
2171         #$HTML .= qq {<option value="S" $selected{S}>S 720x480</option>\n};
2172         $HTML .= qq {<option value="W" $selected{W}>W 854x480</option>\n};
2173         $HTML .= qq {<option value="H" $selected{H}>H 1280x720</option>\n};
2174         $HTML .= qq {<option value="F" $selected{F}>F 1920x1080</option>\n};
2175         $HTML .= qq {<option value="I" $selected{I}>I インタレ保持</option>\n};
2176         $HTML .= qq {</select>\n};
2177
2178         $HTML .= qq {<select name="opt">\n};
2179         $HTML .= qq {<option value="u" $selected{u}>最低</option>\n};
2180         $HTML .= qq {<option value="i" $selected{i}>低</option>\n};
2181         $HTML .= qq {<option value=""  $selected{g}>画質</option>\n};
2182         $HTML .= qq {<option value="o" $selected{o}>高</option>\n};
2183         $HTML .= qq {<option value="p" $selected{p}>最高</option>\n};
2184         $HTML .= qq {</select>\n};
2185
2186         $HTML .= qq {<select name="opt">\n};
2187         $HTML .= qq {<option value="q" $selected{q}>最低</option>\n};
2188         $HTML .= qq {<option value="w" $selected{w}>低</option>\n};
2189         $HTML .= qq {<option value=""  $selected{s}>圧縮率</option>\n};
2190         $HTML .= qq {<option value="e" $selected{e}>高</option>\n};
2191         $HTML .= qq {<option value="r" $selected{r}>最高</option>\n};
2192         $HTML .= qq {</select>\n};
2193
2194         $HTML .= qq {<select name="opt">\n};
2195         $HTML .= qq {<option value=""  $selected{s}>コンテナ</option>\n};
2196         $HTML .= qq {<option value="m" $selected{e}>MKV</option>\n};
2197         $HTML .= qq {<option value="4" $selected{r}>MP4</option>\n};
2198         $HTML .= qq {</select>\n};
2199
2200         $HTML .= qq {<select name="opt">\n};
2201         $HTML .= qq {<option value=""  $selected{s}>モバイル向け</option>\n};
2202         $HTML .= qq {<option value="1" $selected{e}>QVGA</option>\n};
2203         $HTML .= qq {<option value="2" $selected{r}>WVGA</option>\n};
2204         $HTML .= qq {<option value="B" $selected{B}>Blu-ray向け</option>\n};
2205         $HTML .= qq {</select>\n};
2206
2207         $HTML .= qq {<input type="checkbox" name="opt" value="a" $checked{a}>24fps(主にアニメ)\n};
2208         $HTML .= qq {<input type="checkbox" name="opt" value="d" $checked{d}>二ヶ国語放送\n};
2209         #$HTML .= qq {<input type="checkbox" name="opt" value="2" $checked{2}>2passモード\n};
2210         $HTML .= qq {<input type="checkbox" name="opt" value="5" $checked{5}>5.1ch放送\n};
2211         $HTML .= qq {<br>\n};
2212         $HTML .= qq {<select name="opt">\n};
2213         $HTML .= qq {<option value="">移動なし</option>\n};
2214         $HTML .= qq {<option value="R">録画後移動</option>\n};
2215         $HTML .= qq {<option value="D">解読後移動</option>\n};
2216         $HTML .= qq {<option value="E">縁故後移動</option>\n};
2217         $HTML .= qq {</select>\n};
2218         $HTML .= qq {<input type="checkbox" name="opt"   value="N">ファイル名日時追加\n} if ( $shift eq 'reserve' );
2219         $HTML .= qq {<input type="checkbox" name="every" value="1">隔週録画\n}           if ( $shift eq 'reserve' );
2220 }
2221
2222 sub parse_program {
2223         $chname  = $params{ 'chname' };
2224         $chtxt   = $params{ 'chtxt' };
2225         $start   = $params{ 'start' };
2226         $stop    = $params{ 'stop' };
2227         $bayesid = $params{ 'bayesid' };
2228         $id      = $params{ 'id' };
2229
2230         # chtxt と chname を相互に補完
2231         if ( $chname ) {
2232                 $chtxt = $dbh->selectrow_array("SELECT chtxt FROM epg_ch WHERE chname = '$chname'");
2233         }
2234         elsif ( $chtxt && $chtxt_0_chname{$chtxt} ) {
2235                 $chname = $chtxt_0_chname{$chtxt};
2236                 ( $chtxt_sql = $chtxt ) =~ s/_0/_%/;
2237                 $bctype = $dbh->selectrow_array("SELECT bctype FROM epg_ch WHERE chtxt LIKE '$chtxt_sql'");
2238         }
2239         elsif ( $chtxt ) {
2240                 $chname = $dbh->selectrow_array("SELECT chname FROM epg_ch WHERE chtxt = '$chtxt'")
2241         }
2242
2243         # EPGから番組の情報を取得
2244         ( $title, $desc, $longdesc, $category ) = $dbh->selectrow_array(
2245                 "SELECT title, exp, longexp, category
2246                 FROM epg_timeline 
2247                 WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' ");
2248         if ( !$bctype ) {
2249                 $bctype = $dbh->selectrow_array("SELECT bctype FROM epg_ch WHERE chtxt = '$chtxt'");
2250         }
2251
2252         if ( $bayesid ) {
2253                 ( $chtxt, $title, $begin, $end ) = $dbh->selectrow_array( 
2254                         "SELECT chtxt, title, btime, etime FROM auto_timeline_bayes WHERE id = '$bayesid' " 
2255                 );
2256                 ( $chname, $bctype ) = $dbh->selectrow_array( 
2257                         "SELECT chname, bctype FROM epg_ch WHERE chtxt = '$chtxt' " 
2258                 );
2259                 $start = str2datetime( $begin )->strftime( '%Y%m%d%H%M%S' );
2260                 $stop  = str2datetime( $end   )->strftime( '%Y%m%d%H%M%S' );
2261                 ( $desc, $longdesc, $category ) = $dbh->selectrow_array( 
2262                         "SELECT exp, longexp, category FROM epg_timeline WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' " 
2263                 );
2264         }
2265         if ( $id ) {
2266                 ( $type, $chtxt, $title, $begin, $end, $deltaday, $deltatime, $opt, $counter ) = $dbh->selectrow_array( 
2267                         "SELECT type, chtxt, title, btime, etime, deltaday, deltatime, opt, counter 
2268                         FROM timeline WHERE id = '$id' " 
2269                 );
2270                 &chtxt_format();
2271                 ( $chname, $bctype ) = $dbh->selectrow_array( 
2272                         "SELECT chname, bctype FROM epg_ch WHERE chtxt LIKE '$chtxt_sql' " 
2273                 );
2274                 $start = str2datetime( $begin )->strftime( '%Y%m%d%H%M%S' );
2275                 $stop  = str2datetime( $end   )->strftime( '%Y%m%d%H%M%S' );
2276                 ( $desc, $longdesc, $category ) = $dbh->selectrow_array( 
2277                         "SELECT exp, longexp, category FROM epg_timeline WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' " 
2278                 );
2279         }
2280         # set $chtxt_0, $chtxt_sql, $bctype_sql
2281         &chtxt_format();
2282         #( $chtxt_no0 ) = $chtxt   =~ /(\d+)_/;
2283         @start = $start =~ /(.{4})(.{2})(.{2})(.{2})(.{2})/;
2284         @stop  = $stop  =~ /(.{4})(.{2})(.{2})(.{2})(.{2})/;
2285         $begin = sprintf( '%04d-%02d-%02d %02d:%02d:%02d', @start, '00' );
2286         $end   = sprintf( '%04d-%02d-%02d %02d:%02d:%02d', @stop , '00' );
2287
2288         if ( $params{ 'title' } ) {
2289                 $title = $params{ 'title' };
2290                 utf8::decode( $title );
2291         }
2292         $HTML .= qq {<!-- chtxt=$chtxt chtxt_0=$chtxt_0 chtxt_sql=$chtxt_sql bctype=$bctype -->\n};
2293 }
2294
2295 sub check_error {
2296         my $is_error;
2297         my $is_same = $dbh->selectrow_array( 
2298                 "SELECT COUNT(*) FROM timeline WHERE chtxt = '$chtxt' AND btime = '$begin' AND etime = '$end'" 
2299         );
2300         my @overlap = &get_overlap();
2301
2302         if ( $is_same ) {
2303                 $HTML .= "同一の番組が既に存在します。<br>\n";
2304                 $is_error = 1;
2305         }
2306         elsif ( $overlap[0] >= 2 ) {
2307                 $HTML .= "時間が被る番組が既に2個存在します。<br>\n";
2308                 $HTML .= $overlap[1];
2309                 $is_error = 2;
2310         }
2311         else {
2312                 $is_error = 0;
2313         }
2314         return $is_error;
2315 }
2316
2317 sub get_overlap {
2318         my $ary_ref = $dbh->selectall_arrayref(
2319                 "SELECT btime, etime, title
2320                 FROM timeline 
2321                 INNER JOIN epg_ch ON timeline.chtxt = epg_ch.chtxt 
2322                 WHERE bctype LIKE '$bctype_sql' AND type IN $type_user_made 
2323                 AND btime < '$end' 
2324                 AND etime > '$begin' 
2325                 "
2326         );
2327
2328         my %overlap;
2329         my $overlap = $max = 0;
2330         my $str;
2331         foreach my $prg ( @{ $ary_ref } ) {
2332                 $str .= "$prg->[0] ? $prg->[1] : $prg->[2]<br>\n";
2333                 $overlap{$prg->[0]} += 1;
2334                 $overlap{$prg->[1]} -= 1;
2335         }
2336         foreach my $key ( sort keys %overlap ) {
2337                 $overlap += $overlap{$key};
2338                 $max = List::Util::max( $max, $overlap );
2339         }
2340         if ( wantarray ) {
2341                 return ( $max, $str );
2342         }
2343         else {
2344                 return $max;
2345         }
2346 }
2347
2348 sub get_file_list_wrapper {
2349         local $base_dir = shift;
2350         local $ptr = shift;
2351
2352         &get_file_list( $base_dir );
2353 }
2354
2355 sub get_file_list{
2356         my $dir = shift;
2357
2358         opendir ( DIR, $dir );
2359         my @list = sort readdir( DIR );
2360         closedir( DIR );
2361
2362         foreach my $file ( @list ) {
2363                 next if ( $file =~ /^\.{1,2}$/ );
2364                 if ( -d "$dir/$file" ){
2365                         &get_file_list("$dir/$file");
2366                 }
2367                 else{
2368                         $abs = "$dir/$file";
2369                         utf8::decode( $abs );
2370                         ( $rel ) = $abs =~ /^$base_dir\/(.*)$/;
2371                         $ptr->( $rel, $abs );
2372                 }
2373         }
2374 }
2375
2376 sub strisjoined {
2377         my $str = shift;
2378
2379         return $str =~ /.{4}-.{2}-.{2} .{2}:.{2}:.{2}/ ? 0 : 1;
2380 }
2381
2382 sub str2datetime {
2383         my $str    = shift;
2384         my @time;
2385
2386         if ( strisjoined( $str ) ) {
2387                 @time = $str =~ /(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/;
2388         }
2389         else {
2390                 @time = $str =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
2391         }
2392         return DateTime->new(
2393                 year   => $time[0], month     => $time[1], day    => $time[2],
2394                 hour   => $time[3], minute    => $time[4], second => $time[5], 
2395                 locale => 'ja_JP' , time_zone => $tz
2396         );
2397 }
2398
2399 sub str2dayname {
2400         my  $str = shift;
2401         our %day_name_cache;
2402
2403         if ( !$day_name_cache{$str} ) {
2404                 $day_name_cache{$str} = str2datetime( $str )->day_name;
2405         }
2406         return $day_name_cache{$str};
2407 }
2408
2409 sub str2readable { 
2410         my $begin = shift;
2411         my $end   = shift;
2412
2413         my $dt_begin = ref( $begin ) eq 'DateTime' ? $begin : &str2datetime( $begin );
2414         my $dt_end   = ref( $end   ) eq 'DateTime' ? $end   : &str2datetime( $end );
2415
2416         my $str_begin = $dt_begin->strftime( '%m/%d(%a) %H:%M' );
2417         my $str_end   = $dt_end  ->strftime( $dt_begin->day == $dt_end->day ? '%H:%M' : '翌 %H:%M' );
2418         # utf8::encode( $str_begin );
2419
2420         my ( $sec, $min, $hour );
2421         $sec  = $dt_end->epoch - $dt_begin->epoch;
2422         $min  = int( $sec / 60 );
2423         $sec  = $sec - $min * 60;
2424         $hour = int( $min / 60 );
2425         $min  = $min - $hour * 60;
2426         my $str_diff = '';
2427         $str_diff .= $hour . '時間' if ( $hour );
2428         $str_diff .= $min  . '分'   if ( $min );
2429         $str_diff .= $sec  . '秒'   if ( $sec );
2430
2431         return ( $str_begin, $str_end, $str_diff );
2432 }
2433
2434 sub sqlgetsuggested {
2435         my ( $btime, $etime ) = @_;
2436         $deltatime = 3 if ( !$deltatime );
2437
2438         $btime_bgn = $btime->clone->subtract( hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2439         $btime_end = $btime->clone->add(      hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2440         $etime_bgn = $etime->clone->subtract( hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2441         $etime_end = $etime->clone->add(      hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2442
2443         $ary_ref = $dbh->selectall_arrayref(
2444                 "SELECT start, stop, title, exp 
2445                 FROM epg_timeline 
2446                 WHERE channel LIKE '$chtxt_sql' 
2447                 AND start BETWEEN '$btime_bgn' AND '$btime_end' 
2448                 AND stop  BETWEEN '$etime_bgn' AND '$etime_end' "
2449         );
2450         #die Dumper $ary_ref;
2451
2452         my %hash;
2453         my $hash_r = ngram_counts( $title, 2 ); # bi-gram
2454         foreach my $program ( @{$ary_ref} ) {
2455                 no warnings;
2456                 my $hash_k = ngram_counts( $program->[2], 2 );
2457                 my $point;
2458                 map $point += $hash_k->{$_}, keys %{$hash_r};
2459                 push @{$hash{$point}}, $program if ( $point );
2460         }
2461
2462         return %hash;
2463 }
2464
2465 sub ngram_counts {
2466         my $str  = shift;
2467         my $klen = shift;
2468         my $slen = length($str);  
2469
2470         my $href;
2471         for (my $i=0; $i < $slen-$klen+1; $i++){  
2472                 $href->{substr($str, $i, $klen)}++;
2473         }
2474         return $href;
2475 }
2476
2477 sub chtxt_format {
2478         ( $chtxt_0   = $chtxt ) =~ s/(\d+)_\d+/$1_0/;
2479         ( $chtxt_sql = $chtxt ) =~ s/(\d+)_\d+/$1_%/;
2480         if ( $bctype =~ /bs|cs/ ) {
2481                 $bctype_sql = '_s%';
2482         }
2483         elsif ( $bctype =~ /te/ ) {
2484                 $bctype_sql = 'te%';
2485         }
2486 }
2487