lilalo

view l3-frontend @ 147:94f587855947

mass upload
author igor@book.xt.vpn
date Tue Dec 16 00:17:33 2008 +0200 (2008-12-16)
parents f4008c71ab92
children 266dae9ce2a1
line source
1 #!/usr/bin/perl
3 use POSIX qw(strftime);
4 use lib '/etc/lilalo';
5 use l3config;
6 use utf8;
8 our @Command_Lines;
9 our @Command_Lines_Index;
10 our %Commands_Description;
11 our %Args_Description;
12 our %Sessions;
13 our %Uploads;
15 our $debug_output=""; # Используйте эту переменную, если нужно передать отладочную информацию
17 our %filter;
18 our $filter_url;
19 sub init_filter;
21 our %Files;
23 # vvv Инициализация переменных выполняется процедурой init_variables
24 our @Day_Name;
25 our @Month_Name;
26 our @Of_Month_Name;
27 our %Search_Machines;
28 our %Elements_Visibility;
29 # ^^^
31 our $First_Command=$0;
32 our $Last_Command=40;
34 our %Stat;
35 our %frequency_of_command; # Сколько раз в журнале встречается какая команда
36 our $table_number=1;
37 our %tigra_hints;
39 my %mywi_cache_for; # Кэш для экономии обращений к mywi
41 sub count_frequency_of_commands;
42 sub make_comment;
43 sub make_new_entries_table;
44 sub load_command_lines_from_xml;
45 sub load_sessions_from_xml;
46 sub load_uploads;
47 sub sort_command_lines;
48 sub process_command_lines;
49 sub init_variables;
50 sub main;
51 sub collapse_list($);
53 sub minutes_passed;
55 sub print_all_txt;
56 sub print_all_html;
57 sub print_edit_all_html;
58 sub print_command_lines_html;
59 sub print_command_lines_txt;
60 sub print_files_html;
61 sub print_stat_html;
62 sub print_header_html;
63 sub print_footer_html;
64 sub tigra_hints_generate;
67 #### mywi
68 #
69 sub mywi_init;
70 sub load_mywitxt;
71 sub mywi_process_query($);
72 #
73 sub add_to_log($$);
74 sub parse_query;
75 sub search_in_txt;
76 sub add_to_log($$);
77 sub mywi_guess($);
78 #
80 main();
82 sub main
83 {
84 $| = 1;
86 init_variables();
87 init_config();
88 $Config{frontend_ico_path}=$Config{frontend_css};
89 $Config{frontend_ico_path}=~s@/[^/]*$@@;
90 init_filter();
91 mywi_init();
93 load_command_lines_from_xml($Config{"backend_datafile"});
94 load_uploads($Config{"upload_dir"});
95 load_sessions_from_xml($Config{"backend_datafile"});
96 sort_command_lines;
97 process_command_lines;
98 if (defined($filter{action}) && $filter{action} eq "edit") {
99 print_edit_all_html($Config{"output"});
100 }
101 else {
102 print_all_html($Config{"output"});
103 }
104 }
106 sub init_filter
107 {
108 if ($Config{filter}) {
109 # Инициализация фильтра
110 for (split /;;/,$Config{filter}) {
111 my ($var, $val) = split /::/;
112 $filter{$var} = $val || "";
113 }
114 }
115 $filter_url = join (";;", map("$_::$filter{$_}", keys %filter));
116 }
118 # extract_from_cline
120 # In: $what = commands | args
121 # Out: return ссылка на хэш, содержащий результаты разбора
122 # команда => позиция
124 # Разобрать командную строку $_[1] и возвратить хэш, содержащий
125 # номер первого появление команды в строке:
126 # команда => первая позиция
127 sub extract_from_cline
128 {
129 my $what = $_[0];
130 my $cline = $_[1];
131 my @lists = split /\;/, $cline;
134 my @command_lines = ();
135 for my $command_list (@lists) {
136 push(@command_lines, split(/\|/, $command_list));
137 }
139 my %position_of_command;
140 my %position_of_arg;
141 my $i=0;
142 for my $command_line (@command_lines) {
143 $command_line =~ s@^\s*@@;
144 $command_line =~ /\s*(\S+)\s*(.*)/;
145 if ($1 && $1 eq "sudo" ) {
146 $position_of_command{"$1"}=$i++;
147 $command_line =~ s/\s*sudo\s+//;
148 }
149 if ($command_line !~ m@^\s*\S*/etc/@) {
150 $command_line =~ s@^\s*\S+/@@;
151 }
153 $command_line =~ /\s*(\S+)\s*(.*)/;
154 my $command = $1;
155 my $args = $2;
156 if ($command && !defined $position_of_command{"$command"}) {
157 $position_of_command{"$command"}=$i++;
158 };
159 if ($args) {
160 my @args = split (/\s+/, $args);
161 for my $a (@args) {
162 $position_of_arg{"$a"}=$i++
163 if !defined $position_of_arg{"$a"};
164 };
165 }
166 }
168 if ($what eq "commands") {
169 return \%position_of_command;
170 } else {
171 return \%position_of_arg;
172 }
174 }
176 sub mywrap($)
177 {
178 return '<div class="t"><div class="b"><div class="l"><div class="r"><div class="bl"><div class="br"><div class="tl"><div class="tr">'.$_[0].
179 '</div></div></div></div></div></div></div></div>';
180 }
182 sub tigra_hints_generate
183 {
184 my $tigra_hints_items="";
185 for my $hint_id (keys %tigra_hints) {
186 $tigra_hints{$hint_id} =~ s@\n@<br/>@gs;
187 $tigra_hints{$hint_id} =~ s@ - @ — @gs;
188 $tigra_hints{$hint_id} =~ s@'@\\'@gs;
189 # $tigra_hints_items .= "'$hint_id' : mywrap('".$tigra_hints{$hint_id}."'),";
190 $tigra_hints_items .= "'$hint_id' : '".mywrap($tigra_hints{$hint_id})."',";
191 }
192 $tigra_hints_items =~ s/,$//;
193 return <<TIGRA;
195 var HINTS_CFG = {
196 'top' : 5, // a vertical offset of a hint from mouse pointer
197 'left' : 5, // a horizontal offset of a hint from mouse pointer
198 'css' : 'hintsClass', // a style class name for all hints, TD object
199 'show_delay' : 500, // a delay between object mouseover and hint appearing
200 'hide_delay' : 2000, // a delay between hint appearing and hint hiding
201 'wise' : true,
202 'follow' : true,
203 'z-index' : 0 // a z-index for all hint layers
204 },
206 HINTS_CFG_NEW = {
207 'wise' : true, // don't go off screen, don't overlap the object in the document
208 'margin' : 10, // minimum allowed distance between the hint and the window edge (negative values accepted)
209 'gap' : 20, // minimum allowed distance between the hint and the origin (negative values accepted)
210 'align' : 'bctl', // align of the hint and the origin (by first letters origin's top|middle|bottom left|center|right to hint's top|middle|bottom left|center|right)
211 'css' : 'hintsClass', // a style class name for all hints, applied to DIV element (see style section in the header of the document)
212 'show_delay' : 0, // a delay between initiating event (mouseover for example) and hint appearing
213 'hide_delay' : 200, // a delay between closing event (mouseout for example) and hint disappearing
214 'follow' : true, // hint follows the mouse as it moves
215 'z-index' : 100, // a z-index for all hint layers
216 'IEfix' : false, // fix IE problem with windowed controls visible through hints (activate if select boxes are visible through the hints)
217 'IEtrans' : ['blendTrans(DURATION=.3)', null], // [show transition, hide transition] - nice transition effects, only work in IE5+
218 'opacity' : 90 // opacity of the hint in %%
219 },
221 HINTS_ITEMS = {
222 $tigra_hints_items
223 };
224 var myHint = new THints (HINTS_CFG, HINTS_ITEMS);
227 function mywrap (s_) {
228 return '<div class="t"><div class="b"><div class="l"><div class="r"><div class="bl"><div class="br"><div class="tl"><div class="tr">'+s_+
229 '</div></div></div></div></div></div></div></div>';
231 }
232 TIGRA
233 $a=<<TIGRA;
234 TIGRA
235 }
238 sub count_frequency_of_commands
239 {
240 my $cline = $_[0];
241 my @commands = keys %{extract_from_cline("commands", $cline)};
242 for my $command (@commands) {
243 $frequency_of_command{$command}++;
244 }
245 }
247 sub make_comment
248 {
249 my $cline = $_[0];
250 #my $files = $_[1];
252 my @comments;
253 my @commands = keys %{extract_from_cline("commands", $cline)};
254 my @args = keys %{extract_from_cline("args", $cline)};
255 return if (!@commands && !@args);
256 #return "commands=".join(" ",@commands)."; files=".join(" ",@files);
258 # Commands
259 for my $command (@commands) {
260 $command =~ s/'//g;
261 #$frequency_of_command{$command}++;
262 if (!$Commands_Description{$command}) {
263 $mywi_cache_for{$command} ||= mywi_process_query($command) || "";
264 my $mywi = join ("\n", grep(/\([18]|sh|script\)/, split(/\n/, $mywi_cache_for{$command})));
265 $mywi =~ s/\s+/ /;
266 if ($mywi !~ /^\s*$/) {
267 $Commands_Description{$command} = $mywi;
268 }
269 else {
270 next;
271 }
272 }
274 push @comments, $Commands_Description{$command};
275 }
276 return join("&#10;\n", @comments);
278 # Files
279 for my $arg (@args) {
280 $arg =~ s/'//g;
281 if (!$Args_Description{$arg}) {
282 my $mywi;
283 $mywi = mywi_client ($arg);
284 $mywi = join ("\n", grep(/\([5]\)/, split(/\n/, $mywi)));
285 $mywi =~ s/\s+/ /;
286 if ($mywi !~ /^\s*$/) {
287 $Args_Description{$arg} = $mywi;
288 }
289 else {
290 next;
291 }
292 }
294 push @comments, $Args_Description{$arg};
295 }
297 }
299 =cut
300 Процедура load_command_lines_from_xml выполняет загрузку разобранного lab-скрипта
301 из XML-документа в переменную @Command_Lines
303 # In: $datafile имя файла
304 # Out: @CommandLines загруженные командные строки
306 Предупреждение!
307 Процедура не в состоянии обрабатывать XML-документ любой структуры.
308 В действительности файл cache из которого загружаются данные
309 просто напоминает XML с виду.
310 =cut
311 sub load_command_lines_from_xml
312 {
313 my $datafile = $_[0];
315 open (CLASS, $datafile)
316 or die "Can't open file with xml lablog ",$datafile,"\n";
317 local $/;
318 binmode CLASS, ":utf8";
319 $data = <CLASS>;
320 close(CLASS);
322 for $command ($data =~ m@<command>(.*?)</command>@sg) {
323 my %cl;
324 while ($command =~ m@<([^>]*?)>(.*?)</\1>@sg) {
325 $cl{$1} = $2;
326 }
327 push @Command_Lines, \%cl;
328 }
329 }
331 sub load_sessions_from_xml
332 {
333 my $datafile = $_[0];
335 open (CLASS, $datafile)
336 or die "Can't open file with xml lablog ",$datafile,"\n";
337 local $/;
338 binmode CLASS, ":utf8";
339 my $data = <CLASS>;
340 close(CLASS);
342 my $i=0;
343 for my $session ($data =~ m@<session>(.*?)</session>@msg) {
344 my %session_hash;
345 while ($session =~ m@<([^>]*?)>(.*?)</\1>@sg) {
346 $session_hash{$1} = $2;
347 }
348 $Sessions{$session_hash{local_session_id}} = \%session_hash;
349 }
350 }
352 sub load_uploads($)
353 {
354 $dir=$_[0];
355 for $i (glob("$dir/*.png")) {
356 $i =~ s@.*/(([0-9-]+)_([0-9]+).*)@$1@;
357 $Uploads{$2}{$3}=$i;
358 }
359 }
361 #for $key (sort keys %session) {
362 # for $t (sort { $a <=> $b } keys %{ $session{$key} }) {
363 # print $session{$key}{$t}."\n";
364 # }
365 #}
366 #}
368 # sort_command_lines
369 # In: @Command_Lines
370 # Out: @Command_Lies_Index
372 sub sort_command_lines
373 {
375 my @index;
376 for (my $i=0;$i<=$#Command_Lines;$i++) {
377 $index[$i]=$i;
378 }
380 @Command_Lines_Index = sort {
381 $Command_Lines[$index[$a]]->{"time"} <=> $Command_Lines[$index[$b]]->{"time"}
382 } @index;
384 }
386 ##################
387 # process_command_lines
388 #
389 # Обрабатываются командные строки @Command_Lines
390 # Для каждой строки определяется:
391 # class класс
392 # note комментарий
393 #
394 # In: @Command_Lines_Index
395 # In-Out: @Command_Lines
397 sub process_command_lines
398 {
401 my $current_command=0;
402 my $prev_i;
404 my $tab_seq =0 ; # номер команды в последовательности tab-completion
405 # отличен от нуля только для тех последовательностей,
406 # где постоянно нажимается клавиша tab
408 COMMAND_LINE_PROCESSING:
409 for my $i (@Command_Lines_Index) {
411 $current_command++;
412 next if $current_command < $Config{"start_from_command"};
413 last if $current_command > $Config{"start_from_command"} + $Config{"commands_to_show_at_a_go"};
415 my $cl = \$Command_Lines[$i];
417 # Запоминаем предыщуюу команду
418 # Она нам потребуется, в частности, для ввода tab_seq рпи обработке tab_completion
419 my $prev_cl;
420 $prev_cl = \$Command_Lines[$prev_i] if defined($prev_i);
421 $prev_i = $i;
423 next if !$cl;
425 for my $filter_key (keys %filter) {
426 next COMMAND_LINE_PROCESSING
427 if defined($$cl->{local_session_id})
428 && defined($Sessions{$$cl->{local_session_id}}->{$filter_key})
429 && $Sessions{$$cl->{local_session_id}}->{$filter_key} ne $filter{$filter_key};
430 }
432 $$cl->{id} = $$cl->{"time"};
434 $$cl->{err} ||=0;
437 # Класс команды
439 $$cl->{"class"} = $$cl->{"err"} eq 130 ? "interrupted"
440 : $$cl->{"err"} eq 127 ? "mistyped"
441 : $$cl->{"err"} ? "wrong"
442 : "normal";
444 if ($$cl->{"cline"} &&
445 $$cl->{"cline"} =~ /[^|`]\s*sudo/
446 || $$cl->{"uid"} eq 0) {
447 $$cl->{"class"}.="_root";
448 }
450 my $hint;
451 count_frequency_of_commands($$cl->{"cline"});
452 $hint = make_comment($$cl->{"cline"});
454 if ($hint) {
455 $$cl->{hint} = $hint;
456 }
457 $tigra_hints{$$cl->{"time"}} = $hint;
459 #$$cl->{hint}="";
461 # Выводим <head_lines> верхних строк
462 # и <tail_lines> нижних строк,
463 # если эти параметры существуют
464 my $output="";
466 if ($$cl->{"last_command"} eq "cat" && !$$cl->{"err"} && !($$cl->{"cline"} =~ /</)) {
467 my $filename = $$cl->{"cline"};
468 $filename =~ s/.*\s+(\S+)\s*$/$1/;
469 $Files{$filename}->{"content"} = $$cl->{"output"};
470 $Files{$filename}->{"source_command_id"} = $$cl->{"id"}
471 }
472 my @lines = split '\n', $$cl->{"output"};
473 if ((
474 $Config{"head_lines"}
475 || $Config{"tail_lines"}
476 )
477 && $#lines > $Config{"head_lines"} + $Config{"tail_lines"} ) {
478 #
479 for (my $i=0; $i<= $#lines && $i < $Config{"head_lines"}; $i++) {
480 $output .= $lines[$i]."\n";
481 }
482 $output .= $Config{"skip_text"}."\n";
484 my $start_line=$#lines-$Config{"tail_lines"}+1;
485 for (my $i=$start_line; $i<= $#lines; $i++) {
486 $output .= $lines[$i]."\n";
487 }
488 }
489 else {
490 $output = $$cl->{"output"};
491 }
492 $$cl->{short_output} = $output;
494 # Обработка команд с одинаковым временем
495 # Скорее всего они набраны с помощью tab-completion
496 if (defined($prev_cl)) {
497 if ($$prev_cl->{time} == $$cl->{time} && $$prev_cl->{nonce} == $$cl->{nonce}) {
498 $tab_seq++;
499 }
500 else {
501 $tab_seq=0;
502 };
503 $$prev_cl->{tab_seq}=$tab_seq;
505 # Обработка команд с одинаковым номером в истории
506 # Скорее всего они набраны с помощью Ctrl-C
507 #if ($$prev_cl->{history} == $$cl->{history}) {
508 # $$prev_cl->{break}=1;
509 #}
510 }
513 #Обработка пометок
514 # Если несколько пометок (notes) идут подряд,
515 # они все объединяются
517 if ($$cl->{cline} =~ /l3shot/) {
518 if ($$cl->{output} =~ m@Screenshot is written to.*/(.*)\.xwd@) {
519 $$cl->{screenshot}="$1".$Config{l3shot_suffix};
520 }
521 }
522 if ($$cl->{cline} =~ /l3upload/) {
523 if ($$cl->{output} =~ m@Uploaded file name is (.*)@) {
524 $$cl->{screenshot}="$1";
525 }
526 }
528 if ($$cl->{cline}=~ m@cat[^#]*#([\^=v])\s*(.*)@) {
530 my $note_operator = $1;
531 my $note_title = $2;
533 if ($note_operator eq "=") {
534 $$cl->{"class"} = "note";
535 $$cl->{"note"} = $$cl->{"output"};
536 $$cl->{"note_title"} = $2;
537 }
538 else {
539 my $j = $i;
540 if ($note_operator eq "^") {
541 $j--;
542 $j-- while ($j >=0 && (!$Command_Lines[$j] || $Command_Lines[$j]->{tty} ne $$cl->{tty}));
543 }
544 elsif ($note_operator eq "v") {
545 $j++;
546 $j++ while ($j <= @Command_Lines && (!$Command_Lines[$j] || $Command_Lines[$j]->{tty} ne $$cl->{tty}));
547 }
548 $Command_Lines[$j]->{note_title}=$note_title;
549 $Command_Lines[$j]->{note}.=$$cl->{output};
550 $$cl=0;
551 }
552 }
553 elsif ($$cl->{cline}=~ /#([\^=v])(.*)/) {
555 my $note_operator = $1;
556 my $note_text = $2;
558 if ($note_operator eq "=") {
559 $$cl->{"class"} = "note";
560 $$cl->{"note"} = $note_text;
561 }
562 else {
563 my $j=$i;
564 if ($note_operator eq "^") {
565 $j--;
566 $j-- while ($j >=0 && (!$Command_Lines[$j] || $Command_Lines[$j]->{tty} ne $$cl->{tty}));
567 }
568 elsif ($note_operator eq "v") {
569 $j++;
570 $j++ while ($j <= @Command_Lines && $Command_Lines[$j]->{tty} ne $$cl->{tty} || !$Command_Lines[$j]);
571 }
572 $Command_Lines[$j]->{note}.="$note_text\n";
573 $$cl=0;
574 }
575 }
576 if ($$cl->{"class"} eq "note") {
577 my $note_html = $$cl->{note};
578 $note_html = join ("\n", map ("<p>$_</p>", split (/-\n/, $note_html)));
579 $note_html =~ s@(http:[a-zA-Z.0-9/?\_%-]*)@<a href='$1'>$1</a>@g;
580 $note_html =~ s@(www\.[a-zA-Z.0-9/?\_%-]*)@<a href='$1'>$1</a>@g;
581 $$cl->{"note_html"} = $note_html;
582 }
583 }
585 }
588 =cut
589 Процедура print_command_lines выводит HTML-представление
590 разобранного lab-скрипта.
592 Разобранный lab-скрипт должен находиться в массиве @Command_Lines
593 =cut
595 sub print_command_lines_html
596 {
598 my @toc; # Оглавление
599 my $note_number=0;
601 my $result = q();
602 my $this_day_resut = q();
604 my $cl;
605 my $last_tty="";
606 my $last_session="";
607 my $last_day=q();
608 my $last_wday=q();
609 my $first_command_of_the_day_unix_time=q();
610 my $human_readable_time=q();
611 my $in_range=0;
613 my $current_command=0;
615 my @known_commands;
619 $Stat{LastCommand} ||= 0;
620 $Stat{TotalCommands} ||= 0;
621 $Stat{ErrorCommands} ||= 0;
622 $Stat{MistypedCommands} ||= 0;
624 my %new_entries_of = (
625 "1 1" => "программы пользователя",
626 "2 8" => "программы администратора",
627 "3 sh" => "команды интерпретатора",
628 "4 script"=> "скрипты",
629 );
631 COMMAND_LINE:
632 for my $k (@Command_Lines_Index) {
634 my $cl=$Command_Lines[$Command_Lines_Index[$current_command++]];
635 next unless $cl;
636 my $next_cl=$Command_Lines[$Command_Lines_Index[$current_command+1]];
638 next if $current_command < $Config{"start_from_command"};
639 last if $current_command > $Config{"start_from_command"} + $Config{"commands_to_show_at_a_go"};
643 # Пропускаем строки, которые противоречат фильтру
644 # Если у нас недостаточно информации о том, подходит строка под фильтр или нет,
645 # мы её выводим
647 for my $filter_key (keys %filter) {
648 next COMMAND_LINE
649 if defined($cl->{local_session_id})
650 && defined($Sessions{$cl->{local_session_id}}->{$filter_key})
651 && $Sessions{$cl->{local_session_id}}->{$filter_key} ne $filter{$filter_key};
652 }
654 # Набираем статистику
655 # Хэш %Stat
657 $Stat{FirstCommand} = $cl->{time} unless $Stat{FirstCommand};
658 if ($cl->{time} - $Stat{LastCommand} < $Config{stat_inactivity_interval}) {
659 $Stat{TotalTime} += $cl->{time} - $Stat{LastCommand}
660 }
661 my $seconds_since_last_command = $cl->{time} - $Stat{LastCommand};
663 if ($Stat{LastCommand} > $cl->{time}) {
664 $result .= "Время идёт вспять<br/>";
665 };
666 $Stat{LastCommand} = $cl->{time};
667 $Stat{TotalCommands}++;
669 # Пропускаем строки, выходящие за границу "signature",
670 # при условии, что границы указаны
671 # Пропускаем неправильные/прерванные/другие команды
672 if ($Config{"from"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"from"}/) {
673 $in_range=1;
674 next;
675 }
676 if ($Config{"to"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"to"}/) {
677 $in_range=0;
678 next;
679 }
680 next if ($Config{"from"} && $Config{"to"} && !$in_range)
681 || ($Config{"skip_empty"} =~ /^y/i && $cl->{"cline"} =~ /^\s*$/ )
682 || ($Config{"skip_wrong"} =~ /^y/i && $cl->{"err"} != 0)
683 || ($Config{"skip_interrupted"} =~ /^y/i && $cl->{"err"} == 130);
688 #
689 ##
690 ## Начинается собственно вывод
691 ##
692 #
694 ### Сначала обрабатываем границы разделов
695 ### Если тип команды "note", это граница
697 if ($cl->{class} eq "note") {
698 $this_day_result .= "<tr><td colspan='6'>"
699 . "<h4 id='note$note_number'>".$cl->{note_title}."</h4>" if $cl->{note_title}
700 . "".$cl->{note_html}."<p/><p/></td></tr>";
702 if ($cl->{note_title}) {
703 push @{$toc[@toc]},"<a href='#note$note_number'>".$cl->{note_title}."</a>";
704 $note_number++;
705 }
706 next;
707 }
709 my ($sec,$min,$hour,$day,$mon,$year,$wday,$yday,$isdst) = localtime($cl->{time});
712 # Добавляем спереди 0 для удобочитаемости
713 $min = "0".$min if $min =~ /^.$/;
714 $hour = "0".$hour if $hour =~ /^.$/;
715 $sec = "0".$sec if $sec =~ /^.$/;
717 $class=$cl->{"class"};
718 $Stat{ErrorCommands}++ if $class =~ /wrong/;
719 $Stat{MistypedCommands}++ if $class =~ /mistype/;
721 # DAY CHANGE
722 if ( $last_day ne $day) {
723 $prev_unix_time=$first_command_of_the_day_unix_time;
724 $first_command_of_the_day_unix_time = $cl->{time};
725 $human_readable_time = strftime "%D", localtime($prev_unix_time);
726 if ($last_day) {
728 # Вычисляем разность множеств.
729 # Что-то вроде этого, если бы так можно было писать:
730 # @new_commands = keys %frequency_of_command - @known_commands;
733 # Выводим предыдущий день
735 $result .= "<h3 id='day_on_sec_$prev_unix_time'>".$Day_Name[$last_wday]." ($human_readable_time)</h3>";
736 for my $entry_class (sort keys %new_entries_of) {
737 my $table_caption = "Таблица ".$table_number++.".".$Day_Name[$last_wday]
738 .". Новые ".$new_entries_of{$entry_class};
739 my $new_commands_section = make_new_entries_table(
740 $table_caption,
741 $entry_class=~/[0-9]+\s+(.*)/,
742 \@known_commands);
743 }
744 @known_commands = keys %frequency_of_command;
745 $result .= $this_day_result;
746 }
748 # Добавляем текущий день в оглавление
750 $human_readable_time = strftime "%D", localtime($first_command_of_the_day_unix_time);
751 push @toc, "<a href='#day_on_sec_$first_command_of_the_day_unix_time'>".$Day_Name[$wday]." ($human_readable_time)</a>\n";
754 $last_day=$day;
755 $last_wday=$wday;
756 $this_day_result = q();
757 }
758 else {
759 $this_day_result .= minutes_passed($seconds_since_last_command);
760 }
762 $this_day_result .= "<div class='command' id='command:".$cl->{"id"}."' >\n";
764 # CONSOLE CHANGE
765 if ($cl->{"tty"} && $last_tty ne $cl->{"tty"} && 0) {
766 my $tty = $cl->{"tty"};
767 $this_day_result .= "<div class='ttychange'>"
768 . $tty
769 ."</div>";
770 $last_tty=$cl->{"tty"};
771 }
773 # Session change
774 if ( $last_session ne $cl->{"local_session_id"}) {
775 my $tty;
776 if (defined $Sessions{$cl->{"local_session_id"}}->{"tty"}) {
777 $this_day_result .= "<div class='ttychange'><a href='?filter=local_session_id::".$cl->{"local_session_id"}."'>"
778 . $Sessions{$cl->{"local_session_id"}}->{"tty"}
779 ."</a></div>";
780 }
781 $last_session=$cl->{"local_session_id"};
782 }
784 # TIME
785 if ($Config{"show_time"} =~ /^y/i) {
786 $this_day_result .= "<div class='time'>$hour:$min:$sec</div>"
787 }
789 # COMMAND
790 my $cline;
791 $prompt_hint = join ("&#10;",
792 map("$_=$cl->{$_}",
793 grep (!/^(output|short_output|diff)$/,
794 sort(keys(%{$cl})))));
796 $cl->{"prompt"} =~ s/ $//;
797 $cline = "<span title='$prompt_hint' class='prompt'><a href='#".$cl->{time}."' id='".$cl->{time}."'>".$cl->{"prompt"}."</a></span>"
798 ."<span onmouseover=\"myHint.show('".$cl->{time}."')\" onmouseout=\"myHint.hide()\">".$cl->{"cline"}."</span>";
799 $cline =~ s/\n//;
801 if ($cl->{"hint"}) {
802 # $cline = "<span title='$cl->{hint}' class='with_hint'>$cline</span>" ;
803 $cline = "<span class='with_hint'>$cline</span>" ;
804 }
805 else {
806 $cline = "<span class='without_hint'>$cline</span>";
807 }
809 $this_day_result .= "<DIV class='fixed_div'><table cellpadding='0' cellspacing='0'><tr><td>\n<div class='cblock_$cl->{class}'>\n";
810 $this_day_result .= "<div class='cline'>" . $cline ; #cline
811 $this_day_result .= "<span title='Код завершения ".$cl->{"err"}."'>\n"
812 . "<img src='".$Config{frontend_ico_path}."/error.png'/>\n"
813 . "</span>\n" if ($cl->{"err"} and not $cl->{tab_seq} and not $cl->{break});
814 $this_day_result .= "<span title='Tab completion ".$cl->{tab_seq}."'>\n"
815 . "<img src='".$Config{frontend_ico_path}."/tab.png'/>\n"
816 . "</span>\n" if $cl->{tab_seq};
817 $this_day_result .= "<span title='Ctrl-C pressed'>\n"
818 . "<img src='".$Config{frontend_ico_path}."/break.png'/>\n"
819 . "</span>\n" if ($cl->{break} and not $cl->{tab_seq});
820 $this_day_result .= "</div>\n"; #cline
822 # OUTPUT
823 my $last_command = $cl->{"last_command"};
824 if (!(
825 $Config{"suppress_editors"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"editors"}}) ||
826 $Config{"suppress_pagers"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"pagers"}}) ||
827 $Config{"suppress_terminal"}=~ /^y/i && grep ($_ eq $last_command, @{$Config{"terminal"}})
828 )) {
829 $this_day_result .= "<pre class='output'>\n" . $cl->{short_output} . "</pre>\n";
830 }
832 # DIFF
833 $this_day_result .= "<pre class='diff'>".$cl->{"diff"}."</pre>"
834 if ( $Config{"show_diffs"} =~ /^y/i && $cl->{"diff"});
835 # SHOT
837 $this_day_result .= join(".", key(%Uploads));
838 for $t (sort { $a <=> $b } keys %{ $Uploads{$cl->{"local_session_id"}} }) {
839 # if ($t > $cl->{"time"} && $t < $next_cl->{"time"}) {
840 $this_day_result .= "<IMG src='"
841 .$Config{l3shot_path}
842 .$Uploads{$cl->{"local_session_id"}}
843 ."' alt ='screenshot id ".$cl->{"screenshot"}
844 ."'/>"
845 }
847 $this_day_result .= "<img src='"
848 .$Config{l3shot_path}
849 .$cl->{"screenshot"}
850 ."' alt ='screenshot id ".$cl->{"screenshot"}
851 ."'/>"
852 if ( $Config{"show_screenshots"} =~ /^y/i && $cl->{"screenshot"});
854 #NOTES
855 if ( $Config{"show_notes"} =~ /^y/i && $cl->{"note"}) {
856 my $note=$cl->{"note"};
857 $note =~ s/\n/<br\/>\n/msg;
858 if (not $note =~ s@(http:[a-zA-Z.0-9/_?%-]*)@<a href='$1'>$1</a>@g) {
859 $note =~ s@(www\.[a-zA-Z.0-9/_?%-]*)@<a href='$1'>$1</a>@g;
860 };
861 $this_day_result .= "<div class='note'>";
862 $this_day_result .= "<div class='note_title'>".$cl->{note_title}."</div>" if $cl->{note_title};
863 $this_day_result .= "<div class='note_text'>".$note."</div>";
864 $this_day_result .= "</div>\n";
865 }
867 # Вывод очередной команды окончен
868 $this_day_result .= "</div>\n"; # cblock
869 $this_day_result .= "</td></tr></table></DIV>\n"
870 . "</div>\n"; # command
871 }
872 last: {
873 $prev_unix_time=$first_command_of_the_day_unix_time;
874 $first_command_of_the_day_unix_time = $cl->{time};
875 $human_readable_time = strftime "%D", localtime($prev_unix_time);
877 $result .= "<h3 id='day_on_sec_$prev_unix_time'>".$Day_Name[$last_wday]." ($human_readable_time)</h3>";
879 for my $entry_class (keys %new_entries_of) {
880 my $table_caption = "Таблица ".$table_number++.".".$Day_Name[$last_wday]
881 . ". Новые ".$new_entries_of{$entry_class};
882 my $new_commands_section = make_new_entries_table(
883 $table_caption,
884 $entry_class=~/[0-9]+\s+(.*)/,
885 \@known_commands);
886 }
887 @known_commands = keys %frequency_of_command;
888 $result .= $this_day_result;
889 }
891 return ($result, collapse_list (\@toc));
893 }
895 #############
896 # make_new_entries_table
897 #
898 # Напечатать таблицу неизвестных команд
899 #
900 # In: $_[0] table_caption
901 # $_[1] entries_class
902 # @_[2..] known_commands
903 # Out:
905 sub make_new_entries_table
906 {
907 my $table_caption;
908 my $entries_class = shift;
909 my @known_commands = @{$_[0]};
910 my $result = "";
912 my %count;
913 my @new_commands = ();
914 for my $c (keys %frequency_of_command, @known_commands) {
915 $count{$c}++
916 }
917 for my $c (keys %frequency_of_command) {
918 push @new_commands, $c if $count{$c} != 2;
919 }
921 my $new_commands_section;
922 if (@new_commands){
923 my $hint;
924 for my $c (reverse sort { $frequency_of_command{$a} <=> $frequency_of_command{$b} } @new_commands) {
925 $hint = make_comment($c);
926 next unless $hint;
927 my ($command, $hint) = $hint =~ m/(.*?) \s*- \s*(.*)/;
928 next unless $command =~ s/\($entries_class\)//i;
929 $new_commands_section .= "<tr><td valign='top'>$command</td><td>$hint</td></tr>";
930 }
931 }
932 if ($new_commands_section) {
933 $result .= "<table class='new_commands_table' width='700' cellspacing='0' cellpadding='0'>"
934 . "<tr class='new_commands_caption'>"
935 . "<td colspan='2' align='right'>$table_caption</td>"
936 . "</tr>"
937 . "<tr class='new_commands_header'>"
938 . "<td width=100>Команда</td><td width=600>Описание</td>"
939 . "</tr>"
940 . $new_commands_section
941 . "</table>"
942 }
943 return $result;
944 }
946 #############
947 # minutes_passed
948 #
949 #
950 #
951 # In: $_[0] seconds_since_last_command
952 # Out: "minutes passed" text
954 sub minutes_passed
955 {
956 my $seconds_since_last_command = shift;
957 my $result = "";
958 if ($seconds_since_last_command > 7200) {
959 my $hours_passed = int($seconds_since_last_command/3600);
960 my $passed_word = $hours_passed % 10 == 1 ? "прошла"
961 : "прошло";
962 my $hours_word = $hours_passed % 10 == 1 ? "часа":
963 "часов";
964 $result .= "<div class='much_time_passed'>"
965 . $passed_word." &gt;".$hours_passed." ".$hours_word
966 . "</div>\n";
967 }
968 elsif ($seconds_since_last_command > 600) {
969 my $minutes_passed = int($seconds_since_last_command/60);
972 my $passed_word = $minutes_passed % 100 > 10
973 && $minutes_passed % 100 < 20 ? "прошло"
974 : $minutes_passed % 10 == 1 ? "прошла"
975 : "прошло";
977 my $minutes_word = $minutes_passed % 100 > 10
978 && $minutes_passed % 100 < 20 ? "минут" :
979 $minutes_passed % 10 == 1 ? "минута":
980 $minutes_passed % 10 == 0 ? "минут" :
981 $minutes_passed % 10 > 4 ? "минут" :
982 "минуты";
984 if ($seconds_since_last_command < 1800) {
985 $result .= "<div class='time_passed'>"
986 . $passed_word." ".$minutes_passed." ".$minutes_word
987 . "</div>\n";
988 }
989 else {
990 $result .= "<div class='much_time_passed'>"
991 . $passed_word." ".$minutes_passed." ".$minutes_word
992 . "</div>\n";
993 }
994 }
995 return $result;
996 }
998 #############
999 # print_all_txt
1001 # Вывести журнал в текстовом формате
1003 # In: $_[0] output_filename
1004 # Out:
1006 sub print_command_lines_txt
1009 my $output_filename=$_[0];
1010 my $note_number=0;
1012 my $result = q();
1013 my $this_day_resut = q();
1015 my $cl;
1016 my $last_tty="";
1017 my $last_session="";
1018 my $last_day=q();
1019 my $last_wday=q();
1020 my $in_range=0;
1022 my $current_command=0;
1024 my $cursor_position = 0;
1027 if ($Config{filter}) {
1028 # Инициализация фильтра
1029 for (split /&/,$Config{filter}) {
1030 my ($var, $val) = split /::/;
1031 $filter{$var} = $val || "";
1036 COMMAND_LINE:
1037 for my $k (@Command_Lines_Index) {
1039 my $cl=$Command_Lines[$Command_Lines_Index[$current_command++]];
1040 next unless $cl;
1043 # Пропускаем строки, которые противоречат фильтру
1044 # Если у нас недостаточно информации о том, подходит строка под фильтр или нет,
1045 # мы её выводим
1047 for my $filter_key (keys %filter) {
1048 next COMMAND_LINE
1049 if defined($cl->{local_session_id})
1050 && defined($Sessions{$cl->{local_session_id}}->{$filter_key})
1051 && $Sessions{$cl->{local_session_id}}->{$filter_key} ne $filter{$filter_key};
1054 # Пропускаем строки, выходящие за границу "signature",
1055 # при условии, что границы указаны
1056 # Пропускаем неправильные/прерванные/другие команды
1057 if ($Config{"from"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"from"}/) {
1058 $in_range=1;
1059 next;
1061 if ($Config{"to"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"to"}/) {
1062 $in_range=0;
1063 next;
1065 next if ($Config{"from"} && $Config{"to"} && !$in_range)
1066 || ($Config{"skip_empty"} =~ /^y/i && $cl->{"cline"} =~ /^\s*$/ )
1067 || ($Config{"skip_wrong"} =~ /^y/i && $cl->{"err"} != 0)
1068 || ($Config{"skip_interrupted"} =~ /^y/i && $cl->{"err"} == 130);
1072 ##
1073 ## Начинается собственно вывод
1074 ##
1077 ### Сначала обрабатываем границы разделов
1078 ### Если тип команды "note", это граница
1080 if ($cl->{class} eq "note") {
1081 $this_day_result .= " === ".$cl->{note_title}." === \n" if $cl->{note_title};
1082 $this_day_result .= $cl->{note}."\n";
1083 next;
1086 my ($sec,$min,$hour,$day,$mon,$year,$wday,$yday,$isdst) = localtime($cl->{time});
1088 # Добавляем спереди 0 для удобочитаемости
1089 $min = "0".$min if $min =~ /^.$/;
1090 $hour = "0".$hour if $hour =~ /^.$/;
1091 $sec = "0".$sec if $sec =~ /^.$/;
1093 $class=$cl->{"class"};
1095 # DAY CHANGE
1096 if ( $last_day ne $day) {
1097 if ($last_day) {
1098 $result .= "== ".$Day_Name[$last_wday]." == \n";
1099 $result .= $this_day_result;
1101 $last_day = $day;
1102 $last_wday = $wday;
1103 $this_day_result = q();
1106 # CONSOLE CHANGE
1107 if ($cl->{"tty"} && $last_tty ne $cl->{"tty"} && 0) {
1108 my $tty = $cl->{"tty"};
1109 $this_day_result .= " #l3: ------- другая консоль ----\n";
1110 $last_tty=$cl->{"tty"};
1113 # Session change
1114 if ( $last_session ne $cl->{"local_session_id"}) {
1115 $this_day_result .= "# ------------------------------------------------------------"
1116 . " l3: local_session_id=".$cl->{"local_session_id"}
1117 . " ---------------------------------- \n";
1118 $last_session=$cl->{"local_session_id"};
1121 # TIME
1122 my @nl_counter = split (/\n/, $result);
1123 $cursor_position=length($result) - @nl_counter;
1125 if ($Config{"show_time"} =~ /^y/i) {
1126 $this_day_result .= "$hour:$min:$sec"
1129 # COMMAND
1130 $this_day_result .= " ".$cl->{"prompt"}.$cl->{"cline"}."\n";
1131 if ($cl->{"err"}) {
1132 $this_day_result .= " #l3: err=".$cl->{'err'}."\n";
1135 # OUTPUT
1136 my $last_command = $cl->{"last_command"};
1137 if (!(
1138 $Config{"suppress_editors"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"editors"}}) ||
1139 $Config{"suppress_pagers"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"pagers"}}) ||
1140 $Config{"suppress_terminal"}=~ /^y/i && grep ($_ eq $last_command, @{$Config{"terminal"}})
1141 )) {
1142 my $output = $cl->{short_output};
1143 if ($output) {
1144 $output =~ s/^/ |/mg;
1146 $this_day_result .= $output;
1149 # DIFF
1150 if ( $Config{"show_diffs"} =~ /^y/i && $cl->{"diff"}) {
1151 my $diff = $cl->{"diff"};
1152 $diff =~ s/^/ |/mg;
1153 $this_day_result .= $diff;
1154 };
1155 # SHOT
1156 if ($Config{"show_screenshots"} =~ /^y/i && $cl->{"screenshot"}) {
1157 $this_day_result .= " #l3: screenshot=".$cl->{'screenshot'}."\n";
1160 #NOTES
1161 if ( $Config{"show_notes"} =~ /^y/i && $cl->{"note"}) {
1162 my $note=$cl->{"note"};
1163 $note =~ s/\n/\n#^/msg;
1164 $this_day_result .= "#^ == ".$cl->{note_title}." ==\n" if $cl->{note_title};
1165 $this_day_result .= "#^ ".$note."\n";
1169 last: {
1170 $result .= "== ".$Day_Name[$last_wday]." == \n";
1171 $result .= $this_day_result;
1174 return $result;
1180 #############
1181 # print_edit_all_html
1183 # Вывести страницу с текстовым представлением журнала для редактирования
1185 # In: $_[0] output_filename
1186 # Out:
1188 sub print_edit_all_html
1190 my $output_filename= shift;
1191 my $result;
1192 my $cursor_position = 0;
1194 $result = print_command_lines_txt;
1195 my $title = ">Журнал лабораторных работ. Правка";
1197 $result =
1198 "<html>"
1199 ."<head>"
1200 ."<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />"
1201 ."<link rel='stylesheet' href='$Config{frontend_css}' type='text/css'/>"
1202 ."<title>$title</title>"
1203 ."</head>"
1204 ."<script>"
1205 .$SetCursorPosition_JS
1206 ."</script>"
1207 ."<body onLoad='setCursorPosition(document.all.mytextarea, $cursor_position, $cursor_position+10)'>"
1208 ."<h1>Журнал лабораторных работ. Правка</h1>"
1209 ."<form>"
1210 ."<textarea rows='30' cols='100' wrap='off' id='mytextarea'>$result</textarea>"
1211 ."<br/><input type='submit' value='Сохранить' label='label'/>"
1212 ."</form>"
1213 ."<p>Внимательно правим, потом сохраняем</p>"
1214 ."<p>Строки, начинающиеся символами #l3: можно трогать, только если точно знаешь, что делаешь</p>"
1215 ."</body>"
1216 ."</html>";
1218 if ($output_filename eq "-") {
1219 print $result;
1221 else {
1222 open(OUT, ">", $output_filename)
1223 or die "Can't open $output_filename for writing\n";
1224 binmode ":utf8";
1225 print OUT "$result";
1226 close(OUT);
1230 #############
1231 # print_all_txt
1233 # Вывести страницу с текстовым представлением журнала для редактирования
1235 # In: $_[0] output_filename
1236 # Out:
1238 sub print_all_txt
1240 my $result;
1242 $result = print_command_lines_txt;
1244 $result =~ s/&gt;/>/g;
1245 $result =~ s/&lt;/</g;
1246 $result =~ s/&amp;/&/g;
1248 if ($output_filename eq "-") {
1249 print $result;
1251 else {
1252 open(OUT, ">:utf8", $output_filename)
1253 or die "Can't open $output_filename for writing\n";
1254 print OUT "$result";
1255 close(OUT);
1260 #############
1261 # print_all_html
1265 # In: $_[0] output_filename
1266 # Out:
1269 sub print_all_html
1271 my $output_filename=$_[0];
1273 my $result;
1274 my ($command_lines,$toc) = print_command_lines_html;
1275 my $files_section = print_files_html;
1277 $result = $debug_output;
1278 $result .= print_header_html($toc);
1281 # $result.= join " <br/>", keys %Sessions;
1282 # for my $sess (keys %Sessions) {
1283 # $result .= join " ", keys (%{$Sessions{$sess}});
1284 # $result .= "<br/>";
1285 # }
1287 $result.= "<h2 id='log'>Журнал</h2>" . $command_lines;
1288 $result.= "<h2 id='files'>Файлы</h2>" . $files_section if $files_section;
1289 $result.= "<h2 id='stat'>Статистика</h2>" . print_stat_html;
1290 $result.= "<h2 id='help'>Справка</h2>" . $Html_Help . "<br/>";
1291 $result.= "<h2 id='about'>О программе</h2>". $Html_About. "<br/>";
1292 $result.= print_footer_html;
1294 if ($output_filename eq "-") {
1295 binmode STDOUT, ":utf8";
1296 print $result;
1298 else {
1299 open(OUT, ">:utf8", $output_filename)
1300 or die "Can't open $output_filename for writing\n";
1301 print OUT $result;
1302 close(OUT);
1306 #############
1307 # print_header_html
1311 # In: $_[0] Содержание
1312 # Out: Распечатанный заголовок
1314 sub print_header_html
1316 my $toc = $_[0];
1317 my $course_name = $Config{"course-name"};
1318 my $course_code = $Config{"course-code"};
1319 my $course_date = $Config{"course-date"};
1320 my $course_center = $Config{"course-center"};
1321 my $course_trainer = $Config{"course-trainer"};
1322 my $course_student = $Config{"course-student"};
1324 my $title = "Журнал лабораторных работ";
1325 $title .= " -- ".$course_student if $course_student;
1326 if ($course_date) {
1327 $title .= " -- ".$course_date;
1328 $title .= $course_code ? "/".$course_code
1329 : "";
1331 else {
1332 $title .= " -- ".$course_code if $course_code;
1335 # Управляющая форма
1336 my $control_form .= "<div class='visibility_form' title='Выберите какие элементы должны быть показаны в журнале'>"
1337 . "<span class='header'>Видимые элементы</span>"
1338 . "<span class='window_controls'><a href='' onclick='' title='свернуть форму управления'>_</a> <a href='' onclick='' title='закрыть форму управления'>x</a></span>"
1339 . "<div><form>\n";
1340 for my $element (sort keys %Elements_Visibility)
1342 my ($skip, @e) = split /\s+/, $element;
1343 my $showhide = join "", map { "ShowHide('$_');" } @e ;
1344 $control_form .= "<div><input type='checkbox' name='$e[0]' onclick=\"$showhide\" checked>".
1345 $Elements_Visibility{$element}.
1346 "</input></div>";
1348 $control_form .= "</form>\n"
1349 . "</div>\n";
1352 # Управляющая форма отключена
1353 # Она слишком сильно мешает, нужно что-то переделать
1354 $control_form = "";
1356 my $tigra_hints_array=tigra_hints_generate;
1358 my $result;
1359 $result = <<HEADER;
1360 <html>
1361 <head>
1362 <meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
1363 <link rel='stylesheet' href='$Config{frontend_css}' type='text/css'/>
1364 <title>$title</title>
1365 </head>
1366 <body>
1367 <!--<script>
1368 $Html_JavaScript
1369 </script>-->
1371 <!-- vvv Tigra Hints vvv -->
1372 <script language="JavaScript" src="/tigra/hints.js"></script>
1373 <!--<script language="JavaScript" src="/tigra/hints_cfg.js"></script>-->
1374 <script>$tigra_hints_array</script>
1375 <style>
1376 /* a class for all Tigra Hints boxes, TD object */
1377 .hintsClass
1378 {text-align: left; font-size:80%; font-family: Verdana, Arial, Helvetica; background-color:#ffffee; padding: 0px 0px 0px 0px;}
1379 /* this class is used by Tigra Hints wrappers */
1380 .row
1381 {background: white;}
1384 .bl2 {border: 1px solid #e68200; background:url(/tigra/block/bl2.gif) 0 100% no-repeat; text-align:left}
1385 .bl {background:url(/tigra/block/bl2.gif) 0 100% no-repeat; text-align:left}
1386 .br {background:url(/tigra/block/br2.gif) 100% 100% no-repeat}
1387 .tl {background:url(/tigra/block/tl2.gif) 0 0 no-repeat}
1388 .tr {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat; padding:10px}
1389 .tr2 {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat}
1390 .t {background:url(/tigra/block/dot2.gif) 0 0 repeat-x}
1391 .b {background:url(/tigra/block/dot2.gif) 0 100% repeat-x}
1392 .l {background:url(/tigra/block/dot2.gif) 0 0 repeat-y}
1393 .r {background:url(/tigra/block/dot2.gif) 100% 0 repeat-y}
1396 </style>
1397 <!-- ^^^ Tigra Hints ^^^ -->
1399 <!--
1400 .bl2 {border: 1px solid #e68200; background:url(/tigra/block/bl2.gif) 0 100% no-repeat; width:20em; text-align:center}
1401 .bl {background:url(/tigra/block/bl2.gif) 0 100% no-repeat; width:20em; text-align:center}
1402 .br {background:url(/tigra/block/br2.gif) 100% 100% no-repeat}
1403 .tl {background:url(/tigra/block/tl2.gif) 0 0 no-repeat}
1404 .tr {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat; padding:10px}
1405 .tr2 {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat}
1406 .t {background:url(/tigra/block/dot2.gif) 0 0 repeat-x; width:20em}
1407 .b {background:url(/tigra/block/dot2.gif) 0 100% repeat-x}
1408 .l {background:url(/tigra/block/dot2.gif) 0 0 repeat-y}
1409 .r {background:url(/tigra/block/dot2.gif) 100% 0 repeat-y}
1410 -->
1413 <div class='edit_link'>
1414 [ <a href='?filter=action::edit;;$filter_url'>править</a> ]
1415 </div>
1416 <h1 onmouseover="myHint.show('1')" onmouseout="myHint.hide()" class='lined_header'>Журнал лабораторных работ</h1>
1417 HEADER
1418 if ( $course_student
1419 || $course_trainer
1420 || $course_name
1421 || $course_code
1422 || $course_date
1423 || $course_center) {
1424 $result .= "<p>";
1425 $result .= "Выполнил $course_student<br/>" if $course_student;
1426 $result .= "Проверил $course_trainer <br/>" if $course_trainer;
1427 $result .= "Курс " if $course_name
1428 || $course_code
1429 || $course_date;
1430 $result .= "$course_name " if $course_name;
1431 $result .= "($course_code)" if $course_code;
1432 $result .= ", $course_date<br/>" if $course_date;
1433 $result .= "Учебный центр $course_center <br/>" if $course_center;
1434 $result .= "Фильтр ".join(" ", map("$filter{$_}=$_", keys %filter))."<br/>" if %filter;
1435 $result .= "</p>";
1438 $result .= <<HEADER;
1439 <table width='100%'>
1440 <tr>
1441 <td width='*'>
1443 <table border=0 id='toc' class='toc'>
1444 <tr>
1445 <td>
1446 <div class='toc_title'>Содержание</div>
1447 <ul>
1448 <li><a href='#log'>Журнал</a></li>
1449 <ul>$toc</ul>
1450 <li><a href='#files'>Файлы</a></li>
1451 <li><a href='#stat'>Статистика</a></li>
1452 <li><a href='#help'>Справка</a></li>
1453 <li><a href='#about'>О программе</a></li>
1454 </ul>
1455 </td>
1456 </tr>
1457 </table>
1459 </td>
1460 <td valign='top' width=200>$control_form</td>
1461 </tr>
1462 </table>
1463 HEADER
1465 return $result;
1469 #############
1470 # print_footer_html
1477 sub print_footer_html
1479 return "</body>\n</html>\n";
1485 #############
1486 # print_stat_html
1490 # In:
1491 # Out:
1493 sub print_stat_html
1495 %StatNames = (
1496 FirstCommand => "Время первой команды журнала",
1497 LastCommand => "Время последней команды журнала",
1498 TotalCommands => "Количество командных строк в журнале",
1499 ErrorsPercentage => "Процент команд с ненулевым кодом завершения, %",
1500 MistypesPercentage => "Процент синтаксически неверно набранных команд, %",
1501 TotalTime => "Суммарное время работы с терминалом <sup><font size='-2'>*</font></sup>, час",
1502 CommandsPerTime => "Количество командных строк в единицу времени, команда/мин",
1503 CommandsFrequency => "Частота использования команд",
1504 RareCommands => "Частота использования этих команд < 0.5%",
1505 );
1506 @StatOrder = (
1507 FirstCommand,
1508 LastCommand,
1509 TotalCommands,
1510 ErrorsPercentage,
1511 MistypesPercentage,
1512 TotalTime,
1513 CommandsPerTime,
1514 CommandsFrequency,
1515 RareCommands,
1516 );
1518 # Подготовка статистики к выводу
1519 # Некоторые значения пересчитываются!
1520 # Дальше их лучше уже не использовать!!!
1522 my %CommandsFrequency = %frequency_of_command;
1524 $Stat{TotalTime} ||= 0;
1525 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($Stat{FirstCommand} || 0);
1526 $Stat{FirstCommand} = sprintf "%02i:%02i:%02i %04i-%2i-%2i", $hour, $min, $sec, $year+1900, $mon+1, $mday;
1527 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($Stat{LastCommand} || 0);
1528 $Stat{LastCommand} = sprintf "%02i:%02i:%02i %04i-%2i-%2i", $hour, $min, $sec, $year+1900, $mon+1, $mday;
1529 if ($Stat{TotalCommands}) {
1530 $Stat{ErrorsPercentage} = sprintf "%5.2f", $Stat{ErrorCommands}*100/$Stat{TotalCommands};
1531 $Stat{MistypesPercentage} = sprintf "%5.2f", $Stat{MistypedCommands}*100/$Stat{TotalCommands};
1533 $Stat{CommandsPerTime} = sprintf "%5.2f", $Stat{TotalCommands}*60/$Stat{TotalTime}
1534 if $Stat{TotalTime};
1535 $Stat{TotalTime} = sprintf "%5.2f", $Stat{TotalTime}/60/60;
1537 my $total_commands=0;
1538 for $command (keys %CommandsFrequency){
1539 $total_commands += $CommandsFrequency{$command};
1541 if ($total_commands) {
1542 for $command (reverse sort {$CommandsFrequency{$a} <=> $CommandsFrequency{$b}} keys %CommandsFrequency){
1543 my $command_html;
1544 my $percentage = sprintf "%5.2f",$CommandsFrequency{$command}*100/$total_commands;
1545 if ($percentage < 0.5) {
1546 my $hint = make_comment($command);
1547 $command_html = "$command";
1548 $command_html = "<span title='$hint' class='with_hint'>$command_html</span>" if $hint;
1549 $command_html = "<span class='without_hint'>$command_html</span>" if not $hint;
1550 my $command_html = "<tt>$command_html</tt>";
1551 $Stat{RareCommands} .= $command_html."<sub><font size='-2'>".$CommandsFrequency{$command}."</font></sub> , ";
1553 else {
1554 my $hint = make_comment($command);
1555 $command_html = "$command";
1556 $command_html = "<span title='$hint' class='with_hint'>$command_html</span>" if $hint;
1557 $command_html = "<span class='without_hint'>$command_html</span>" if not $hint;
1558 my $command_html = "<tt>$command_html</tt>";
1559 $percentage = sprintf "%5.2f",$percentage;
1560 $Stat{CommandsFrequency} .= "<tr><td>".$command_html."</td><td>".$CommandsFrequency{$command}."</td>".
1561 "<td>|".("="x int($CommandsFrequency{$command}*100/$total_commands))."| $percentage%</td></tr>";
1564 $Stat{CommandsFrequency} = "<table>".$Stat{CommandsFrequency}."</table>";
1565 $Stat{RareCommands} =~ s/, $// if $Stat{RareCommands};
1568 my $result = q();
1569 for my $stat (@StatOrder) {
1570 next unless $Stat{"$stat"};
1571 $result .= "<tr valign='top'><td width='300'>".$StatNames{"$stat"}."</td><td>".$Stat{"$stat"}."</td></tr>"
1573 $result = "<table>$result</table>"
1574 . "<font size='-2'>____<br/>*) Интервалы неактивности длительностью "
1575 . ($Config{stat_inactivity_interval}/60)
1576 . " минут и более не учитываются</font></br>";
1578 return $result;
1582 sub collapse_list($)
1584 my $res = "";
1585 for my $elem (@{$_[0]}) {
1586 if (ref $elem eq "ARRAY") {
1587 $res .= "<ul>".collapse_list($elem)."</ul>";
1589 else
1591 $res .= "<li>".$elem."</li>";
1594 return $res;
1598 sub print_files_html
1600 my $result = qq();
1601 my @toc;
1602 for my $file (sort keys %Files) {
1603 my $div_id = "file:$file";
1604 $div_id =~ s@/@_@g;
1605 push @toc, "<a href='#$div_id'>$file</a>";
1606 $result .= "<div class='filename' id='$div_id'>".$file."</div>\n"
1607 . "<div class='file_navigation'><a href='#command:".$Files{$file}->{source_command_id}."'>"."&gt;"."</a></div>"
1608 . "<div class='filedata'><pre>".$Files{$file}->{content}."</pre></div>";
1610 if ($result) {
1611 return "<div class='files_toc'>".collapse_list(\@toc)."</div>".$result;
1613 else {
1614 return "";
1619 sub init_variables
1621 $Html_Help = <<HELP;
1622 Для того чтобы использовать LiLaLo, не нужно знать ничего особенного:
1623 всё происходит само собой.
1624 Однако, чтобы ведение и последующее использование журналов
1625 было как можно более эффективным, желательно иметь в виду следующее:
1626 <ol>
1627 <li><p>
1628 В журнал автоматически попадают все команды, данные в любом терминале системы.
1629 </p></li>
1630 <li><p>
1631 Для того чтобы убедиться, что журнал на текущем терминале ведётся,
1632 и команды записываются, дайте команду w.
1633 В поле WHAT, соответствующем текущему терминалу,
1634 должна быть указана программа script.
1635 </p></li>
1636 <li><p>
1637 Команды, при наборе которых были допущены синтаксические ошибки,
1638 выводятся перечёркнутым текстом:
1639 <table>
1640 <tr class='command'>
1641 <td class='script'>
1642 <pre class='_mistyped_cline'>
1643 \$ l s-l</pre>
1644 <pre class='_mistyped_output'>bash: l: command not found
1645 </pre>
1646 </td>
1647 </tr>
1648 </table>
1649 <br/>
1650 </p></li>
1651 <li><p>
1652 Если код завершения команды равен нулю,
1653 команда была выполнена без ошибок.
1654 Команды, код завершения которых отличен от нуля, выделяются цветом.
1655 <table>
1656 <tr class='command'>
1657 <td class='script'>
1658 <pre class='_wrong_cline'>
1659 \$ test 5 -lt 4</pre>
1660 </pre>
1661 </td>
1662 </tr>
1663 </table>
1664 Обратите внимание на то, что код завершения команды может быть отличен от нуля
1665 не только в тех случаях, когда команда была выполнена с ошибкой.
1666 Многие команды используют код завершения, например, для того чтобы показать результаты проверки
1667 <br/>
1668 </p></li>
1669 <li><p>
1670 Команды, ход выполнения которых был прерван пользователем, выделяются цветом.
1671 <table>
1672 <tr class='command'>
1673 <td class='script'>
1674 <pre class='_interrupted_cline'>
1675 \$ find / -name abc</pre>
1676 <pre class='interrupted_output'>find: /home/devi-orig/.gnome2: Keine Berechtigung
1677 find: /home/devi-orig/.gnome2_private: Keine Berechtigung
1678 find: /home/devi-orig/.nautilus/metafiles: Keine Berechtigung
1679 find: /home/devi-orig/.metacity: Keine Berechtigung
1680 find: /home/devi-orig/.inkscape: Keine Berechtigung
1681 ^C
1682 </pre>
1683 </td>
1684 </tr>
1685 </table>
1686 <br/>
1687 </p></li>
1688 <li><p>
1689 Команды, выполненные с привилегиями суперпользователя,
1690 выделяются слева красной чертой.
1691 <table>
1692 <tr class='command'>
1693 <td class='script'>
1694 <pre class='_root_cline'>
1695 # id</pre>
1696 <pre class='_root_output'>
1697 uid=0(root) gid=0(root) Gruppen=0(root)
1698 </pre>
1699 </td>
1700 </tr>
1701 </table>
1702 <br/>
1703 </p></li>
1704 <li><p>
1705 Изменения, внесённые в текстовый файл с помощью редактора,
1706 запоминаются и показываются в журнале в формате ed.
1707 Строки, начинающиеся символом "&lt;", удалены, а строки,
1708 начинающиеся символом "&gt;" -- добавлены.
1709 <table>
1710 <tr class='command'>
1711 <td class='script'>
1712 <pre class='cline'>
1713 \$ vi ~/.bashrc</pre>
1714 <table><tr><td width='5'/><td class='diff'><pre>2a3,5
1715 &gt; if [ -f /usr/local/etc/bash_completion ]; then
1716 &gt; . /usr/local/etc/bash_completion
1717 &gt; fi
1718 </pre></td></tr></table></td>
1719 </tr>
1720 </table>
1721 <br/>
1722 </p></li>
1723 <li><p>
1724 Для того чтобы изменить файл в соответствии с показанными в диффшоте
1725 изменениями, можно воспользоваться командой patch.
1726 Нужно скопировать изменения, запустить программу patch, указав в
1727 качестве её аргумента файл, к которому применяются изменения,
1728 и всавить скопированный текст:
1729 <table>
1730 <tr class='command'>
1731 <td class='script'>
1732 <pre class='cline'>
1733 \$ patch ~/.bashrc</pre>
1734 </td>
1735 </tr>
1736 </table>
1737 В данном случае изменения применяются к файлу ~/.bashrc
1738 </p></li>
1739 <li><p>
1740 Для того чтобы получить краткую справочную информацию о команде,
1741 нужно подвести к ней мышь. Во всплывающей подсказке появится краткое
1742 описание команды.
1743 </p>
1744 <p>
1745 Если справочная информация о команде есть,
1746 команда выделяется голубым фоном, например: <span class="with_hint" title="главный текстовый редактор Unix">vi</span>.
1747 Если справочная информация отсутствует,
1748 команда выделяется розовым фоном, например: <span class="without_hint">notepad.exe</span>.
1749 Справочная информация может отсутствовать в том случае,
1750 если (1) команда введена неверно; (2) если распознавание команды LiLaLo выполнено неверно;
1751 (3) если информация о команде неизвестна LiLaLo.
1752 Последнее возможно для редких команд.
1753 </p></li>
1754 <li><p>
1755 Большие, в особенности многострочные, всплывающие подсказки лучше
1756 всего показываются браузерами KDE Konqueror, Apple Safari и Microsoft Internet Explorer.
1757 В браузерах Mozilla и Firefox они отображаются не полностью,
1758 а вместо перевода строки выводится специальный символ.
1759 </p></li>
1760 <li><p>
1761 Время ввода команды, показанное в журнале, соответствует времени
1762 <i>начала ввода командной строки</i>, которое равно тому моменту,
1763 когда на терминале появилось приглашение интерпретатора
1764 </p></li>
1765 <li><p>
1766 Имя терминала, на котором была введена команда, показано в специальном блоке.
1767 Этот блок показывается только в том случае, если терминал
1768 текущей команды отличается от терминала предыдущей.
1769 </p></li>
1770 <li><p>
1771 Вывод не интересующих вас в настоящий момент элементов журнала,
1772 таких как время, имя терминала и других, можно отключить.
1773 Для этого нужно воспользоваться <a href='#visibility_form'>формой управления журналом</a>
1774 вверху страницы.
1775 </p></li>
1776 <li><p>
1777 Небольшие комментарии к командам можно вставлять прямо из командной строки.
1778 Комментарий вводится прямо в командную строку, после символов #^ или #v.
1779 Символы ^ и v показывают направление выбора команды, к которой относится комментарий:
1780 ^ - к предыдущей, v - к следующей.
1781 Например, если в командной строке было введено:
1782 <pre class='cline'>
1783 \$ whoami
1784 </pre>
1785 <pre class='output'>
1786 user
1787 </pre>
1788 <pre class='cline'>
1789 \$ #^ Интересно, кто я?
1790 </pre>
1791 в журнале это будет выглядеть так:
1793 <pre class='cline'>
1794 \$ whoami
1795 </pre>
1796 <pre class='output'>
1797 user
1798 </pre>
1799 <table class='note'><tr><td width='100%' class='note_text'>
1800 <tr> <td> Интересно, кто я?<br/> </td></tr></table>
1801 </p></li>
1802 <li><p>
1803 Если комментарий содержит несколько строк,
1804 его можно вставить в журнал следующим образом:
1805 <pre class='cline'>
1806 \$ whoami
1807 </pre>
1808 <pre class='output'>
1809 user
1810 </pre>
1811 <pre class='cline'>
1812 \$ cat > /dev/null #^ Интересно, кто я?
1813 </pre>
1814 <pre class='output'>
1815 Программа whoami выводит имя пользователя, под которым
1816 мы зарегистрировались в системе.
1818 Она не может ответить на вопрос о нашем назначении
1819 в этом мире.
1820 </pre>
1821 В журнале это будет выглядеть так:
1822 <table>
1823 <tr class='command'>
1824 <td class='script'>
1825 <pre class='cline'>
1826 \$ whoami</pre>
1827 <pre class='output'>user
1828 </pre>
1829 <table class='note'><tr><td class='note_title'>Интересно, кто я?</td></tr><tr><td width='100%' class='note_text'>
1830 Программа whoami выводит имя пользователя, под которым<br/>
1831 мы зарегистрировались в системе.<br/>
1832 <br/>
1833 Она не может ответить на вопрос о нашем назначении<br/>
1834 в этом мире.<br/>
1835 </td></tr></table>
1836 </td>
1837 </tr>
1838 </table>
1839 Для разделения нескольких абзацев между собой
1840 используйте символ "-", один в строке.
1841 <br/>
1842 </p></li>
1843 <li><p>
1844 Комментарии, не относящиеся непосредственно ни к какой из команд,
1845 добавляются точно таким же способом, только вместо симолов #^ или #v
1846 нужно использовать символы #=
1847 </p></li>
1849 <p><li>
1850 Содержимое файла может быть показано в журнале.
1851 Для этого его нужно вывести с помощью программы cat.
1852 Если вывод команды отметить симоволами #!,
1853 содержимое файла будет показано в журнале
1854 в специально отведённой для этого секции.
1855 </li></p>
1857 <p>
1858 <li>
1859 Для того чтобы вставить скриншот интересующего вас окна в журнал,
1860 нужно воспользоваться командой l3shot.
1861 После того как команда вызвана, нужно с помощью мыши выбрать окно, которое
1862 должно быть в журнале.
1863 </li>
1864 </p>
1866 <p>
1867 <li>
1868 Команды в журнале расположены в хронологическом порядке.
1869 Если две команды давались одна за другой, но на разных терминалах,
1870 в журнале они будут рядом, даже если они не имеют друг к другу никакого отношения.
1871 <pre>
1876 </pre>
1877 Группы команд, выполненных на разных терминалах, разделяются специальной линией.
1878 Под этой линией в правом углу показано имя терминала, на котором выполнялись команды.
1879 Для того чтобы посмотреть команды только одного сенса,
1880 нужно щёкнуть по этому названию.
1881 </li>
1882 </p>
1883 </ol>
1884 HELP
1886 $Html_About = <<ABOUT;
1887 <p>
1888 <a href='http://xgu.ru/lilalo/'>LiLaLo</a> (L3) расшифровывается как Live Lab Log.<br/>
1889 Программа разработана для повышения эффективности обучения Unix/Linux-системам.<br/>
1890 (c) Игорь Чубин, 2004-2008<br/>
1891 </p>
1892 ABOUT
1893 $Html_About.='$Id$ </p>';
1895 $Html_JavaScript = <<JS;
1896 function getElementsByClassName(Class_Name)
1898 var Result=new Array();
1899 var All_Elements=document.all || document.getElementsByTagName('*');
1900 for (i=0; i<All_Elements.length; i++)
1901 if (All_Elements[i].className==Class_Name)
1902 Result.push(All_Elements[i]);
1903 return Result;
1905 function ShowHide (name)
1907 elements=getElementsByClassName(name);
1908 for(i=0; i<elements.length; i++)
1909 if (elements[i].style.display == "none")
1910 elements[i].style.display = "";
1911 else
1912 elements[i].style.display = "none";
1913 //if (elements[i].style.visibility == "hidden")
1914 // elements[i].style.visibility = "visible";
1915 //else
1916 // elements[i].style.visibility = "hidden";
1918 function filter_by_output(text)
1921 var jjj=0;
1923 elements=getElementsByClassName('command');
1924 for(i=0; i<elements.length; i++) {
1925 subelems = elements[i].getElementsByTagName('pre');
1926 for(j=0; j<subelems.length; j++) {
1927 if (subelems[j].className = 'output') {
1928 var str = new String(subelems[j].nodeValue);
1929 if (jjj != 1) {
1930 alert(str);
1931 jjj=1;
1933 if (str.indexOf(text) >0)
1934 subelems[j].style.display = "none";
1935 else
1936 subelems[j].style.display = "";
1944 JS
1946 $SetCursorPosition_JS = <<JS;
1947 function setCursorPosition(oInput,oStart,oEnd) {
1948 oInput.focus();
1949 if( oInput.setSelectionRange ) {
1950 oInput.setSelectionRange(oStart,oEnd);
1951 } else if( oInput.createTextRange ) {
1952 var range = oInput.createTextRange();
1953 range.collapse(true);
1954 range.moveEnd('character',oEnd);
1955 range.moveStart('character',oStart);
1956 range.select();
1959 JS
1961 %Search_Machines = (
1962 "google" => { "query" => "http://www.google.com/search?q=" ,
1963 "icon" => "$Config{frontend_google_ico}" },
1964 "freebsd" => { "query" => "http://www.freebsd.org/cgi/man.cgi?query=",
1965 "icon" => "$Config{frontend_freebsd_ico}" },
1966 "linux" => { "query" => "http://man.he.net/?topic=",
1967 "icon" => "$Config{frontend_linux_ico}"},
1968 "opennet" => { "query" => "http://www.opennet.ru/search.shtml?words=",
1969 "icon" => "$Config{frontend_opennet_ico}"},
1970 "local" => { "query" => "http://www.freebsd.org/cgi/man.cgi?query=",
1971 "icon" => "$Config{frontend_local_ico}" },
1973 );
1975 %Elements_Visibility = (
1976 "0 new_commands_table" => "новые команды",
1977 "1 diff" => "редактор",
1978 "2 time" => "время",
1979 "3 ttychange" => "терминал",
1980 "4 wrong_output wrong_cline wrong_root_output wrong_root_cline"
1981 => "команды с ненулевым кодом завершения",
1982 "5 mistyped_output mistyped_cline mistyped_root_output mistyped_root_cline"
1983 => "неверно набранные команды",
1984 "6 interrupted_output interrupted_cline interrupted_root_output interrupted_root_cline"
1985 => "прерванные команды",
1986 "7 tab_completion_output tab_completion_cline"
1987 => "продолжение с помощью tab"
1988 );
1990 @Day_Name = qw/ Воскресенье Понедельник Вторник Среда Четверг Пятница Суббота /;
1991 @Month_Name = qw/ Январь Февраль Март Апрель Май Июнь Июль Август Сентябрь Октябрь Ноябрь Декабрь /;
1992 @Of_Month_Name = qw/ Января Февраля Марта Апреля Мая Июня Июля Августа Сентября Октября Ноября Декабря /;
1998 # Временно удалённый код
1999 # Возможно, он не понадобится уже никогда
2002 sub search_by
2004 my $sm = shift;
2005 my $topic = shift;
2006 $topic =~ s/ /+/;
2008 return "<a href='". $Search_Machines{$sm}->{"query"}."$topic'><img width='16' height='16' src='".
2009 $Search_Machines{$sm}->{"icon"}."' border='0'/></a>";
2015 ########################################################################################
2017 # mywi
2028 sub mywi_init
2030 our $MyWiFile = "/home/igor/mywi/mywi.txt";
2031 our $MyWiLog = "/home/igor/mywi/mywi.log";
2032 our $section="";
2034 our @MywiTXT; # Массив текстовых записей mywi
2035 our %MywiHASH; # Хэш массивов записей
2036 our %Query;
2038 load_mywitxt($MyWiFile, \@MywiTXT, \%MywiHASH);
2041 sub mywi_process_query($)
2043 # Сделать подсказку по заданному запросу
2044 # $_[0] - тема для подсказки
2046 # Возвращает:
2047 # строку-подсказку
2050 my $query = shift;
2051 parse_query($query, \%Query);
2052 $result = search_in_txt(\%Query, \@MywiTXT, \%MywiHASH);
2054 if (!$result) {
2055 #add_to_log(\%Query, $MyWiLog);
2056 return "$query nothing appropriate. Logged. ".join (";",%Query);
2059 return $result;
2062 ####################################################################################
2063 # private section
2064 ####################################################################################
2066 sub load_mywitxt
2068 # Загрузить файл с записями Mywi_TXT
2069 # в массив
2070 # $_[0] - указатель на массив для загрузки
2071 # $_[1] - имя файла для загрузки
2074 my $MyWiFile = $_[0];
2075 my $MywiTXT = $_[1];
2076 my $MywiHASH = $_[2];
2078 open (MW, "$MyWiFile") or die "Can't open $MyWiFile for reading";
2079 binmode MW, ":utf8";
2080 @{$MywiTXT} = <MW>;
2081 close (MWF);
2083 for my $mywi_line (@{$MywiTXT}) {
2084 my $topic = $mywi_line;
2085 $topic =~ s@\s*\(.*\n@@;
2086 push @{$$MywiHASH{"$topic"}}, $mywi_line;
2087 # $MywiHASH{"$topic"} .= $mywi_line;
2091 sub parse_query
2093 # Строка запроса:
2094 # [format:]topic[(section)]
2095 # Элементы format и topic являются не обязательными
2097 # $_[0] - строка запроса
2098 # $_[1] - ссылка на хэш запроса
2101 my $query_string = shift;
2102 my $query_hash = shift;
2104 %{$query_hash} = (
2105 "format" => "txt",
2106 "section" => "",
2107 "topic" => "",
2108 );
2110 if ($query_string =~ s/^([^:]*)://) {
2111 $query_hash->{"format"} = $1 || "txt";
2113 if ($query_string =~ s/\(([^(]*)\)$//) {
2114 $query_hash->{"section"} = $1 || "";
2116 $query_hash->{"topic"} = $query_string;
2120 sub search_in_txt
2122 # Выполнить поиск в текстовой базе
2123 # по известному запросу
2124 # $_[0] -- ссылка на хэш запроса
2125 # $_[1] -- ссылка на массив текстовых записей
2126 # $_[2] -- ссылка на хэш массивов текстовых записей
2127 # Результат:
2128 # найденная текстовая запись в заданном формате
2131 my %Query = %{$_[0]};
2132 my %MywiHASH = %{$_[2]};
2134 my $topic = $Query{"topic"};
2135 my $section = $Query{"section"};
2136 my $result = "";
2138 return join("\n",@{$MywiHASH{"$topic"}})."\n";
2140 for my $l (@{$$_[2]{$topic}}) {
2141 # for my $l (@{$_[1]}) {
2142 my $line = $l;
2143 if (
2144 ($section and $line =~ /^\s*\Q$topic\E\s*\($section*\)\s*-/ )
2145 or (not $section and $line =~ /^\s*\Q$topic\E\s*(\([^)]*\)?)\s*-/) ) {
2146 $line =~ s/^.* -//mg if ($Config{"short"});
2147 $result .= "<para>$line</para>";
2150 return $result;
2154 sub add_to_log($$)
2156 # Если в базе отсутствует информация по данной теме,
2157 # сделать предположение доступным способом
2158 # и добавить его в базу
2159 # или просто сделать отметку о необходимости
2160 # расширения базы
2162 # Добавить запись в журнал
2163 # $_[0] - запись (ссылка на хэш)
2164 # $_[1] - имя файла-журнала
2167 my $query = $_[0];
2168 my $MyWiLog = $_[1];
2170 open (MWF, ">>:utf8", $MyWiLog) or die "Can't open $MyWiLog for writing";
2171 my $my_guess = mywi_guess($query);
2172 print MWF "$my_guess\n";
2173 close(MWF);
2176 sub mywi_guess($)
2177 # Сформировать исходную строку для журнала по заданному запросу
2178 # Если секция принадлежит 0..9, в качестве основы для результирующего текста использовать whatis
2179 # $_[0] - запись (ссылка на хэш)
2181 # Возвращает:
2182 # строку-предположение
2184 my %query = %{$_[0]};
2186 my $topic = $query{"topic"};
2187 my $section = $query{"section"};
2189 my $result = "$topic($section)";
2190 if (!$section or $section =~ /^[1-9]$/)
2192 # Запрос из категории 1-9
2193 # Об этом может знать whatis
2194 $result = `LANG=C whatis -- "$topic"`;
2195 if ($result =~ /nothing appropriate/i) {
2196 $result = $topic;
2197 $result .= "($section)" if $section;
2199 else {
2200 1 while ($result =~ s/(\s+)-(\s+)/$1+$2/sg);
2201 $result =~ s/\s+\(/(/;
2202 chomp $result;
2205 return $result;