Projekt

Allgemein

Profil

Herunterladen (8,95 KB) Statistiken
| Zweig: | Markierung: | Revision:
2f6ebd89 Sven Schöling
package SL::Helper::Csv;

use strict;
use warnings;

use Carp;
use IO::File;
use Params::Validate qw(:all);
17d58914 Sven Schöling
use Text::CSV;
2f6ebd89 Sven Schöling
use Rose::Object::MakeMethods::Generic scalar => [ qw(
1dcc096b Sven Schöling
file encoding sep_char quote_char escape_char header profile class
numberformat dateformat ignore_unknown_columns _io _csv _objects _parsed
_data _errors
2f6ebd89 Sven Schöling
) ];

17d58914 Sven Schöling
use SL::Helper::Csv::Dispatcher;
c46898c7 Sven Schöling
use SL::Helper::Csv::Error;
2f6ebd89 Sven Schöling
# public interface

sub new {
my $class = shift;
my %params = validate(@_, {
1dcc096b Sven Schöling
sep_char => { default => ';' },
quote_char => { default => '"' },
escape_char => { default => '"' },
header => { type => ARRAYREF, optional => 1 },
profile => { type => HASHREF, optional => 1 },
file => 1,
encoding => 0,
class => 0,
numberformat => 0,
dateformat => 0,
ignore_unknown_columns => 0,
2f6ebd89 Sven Schöling
});
my $self = bless {}, $class;

$self->$_($params{$_}) for keys %params;

$self->_io(IO::File->new);
$self->_csv(Text::CSV->new({
binary => 1,
8fba112b Sven Schöling
sep_char => $self->sep_char,
quote_char => $self->quote_char,
escape_char => $self->escape_char,
2f6ebd89 Sven Schöling
}));
8fba112b Sven Schöling
$self->_errors([]);
2f6ebd89 Sven Schöling
return $self;
}

sub parse {
my ($self, %params) = @_;

$self->_open_file;
1dcc096b Sven Schöling
return if ! $self->_check_header;
17d58914 Sven Schöling
return if ! $self->dispatcher->parse_profile;
1dcc096b Sven Schöling
return if ! $self->_parse_data;
2f6ebd89 Sven Schöling
$self->_parsed(1);
return $self;
}

sub get_data {
$_[0]->_data;
}

sub get_objects {
my ($self, %params) = @_;
croak 'no class given' unless $self->class;
croak 'must parse first' unless $self->_parsed;

$self->_make_objects unless $self->_objects;
return wantarray ? @{ $self->_objects } : $self->_objects;
}

8fba112b Sven Schöling
sub errors {
@{ $_[0]->_errors }
}

f9f7b56e Sven Schöling
sub check_header {
$_[0]->_check_header;
}

2f6ebd89 Sven Schöling
# private stuff

sub _open_file {
my ($self, %params) = @_;

$self->encoding($self->_guess_encoding) if !$self->encoding;

$self->_io->open($self->file, '<' . $self->_encode_layer)
or die "could not open file " . $self->file;

return $self->_io;
}

sub _check_header {
my ($self, %params) = @_;
return $self->header if $self->header;

my $header = $self->_csv->getline($self->_io);

62add698 Sven Schöling
$self->_push_error([
$self->_csv->error_input,
$self->_csv->error_diag,
0,
]) unless $header;

2f6ebd89 Sven Schöling
$self->header($header);
}

sub _parse_data {
my ($self, %params) = @_;
8fba112b Sven Schöling
my (@data, @errors);
2f6ebd89 Sven Schöling
$self->_csv->column_names(@{ $self->header });

8fba112b Sven Schöling
while (1) {
my $row = $self->_csv->getline($self->_io);
last if $self->_csv->eof;
if ($row) {
my %hr;
@hr{@{ $self->header }} = @$row;
push @data, \%hr;
} else {
push @errors, [
$self->_csv->error_input,
$self->_csv->error_diag,
$self->_io->input_line_number,
];
}
}
2f6ebd89 Sven Schöling
$self->_data(\@data);
f9f7b56e Sven Schöling
$self->_push_error(@errors);
8fba112b Sven Schöling
f9f7b56e Sven Schöling
return ! @errors;
2f6ebd89 Sven Schöling
}

