lilalo

view l3-frontend @ 36:cb822611b240

Переставлены предложения в help'е
author devi
date Mon Nov 14 21:24:14 2005 +0200 (2005-11-14)
parents 5f60fe514d49
children 219389279acb
line source
1 #!/usr/bin/perl -w
3 use IO::Socket;
4 use lib '.';
5 use l3config;
6 use locale;
8 our @Command_Lines;
9 our @Command_Lines_Index;
10 our %Commands_Description;
11 our %Args_Description;
12 our $Mywi_Socket;
13 our %Sessions;
15 # vvv Инициализация переменных выполняется процедурой init_variables
16 our @Day_Name;
17 our @Month_Name;
18 our @Of_Month_Name;
19 our %Search_Machines;
20 our %Elements_Visibility;
21 # ^^^
23 our %Stat;
24 our %CommandsFDistribution; # Сколько раз в журнале встречается какая команда
26 sub search_buy;
27 sub make_comment;
28 sub load_command_lines_from_xml;
29 sub load_sessions_from_xml;
30 sub print_command_lines;
31 sub sort_command_lines;
32 sub process_command_lines;
33 sub init_variables;
34 sub main;
35 sub collapse_list($);
37 main();
39 sub main
40 {
41 $| = 1;
43 init_variables();
44 init_config();
46 open_mywi_socket();
47 load_command_lines_from_xml($Config{"backend_datafile"});
48 load_sessions_from_xml($Config{"backend_datafile"});
49 sort_command_lines;
50 process_command_lines;
51 print_command_lines($Config{"output"});
52 close_mywi_socket;
53 }
56 sub search_by
57 {
58 my $sm = shift;
59 my $topic = shift;
60 $topic =~ s/ /+/;
62 return "<a href='". $Search_Machines{$sm}->{"query"}."$topic'><img width='16' height='16' src='".
63 $Search_Machines{$sm}->{"icon"}."' border='0'/></a>";
64 }
66 sub extract_from_cline
67 # Разобрать командную строку $_[1] и возвратить хэш, содержащий
68 # номер первого появление команды в строке:
69 # команда => первая позиция
70 {
71 my $what = $_[0];
72 my $cline = $_[1];
73 my @lists = split /\;/, $cline;
76 my @commands = ();
77 for my $list (@lists) {
78 push @commands, split /\|/, $list;
79 }
81 my %commands;
82 my %args;
83 my $i=0;
84 for my $command (@commands) {
85 $command =~ s@^\s*\S+/@@;
86 $command =~ /\s*(\S+)\s*(.*)/;
87 if ($1 && $1 eq "sudo" ) {
88 $commands{"$1"}=$i++;
89 $command =~ s/\s*sudo\s+//;
90 }
91 $command =~ s@^\s*\S+/@@;
92 $command =~ /\s*(\S+)\s*(.*)/;
93 if ($1 && !defined $commands{"$1"}) {
94 $commands{"$1"}=$i++;
95 };
96 if ($2) {
97 my $args = $2;
98 my @args = split (/\s+/, $args);
99 for my $a (@args) {
100 $args{"$a"}=$i++
101 if !defined $args{"$a"};
102 };
105 }
106 }
108 if ($what eq "commands") {
109 return \%commands;
110 } else {
111 return \%args;
112 }
114 }
116 sub open_mywi_socket
117 {
118 $Mywi_Socket = IO::Socket::INET->new(
119 PeerAddr => $Config{mywi_server},
120 PeerPort => $Config{mywi_port},
121 Proto => "tcp",
122 Type => SOCK_STREAM);
123 }
125 sub close_mywi_socket
126 {
127 close ($Mywi_Socket);
128 }
131 sub mywi_client
132 {
133 my $query = $_[0];
134 my $mywi;
136 open_mywi_socket;
137 if ($Mywi_Socket) {
138 local $| = 1;
139 local $/ = "";
140 print $Mywi_Socket $query."\n";
141 $mywi = <$Mywi_Socket>;
142 $mywi = "" if $mywi =~ /nothing app/;
143 }
144 close_mywi_socket;
145 return $mywi;
146 }
148 sub make_comment
149 {
150 my $cline = $_[0];
151 #my $files = $_[1];
153 my @comments=();
154 my @commands = keys %{extract_from_cline("commands", $cline)};
155 my @args = keys %{extract_from_cline("args", $cline)};
156 return if (!@commands && !@args);
157 #return "commands=".join(" ",@commands)."; files=".join(" ",@files);
159 # Commands
160 for my $command (@commands) {
161 $command =~ s/'//g;
162 $CommandsFDistribution{$command}++;
163 if (!$Commands_Description{$command}) {
164 my $mywi="";
165 $mywi = mywi_client ($command);
166 $mywi = join ("\n", grep(/\([18]\)/, split(/\n/, $mywi)));
167 $mywi =~ s/\s+/ /;
168 if ($mywi !~ /^\s*$/) {
169 $Commands_Description{$command} = $mywi;
170 }
171 else {
172 next;
173 }
174 }
176 push @comments, $Commands_Description{$command};
177 }
178 return join("&#10;\n", @comments);
180 # Files
181 for my $arg (@args) {
182 $arg =~ s/'//g;
183 if (!$Args_Description{$arg}) {
184 my $mywi;
185 $mywi = mywi_client ($arg);
186 $mywi = join ("\n", grep(/\([5]\)/, split(/\n/, $mywi)));
187 $mywi =~ s/\s+/ /;
188 if ($mywi !~ /^\s*$/) {
189 $Args_Description{$arg} = $mywi;
190 }
191 else {
192 next;
193 }
194 }
196 push @comments, $Args_Description{$arg};
197 }
199 }
201 =cut
202 Процедура load_command_lines_from_xml выполняет загрузку разобранного lab-скрипта
203 из XML-документа в переменную @Command_Lines
205 Предупреждение!
206 Процедура не в состоянии обрабатывать XML-документ любой структуры.
207 В действительности файл cache из которого загружаются данные
208 просто напоминает XML с виду.
209 =cut
210 sub load_command_lines_from_xml
211 {
212 my $datafile = $_[0];
214 open (CLASS, $datafile)
215 or die "Can't open file of the class ",$datafile,"\n";
216 local $/;
217 $data = <CLASS>;
218 close(CLASS);
220 for $command ($data =~ m@<command>(.*?)</command>@sg) {
221 my %cl;
222 while ($command =~ m@<([^>]*?)>(.*?)</\1>@sg) {
223 $cl{$1} = $2;
224 }
225 push @Command_Lines, \%cl;
226 }
227 }
229 sub load_sessions_from_xml
230 {
231 my $datafile = $_[0];
233 open (CLASS, $datafile)
234 or die "Can't open file of the class ",$datafile,"\n";
235 local $/;
236 my $data = <CLASS>;
237 close(CLASS);
239 for my $session ($data =~ m@<session>(.*?)</session>@sg) {
240 my %session;
241 while ($session =~ m@<([^>]*?)>(.*?)</\1>@sg) {
242 $session{$1} = $2;
243 }
244 $Sessions{$session{local_session_id}} = \%session;
245 }
246 }
250 sub sort_command_lines
251 {
252 # Sort Command_Lines
253 # Write Command_Lines to Command_Lines_Index
255 my @index;
256 for (my $i=0;$i<=$#Command_Lines;$i++) {
257 $index[$i]=$i;
258 }
260 @Command_Lines_Index = sort {
261 $Command_Lines[$index[$a]]->{"time"} <=> $Command_Lines[$index[$b]]->{"time"}
262 } @index;
264 }
266 sub process_command_lines
267 {
268 for my $i (@Command_Lines_Index) {
270 my $cl = \$Command_Lines[$i];
271 #@{${$cl}->{"new_commands"}} =();
272 #@{${$cl}->{"new_files"}} =();
273 $$cl->{"class"} = "";
275 if ($$cl->{"err"}) {
276 $$cl->{"class"}="wrong";
277 $$cl->{"class"}="interrupted"
278 if ($$cl->{"err"} eq 130);
279 }
280 if (!$$cl->{"euid"}) {
281 $$cl->{"class"}.="_root";
282 }
284 #tab# my @tab_words=split /\s+/, $$cl->{"output"};
285 #tab# my $last_word= $$cl->{"cline"} =~ /(\S*)$/;
286 #tab# $last_word =~ s@.*/@@;
287 #tab# my $this_is_tab=1;
288 #tab#
289 #tab# if ($last_word && @tab_words >2) {
290 #tab# for my $tab_words (@tab_words) {
291 #tab# if ($tab_words !~ /^$last_word/) {
292 #tab# $this_is_tab=0;
293 #tab# last;
294 #tab# }
295 #tab# }
296 #tab# }
297 #tab# $$cl->{"class"}="tab" if $this_is_tab;
300 # if ( !$$cl->{"err"}) {
301 # # Command does not contain mistakes
302 #
303 # my %commands = extract_from_cline("commands", ${$cl}->{"cline"});
304 # my %files = extract_from_cline("files", ${$cl}->{"cline"});
305 #
306 # # Searching for new commands only
307 # for my $command (keys %commands) {
308 # if (!defined $Commands_Stat{$command}) {
309 # push @{$$cl->{new_commands}}, $command;
310 # }
311 # $Commands_Stat{$command}++;
312 # }
313 #
314 # for my $file (keys %files) {
315 # if (!defined $Files_Stat{$file}) {
316 # push @{$$cl->{new_files}}, $file;
317 # }
318 # $Files_Stat{$file}++;
319 # }
320 # }
322 if ($$cl->{cline}=~ m@cat[^#]*#([\^=v])\s*(.*)@) {
323 if ($1 eq "=") {
324 $$cl->{"class"} = "note";
325 $$cl->{"note"} = $$cl->{"output"};
326 $$cl->{"note_title"} = $2;
327 }
328 else {
329 my $j = $i;
330 if ($1 eq "^") {
331 $j--;
332 $j-- while ($j >=0 && (!$Command_Lines[$j] || $Command_Lines[$j]->{tty} ne $$cl->{tty}));
333 }
334 elsif ($1 eq "v") {
335 $j++;
336 $j++ while ($j <= @Command_Lines && (!$Command_Lines[$j] || $Command_Lines[$j]->{tty} ne $$cl->{tty}));
337 }
338 $Command_Lines[$j]->{note_title}="$2";
339 $Command_Lines[$j]->{note}=$$cl->{output};
340 $$cl=0;
341 }
342 }
343 elsif ($$cl->{cline}=~ /#([\^=v])(.*)/) {
344 if ($1 eq "=") {
345 $$cl->{"class"} = "note";
346 $$cl->{"note"} = $2;
347 }
348 else {
349 my $j=$i;
350 if ($1 eq "^") {
351 $j--;
352 $j-- while ($j >=0 && (!$Command_Lines[$j] || $Command_Lines[$j]->{tty} ne $$cl->{tty}));
353 }
354 elsif ($1 eq "v") {
355 $j++;
356 $j++ while ($j <= @Command_Lines && $Command_Lines[$j]->{tty} ne $$cl->{tty} || !$Command_Lines[$j]);
357 }
358 $Command_Lines[$j]->{note}="$2";
359 $$cl=0;
360 }
361 }
362 }
364 }
367 =cut
368 Процедура print_command_lines выводит HTML-представление
369 разобранного lab-скрипта.
371 Разобранный lab-скрипт должен находиться в массиве @Command_Lines
372 =cut
374 sub print_command_lines
375 {
376 my $output_filename=$_[0];
378 my $course_name = $Config{"course-name"};
379 my $course_code = $Config{"course-code"};
380 my $course_date = $Config{"course-date"};
381 my $course_center = $Config{"course-center"};
382 my $course_trainer = $Config{"course-trainer"};
383 my $course_student = $Config{"course-student"};
386 # Результат выполнения процедуры равен
387 # join("", @Result{header,body,stat,help,about,footer})
388 my %Result;
389 my @toc; # Хранит оглавление
390 my $note_number=0;
392 $Result{"body"} = "<table width='100%'>\n";
394 my $cl;
395 my $last_tty="";
396 my $last_day="";
397 my $in_range=0;
399 my $i=0;
401 COMMAND_LINE:
402 for my $k (@Command_Lines_Index) {
404 my $cl=$Command_Lines[$Command_Lines_Index[$i++]];
406 next unless $cl;
409 if ($Config{filter}) {
410 # Инициализация фильтра
411 my %filter;
412 for (split /&/,$Config{filter}) {
413 my ($var, $val) = split /=/;
414 $filter{$var} = $val;
415 }
417 if ($filter{hostname}) {
418 next COMMAND_LINE unless $Sessions{$cl->{local_session_id}}->{hostname} eq $filter{hostname};
419 }
421 if ($filter{user}) {
422 next COMMAND_LINE unless $Sessions{$cl->{local_session_id}}->{user} eq $filter{user};
423 }
425 #for my $filter_field (keys %filter) {
426 # next COMMAND_LINE unless $Sessions{$cl->{local_session_id}}->{$filter_field} eq $filter{$filter_field};
427 #}
428 }
430 if ($Config{"from"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"from"}/) {
431 $in_range=1;
432 next;
433 }
434 if ($Config{"to"} && $cl->{"cline"} =~ /$Config{"signature"}\s*$Config{"to"}/) {
435 $in_range=0;
436 next;
437 }
438 next if ($Config{"from"} && $Config{"to"} && !$in_range)
439 ||
440 ($Config{"skip_empty"} =~ /^y/i && $cl->{"cline"} =~ /^\s*$/ )
441 ||
442 ($Config{"skip_wrong"} =~ /^y/i && $cl->{"err"} != 0)
443 ||
444 ($Config{"skip_interrupted"} =~ /^y/i && $cl->{"err"} == 130);
446 #my @new_commands=@{$cl->{"new_commands"}};
447 #my @new_files=@{$cl->{"new_files"}};
449 if ($cl->{class} eq "note") {
450 my $note = $cl->{note};
451 $note = join ("\n", map ("<p>$_</p>", split (/-\n/, $note)));
452 $note =~ s@(http:[a-zA-Z.0-9/?%-]*)@<a href='$1'>$1</a>@g;
453 $note =~ s@(www\.[a-zA-Z.0-9/?%-]*)@<a href='$1'>$1</a>@g;
454 $Result{"body"} .= "<tr><td colspan='6'>";
455 $Result{"body"} .= "<h4 id='note$note_number'>".$cl->{note_title}."</h4>" if $cl->{note_title};
456 $Result{"body"} .= "".$note."<p/><p/></td></td>";
458 if ($cl->{note_title}) {
459 push @{$toc[@toc]},"<a href='#note$note_number'>".$cl->{note_title}."</a>";
460 $note_number++;
461 }
462 next;
463 }
465 my $cl_class="cline";
466 my $out_class="output";
467 if ($cl->{"class"}) {
468 $cl_class = $cl->{"class"}."_".$cl_class;
469 $out_class = $cl->{"class"}."_".$out_class;
470 }
472 my @new_commands;
473 my @new_files;
474 @new_commands = split (/\s+/, $cl->{"new_commands"}) if defined $cl->{"new_commands"};
475 @new_files = split (/\s+/, $cl->{"new_files"}) if defined $cl->{"new_files"};
477 my $output="";
478 if ($Config{"head_lines"} || $Config{"tail_lines"}) {
479 # Partialy output
480 my @lines = split '\n', $cl->{"output"};
481 # head
482 my $mark=1;
483 for (my $i=0; $i<= $#lines && $i < $Config{"head_lines"}; $i++) {
484 $output .= $lines[$i]."\n";
485 }
486 # tail
487 my $start=$#lines-$Config{"tail_lines"}+1;
488 if ($start < 0) {
489 $start=0;
490 $mark=0;
491 }
492 if ($start < $Config{"head_lines"}) {
493 $start=$Config{"head_lines"};
494 $mark=0;
495 }
496 $output .= $Config{"skip_text"}."\n" if $mark;
497 for (my $i=$start; $i<= $#lines; $i++) {
498 $output .= $lines[$i]."\n";
499 }
500 }
501 else {
502 # Full output
503 $output .= $cl->{"output"};
504 }
505 #$output .= "^C\n" if ($cl->{"err"} eq "130");
507 #
508 ##
509 ## Начинается собственно вывод
510 ##
511 #
513 # <command>
515 my ($sec,$min,$hour,$day,$mon,$year,$wday,$yday,$isdst) = localtime($cl->{time});
516 $Stat{FirstCommand} = $cl->{time} unless $Stat{FirstCommand};
517 $Stat{LastCommand} = 0 unless defined $Stat{LastCommand};
518 $Stat{TotalTime} += $cl->{time} - $Stat{LastCommand}
519 if $cl->{time} - $Stat{LastCommand} < $Config{stat_inactivity_interval};
520 $Stat{LastCommand} = $cl->{time};
521 $Stat{TotalCommands} = 0 unless $Stat{TotalCommands};
522 $Stat{TotalCommands}++;
524 # Добавляем спереди 0 для удобочитаемости
525 $min = "0".$min if $min =~ /^.$/;
526 $hour = "0".$hour if $hour =~ /^.$/;
527 $sec = "0".$sec if $sec =~ /^.$/;
529 $class=$cl->{"out_class"};
530 $class =~ s/output$//;
532 $Stat{ErrorCommands}++
533 if $class =~ /wrong/;
535 $Result{"body"} .= "<tr class='command'>\n";
538 # DAY CHANGE
539 if ( $last_day ne $day) {
540 #$Result{"body"} .= "<td colspan='6'><p></p><h3>День ",$day,"</h4></td></tr><tr>";
541 $Result{"body"} .= "<td colspan='6'><p></p><h3 id='day$day'>".$Day_Name[$wday]."</h4></td></tr><tr>";
542 push @toc, "<a href='#day$day'>".$Day_Name[$wday]."</a>\n";
543 $last_day=$day;
544 }
546 # CONSOLE CHANGE
547 if ( $last_tty ne $cl->{"tty"}) {
548 my $host;
549 #$host = $Sessions{$cl->{local_session_id}}->{user}."@".$Sessions{$cl->{local_session_id}}->{hostname};
550 $Result{"body"} .= "<td colspan='6'><table><tr><td class='ttychange' width='140' align='center'>".$cl->{"tty"}."</td><td>$host</td></tr></table></td></tr><tr>";
551 $last_tty=$cl->{"tty"};
552 }
554 # TIME
555 if ($Config{"show_time"} =~ /^y/i) {
556 $Result{"body"} .= "<td valign='top' class='time' width='$Config{time_width}'><pre>".
557 $hour. ":". $min. ":". $sec.
558 "</td>";
559 } else {
560 $Result{"body"} .= "<td width='0'/>"
561 }
563 # COMMAND
564 $Result{"body"} .= "<td class='script'>\n";
565 $Result{"body"} .= "<pre class='${class}cline'>\n";
566 my $cline = $cl->{"prompt"}.$cl->{"cline"};
567 $cline =~ s/\n//;
569 #$cline .= "(".$Sessions{$cl->{local_session_id}}.")";
571 my $hint = make_comment($cl->{"cline"});
572 $cline = "<div title='$hint'>$cline</div>" if $hint;
573 $Result{"body"} .= $cline;
574 $Result{"body"} .= "</pre>\n";
576 my $last_command = $cl->{"last_command"};
577 if (!(
578 $Config{"suppress_editors"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"editors"}}) ||
579 $Config{"suppress_pagers"} =~ /^y/i && grep ($_ eq $last_command, @{$Config{"pagers"}}) ||
580 $Config{"suppress_terminal"}=~ /^y/i && grep ($_ eq $last_command, @{$Config{"terminal"}})
581 )) {
583 $Result{"body"} .= "<pre class='".$cl->{out_class}."'>";
584 $Result{"body"} .= $output;
585 $Result{"body"} .= "</pre>\n";
586 }
588 # DIFF
589 if ( $Config{"show_diffs"} =~ /^y/i && $cl->{"diff"}) {
590 $Result{"body"} .= "<table><tr><td width='5'/><td class='diff'><pre>";
591 $Result{"body"} .= $cl->{"diff"};
592 $Result{"body"} .= "</pre></td></tr></table>";
593 }
595 #NOTES
596 if ( $Config{"show_notes"} =~ /^y/i && $cl->{"note"}) {
597 my $note=$cl->{"note"};
598 $note =~ s/\n/<br\/>\n/msg;
599 $note =~ s@(http:[a-zA-Z.0-9/?%-]*)@<a href='$1'>$1</a>@g;
600 $note =~ s@(www\.[a-zA-Z.0-9/?%-]*)@<a href='$1'>$1</a>@g;
601 # Ширину пока не используем
602 # $Result{"body"} .= "<table width='$Config{note_width}' class='note'>";
603 $Result{"body"} .= "<table class='note'>";
604 $Result{"body"} .= "<tr><td class='note_title'>".$cl->{note_title}."</td></tr>" if $cl->{note_title};
605 $Result{"body"} .= "<tr><td width='100%' class='note_text'>".$note."</td></tr>";
606 $Result{"body"} .= "</table>\n";
607 }
609 # COMMENT
610 if ( $Config{"show_comments"} =~ /^y/i) {
611 my $comment = make_comment($cl->{"cline"});
612 if ($comment) {
613 $Result{"body"} .= "<table width='$Config{comment_width}'>".
614 "<tr><td width='5'/><td>";
615 $Result{"body"} .= "<table class='note' width='100%'>";
616 $Result{"body"} .= $comment;
617 $Result{"body"} .= "</table>\n";
618 $Result{"body"} .= "</td></tr></table>";
619 }
620 }
622 # Вывод очередной команды окончен
623 $Result{"body"} .= "</td>\n";
624 $Result{"body"} .= "</tr>\n";
625 }
627 $Result{"body"} .= "</table>\n";
629 #$Result{"stat"} = "<hr/>";
631 %StatNames = (
632 FirstCommand => "Время первой команды журнала",
633 LastCommand => "Время последней команды журнала",
634 TotalCommands => "Количество командных строк в журнале",
635 ErrorsPercentage => "Процент команд с ненулевым кодом завершения, %",
636 TotalTime => "Суммарное время работы с терминалом <sup><font size='-2'>*</font></sup>, час",
637 CommandsPerTime => "Количество командных строк в единицу времени, команда/мин",
638 CommandsFDistribution => "Частота использования команд",
639 CommandsFDistribution => "Частота использования команд",
640 RareCommands => "Частота использования этих команд < 0.5%",
641 );
642 @StatOrder = (
643 FirstCommand,
644 LastCommand,
645 TotalCommands,
646 ErrorsPercentage,
647 TotalTime,
648 CommandsPerTime,
649 CommandsFDistribution,
650 RareCommands,
651 );
653 # Подготовка статистики к выводу
654 # Некоторые значения пересчитываются!
655 # Дальше их лучше уже не использовать!!!
657 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($Stat{FirstCommand});
658 $Stat{FirstCommand} = sprintf "%02i:%02i:%02i %04i-%2i-%2i", $hour, $min, $sec, $year+1900, $mon+1, $mday;
659 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($Stat{LastCommand});
660 $Stat{LastCommand} = sprintf "%02i:%02i:%02i %04i-%2i-%2i", $hour, $min, $sec, $year+1900, $mon+1, $mday;
661 $Stat{ErrorsPercentage} = sprintf "%5.2f", $Stat{ErrorCommands}*100/$Stat{TotalCommands}
662 if $Stat{TotalCommands};
663 $Stat{CommandsPerTime} = sprintf "%5.2f", $Stat{TotalCommands}*60/$Stat{TotalTime}
664 if $Stat{TotalTime};
665 $Stat{TotalTime} = sprintf "%5.2f", $Stat{TotalTime}/60/60;
667 my $total_commands=0;
668 for $command (keys %CommandsFDistribution){
669 $total_commands += $CommandsFDistribution{$command};
670 }
671 if ($total_commands) {
672 for $command (reverse sort {$CommandsFDistribution{$a} <=> $CommandsFDistribution{$b}} keys %CommandsFDistribution){
673 my $command_html;
674 my $percentage = sprintf "%5.2f",$CommandsFDistribution{$command}*100/$total_commands;
675 if ($percentage < 0.5) {
676 my $hint = make_comment($command);
677 $command_html = "$command";
678 $command_html = "<span title='$hint' class='hint'>$command_html</span>" if $hint;
679 my $command_html = "<tt>$command_html</tt>";
680 $Stat{RareCommands} .= $command_html."<sub><font size='-2'>".$CommandsFDistribution{$command}."</font></sub> , ";
681 }
682 else {
683 my $hint = make_comment($command);
684 $command_html = "$command";
685 $command_html = "<span title='$hint' class='hint'>$command_html</span>" if $hint;
686 my $command_html = "<tt>$command_html</tt>";
687 $percentage = sprintf "%5.2f",$percentage;
688 $Stat{CommandsFDistribution} .= "<tr><td>".$command_html."</td><td>".$CommandsFDistribution{$command}."</td>".
689 "<td>|".("="x int($CommandsFDistribution{$command}*100/$total_commands))."| $percentage%</td></tr>";
690 }
691 }
692 $Stat{CommandsFDistribution} = "<table>".$Stat{CommandsFDistribution}."</table>";
693 $Stat{RareCommands} =~ s/, $// if $Stat{RareCommands};
694 }
696 $Result{"stat"} .= "<h2 id='stat'>Статистика</h2>";
697 $Result{"stat"} .= "<table>";
698 for my $stat (@StatOrder) {
699 $Result{"stat"} .= "<tr valign='top'><td width='300'>".$StatNames{"$stat"}."</td><td>".$Stat{"$stat"}."</td></tr>"
700 if $Stat{"$stat"};
701 }
703 $Result{"stat"} .= "</table>";
704 $Result{"stat"} .= "<font size='-2'>____<br/>*) Интервалы неактивности длительностью ".($Config{stat_inactivity_interval}/60)." минут и более не учитываются</font></br>";
706 #$Result{"help"} .= "<hr/>";
707 $Result{"help"} .= "<h2 id='help'>Справка</h2>";
708 $Result{"help"} .= "$Html_Help<br/>";
709 #$Result{"about"} .= "<hr/>";
710 $Result{"about"} .= "<h2 id='about'>О программе</h2>";
711 $Result{"about"} .= "$Html_About";
712 $Result{"footer"} .= "</body>\n";
713 $Result{"footer"} .= "</html>\n";
715 $Result{"title"} = "Журнал лабораторных работ";
716 $Result{"title"}.= " -- ".$course_student if $course_student;
717 if ($course_date) {
718 $Result{"title"}.= " -- ".$course_date;
719 $Result{"title"}.= "/".$course_code if $course_code;
720 }
721 else {
722 $Result{"title"}.= " -- ".$course_code if $course_code;
723 }
725 # Заголовок генерируется позже всего
726 # Тогда, когда известно уже, что должно быть написано в
727 # оглавлении
728 $Result{"header"} = <<HEADER;
729 <html>
730 <head>
731 <meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
732 <link rel='stylesheet' href='$Config{frontend_css}' type='text/css'/>
733 <title>$Result{title}</title>
734 </head>
735 <body>
736 <script>
737 $Html_JavaScript
738 </script>
739 <h1>Журнал лабораторных работ</h1>
741 HEADER
742 $Result{"header"} .= "<p>" if $course_student || $course_trainer || $course_name || $course_code || $course_date || $course_center;
743 $Result{"header"} .= "Выполнил $course_student<br/>" if $course_student;
744 $Result{"header"} .= "Проверил $course_trainer <br/>" if $course_trainer;
745 $Result{"header"} .= "Курс " if $course_name || $course_code || $course_date;
746 $Result{"header"} .= "$course_name " if $course_name;
747 $Result{"header"} .= "($course_code)" if $course_code;
748 $Result{"header"} .= ", $course_date<br/>" if $course_date;
749 $Result{"header"} .= "Учебный центр $course_center <br/>" if $course_center;
750 $Result{"header"} .= "</p>" if $course_student || $course_trainer || $course_name || $course_code || $course_date || $course_center;
752 my $toc = collapse_list (\@toc);
753 $Result{"header"} .= <<HEADER;
754 <ul>
755 <li><a href='#log'>Журнал</a></li>
756 <ul>$toc</ul>
757 <li><a href='#stat'>Статистика</a></li>
758 <li><a href='#help'>Справка</a></li>
759 <li><a href='#about'>О программе</a></li>
760 </ul>
762 <h2 id="log">Журнал</h2>
763 HEADER
764 $Result{"header"} .= "<table id='visibility_form' class='visibility_form'><tr><td><form>\n";
765 for my $element (keys %Elements_Visibility)
766 {
767 my @e = split /\s+/, $element;
768 my $showhide = join "", map { "ShowHide('$_');" } @e ;
769 $Result{"header"} .= "<input type='checkbox' name='$e[0]' onclick=\"$showhide\" checked>".
770 $Elements_Visibility{$element}.
771 "</input><br>\n";
772 }
774 $Result{"header"} .= "</form></td></tr></table>\n";
776 if ($output_filename eq "-") {
777 print $Result{"header"}, $Result{"body"}, $Result{"stat"}, $Result{"help"}, $Result{"about"}, $Result{"footer"};
778 }
779 else {
780 open(OUT, ">", $output_filename)
781 or die "Can't open $output_filename for writing\n";
782 print OUT $Result{"header"}, $Result{"body"}, $Result{"stat"}, $Result{"help"}, $Result{"about"}, $Result{"footer"};
783 close(OUT);
784 }
785 }
789 sub collapse_list($)
790 {
791 my $res = "";
792 for my $elem (@{$_[0]}) {
793 if (ref $elem eq "ARRAY") {
794 $res .= "<ul>".collapse_list($elem)."</ul>";
795 }
796 else
797 {
798 $res .= "<li>".$elem."</li>";
799 }
800 }
801 return $res;
802 }
807 sub init_variables
808 {
809 $Html_Help = <<HELP;
810 Для того чтобы использовать LiLaLo, не нужно знать ничего особенного:
811 всё происходит само собой.
812 Однако, чтобы ведение и последующее использование журналов
813 было как можно более эффективным, желательно иметь в виду следующее:
814 <ul>
815 <li><p>
816 В журнал автоматически попадают все команды, данные в любом терминале системы.
817 </p></li>
818 <li><p>
819 Для того чтобы убедиться, что журнал на текущем терминале ведётся,
820 и команды записываются, дайте команду w.
821 В поле WHAT, соответствующем текущему терминалу,
822 должна быть указана программа script.
823 </p></li>
824 <li><p>
825 Если код завершения команды равен нулю,
826 команда была выполнена без ошибок.
827 Команды, код завершения которых отличен от нуля, выделяются цветом.
828 <table>
829 <tr class='command'>
830 <td class='script'>
831 <pre class='wrong_cline'>
832 \$ l s-l</pre>
833 <pre class='wrong_output'>bash: l: command not found
834 </pre>
835 </td>
836 </tr>
837 </table>
838 <br/>
839 </p></li>
840 <li><p>
841 Команды, ход выполнения которых был прерван пользователем, выделяются цветом.
842 <table>
843 <tr class='command'>
844 <td class='script'>
845 <pre class='interrupted_cline'>
846 \$ find / -name abc</pre>
847 <pre class='interrupted_output'>find: /home/devi-orig/.gnome2: Keine Berechtigung
848 find: /home/devi-orig/.gnome2_private: Keine Berechtigung
849 find: /home/devi-orig/.nautilus/metafiles: Keine Berechtigung
850 find: /home/devi-orig/.metacity: Keine Berechtigung
851 find: /home/devi-orig/.inkscape: Keine Berechtigung
852 ^C
853 </pre>
854 </td>
855 </tr>
856 </table>
857 <br/>
858 </p></li>
859 <li><p>
860 Команды, выполненные с привилегиями суперпользователя,
861 выделяются слева красной чертой.
862 <table>
863 <tr class='command'>
864 <td class='script'>
865 <pre class='_root_cline'>
866 # id</pre>
867 <pre class='_root_output'>
868 uid=0(root) gid=0(root) Gruppen=0(root)
869 </pre>
870 </td>
871 </tr>
872 </table>
873 <br/>
874 </p></li>
875 <li><p>
876 Изменения, внесённые в текстовый файл с помощью редактора,
877 запоминаются и показываются в журнале в формате ed.
878 Строки, начинающиеся символом "&lt;", удалены, а строки,
879 начинающиеся символом "&gt;" -- добавлены.
880 <table>
881 <tr class='command'>
882 <td class='script'>
883 <pre class='cline'>
884 \$ vi ~/.bashrc</pre>
885 <table><tr><td width='5'/><td class='diff'><pre>2a3,5
886 &gt; if [ -f /usr/local/etc/bash_completion ]; then
887 &gt; . /usr/local/etc/bash_completion
888 &gt; fi
889 </pre></td></tr></table></td>
890 </tr>
891 </table>
892 <br/>
893 </p></li>
894 <li><p>
895 Для того чтобы получить краткую справочную информацию о команде,
896 нужно подвести к ней мышь. Во всплывающей подсказке появится краткое
897 описание команды.
898 </p></li>
899 <li><p>
900 Время ввода команды, показанное в журнале, соответствует времени
901 <i>начала ввода командной строки</i>, которое равно тому моменту,
902 когда на терминале появилось приглашение интерпретатора
903 </p></li>
904 <li><p>
905 Имя терминала, на котором была введена команда, показано в специальном блоке.
906 Этот блок показывается только в том случае, если терминал
907 текущей команды отличается от терминала предыдущей.
908 </p></li>
909 <li><p>
910 Вывод не интересующих вас в настоящий момент элементов журнала,
911 таких как время, имя терминала и других, можно отключить.
912 Для этого нужно воспользоваться <a href='#visibility_form'>формой управления журналом</a>
913 вверху страницы.
914 </p></li>
915 <li><p>
916 Небольшие комментарии к командам можно вставлять прямо из командной строки.
917 Комментарий вводится прямо в командную строку, после символов #^ или #v.
918 Символы ^ и v показывают направление выбора команды, к которой относится комментарий:
919 ^ - к предыдущей, v - к следующей.
920 Например, если в командной строке было введено:
921 <pre class='cline'>
922 \$ whoami
923 </pre>
924 <pre class='output'>
925 user
926 </pre>
927 <pre class='cline'>
928 \$ #^ Интересно, кто я?
929 </pre>
930 в журнале это будет выглядеть так:
932 <pre class='cline'>
933 \$ whoami
934 </pre>
935 <pre class='output'>
936 user
937 </pre>
938 <table class='note'><tr><td width='100%' class='note_text'>
939 <tr> <td> Интересно, кто я?<br/> </td></tr></table>
940 </p></li>
941 <li><p>
942 Если комментарий содержит несколько строк,
943 его можно вставить в журнал следующим образом:
944 <pre class='cline'>
945 \$ whoami
946 </pre>
947 <pre class='output'>
948 user
949 </pre>
950 <pre class='cline'>
951 \$ cat > /dev/null #^ Интересно, кто я?
952 </pre>
953 <pre class='output'>
954 Программа whoami выводит имя пользователя, под которым
955 мы зарегистрировались в системе.
956 -
957 Она не может ответить на вопрос о нашем назначении
958 в этом мире.
959 </pre>
960 В журнале это будет выглядеть так:
961 <table>
962 <tr class='command'>
963 <td class='script'>
964 <pre class='cline'>
965 \$ whoami</pre>
966 <pre class='output'>user
967 </pre>
968 <table class='note'><tr><td class='note_title'>Интересно, кто я?</td></tr><tr><td width='100%' class='note_text'>
969 Программа whoami выводит имя пользователя, под которым<br/>
970 мы зарегистрировались в системе.<br/>
971 <br/>
972 Она не может ответить на вопрос о нашем назначении<br/>
973 в этом мире.<br/>
974 </td></tr></table>
975 </td>
976 </tr>
977 </table>
978 Для разделения нескольких абзацев между собой
979 используйте символ "-", один в строке.
980 <br/>
981 </p></li>
982 <li><p>
983 Комментарии, не относящиеся непосредственно ни к какой из команд,
984 добавляются точно таким же способом, только вместо симолов #^ или #v
985 нужно использовать символы #=
986 </p></li>
987 </ul>
988 HELP
990 $Html_About = <<ABOUT;
991 <p>
992 LiLaLo (L3) расшифровывается как Live Lab Log.<br/>
993 Программа разработана для повышения эффективности обучения Unix/Linux-системам.<br/>
994 (c) Игорь Чубин, 2004-2005<br/>
995 </p>
996 ABOUT
997 $Html_About.='$Id$ </p>';
999 $Html_JavaScript = <<JS;
1000 function getElementsByClassName(Class_Name)
1002 var Result=new Array();
1003 var All_Elements=document.all || document.getElementsByTagName('*');
1004 for (i=0; i<All_Elements.length; i++)
1005 if (All_Elements[i].className==Class_Name)
1006 Result.push(All_Elements[i]);
1007 return Result;
1009 function ShowHide (name)
1011 elements=getElementsByClassName(name);
1012 for(i=0; i<elements.length; i++)
1013 if (elements[i].style.display == "none")
1014 elements[i].style.display = "";
1015 else
1016 elements[i].style.display = "none";
1017 //if (elements[i].style.visibility == "hidden")
1018 // elements[i].style.visibility = "visible";
1019 //else
1020 // elements[i].style.visibility = "hidden";
1022 function filter_by_output(text)
1025 var jjj=0;
1027 elements=getElementsByClassName('command');
1028 for(i=0; i<elements.length; i++) {
1029 subelems = elements[i].getElementsByTagName('pre');
1030 for(j=0; j<subelems.length; j++) {
1031 if (subelems[j].className = 'output') {
1032 var str = new String(subelems[j].nodeValue);
1033 if (jjj != 1) {
1034 alert(str);
1035 jjj=1;
1037 if (str.indexOf(text) >0)
1038 subelems[j].style.display = "none";
1039 else
1040 subelems[j].style.display = "";
1048 JS
1050 %Search_Machines = (
1051 "google" => { "query" => "http://www.google.com/search?q=" ,
1052 "icon" => "$Config{frontend_google_ico}" },
1053 "freebsd" => { "query" => "http://www.freebsd.org/cgi/man.cgi?query=",
1054 "icon" => "$Config{frontend_freebsd_ico}" },
1055 "linux" => { "query" => "http://man.he.net/?topic=",
1056 "icon" => "$Config{frontend_linux_ico}"},
1057 "opennet" => { "query" => "http://www.opennet.ru/search.shtml?words=",
1058 "icon" => "$Config{frontend_opennet_ico}"},
1059 "local" => { "query" => "http://www.freebsd.org/cgi/man.cgi?query=",
1060 "icon" => "$Config{frontend_local_ico}" },
1062 );
1064 %Elements_Visibility = (
1065 "note" => "замечания",
1066 "diff" => "редактор",
1067 "time" => "время",
1068 "ttychange" => "терминал",
1069 "wrong_output wrong_cline wrong_root_output wrong_root_cline"
1070 => "команды с ошибками",
1071 "interrupted_output interrupted_cline interrupted_root_output interrupted_root_cline"
1072 => "прерванные команды",
1073 "tab_completion_output tab_completion_cline"
1074 => "продолжение с помощью tab"
1075 );
1077 @Day_Name = qw/ Воскресенье Понедельник Вторник Среда Четверг Пятница Суббота /;
1078 @Month_Name = qw/ Январь Февраль Март Апрель Май Июнь Июль Август Сентябрь Октябрь Ноябрь Декабрь /;
1079 @Of_Month_Name = qw/ Января Февраля Марта Апреля Мая Июня Июля Августа Сентября Октября Ноября Декабря /;