summaryrefslogtreecommitdiffstats
path: root/logdrake
blob: 031b38e18ca4865c33a04ebaa1e10bced7346f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#! /usr/bin/perl
# $Id$

# Copyright (C) 2001 MandrakeSoft
# Yves Duret <yduret at mandrakesoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

use lib qw(/usr/lib/libDrakX);

use interactive;
use standalone;
use common qw(:common :file :functional :system);
use any;

use Gtk;
use Config;
init Gtk;


$::isInstall and die "Not supported during install.\n";

$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/;
if ($::isEmbedded) {
  print "EMBED\n";
  print "parent XID\t$::XID\n";
  print "mcc pid\t$::CCPID\n";
}

my $in = vnew interactive('su');

local $_ = join '', @ARGV;

/-h/ and die "usage: logdrake [--version]\n";
/-version/ and die 'version: $Id$ '."\n";

my $window = $::isEmbedded ? new Gtk::Plug ($::XID) : new Gtk::Window -toplevel;
$window->signal_connect( delete_event => sub { $::isEmbedded ? kill(USR1, $::CCPID) : Gtk->exit(0) });
$window->set_title( _("logdrake") );
$window->set_policy(1, 1, 1);
$window->border_width (5);

### menus definition
# the menus are not shown
# but they provides shiny shortcut like C-q
my @menu_items = ( { path        => _("/_File"),
		     type        => '<Branch>' },
		   { path        => _("/File/_New"),
		     accelerator => _("<control>N"),
		     callback    => \&print_hello },
		   { path        => _("/File/_Open"),
		     accelerator => _("<control>O"),
		     callback    => \&print_hello },
		   { path        => _("/File/_Save"),
		     accelerator => _("<control>S"),
		     callback    => \&print_hello },
		   { path        => _("/File/Save _As") },
		   { path        => _("/File/-"),
		     type        => '<Separator>' },
		   { path        => _("/File/_Quit"),
		     accelerator => _("<control>Q"),
		     callback    => sub { $::isEmbedded ? kill(USR1, $::CCPID) : Gtk->exit(0) } },

		   { path        => _("/_Options"),
		     type        => '<Branch>' },
		   { path        => _("/Options/Test") },

		   { path        => _("/_Help"),
		     type        => '<LastBranch>' },
		   { path        => _("/Help/_About...") } );
my $menubar = get_main_menu( $window );
######### menus end


########## font and colors
my $n = Gtk::Gdk::Font->load("-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*");
my $b = Gtk::Gdk::Font->load("-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*");

# Get the system color map and allocate the color red
my $cmap = Gtk::Gdk::Colormap->get_system();

my $white    = { red => 0xFFFF, green => 0xFFFF, blue =>0xFFFF};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($white)));
my $black    = { red => 0, green => 0, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($black)));
my $red      = { red => 0xFFFF, green => 0, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($red)));
my $green    = { red => 0xF, green => 0xFFF, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($green)));
my $yellow   = { red => 0xF, green => 0, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($yellow)));
my $blue     = { red => 0, green => 0, blue =>0xFFFF};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($blue)));
my $magenta  = { red => 0xF, green => 0, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($magenta)));
my $purple   = { red => 0xF, green => 0, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($purple)));
my $cyan     = { red => 0, green => 0xFFF, blue =>0xFFF};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($cyan)));
my $darkgray = { red => 0xFFF, green => 0x, blue =>0};warn _("Couldn't allocate color\n") unless (defined($cmap->color_alloc($darkgray)));

######### font and colors end

my $global_vbox = new Gtk::VBox();
$::isEmbedded or $global_vbox->pack_start (new Gtk::Label(_("see your log")), 0, 0, 0);


#### far from window

### the tree

# Create a ScrolledWindow for the tree
my $tree_scrolled_win = new Gtk::ScrolledWindow();
$tree_scrolled_win->set_usize(300, $::isEmbedded ? 0 : 175);
$global_vbox->pack_start( $tree_scrolled_win,0,0,0 );
$tree_scrolled_win->set_policy('automatic', 'automatic');

# Create root tree
my $tree = new Gtk::Tree();
my $leaf;
my $root_dir;
$tree_scrolled_win->add_with_viewport($tree);
$tree->set_selection_mode('single');
$tree->set_view_mode('item');

fill_tree ("");

my $log_frame = new Gtk::Frame( _("log") );
my $log = new Gtk::Text(undef, undef);
my $vscrollbar = new Gtk::VScrollbar( $log->vadj );
my $log_hbox = new Gtk::HBox (0, 0);
$log_hbox->border_width (5);
$log_hbox->set_usize(300, 275);
$log_hbox->pack_start($log, 1, 1, 0);
$log_hbox->pack_start($vscrollbar, 0, 0, 0 );
$log_frame->add ($log_hbox);
$global_vbox->pack_start ($log_frame, 0, 0, 0);