sub _encode_layer {
':encoding(' . $_[0]->encoding . ')';
}

sub _make_objects {
my ($self, %params) = @_;
my @objs;

eval "require " . $self->class;
local $::myconfig{numberformat} = $self->numberformat if $self->numberformat;
local $::myconfig{dateformat} = $self->dateformat if $self->dateformat;

for my $line (@{ $self->_data }) {
17d58914 Sven Schöling
my $tmp_obj = $self->class->new;
$self->dispatcher->dispatch($tmp_obj, $line);
push @objs, $tmp_obj;
2f6ebd89 Sven Schöling
}

$self->_objects(\@objs);
}

17d58914 Sven Schöling
sub dispatcher {
my ($self, %params) = @_;

$self->{_dispatcher} ||= $self->_make_dispatcher;
}

sub _make_dispatcher {
my ($self, %params) = @_;

die 'need a header to make a dispatcher' unless $self->header;

return SL::Helper::Csv::Dispatcher->new($self);
f9f7b56e Sven Schöling
}

2f6ebd89 Sven Schöling
sub _guess_encoding {
# won't fix
'utf-8';
}

f9f7b56e Sven Schöling
sub _push_error {
my ($self, @errors) = @_;
c46898c7 Sven Schöling
my @new_errors = ($self->errors, map { SL::Helper::Csv::Error->new(@$_) } @errors);
f9f7b56e Sven Schöling
$self->_errors(\@new_errors);
}

2f6ebd89 Sven Schöling
1;

__END__

8fba112b Sven Schöling
=encoding utf-8

2f6ebd89 Sven Schöling
=head1 NAME

SL::Helper::Csv - take care of csv file uploads

=head1 SYNOPSIS

use SL::Helper::Csv;

my $csv = SL::Helper::Csv->new(
file => \$::form->{upload_file},
encoding => 'utf-8', # undef means utf8
sep_char => ',', # default ';'
efb48636 Moritz Bunkus
quote_char => '\'', # default '"'
escape_char => '"', # default '"'
header => [qw(id text sellprice word)], # see later
profile => { sellprice => 'sellprice_as_number' },
2f6ebd89 Sven Schöling
class => 'SL::DB::CsvLine', # if present, map lines to this
efb48636 Moritz Bunkus
);
2f6ebd89 Sven Schöling
my $status = $csv->parse;
8fba112b Sven Schöling
my $hrefs = $csv->get_data;
bfb0d001 Sven Schöling
my @objects = $csv->get_objects;

my @errors = $csv->errors;
2f6ebd89 Sven Schöling
=head1 DESCRIPTION

See Synopsis.

Text::CSV offeres already good functions to get lines out of a csv file, but in
most cases you will want those line to be parsed into hashes or even objects,
so this model just skips ahead and gives you objects.

bfb0d001 Sven Schöling
Its basic assumptions are:

=over 4

=item You do know what you expect to be in that csv file.

This means first and foremost you have knowledge about encoding, number and
date format, csv parameters such as quoting and separation characters. You also
know what content will be in that csv and what L<Rose::DB> is responsible for
it. You provide valid header columns and their mapping to the objects.

=item You do NOT know if the csv provider yields to your expectations.

Stuff that does not work with what you expect should not crash anything, but
give you a hint what went wrong. As a result, if you remeber to check for
errors after each step, you should be fine.

=item Data does not make sense. It's just data.

Almost all data imports have some type of constraints. Some data needs to be
unique, other data needs to be connected to existing data sets. This will not
happen here. You will receive a plain mapping of the data into the class tree,
nothing more.

=back
2f6ebd89 Sven Schöling
=head1 METHODS

=over 4

=item C<new> PARAMS

Standard constructor. You can use this to set most of the data.

