From: Sven Schöling Date: Thu, 17 Feb 2011 11:31:02 +0000 (+0100) Subject: CSV: Errorhandling X-Git-Tag: release-2.7.0beta1~396^2~81 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=8fba112bb1c6690d673d2c624d64353bca70ba0e;p=kivitendo-erp.git CSV: Errorhandling Parser umgeschrieben, eof muss nach getline prüfen (bekloppt). Errorhandling aktiviert. Dokumentation aktualisiert. --- diff --git a/SL/Helper/Csv.pm b/SL/Helper/Csv.pm index 0336ff393..a51edc3a7 100644 --- a/SL/Helper/Csv.pm +++ b/SL/Helper/Csv.pm @@ -8,8 +8,8 @@ use IO::File; use Text::CSV; use Params::Validate qw(:all); use Rose::Object::MakeMethods::Generic scalar => [ qw( - file encoding sep_char quote_char header header_acc class numberformat - dateformat _io _csv _objects _parsed _data + file encoding sep_char quote_char escape_char header header_acc class + numberformat dateformat _io _csv _objects _parsed _data _errors ) ]; @@ -20,6 +20,7 @@ sub new { my %params = validate(@_, { sep_char => { default => ';' }, quote_char => { default => '"' }, + escape_char => { default => '"' }, header => { type => ARRAYREF, optional => 1 }, header_acc => { type => HASHREF, optional => 1 }, file => 1, @@ -35,10 +36,12 @@ sub new { $self->_io(IO::File->new); $self->_csv(Text::CSV->new({ binary => 1, - sep_char => $self->sep_char, - quote_char => $self->quote_char, + sep_char => $self->sep_char, + quote_char => $self->quote_char, + escape_char => $self->escape_char, })); + $self->_errors([]); return $self; } @@ -67,6 +70,10 @@ sub get_objects { return wantarray ? @{ $self->_objects } : $self->_objects; } +sub errors { + @{ $_[0]->_errors } +} + # private stuff sub _open_file { @@ -91,14 +98,32 @@ sub _check_header { sub _parse_data { my ($self, %params) = @_; - my @data; + my (@data, @errors); $self->_csv->column_names(@{ $self->header }); - push @data, $self->_csv->getline_hr($self->_io) - while !$self->_csv->eof; + 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, + ]; + } + } $self->_data(\@data); + $self->_errors(\@errors); + + return if @errors; + return \@data; } sub _encode_layer { @@ -134,6 +159,8 @@ sub _guess_encoding { __END__ +=encoding utf-8 + =head1 NAME SL::Helper::Csv - take care of csv file uploads @@ -153,7 +180,7 @@ SL::Helper::Csv - take care of csv file uploads ) my $status = $csv->parse; - my @hrefs = $csv->get_data; + my $hrefs = $csv->get_data; my @objects = $scv->get_objects; =head1 DESCRIPTION @@ -182,10 +209,23 @@ Do the actual work. Will return true ($self actually) if success, undef if not. Parse the data into objects and return those. +This method will return list or arrayref depending on context. + =item C Returns an arrayref of the raw lines as hashrefs. +=item C + +Return all errors that came up druing parsing. See error handling for detailed +information. + +=back + +=head1 PARAMS + +=over 4 + =item C The file which contents are to be read. Can be a name of a physical file or a @@ -200,6 +240,8 @@ Know what your data ist. Defaults to utf-8. =item C +=item C + Same as in L =item C
\@FIELDS @@ -223,8 +265,43 @@ and the return value used instead of the line itself. =back -=head1 BUGS +=head1 ERROR HANDLING + +After parsing a file all errors will be accumulated into C. + +Each entry is an arrayref with the following structure: + + [ + offending raw input, + Text::CSV error code if present, + Text::CSV error diagnostics if present, + position in line, + estimated line in file, + ] + +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. + +=item * + +Errors are not gathered. + +=back =head1 AUTHOR +Sven Schöling Es.schoeling@linet-services.deE + =cut diff --git a/t/helper/csv.t b/t/helper/csv.t index 6de4e7216..aedc7df6a 100644 --- a/t/helper/csv.t +++ b/t/helper/csv.t @@ -6,7 +6,7 @@ use_ok 'SL::Helper::Csv'; my $csv; $csv = SL::Helper::Csv->new( - file => \"Kaffee;\n", + file => \"Kaffee\n", header => [ 'description' ], ); @@ -111,6 +111,19 @@ EOL ); is $csv->parse, undef, 'broken csv header won\'t get parsed'; +###### + +$csv = SL::Helper::Csv->new( + file => \< '1,000.00', + class => 'SL::DB::Part', +); +is $csv->parse, undef, 'broken csv content won\'t get parsed'; +is_deeply $csv->errors, [ '"Kaf"fee";;0.12;1,221.52'."\n", 2023, 'EIQ - QUO character not allowed', 5, 2 ], 'error'; done_testing(); # vim: ft=perl