# $text->insert( $font, $foreground, $background, $string );

### back to window
$window->add($global_vbox);
$window->show_all();

Gtk->main_iteration while Gtk->events_pending;
$::isEmbedded and kill USR2, $::CCPID;
Gtk->main;



#-------------------------------------------------------------
# tree functions
#-------------------------------------------------------------
### Subroutines

sub fill_tree {
  my $root_dir = "/var/log/" . $_[0];
  # Create root tree item widget
  $leaf = new_with_label Gtk::TreeItem( $root_dir );
  $tree->append( $leaf );
  $leaf->signal_connect( 'select', \&select_item, $root_dir );
  $leaf->set_user_data( $root_dir );

  # Create the subtree
  if (-d $root_dir) {
    my $subtree = new Gtk::Tree();
    $leaf->set_subtree( $subtree );
    $leaf->signal_connect( 'expand', \&expand_tree, $subtree );
    $leaf->signal_connect( 'collapse', \&collapse_tree );
    $leaf->expand();
  }
}

sub change_tree {
  $leaf->destroy();
  fill_tree (@_);
  $leaf->show();
}

# Callback for expanding a tree - find subdirectories, files and add them to tree
sub expand_tree  {
    my ($item, $subtree) = @_;
    my ($dir_entry, $path, $item_new, $new_subtree);
    my $dir = $item->get_user_data();

    chdir($dir);
    foreach $dir_entry ( <*> ) {
	$path = $dir . "/" . $dir_entry;
	$path =~ s|//|/|g;
	$item_new = new_with_label Gtk::TreeItem( $dir_entry );
	$item_new->set_user_data($path);
	$item_new->signal_connect('select', \&select_item, $path );
	$subtree->append($item_new);
	$item_new->show();

	if (-d $path) {
	  $new_subtree = new Gtk::Tree();
	  $item_new->set_subtree( $new_subtree );
	  $item_new->signal_connect('expand', \&expand_tree, $new_subtree);
	  $item_new->signal_connect('collapse', \&collapse_tree);
	}
    }
    chdir( ".." );
}


# Callback for collapsing a tree -- removes the subtree
sub collapse_tree  {
    my ($item) = @_;
    my $subtree = new Gtk::Tree();
    
    $item->remove_subtree();
    $item->set_subtree( $subtree );
    $item->signal_connect( 'expand', \&expand_tree, $subtree );
}

# Called whenever an item is clicked on the tree widget.
sub select_item  {
  my ( $widget, $file ) = @_;
  return  if (-d $file);
  $log->backward_delete($log->get_length());
  $file =~ s/\.gz$//;
  $log->freeze();
  
  foreach (catMaybeCompressed ($file)){
      logcolorize($_);
  }
  $log->thaw();
}


sub log_output {
      $log->insert($_[2],$_[0], undef,$_[1]);
}