=item C<parse>

Do the actual work. Will return true ($self actually) if success, undef if not.

=item C<get_objects>

Parse the data into objects and return those.

8fba112b Sven Schöling
This method will return list or arrayref depending on context.

2f6ebd89 Sven Schöling
=item C<get_data>

Returns an arrayref of the raw lines as hashrefs.

8fba112b Sven Schöling
=item C<errors>

bfb0d001 Sven Schöling
Return all errors that came up during parsing. See error handling for detailed
8fba112b Sven Schöling
information.

=back

=head1 PARAMS

=over 4

2f6ebd89 Sven Schöling
=item C<file>

The file which contents are to be read. Can be a name of a physical file or a
scalar ref for memory data.

=item C<encoding>

f9f7b56e Sven Schöling
Encoding of the CSV file. Note that this module does not do any encoding
efb48636 Moritz Bunkus
guessing. Know what your data is. Defaults to utf-8.
2f6ebd89 Sven Schöling
=item C<sep_char>

=item C<quote_char>

8fba112b Sven Schöling
=item C<escape_char>

2f6ebd89 Sven Schöling
Same as in L<Text::CSV>

=item C<header> \@FIELDS

f9f7b56e Sven Schöling
Can be an array of columns, in this case the first line is not used as a
2f6ebd89 Sven Schöling
header. Empty header fields will be ignored in objects.

62add698 Sven Schöling
=item C<profile> \%ACCESSORS
2f6ebd89 Sven Schöling
May be used to map header fields to custom accessors. Example:

{ listprice => listprice_as_number }

In this case C<listprice_as_number> will be used to read in values from the
C<listprice> column.

8a635325 Sven Schöling
In case of a One-To-One relationsship these can also be set over
relationsships by sparating the steps with a dot (C<.>). This will work:

efb48636 Moritz Bunkus
{ customer => 'customer.name' }
8a635325 Sven Schöling
And will result in something like this:

$obj->customer($obj->meta->relationship('customer')->class->new);
$obj->customer->name($csv_line->{customer})

But beware, this will not try to look up anything in the database. You will
simply receive objects that represent what the profile defined. If some of
these information are unique, and should be connected to preexisting data, you
will have to do that for yourself. Since you provided the profile, it is
assumed you know what to do in this case.

2f6ebd89 Sven Schöling
=item C<class>

If present, the line will be handed to the new sub of this class,
and the return value used instead of the line itself.

1dcc096b Sven Schöling
=item C<ignore_unknown_columns>

If set, the import will ignore unkown header columns. Useful for lazy imports,
but deactivated by default.

2f6ebd89 Sven Schöling
=back

8fba112b Sven Schöling
=head1 ERROR HANDLING

After parsing a file all errors will be accumulated into C<errors>.
c46898c7 Sven Schöling
Each entry is an object with the following attributes:
8fba112b Sven Schöling
c46898c7 Sven Schöling
raw_input: offending raw input,
code: Text::CSV error code if Text:CSV signalled an error, 0 else,
diag: error diagnostics,
line: position in line,
col: estimated line in file,
8fba112b Sven Schöling
Note that the last entry can be off, but will give an estimate.

=head1 CAVEATS

=over 4

=item *

sep_char, quote_char, and escape_char are passed to Text::CSV on creation.
Changing them later has no effect currently.

=item *

Encoding errors are not dealt with properly.

=back
2f6ebd89 Sven Schöling
f9f7b56e Sven Schöling
=head1 TODO

Dispatch to child objects, like this:

$csv = SL::Helper::Csv->new(
file => ...
class => SL::DB::Part,
62add698 Sven Schöling
profile => [
f9f7b56e Sven Schöling
makemodel => {
make_1 => make,
model_1 => model,
},
makemodel => {
make_2 => make,
model_2 => model,
},
]
);

2f6ebd89 Sven Schöling
=head1 AUTHOR

8fba112b Sven Schöling
Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>

2f6ebd89 Sven Schöling
=cut