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
|
#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
package Rex::File::Parser::Data;
use v5.14.4;
use warnings;
our $VERSION = '1.16.1'; # VERSION
sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = {@_};
bless( $self, $proto );
return $self;
}
sub read {
my ( $self, $file ) = @_;
return $self->_read_file($file);
}
sub _read_file {
my ( $self, $file ) = @_;
my $content = "";
my $in_file = 0;
for my $line ( @{ $self->{"data"} } ) {
chomp $line;
if ( $line eq "\@end" ) {
$in_file = 0;
next;
}
if ($in_file) {
$content .= $line . $/;
}
if ( $line eq "\@$file" ) {
$in_file = 1;
next;
}
}
return $content;
}
sub get {
my ( $self, $file ) = @_;
}
1;
|