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
|
package Net::Route::Parser::linux;
use 5.008;
use strict;
use warnings;
use version; our ( $VERSION ) = '$Revision: 363 $' =~ m{(\d+)}xms;
use Moose;
use Net::Route;
extends 'Net::Route::Parser';
sub command_line
{
return [qw(/sbin/route -n )];
}
sub parse_routes
{
my ( $self, $text_lines_ref ) = @_;
splice @{$text_lines_ref}, 0, 2;
my @routes;
foreach my $line ( @{$text_lines_ref} )
{
chomp $line;
my @values = split /\s+/xms, $line;
# These values will be stored in a configuration hash
my ( $dest, $gateway, $dest_mask, $flags, $metric, $ref, $use, $interface ) = @values;
my $is_active = $flags =~ /U/xms;
my $is_dynamic = $flags =~ /[RDM]/xms;
my $route_ref = Net::Route->new( {
'destination' => $self->create_ip_object( $dest, $dest_mask ),
'gateway' => $self->create_ip_object( $gateway ),
'is_active' => $is_active,
'is_dynamic' => $is_dynamic,
'metric' => $metric,
'interface' => $interface,
} );
push @routes, $route_ref;
}
return \@routes;
}
no Moose;
__PACKAGE__->meta->make_immutable();
1;
__END__
=head1 NAME
Net::Route::Parser::linux - Internal class
=head1 SYNOPSIS
Internal.
=head1 VERSION
Revision $Revision: 363 $.
=head1 DESCRIPTION
This class parses Linux' C<route> output. It implements
L<Net::Route::Parser>.
=head1 INTERFACE
See L<Net::Route::Parser>.
=head2 Object Methods
=head3 command_line()
=head3 parse_routes()
=head1 AUTHOR
Created by Alexandre Storoz, C<< <astoroz@straton-it.fr> >>
Maintained by Thomas Equeter, C<< <tequeter@straton-it.fr> >>
=head1 LICENSE AND COPYRIGHT
Copyright (C) 2009 Straton IT.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
|