##########################################################################################
sub logcolorize {

    my ($thisline)=@_;
    
    # logcolorize.pl 1.0.8 - A PERL script to colorize log viewing
    # distributed under the GPL
    # Copyright: (C) 1999, Michael T. Babcock
    #                      <mikebabcock@pobox.com>
    #                      http://www.linuxsupportline.com/~pgp/linux/
    #
    
    # Define global terms:
    # Define good notables:
    my @word_good=("starting\n", "Freeing", "Detected", "starting.", "accepted.\n", "authenticated.\n", "Ready", "active", "reloading", "saved;", "restarting", "ONLINE\n");
    my @word_warn=("dangling", "closed.\n", "Assuming", "root", "root\n", "exiting\n", "missing", "Ignored", "adminalert:", "deleting", "OFFLINE\n");
    my @word_bad=("bad");
my @word_note=("LOGIN", "DHCP_OFFER", "optimized", "reset:", "unloaded", "disconnected", "connect", "Successful", "registered\n");
    my @line_good=("up", "DHCP_ACK", "Cleaned", "Initializing", "Starting", "success", "successfully", "alive", "found", "ONLINE\n");
    my @line_warn=("warning:", "WARNING:", "invalid", "obsolete", "bad", "Password", "detected", "timeout", "timeout:", "attackalert:", "wrong", "Lame", "FAILED", "failing", "unknown", "obsolete", "stopped.\n", "terminating.", "disabled\n", "disabled", "Lost");
    my @line_bad=("DENY", "lost", "shutting", "dead", "DHCP_NAK", "failure;", "Unable", "inactive", "terminating", "refused", "rejected", "down", "OFFLINE\n", "error\n", "ERROR\n", "ERROR:", "error", "ERROR", "error:", "failed:");
    
    # Define specifics:
    my @daemons=("named");
    
    # Now define what we want to use when:
    my $col_good = $green;
    my $col_warn = $yellow;
    my $col_bad = $red;
    my $col_note = $purple;
    my $col=$cyan;
    
    my $col_norm =             "\033[00m";
    my $col_background =       "\033[07m";
    my $col_brighten =         "\033[01m";
    my $col_underline =        "\033[04m";
    my $col_blink =            "\033[05m";
    
    # Resets to normal colours and moves to the left one column ...
    my $col_default = "$col_norm$white";
    my $datespace=0;
    s/(.{16})//;
    $timestamp=$1;
    
    @rec = split;# (/ /, $_);

    log_output($cyan,$timestamp,$b); # date & time
    log_output($blue,"$rec[0] ",$b);  # hostname
    if ($rec[1] eq "last") {
	log_output($green," last message repeated ",$n);
	log_output($green, $rec[4], $b);
	log_output($green," times\n",$n);
	return;
    }
    # Extract PID if present
    if ($rec[1] =~ /\[(\d+)\]\:/) {
	my($pid) = $1;
	$rec[1]=~s/\[$1\]\:// ;
	log_output ($green, $rec[1] ."[",$n);
	log_output ($black, $pid,$b);
	log_output ($green, "]: ",$n);
    }
    else {
	log_output($green, $rec[1] ." ",$n);
    }

 
    for ($therest=(2); $therest<=$#rec; $therest++) {

	# Check for keywords to highlight
	for ($i=0; $i<=$#word_good; $i++) {
	    $col=$col_good if ($word_good[$i] eq $rec[$therest]);
	}
	for ($i=0; $i<=$#word_warn; $i++) {
	    $col=$col_warn if ($word_warn[$i] eq $rec[$therest]);
	}
	for ($i=0; $i<=$#word_bad; $i++) {
	    $col=$col_bad if ($word_bad[$i] eq $rec[$therest]);
	}
	for ($i=0; $i<=$#word_note; $i++) {
	    $col=$col_note if ($word_note[$i] eq $rec[$therest]);
	}
	
# 	# Watch for words that indicate entire lines should be highlighted
# 	for ($i=0; $i<=$#line_good; $i++) {
# 	    if ($line_good[$i] eq $rec[$therest]) {
# 		$restcolor="$col_norm$col_good";
# 		$restoftheline.="$col_brighten$col_good"; $highlight=1;
# 	    }
# 	}
# 	for ($i=0; $i<=$#line_warn; $i++) {
# 	    if ($line_warn[$i] eq $rec[$therest]) {
# 		$restcolor="$col_norm$col_warn";
# 		$restoftheline.="$col_brighten$col_warn"; $highlight=1;
# 	    }
# 	}
# 	for ($i=0; $i<=$#line_bad; $i++) {
# 	    if ($line_bad[$i] eq $rec[$therest]) {
# 		$restcolor="$col_norm$col_bad";
# 		$restoftheline.="$col_brighten$col_bad"; $highlight=1;
# 	    }
# 	}
	
	log_output($col,"$rec[$therest] ",$n);
    }
    log_output($black,"\n",$n);
}


#-------------------------------------------------------------
# menu callback functions
#-------------------------------------------------------------

sub print_hello {
  print( "mcdtg !\n" );
}

sub get_main_menu {
  my ($window) = @_;

  my $accel_group = new Gtk::AccelGroup();
  my $item_factory = new Gtk::ItemFactory( 'Gtk::MenuBar', '<main>', $accel_group );
  $item_factory->create_items( @menu_items );
  $window->add_accel_group( $accel_group );
  return ( $item_factory->get_widget( '<main>' ) );
}

sub create_dialog {
    my ($label, $c) = @_;
    my $ret = 0;
    my $dialog = new Gtk::Dialog;
    $dialog->signal_connect ( delete_event => sub {Gtk->main_quit();});
    $dialog->set_title(_("logdrake"));
    $dialog->border_width(10);
    $dialog->vbox->pack_start(new Gtk::Label($label),1,1,0);

    my $button = new Gtk::Button _("OK");
    $button->can_default(1);
    $button->signal_connect(clicked => sub { $ret = 1; $dialog->destroy(); Gtk->main_quit(); });
    $dialog->action_area->pack_start($button, 1, 1, 0);
    $button->grab_default;

    if ($c) {
	my $button2 = new Gtk::Button _("Cancel");
	$button2->signal_connect(clicked => sub { $ret = 0; $dialog->destroy(); Gtk->main_quit(); });
	$button2->can_default(1);
	$dialog->action_area->pack_start($button2, 1, 1, 0);
    }

    $dialog->show_all;
    Gtk->main();
    $ret;
}

sub destroy_window {
	my($widget, $windowref, $w2) = @_;
	$$windowref = undef;
	$w2 = undef if defined $w2;
	0;
}




# log
# $Log$
# Revision 1.2  2001/06/28 10:50:27  yduret
# full support of color
#
# Revision 1.1  2001/06/27 09:22:59  yduret
# added it..
#