lilalo

view l3-frontend @ 149:40d843395547

fixed bug with login shell -bash
author igor@book.xt.vpn
date Fri Mar 06 13:34:59 2009 +0600 (2009-03-06)
parents 94f587855947
children 822b36252d7f
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 $this_day_result .= "PRIVET";
839 for $t (sort { $a <=> $b } keys %{ $Uploads{$cl->{"local_session_id"}} }) {
840 # if ($t > $cl->{"time"} && $t < $next_cl->{"time"}) {
841 $this_day_result .= "<IMG src='"
842 .$Config{l3shot_path}
843 .$Uploads{$cl->{"local_session_id"}}
844 ."' alt ='screenshot id ".$cl->{"screenshot"}
845 ."'/>"
846 }
848 $this_day_result .= "<img src='"
849 .$Config{l3shot_path}
850 .$cl->{"screenshot"}
851 ."' alt ='screenshot id ".$cl->{"screenshot"}
852 ."'/>"
853 if ( $Config{"show_screenshots"} =~ /^y/i && $cl->{"screenshot"});
855 #NOTES
856 if ( $Config{"show_notes"} =~ /^y/i && $cl->{"note"}) {
857 my $note=$cl->{"note"};
858 $note =~ s/\n/<br\/>\n/msg;
859 if (not $note =~ s@(http:[a-zA-Z.0-9/_?%-]*)@<a href='$1'>$1</a>@g) {
860 $note =~ s@(www\.[a-zA-Z.0-9/_?%-]*)@<a href='$1'>$1</a>@g;
861 };
862 $this_day_result .= "<div class='note'>";
863 $this_day_result .= "<div class='note_title'>".$cl->{note_title}."</div>" if $cl->{note_title};
864 $this_day_result .= "<div class='note_text'>".$note."</div>";
865 $this_day_result .= "</div>\n";
866 }
868 # Вывод очередной команды окончен
869 $this_day_result .= "</div>\n"; # cblock
870 $this_day_result .= "</td></tr></table></DIV>\n"
871 . "</div>\n"; # command
872 }
873 last: {
874 $prev_unix_time=$first_command_of_the_day_unix_time;
875 $first_command_of_the_day_unix_time = $cl->{time};
876 $human_readable_time = strftime "%D", localtime($prev_unix_time);
878 $result .= "<h3 id='day_on_sec_$prev_unix_time'>".$Day_Name[$last_wday]." ($human_readable_time)</h3>";
880 for my $entry_class (keys %new_entries_of) {
881 my $table_caption = "Таблица ".$table_number++.".".$Day_Name[$last_wday]
882 . ". Новые ".$new_entries_of{$entry_class};
883 my $new_commands_section = make_new_entries_table(
884 $table_caption,
885 $entry_class=~/[0-9]+\s+(.*)/,
886 \@known_commands);
887 }
888 @known_commands = keys %frequency_of_command;
889 $result .= $this_day_result;
890 }
892 return ($result, collapse_list (\@toc));
894 }
896 #############
897 # make_new_entries_table
898 #
899 # Напечатать таблицу неизвестных команд
900 #
901 # In: $_[0] table_caption
902 # $_[1] entries_class
903 # @_[2..] known_commands
904 # Out:
906 sub make_new_entries_table
907 {
908 my $table_caption;
909 my $entries_class = shift;
910 my @known_commands = @{$_[0]};
911 my $result = "";
913 my %count;
914 my @new_commands = ();
915 for my $c (keys %frequency_of_command, @known_commands) {
916 $count{$c}++
917 }
918 for my $c (keys %frequency_of_command) {
919 push @new_commands, $c if $count{$c} != 2;
920 }
922 my $new_commands_section;
923 if (@new_commands){
924 my $hint;
925 for my $c (reverse sort { $frequency_of_command{$a} <=> $frequency_of_command{$b} } @new_commands) {
926 $hint = make_comment($c);
927 next unless $hint;
928 my ($command, $hint) = $hint =~ m/(.*?) \s*- \s*(.*)/;
929 next unless $command =~ s/\($entries_class\)//i;
930 $new_commands_section .= "<tr><td valign='top'>$command</td><td>$hint</td></tr>";
931 }
932 }
933 if ($new_commands_section) {
934 $result .= "<table class='new_commands_table' width='700' cellspacing='0' cellpadding='0'>"
935 . "<tr class='new_commands_caption'>"
936 . "<td colspan='2' align='right'>$table_caption</td>"
937 . "</tr>"
938 . "<tr class='new_commands_header'>"
939 . "<td width=100>Команда</td><td width=600>Описание</td>"
940 . "</tr>"
941 . $new_commands_section
942 . "</table>"
943 }
944 return $result;
945 }
947 #############
948 # minutes_passed
949 #
950 #
951 #
952 # In: $_[0] seconds_since_last_command
953 # Out: "minutes passed" text
955 sub minutes_passed
956 {
957 my $seconds_since_last_command = shift;
958 my $result = "";
959 if ($seconds_since_last_command > 7200) {
960 my $hours_passed = int($seconds_since_last_command/3600);
961 my $passed_word = $hours_passed % 10 == 1 ? "прошла"
962 : "прошло";
963 my $hours_word = $hours_passed % 10 == 1 ? "часа":
964 "часов";
965 $result .= "<div class='much_time_passed'>"
966 . $passed_word." &gt;".$hours_passed." ".$hours_word
967 . "</div>\n";
968 }
969 elsif ($seconds_since_last_command > 600) {
970 my $minutes_passed = int($seconds_since_last_command/60);
973 my $passed_word = $minutes_passed % 100 > 10
974 && $minutes_passed % 100 < 20 ? "прошло"
975 : $minutes_passed % 10 == 1 ? "прошла"
976 : "прошло";
978 my $minutes_word = $minutes_passed % 100 > 10
979 && $minutes_passed % 100 < 20 ? "минут" :
980 $minutes_passed % 10 == 1 ? "минута":
981 $minutes_passed % 10 == 0 ? "минут" :
982 $minutes_passed % 10 > 4 ? "минут" :
983 "минуты";
985 if ($seconds_since_last_command < 1800) {
986 $result .= "<div class='time_passed'>"
987 . $passed_word." ".$minutes_passed." ".$minutes_word
988 . "</div>\n";
989 }
990 else {
991 $result .= "<div class='much_time_passed'>"
992 . $passed_word." ".$minutes_passed." ".$minutes_word
993 . "</div>\n";
994 }
995 }
996 return $result;
997 }
999 #############
1000 # print_all_txt
1002 # Вывести журнал в текстовом формате
1004 # In: $_[0] output_filename
1005 # Out:
1007 sub print_command_lines_txt
1010 my $output_filename=$_[0];
1011 my $note_number=0;
1013 my $result = q();
1014 my $this_day_resut = q();
1016 my $cl;
1017 my $last_tty="";
1018 my $last_session="";
1019 my $last_day=q();
1020 my $last_wday=q();
1021 my $in_range=0;
1023 my $current_command=0;
1025 my $cursor_position = 0;
1028 if ($Config{filter}) {
1029 # Инициализация фильтра
1030 for (split /&/,$Config{filter}) {
1031 my ($var, $val) = split /::/;
1032 $filter{$var} = $val || "";
1037 COMMAND_LINE:
1038 for my $k (@Command_Lines_Index) {
1040 my $cl=$Command_Lines[$Command_Lines_Index[$current_command++]];
1041 next unless $cl;
1044 # Пропускаем строки, которые противоречат фильтру
1045 # Если у нас недостаточно информации о том, подходит строка под фильтр или нет,
1046 # мы её выводим
1048 for my $filter_key (keys %filter) {
1049 next COMMAND_LINE
1050 if defined($cl->{local_session_id})
1051 && defined($Sessions{$cl->{local_session_id}}->{$filter_key})
1052 && $Sessions{$cl->{local_session_id}}->{$filter_key} ne $filter{$filter_key};
1055 # Пропускаем строки, выходящие за границу "signature",
1056 # при условии, что границы указаны
1057 # Пропускаем неправильные/прерванные/другие команды
1058 if ($Config{"from"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"from"}/) {
1059 $in_range=1;
1060 next;
1062 if ($Config{"to"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"to"}/) {
1063 $in_range=0;
1064 next;
1066 next if ($Config{"from"} && $Config{"to"} && !$in_range)
1067 || ($Config{"skip_empty"} =~ /^y/i && $cl->{"cline"} =~ /^\s*$/ )
1068 || ($Config{"skip_wrong"} =~ /^y/i && $cl->{"err"} != 0)
1069 || ($Config{"skip_interrupted"} =~ /^y/i && $cl->{"err"} == 130);
1073 ##
1074 ## Начинается собственно вывод
1075 ##
1078 ### Сначала обрабатываем границы разделов
1079 ### Если тип команды "note", это граница
1081 if ($cl->{class} eq "note") {
1082 $this_day_result .= " === ".$cl->{note_title}." === \n" if $cl->{note_title};
1083 $this_day_result .= $cl->{note}."\n";
1084 next;
1087 my ($sec,$min,$hour,$day,$mon,$year,$wday,$yday,$isdst) = localtime($cl->{time});
1089 # Добавляем спереди 0 для удобочитаемости
1090 $min = "0".$min if $min =~ /^.$/;
1091 $hour = "0".$hour if $hour =~ /^.$/;
1092 $sec = "0".$sec if $sec =~ /^.$/;
1094 $class=$cl->{"class"};
1096 # DAY CHANGE
1097 if ( $last_day ne $day) {
1098 if ($last_day) {
1099 $result .= "== ".$Day_Name[$last_wday]." == \n";
1100 $result .= $this_day_result;
1102 $last_day = $day;
1103 $last_wday = $wday;
1104 $this_day_result = q();
1107 # CONSOLE CHANGE
1108 if ($cl->{"tty"} && $last_tty ne $cl->{"tty"} && 0) {
1109 my $tty = $cl->{"tty"};
1110 $this_day_result .= " #l3: ------- другая консоль ----\n";
1111 $last_tty=$cl->{"tty"};
1114 # Session change
1115 if ( $last_session ne $cl->{"local_session_id"}) {
1116 $this_day_result .= "# ------------------------------------------------------------"
1117 . " l3: local_session_id=".$cl->{"local_session_id"}
1118 . " ---------------------------------- \n";
1119 $last_session=$cl->{"local_session_id"};
1122 # TIME
1123 my @nl_counter = split (/\n/, $result);
1124 $cursor_position=length($result) - @nl_counter;
1126 if ($Config{"show_time"} =~ /^y/i) {
1127 $this_day_result .= "$hour:$min:$sec"
1130 # COMMAND
1131 $this_day_result .= " ".$cl->{"prompt"}.$cl->{"cline"}."\n";
1132 if ($cl->{"err"}) {
1133 $this_day_result .= " #l3: err=".$cl->{'err'}."\n";
1136 # OUTPUT
1137 my $last_command = $cl->{"last_command"};
1138 if (!(
1139 $Config{"suppress_editors"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"editors"}}) ||
1140 $Config{"suppress_pagers"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"pagers"}}) ||
1141 $Config{"suppress_terminal"}=~ /^y/i && grep ($_ eq $last_command, @{$Config{"terminal"}})
1142 )) {
1143 my $output = $cl->{short_output};
1144 if ($output) {
1145 $output =~ s/^/ |/mg;
1147 $this_day_result .= $output;
1150 # DIFF
1151 if ( $Config{"show_diffs"} =~ /^y/i && $cl->{"diff"}) {
1152 my $diff = $cl->{"diff"};
1153 $diff =~ s/^/ |/mg;
1154 $this_day_result .= $diff;
1155 };
1156 # SHOT
1157 if ($Config{"show_screenshots"} =~ /^y/i && $cl->{"screenshot"}) {
1158 $this_day_result .= " #l3: screenshot=".$cl->{'screenshot'}."\n";
1161 #NOTES
1162 if ( $Config{"show_notes"} =~ /^y/i && $cl->{"note"}) {
1163 my $note=$cl->{"note"};
1164 $note =~ s/\n/\n#^/msg;
1165 $this_day_result .= "#^ == ".$cl->{note_title}." ==\n" if $cl->{note_title};
1166 $this_day_result .= "#^ ".$note."\n";
1170 last: {
1171 $result .= "== ".$Day_Name[$last_wday]." == \n";
1172 $result .= $this_day_result;
1175 return $result;
1181 #############
1182 # print_edit_all_html
1184 # Вывести страницу с текстовым представлением журнала для редактирования
1186 # In: $_[0] output_filename
1187 # Out:
1189 sub print_edit_all_html
1191 my $output_filename= shift;
1192 my $result;
1193 my $cursor_position = 0;
1195 $result = print_command_lines_txt;
1196 my $title = ">Журнал лабораторных работ. Правка";
1198 $result =
1199 "<html>"
1200 ."<head>"
1201 ."<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />"
1202 ."<link rel='stylesheet' href='$Config{frontend_css}' type='text/css'/>"
1203 ."<title>$title</title>"
1204 ."</head>"
1205 ."<script>"
1206 .$SetCursorPosition_JS
1207 ."</script>"
1208 ."<body onLoad='setCursorPosition(document.all.mytextarea, $cursor_position, $cursor_position+10)'>"
1209 ."<h1>Журнал лабораторных работ. Правка</h1>"
1210 ."<form>"
1211 ."<textarea rows='30' cols='100' wrap='off' id='mytextarea'>$result</textarea>"
1212 ."<br/><input type='submit' value='Сохранить' label='label'/>"
1213 ."</form>"
1214 ."<p>Внимательно правим, потом сохраняем</p>"
1215 ."<p>Строки, начинающиеся символами #l3: можно трогать, только если точно знаешь, что делаешь</p>"
1216 ."</body>"
1217 ."</html>";
1219 if ($output_filename eq "-") {
1220 print $result;
1222 else {
1223 open(OUT, ">", $output_filename)
1224 or die "Can't open $output_filename for writing\n";
1225 binmode ":utf8";
1226 print OUT "$result";
1227 close(OUT);
1231 #############
1232 # print_all_txt
1234 # Вывести страницу с текстовым представлением журнала для редактирования
1236 # In: $_[0] output_filename
1237 # Out:
1239 sub print_all_txt
1241 my $result;
1243 $result = print_command_lines_txt;
1245 $result =~ s/&gt;/>/g;
1246 $result =~ s/&lt;/</g;
1247 $result =~ s/&amp;/&/g;
1249 if ($output_filename eq "-") {
1250 print $result;
1252 else {
1253 open(OUT, ">:utf8", $output_filename)
1254 or die "Can't open $output_filename for writing\n";
1255 print OUT "$result";
1256 close(OUT);
1261 #############
1262 # print_all_html
1266 # In: $_[0] output_filename
1267 # Out:
1270 sub print_all_html
1272 my $output_filename=$_[0];
1274 my $result;
1275 my ($command_lines,$toc) = print_command_lines_html;
1276 my $files_section = print_files_html;
1278 $result = $debug_output;
1279 $result .= print_header_html($toc);
1282 # $result.= join " <br/>", keys %Sessions;
1283 # for my $sess (keys %Sessions) {
1284 # $result .= join " ", keys (%{$Sessions{$sess}});
1285 # $result .= "<br/>";
1286 # }
1288 $result.= "<h2 id='log'>Журнал</h2>" . $command_lines;
1289 $result.= "<h2 id='files'>Файлы</h2>" . $files_section if $files_section;
1290 $result.= "<h2 id='stat'>Статистика</h2>" . print_stat_html;
1291 $result.= "<h2 id='help'>Справка</h2>" . $Html_Help . "<br/>";
1292 $result.= "<h2 id='about'>О программе</h2>". $Html_About. "<br/>";
1293 $result.= print_footer_html;
1295 if ($output_filename eq "-") {
1296 binmode STDOUT, ":utf8";
1297 print $result;
1299 else {
1300 open(OUT, ">:utf8", $output_filename)
1301 or die "Can't open $output_filename for writing\n";
1302 print OUT $result;
1303 close(OUT);
1307 #############
1308 # print_header_html
1312 # In: $_[0] Содержание
1313 # Out: Распечатанный заголовок
1315 sub print_header_html
1317 my $toc = $_[0];
1318 my $course_name = $Config{"course-name"};
1319 my $course_code = $Config{"course-code"};
1320 my $course_date = $Config{"course-date"};
1321 my $course_center = $Config{"course-center"};
1322 my $course_trainer = $Config{"course-trainer"};
1323 my $course_student = $Config{"course-student"};
1325 my $title = "Журнал лабораторных работ";
1326 $title .= " -- ".$course_student if $course_student;
1327 if ($course_date) {
1328 $title .= " -- ".$course_date;
1329 $title .= $course_code ? "/".$course_code
1330 : "";
1332 else {
1333 $title .= " -- ".$course_code if $course_code;
1336 # Управляющая форма
1337 my $control_form .= "<div class='visibility_form' title='Выберите какие элементы должны быть показаны в журнале'>"
1338 . "<span class='header'>Видимые элементы</span>"
1339 . "<span class='window_controls'><a href='' onclick='' title='свернуть форму управления'>_</a> <a href='' onclick='' title='закрыть форму управления'>x</a></span>"
1340 . "<div><form>\n";
1341 for my $element (sort keys %Elements_Visibility)
1343 my ($skip, @e) = split /\s+/, $element;
1344 my $showhide = join "", map { "ShowHide('$_');" } @e ;
1345 $control_form .= "<div><input type='checkbox' name='$e[0]' onclick=\"$showhide\" checked>".
1346 $Elements_Visibility{$element}.
1347 "</input></div>";
1349 $control_form .= "</form>\n"
1350 . "</div>\n";
1353 # Управляющая форма отключена
1354 # Она слишком сильно мешает, нужно что-то переделать
1355 $control_form = "";
1357 my $tigra_hints_array=tigra_hints_generate;
1359 my $result;
1360 $result = <<HEADER;
1361 <html>
1362 <head>
1363 <meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
1364 <link rel='stylesheet' href='$Config{frontend_css}' type='text/css'/>
1365 <title>$title</title>
1366 </head>
1367 <body>
1368 <!--<script>
1369 $Html_JavaScript
1370 </script>-->
1372 <!-- vvv Tigra Hints vvv -->
1373 <script language="JavaScript" src="/tigra/hints.js"></script>
1374 <!--<script language="JavaScript" src="/tigra/hints_cfg.js"></script>-->
1375 <script>$tigra_hints_array</script>
1376 <style>
1377 /* a class for all Tigra Hints boxes, TD object */
1378 .hintsClass
1379 {text-align: left; font-size:80%; font-family: Verdana, Arial, Helvetica; background-color:#ffffee; padding: 0px 0px 0px 0px;}
1380 /* this class is used by Tigra Hints wrappers */
1381 .row
1382 {background: white;}
1385 .bl2 {border: 1px solid #e68200; background:url(/tigra/block/bl2.gif) 0 100% no-repeat; text-align:left}
1386 .bl {background:url(/tigra/block/bl2.gif) 0 100% no-repeat; text-align:left}
1387 .br {background:url(/tigra/block/br2.gif) 100% 100% no-repeat}
1388 .tl {background:url(/tigra/block/tl2.gif) 0 0 no-repeat}
1389 .tr {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat; padding:10px}
1390 .tr2 {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat}
1391 .t {background:url(/tigra/block/dot2.gif) 0 0 repeat-x}
1392 .b {background:url(/tigra/block/dot2.gif) 0 100% repeat-x}
1393 .l {background:url(/tigra/block/dot2.gif) 0 0 repeat-y}
1394 .r {background:url(/tigra/block/dot2.gif) 100% 0 repeat-y}
1397 </style>
1398 <!-- ^^^ Tigra Hints ^^^ -->
1400 <!--
1401 .bl2 {border: 1px solid #e68200; background:url(/tigra/block/bl2.gif) 0 100% no-repeat; width:20em; text-align:center}
1402 .bl {background:url(/tigra/block/bl2.gif) 0 100% no-repeat; width:20em; text-align:center}
1403 .br {background:url(/tigra/block/br2.gif) 100% 100% no-repeat}
1404 .tl {background:url(/tigra/block/tl2.gif) 0 0 no-repeat}
1405 .tr {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat; padding:10px}
1406 .tr2 {background:url(/tigra/block/tr2.gif) 100% 0 no-repeat}
1407 .t {background:url(/tigra/block/dot2.gif) 0 0 repeat-x; width:20em}
1408 .b {background:url(/tigra/block/dot2.gif) 0 100% repeat-x}
1409 .l {background:url(/tigra/block/dot2.gif) 0 0 repeat-y}
1410 .r {background:url(/tigra/block/dot2.gif) 100% 0 repeat-y}
1411 -->
1414 <div class='edit_link'>
1415 [ <a href='?filter=action::edit;;$filter_url'>править</a> ]
1416 </div>
1417 <h1 onmouseover="myHint.show('1')" onmouseout="myHint.hide()" class='lined_header'>Журнал лабораторных работ</h1>
1418 HEADER
1419 if ( $course_student
1420 || $course_trainer
1421 || $course_name
1422 || $course_code
1423 || $course_date
1424 || $course_center) {
1425 $result .= "<p>";
1426 $result .= "Выполнил $course_student<br/>" if $course_student;
1427 $result .= "Проверил $course_trainer <br/>" if $course_trainer;
1428 $result .= "Курс " if $course_name
1429 || $course_code
1430 || $course_date;
1431 $result .= "$course_name " if $course_name;
1432 $result .= "($course_code)" if $course_code;
1433 $result .= ", $course_date<br/>" if $course_date;
1434 $result .= "Учебный центр $course_center <br/>" if $course_center;
1435 $result .= "Фильтр ".join(" ", map("$filter{$_}=$_", keys %filter))."<br/>" if %filter;
1436 $result .= "</p>";
1439 $result .= <<HEADER;
1440 <table width='100%'>
1441 <tr>
1442 <td width='*'>
1444 <table border=0 id='toc' class='toc'>
1445 <tr>
1446 <td>
1447 <div class='toc_title'>Содержание</div>
1448 <ul>
1449 <li><a href='#log'>Журнал</a></li>
1450 <ul>$toc</ul>
1451 <li><a href='#files'>Файлы</a></li>
1452 <li><a href='#stat'>Статистика</a></li>
1453 <li><a href='#help'>Справка</a></li>
1454 <li><a href='#about'>О программе</a></li>
1455 </ul>
1456 </td>
1457 </tr>
1458 </table>
1460 </td>
1461 <td valign='top' width=200>$control_form</td>
1462 </tr>
1463 </table>
1464 HEADER
1466 return $result;
1470 #############
1471 # print_footer_html
1478 sub print_footer_html
1480 return "</body>\n</html>\n";
1486 #############
1487 # print_stat_html
1491 # In:
1492 # Out:
1494 sub print_stat_html
1496 %StatNames = (
1497 FirstCommand => "Время первой команды журнала",
1498 LastCommand => "Время последней команды журнала",
1499 TotalCommands => "Количество командных строк в журнале",
1500 ErrorsPercentage => "Процент команд с ненулевым кодом завершения, %",
1501 MistypesPercentage => "Процент синтаксически неверно набранных команд, %",
1502 TotalTime => "Суммарное время работы с терминалом <sup><font size='-2'>*</font></sup>, час",
1503 CommandsPerTime => "Количество командных строк в единицу времени, команда/мин",
1504 CommandsFrequency => "Частота использования команд",
1505 RareCommands => "Частота использования этих команд < 0.5%",
1506 );
1507 @StatOrder = (
1508 FirstCommand,
1509 LastCommand,
1510 TotalCommands,
1511 ErrorsPercentage,
1512 MistypesPercentage,
1513 TotalTime,
1514 CommandsPerTime,
1515 CommandsFrequency,
1516 RareCommands,
1517 );
1519 # Подготовка статистики к выводу
1520 # Некоторые значения пересчитываются!
1521 # Дальше их лучше уже не использовать!!!
1523 my %CommandsFrequency = %frequency_of_command;
1525 $Stat{TotalTime} ||= 0;
1526 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($Stat{FirstCommand} || 0);
1527 $Stat{FirstCommand} = sprintf "%02i:%02i:%02i %04i-%2i-%2i", $hour, $min, $sec, $year+1900, $mon+1, $mday;
1528 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($Stat{LastCommand} || 0);
1529 $Stat{LastCommand} = sprintf "%02i:%02i:%02i %04i-%2i-%2i", $hour, $min, $sec, $year+1900, $mon+1, $mday;
1530 if ($Stat{TotalCommands}) {
1531 $Stat{ErrorsPercentage} = sprintf "%5.2f", $Stat{ErrorCommands}*100/$Stat{TotalCommands};
1532 $Stat{MistypesPercentage} = sprintf "%5.2f", $Stat{MistypedCommands}*100/$Stat{TotalCommands};
1534 $Stat{CommandsPerTime} = sprintf "%5.2f", $Stat{TotalCommands}*60/$Stat{TotalTime}
1535 if $Stat{TotalTime};
1536 $Stat{TotalTime} = sprintf "%5.2f", $Stat{TotalTime}/60/60;
1538 my $total_commands=0;
1539 for $command (keys %CommandsFrequency){
1540 $total_commands += $CommandsFrequency{$command};
1542 if ($total_commands) {
1543 for $command (reverse sort {$CommandsFrequency{$a} <=> $CommandsFrequency{$b}} keys %CommandsFrequency){
1544 my $command_html;
1545 my $percentage = sprintf "%5.2f",$CommandsFrequency{$command}*100/$total_commands;
1546 if ($percentage < 0.5) {
1547 my $hint = make_comment($command);
1548 $command_html = "$command";
1549 $command_html = "<span title='$hint' class='with_hint'>$command_html</span>" if $hint;
1550 $command_html = "<span class='without_hint'>$command_html</span>" if not $hint;
1551 my $command_html = "<tt>$command_html</tt>";
1552 $Stat{RareCommands} .= $command_html."<sub><font size='-2'>".$CommandsFrequency{$command}."</font></sub> , ";
1554 else {
1555 my $hint = make_comment($command);
1556 $command_html = "$command";
1557 $command_html = "<span title='$hint' class='with_hint'>$command_html</span>" if $hint;
1558 $command_html = "<span class='without_hint'>$command_html</span>" if not $hint;
1559 my $command_html = "<tt>$command_html</tt>";
1560 $percentage = sprintf "%5.2f",$percentage;
1561 $Stat{CommandsFrequency} .= "<tr><td>".$command_html."</td><td>".$CommandsFrequency{$command}."</td>".
1562 "<td>|".("="x int($CommandsFrequency{$command}*100/$total_commands))."| $percentage%</td></tr>";
1565 $Stat{CommandsFrequency} = "<table>".$Stat{CommandsFrequency}."</table>";
1566 $Stat{RareCommands} =~ s/, $// if $Stat{RareCommands};
1569 my $result = q();
1570 for my $stat (@StatOrder) {
1571 next unless $Stat{"$stat"};
1572 $result .= "<tr valign='top'><td width='300'>".$StatNames{"$stat"}."</td><td>".$Stat{"$stat"}."</td></tr>"
1574 $result = "<table>$result</table>"
1575 . "<font size='-2'>____<br/>*) Интервалы неактивности длительностью "
1576 . ($Config{stat_inactivity_interval}/60)
1577 . " минут и более не учитываются</font></br>";
1579 return $result;
1583 sub collapse_list($)
1585 my $res = "";
1586 for my $elem (@{$_[0]}) {
1587 if (ref $elem eq "ARRAY") {
1588 $res .= "<ul>".collapse_list($elem)."</ul>";
1590 else
1592 $res .= "<li>".$elem."</li>";
1595 return $res;
1599 sub print_files_html
1601 my $result = qq();
1602 my @toc;
1603 for my $file (sort keys %Files) {
1604 my $div_id = "file:$file";
1605 $div_id =~ s@/@_@g;
1606 push @toc, "<a href='#$div_id'>$file</a>";
1607 $result .= "<div class='filename' id='$div_id'>".$file."</div>\n"
1608 . "<div class='file_navigation'><a href='#command:".$Files{$file}->{source_command_id}."'>"."&gt;"."</a></div>"
1609 . "<div class='filedata'><pre>".$Files{$file}->{content}."</pre></div>";
1611 if ($result) {
1612 return "<div class='files_toc'>".collapse_list(\@toc)."</div>".$result;
1614 else {
1615 return "";
1620 sub init_variables
1622 $Html_Help = <<HELP;
1623 Для того чтобы использовать LiLaLo, не нужно знать ничего особенного:
1624 всё происходит само собой.
1625 Однако, чтобы ведение и последующее использование журналов
1626 было как можно более эффективным, желательно иметь в виду следующее:
1627 <ol>
1628 <li><p>
1629 В журнал автоматически попадают все команды, данные в любом терминале системы.
1630 </p></li>
1631 <li><p>
1632 Для того чтобы убедиться, что журнал на текущем терминале ведётся,
1633 и команды записываются, дайте команду w.
1634 В поле WHAT, соответствующем текущему терминалу,
1635 должна быть указана программа script.
1636 </p></li>
1637 <li><p>
1638 Команды, при наборе которых были допущены синтаксические ошибки,
1639 выводятся перечёркнутым текстом:
1640 <table>
1641 <tr class='command'>
1642 <td class='script'>
1643 <pre class='_mistyped_cline'>
1644 \$ l s-l</pre>
1645 <pre class='_mistyped_output'>bash: l: command not found
1646 </pre>
1647 </td>
1648 </tr>
1649 </table>
1650 <br/>
1651 </p></li>
1652 <li><p>
1653 Если код завершения команды равен нулю,
1654 команда была выполнена без ошибок.
1655 Команды, код завершения которых отличен от нуля, выделяются цветом.
1656 <table>
1657 <tr class='command'>
1658 <td class='script'>
1659 <pre class='_wrong_cline'>
1660 \$ test 5 -lt 4</pre>
1661 </pre>
1662 </td>
1663 </tr>
1664 </table>
1665 Обратите внимание на то, что код завершения команды может быть отличен от нуля
1666 не только в тех случаях, когда команда была выполнена с ошибкой.
1667 Многие команды используют код завершения, например, для того чтобы показать результаты проверки
1668 <br/>
1669 </p></li>
1670 <li><p>
1671 Команды, ход выполнения которых был прерван пользователем, выделяются цветом.
1672 <table>
1673 <tr class='command'>
1674 <td class='script'>
1675 <pre class='_interrupted_cline'>
1676 \$ find / -name abc</pre>
1677 <pre class='interrupted_output'>find: /home/devi-orig/.gnome2: Keine Berechtigung
1678 find: /home/devi-orig/.gnome2_private: Keine Berechtigung
1679 find: /home/devi-orig/.nautilus/metafiles: Keine Berechtigung
1680 find: /home/devi-orig/.metacity: Keine Berechtigung
1681 find: /home/devi-orig/.inkscape: Keine Berechtigung
1682 ^C
1683 </pre>
1684 </td>
1685 </tr>
1686 </table>
1687 <br/>
1688 </p></li>
1689 <li><p>
1690 Команды, выполненные с привилегиями суперпользователя,
1691 выделяются слева красной чертой.
1692 <table>
1693 <tr class='command'>
1694 <td class='script'>
1695 <pre class='_root_cline'>
1696 # id</pre>
1697 <pre class='_root_output'>
1698 uid=0(root) gid=0(root) Gruppen=0(root)
1699 </pre>
1700 </td>
1701 </tr>
1702 </table>
1703 <br/>
1704 </p></li>
1705 <li><p>
1706 Изменения, внесённые в текстовый файл с помощью редактора,
1707 запоминаются и показываются в журнале в формате ed.
1708 Строки, начинающиеся символом "&lt;", удалены, а строки,
1709 начинающиеся символом "&gt;" -- добавлены.
1710 <table>
1711 <tr class='command'>
1712 <td class='script'>
1713 <pre class='cline'>
1714 \$ vi ~/.bashrc</pre>
1715 <table><tr><td width='5'/><td class='diff'><pre>2a3,5
1716 &gt; if [ -f /usr/local/etc/bash_completion ]; then
1717 &gt; . /usr/local/etc/bash_completion
1718 &gt; fi
1719 </pre></td></tr></table></td>
1720 </tr>
1721 </table>
1722 <br/>
1723 </p></li>
1724 <li><p>
1725 Для того чтобы изменить файл в соответствии с показанными в диффшоте
1726 изменениями, можно воспользоваться командой patch.
1727 Нужно скопировать изменения, запустить программу patch, указав в
1728 качестве её аргумента файл, к которому применяются изменения,
1729 и всавить скопированный текст:
1730 <table>
1731 <tr class='command'>
1732 <td class='script'>
1733 <pre class='cline'>
1734 \$ patch ~/.bashrc</pre>
1735 </td>
1736 </tr>
1737 </table>
1738 В данном случае изменения применяются к файлу ~/.bashrc
1739 </p></li>
1740 <li><p>
1741 Для того чтобы получить краткую справочную информацию о команде,
1742 нужно подвести к ней мышь. Во всплывающей подсказке появится краткое
1743 описание команды.
1744 </p>
1745 <p>
1746 Если справочная информация о команде есть,
1747 команда выделяется голубым фоном, например: <span class="with_hint" title="главный текстовый редактор Unix">vi</span>.
1748 Если справочная информация отсутствует,
1749 команда выделяется розовым фоном, например: <span class="without_hint">notepad.exe</span>.
1750 Справочная информация может отсутствовать в том случае,
1751 если (1) команда введена неверно; (2) если распознавание команды LiLaLo выполнено неверно;
1752 (3) если информация о команде неизвестна LiLaLo.
1753 Последнее возможно для редких команд.
1754 </p></li>
1755 <li><p>
1756 Большие, в особенности многострочные, всплывающие подсказки лучше
1757 всего показываются браузерами KDE Konqueror, Apple Safari и Microsoft Internet Explorer.
1758 В браузерах Mozilla и Firefox они отображаются не полностью,
1759 а вместо перевода строки выводится специальный символ.
1760 </p></li>
1761 <li><p>
1762 Время ввода команды, показанное в журнале, соответствует времени
1763 <i>начала ввода командной строки</i>, которое равно тому моменту,
1764 когда на терминале появилось приглашение интерпретатора
1765 </p></li>
1766 <li><p>
1767 Имя терминала, на котором была введена команда, показано в специальном блоке.
1768 Этот блок показывается только в том случае, если терминал
1769 текущей команды отличается от терминала предыдущей.
1770 </p></li>
1771 <li><p>
1772 Вывод не интересующих вас в настоящий момент элементов журнала,
1773 таких как время, имя терминала и других, можно отключить.
1774 Для этого нужно воспользоваться <a href='#visibility_form'>формой управления журналом</a>
1775 вверху страницы.
1776 </p></li>
1777 <li><p>
1778 Небольшие комментарии к командам можно вставлять прямо из командной строки.
1779 Комментарий вводится прямо в командную строку, после символов #^ или #v.
1780 Символы ^ и v показывают направление выбора команды, к которой относится комментарий:
1781 ^ - к предыдущей, v - к следующей.
1782 Например, если в командной строке было введено:
1783 <pre class='cline'>
1784 \$ whoami
1785 </pre>
1786 <pre class='output'>
1787 user
1788 </pre>
1789 <pre class='cline'>
1790 \$ #^ Интересно, кто я?
1791 </pre>
1792 в журнале это будет выглядеть так:
1794 <pre class='cline'>
1795 \$ whoami
1796 </pre>
1797 <pre class='output'>
1798 user
1799 </pre>
1800 <table class='note'><tr><td width='100%' class='note_text'>
1801 <tr> <td> Интересно, кто я?<br/> </td></tr></table>
1802 </p></li>
1803 <li><p>
1804 Если комментарий содержит несколько строк,
1805 его можно вставить в журнал следующим образом:
1806 <pre class='cline'>
1807 \$ whoami
1808 </pre>
1809 <pre class='output'>
1810 user
1811 </pre>
1812 <pre class='cline'>
1813 \$ cat > /dev/null #^ Интересно, кто я?
1814 </pre>
1815 <pre class='output'>
1816 Программа whoami выводит имя пользователя, под которым
1817 мы зарегистрировались в системе.
1819 Она не может ответить на вопрос о нашем назначении
1820 в этом мире.
1821 </pre>
1822 В журнале это будет выглядеть так:
1823 <table>
1824 <tr class='command'>
1825 <td class='script'>
1826 <pre class='cline'>
1827 \$ whoami</pre>
1828 <pre class='output'>user
1829 </pre>
1830 <table class='note'><tr><td class='note_title'>Интересно, кто я?</td></tr><tr><td width='100%' class='note_text'>
1831 Программа whoami выводит имя пользователя, под которым<br/>
1832 мы зарегистрировались в системе.<br/>
1833 <br/>
1834 Она не может ответить на вопрос о нашем назначении<br/>
1835 в этом мире.<br/>
1836 </td></tr></table>
1837 </td>
1838 </tr>
1839 </table>
1840 Для разделения нескольких абзацев между собой
1841 используйте символ "-", один в строке.
1842 <br/>
1843 </p></li>
1844 <li><p>
1845 Комментарии, не относящиеся непосредственно ни к какой из команд,
1846 добавляются точно таким же способом, только вместо симолов #^ или #v
1847 нужно использовать символы #=
1848 </p></li>
1850 <p><li>
1851 Содержимое файла может быть показано в журнале.
1852 Для этого его нужно вывести с помощью программы cat.
1853 Если вывод команды отметить симоволами #!,
1854 содержимое файла будет показано в журнале
1855 в специально отведённой для этого секции.
1856 </li></p>
1858 <p>
1859 <li>
1860 Для того чтобы вставить скриншот интересующего вас окна в журнал,
1861 нужно воспользоваться командой l3shot.
1862 После того как команда вызвана, нужно с помощью мыши выбрать окно, которое
1863 должно быть в журнале.
1864 </li>
1865 </p>
1867 <p>
1868 <li>
1869 Команды в журнале расположены в хронологическом порядке.
1870 Если две команды давались одна за другой, но на разных терминалах,
1871 в журнале они будут рядом, даже если они не имеют друг к другу никакого отношения.
1872 <pre>
1877 </pre>
1878 Группы команд, выполненных на разных терминалах, разделяются специальной линией.
1879 Под этой линией в правом углу показано имя терминала, на котором выполнялись команды.
1880 Для того чтобы посмотреть команды только одного сенса,
1881 нужно щёкнуть по этому названию.
1882 </li>
1883 </p>
1884 </ol>
1885 HELP
1887 $Html_About = <<ABOUT;
1888 <p>
1889 <a href='http://xgu.ru/lilalo/'>LiLaLo</a> (L3) расшифровывается как Live Lab Log.<br/>
1890 Программа разработана для повышения эффективности обучения Unix/Linux-системам.<br/>
1891 (c) Игорь Чубин, 2004-2008<br/>
1892 </p>
1893 ABOUT
1894 $Html_About.='$Id$ </p>';
1896 $Html_JavaScript = <<JS;
1897 function getElementsByClassName(Class_Name)
1899 var Result=new Array();
1900 var All_Elements=document.all || document.getElementsByTagName('*');
1901 for (i=0; i<All_Elements.length; i++)
1902 if (All_Elements[i].className==Class_Name)
1903 Result.push(All_Elements[i]);
1904 return Result;
1906 function ShowHide (name)
1908 elements=getElementsByClassName(name);
1909 for(i=0; i<elements.length; i++)
1910 if (elements[i].style.display == "none")
1911 elements[i].style.display = "";
1912 else
1913 elements[i].style.display = "none";
1914 //if (elements[i].style.visibility == "hidden")
1915 // elements[i].style.visibility = "visible";
1916 //else
1917 // elements[i].style.visibility = "hidden";
1919 function filter_by_output(text)
1922 var jjj=0;
1924 elements=getElementsByClassName('command');
1925 for(i=0; i<elements.length; i++) {
1926 subelems = elements[i].getElementsByTagName('pre');
1927 for(j=0; j<subelems.length; j++) {
1928 if (subelems[j].className = 'output') {
1929 var str = new String(subelems[j].nodeValue);
1930 if (jjj != 1) {
1931 alert(str);
1932 jjj=1;
1934 if (str.indexOf(text) >0)
1935 subelems[j].style.display = "none";
1936 else
1937 subelems[j].style.display = "";
1945 JS
1947 $SetCursorPosition_JS = <<JS;
1948 function setCursorPosition(oInput,oStart,oEnd) {
1949 oInput.focus();
1950 if( oInput.setSelectionRange ) {
1951 oInput.setSelectionRange(oStart,oEnd);
1952 } else if( oInput.createTextRange ) {
1953 var range = oInput.createTextRange();
1954 range.collapse(true);
1955 range.moveEnd('character',oEnd);
1956 range.moveStart('character',oStart);
1957 range.select();
1960 JS
1962 %Search_Machines = (
1963 "google" => { "query" => "http://www.google.com/search?q=" ,
1964 "icon" => "$Config{frontend_google_ico}" },
1965 "freebsd" => { "query" => "http://www.freebsd.org/cgi/man.cgi?query=",
1966 "icon" => "$Config{frontend_freebsd_ico}" },
1967 "linux" => { "query" => "http://man.he.net/?topic=",
1968 "icon" => "$Config{frontend_linux_ico}"},
1969 "opennet" => { "query" => "http://www.opennet.ru/search.shtml?words=",
1970 "icon" => "$Config{frontend_opennet_ico}"},
1971 "local" => { "query" => "http://www.freebsd.org/cgi/man.cgi?query=",
1972 "icon" => "$Config{frontend_local_ico}" },
1974 );
1976 %Elements_Visibility = (
1977 "0 new_commands_table" => "новые команды",
1978 "1 diff" => "редактор",
1979 "2 time" => "время",
1980 "3 ttychange" => "терминал",
1981 "4 wrong_output wrong_cline wrong_root_output wrong_root_cline"
1982 => "команды с ненулевым кодом завершения",
1983 "5 mistyped_output mistyped_cline mistyped_root_output mistyped_root_cline"
1984 => "неверно набранные команды",
1985 "6 interrupted_output interrupted_cline interrupted_root_output interrupted_root_cline"
1986 => "прерванные команды",
1987 "7 tab_completion_output tab_completion_cline"
1988 => "продолжение с помощью tab"
1989 );
1991 @Day_Name = qw/ Воскресенье Понедельник Вторник Среда Четверг Пятница Суббота /;
1992 @Month_Name = qw/ Январь Февраль Март Апрель Май Июнь Июль Август Сентябрь Октябрь Ноябрь Декабрь /;
1993 @Of_Month_Name = qw/ Января Февраля Марта Апреля Мая Июня Июля Августа Сентября Октября Ноября Декабря /;
1999 # Временно удалённый код
2000 # Возможно, он не понадобится уже никогда
2003 sub search_by
2005 my $sm = shift;
2006 my $topic = shift;
2007 $topic =~ s/ /+/;
2009 return "<a href='". $Search_Machines{$sm}->{"query"}."$topic'><img width='16' height='16' src='".
2010 $Search_Machines{$sm}->{"icon"}."' border='0'/></a>";
2016 ########################################################################################
2018 # mywi
2029 sub mywi_init
2031 our $MyWiFile = "/home/igor/mywi/mywi.txt";
2032 our $MyWiLog = "/home/igor/mywi/mywi.log";
2033 our $section="";
2035 our @MywiTXT; # Массив текстовых записей mywi
2036 our %MywiHASH; # Хэш массивов записей
2037 our %Query;
2039 load_mywitxt($MyWiFile, \@MywiTXT, \%MywiHASH);
2042 sub mywi_process_query($)
2044 # Сделать подсказку по заданному запросу
2045 # $_[0] - тема для подсказки
2047 # Возвращает:
2048 # строку-подсказку
2051 my $query = shift;
2052 parse_query($query, \%Query);
2053 $result = search_in_txt(\%Query, \@MywiTXT, \%MywiHASH);
2055 if (!$result) {
2056 #add_to_log(\%Query, $MyWiLog);
2057 return "$query nothing appropriate. Logged. ".join (";",%Query);
2060 return $result;
2063 ####################################################################################
2064 # private section
2065 ####################################################################################
2067 sub load_mywitxt
2069 # Загрузить файл с записями Mywi_TXT
2070 # в массив
2071 # $_[0] - указатель на массив для загрузки
2072 # $_[1] - имя файла для загрузки
2075 my $MyWiFile = $_[0];
2076 my $MywiTXT = $_[1];
2077 my $MywiHASH = $_[2];
2079 open (MW, "$MyWiFile") or die "Can't open $MyWiFile for reading";
2080 binmode MW, ":utf8";
2081 @{$MywiTXT} = <MW>;
2082 close (MWF);
2084 for my $mywi_line (@{$MywiTXT}) {
2085 my $topic = $mywi_line;
2086 $topic =~ s@\s*\(.*\n@@;
2087 push @{$$MywiHASH{"$topic"}}, $mywi_line;
2088 # $MywiHASH{"$topic"} .= $mywi_line;
2092 sub parse_query
2094 # Строка запроса:
2095 # [format:]topic[(section)]
2096 # Элементы format и topic являются не обязательными
2098 # $_[0] - строка запроса
2099 # $_[1] - ссылка на хэш запроса
2102 my $query_string = shift;
2103 my $query_hash = shift;
2105 %{$query_hash} = (
2106 "format" => "txt",
2107 "section" => "",
2108 "topic" => "",
2109 );
2111 if ($query_string =~ s/^([^:]*)://) {
2112 $query_hash->{"format"} = $1 || "txt";
2114 if ($query_string =~ s/\(([^(]*)\)$//) {
2115 $query_hash->{"section"} = $1 || "";
2117 $query_hash->{"topic"} = $query_string;
2121 sub search_in_txt
2123 # Выполнить поиск в текстовой базе
2124 # по известному запросу
2125 # $_[0] -- ссылка на хэш запроса
2126 # $_[1] -- ссылка на массив текстовых записей
2127 # $_[2] -- ссылка на хэш массивов текстовых записей
2128 # Результат:
2129 # найденная текстовая запись в заданном формате
2132 my %Query = %{$_[0]};
2133 my %MywiHASH = %{$_[2]};
2135 my $topic = $Query{"topic"};
2136 my $section = $Query{"section"};
2137 my $result = "";
2139 return join("\n",@{$MywiHASH{"$topic"}})."\n";
2141 for my $l (@{$$_[2]{$topic}}) {
2142 # for my $l (@{$_[1]}) {
2143 my $line = $l;
2144 if (
2145 ($section and $line =~ /^\s*\Q$topic\E\s*\($section*\)\s*-/ )
2146 or (not $section and $line =~ /^\s*\Q$topic\E\s*(\([^)]*\)?)\s*-/) ) {
2147 $line =~ s/^.* -//mg if ($Config{"short"});
2148 $result .= "<para>$line</para>";
2151 return $result;
2155 sub add_to_log($$)
2157 # Если в базе отсутствует информация по данной теме,
2158 # сделать предположение доступным способом
2159 # и добавить его в базу
2160 # или просто сделать отметку о необходимости
2161 # расширения базы
2163 # Добавить запись в журнал
2164 # $_[0] - запись (ссылка на хэш)
2165 # $_[1] - имя файла-журнала
2168 my $query = $_[0];
2169 my $MyWiLog = $_[1];
2171 open (MWF, ">>:utf8", $MyWiLog) or die "Can't open $MyWiLog for writing";
2172 my $my_guess = mywi_guess($query);
2173 print MWF "$my_guess\n";
2174 close(MWF);
2177 sub mywi_guess($)
2178 # Сформировать исходную строку для журнала по заданному запросу
2179 # Если секция принадлежит 0..9, в качестве основы для результирующего текста использовать whatis
2180 # $_[0] - запись (ссылка на хэш)
2182 # Возвращает:
2183 # строку-предположение
2185 my %query = %{$_[0]};
2187 my $topic = $query{"topic"};
2188 my $section = $query{"section"};
2190 my $result = "$topic($section)";
2191 if (!$section or $section =~ /^[1-9]$/)
2193 # Запрос из категории 1-9
2194 # Об этом может знать whatis
2195 $result = `LANG=C whatis -- "$topic"`;
2196 if ($result =~ /nothing appropriate/i) {
2197 $result = $topic;
2198 $result .= "($section)" if $section;
2200 else {
2201 1 while ($result =~ s/(\s+)-(\s+)/$1+$2/sg);
2202 $result =~ s/\s+\(/(/;
2203 chomp $result;
2206 return $result;