145b7db3cf4a37eb1ac5b8da60c319c95c4ad742
[kivitendo-erp.git] / SL / Helper / Csv.pm
1 package SL::Helper::Csv;
2
3 use strict;
4 use warnings;
5
6 use version 0.77;
7 use Carp;
8 use IO::File;
9 use Params::Validate qw(:all);
10 use List::MoreUtils qw(all pairwise firstidx);
11 use Text::CSV_XS;
12 use Rose::Object::MakeMethods::Generic scalar => [ qw(
13   file encoding sep_char quote_char escape_char header profile
14   numberformat dateformat ignore_unknown_columns strict_profile is_multiplexed
15   _row_header _io _csv _objects _parsed _data _errors all_cvar_configs case_insensitive_header
16   _multiplex_datatype_position
17 ) ];
18
19 use SL::Helper::Csv::Dispatcher;
20 use SL::Helper::Csv::Error;
21
22 # public interface
23
24 sub new {
25   my $class  = shift;
26   my %params = validate(@_, {
27     sep_char               => { default => ';' },
28     quote_char             => { default => '"' },
29     escape_char            => { default => '"' },
30     header                 => { type    => ARRAYREF, optional => 1 },
31     profile                => { type    => ARRAYREF, optional => 1 },
32     file                   => 1,
33     encoding               => 0,
34     numberformat           => 0,
35     dateformat             => 0,
36     ignore_unknown_columns => 0,
37     strict_profile         => 0,
38     case_insensitive_header => 0,
39   });
40   my $self = bless {}, $class;
41
42   $self->$_($params{$_}) for keys %params;
43
44   $self->_io(IO::File->new);
45   $self->_csv(Text::CSV_XS->new({
46     binary => 1,
47     sep_char    => $self->sep_char,
48     quote_char  => $self->quote_char,
49     escape_char => $self->escape_char,
50
51   }));
52   $self->_errors([]);
53
54   return $self;
55 }
56
57 sub parse {
58   my ($self, %params) = @_;
59
60   $self->_open_file;
61   return if ! $self->_check_multiplexed;
62   return if ! $self->_check_header;
63   return if ! $self->_check_multiplex_datatype_position;
64   return if ! $self->dispatcher->parse_profile;
65   return if ! $self->_parse_data;
66
67   $self->_parsed(1);
68   return $self;
69 }
70
71 sub get_data {
72   $_[0]->_data;
73 }
74
75 sub get_objects {
76   my ($self, %params) = @_;
77   croak 'must parse first' unless $self->_parsed;
78
79   $self->_make_objects unless $self->_objects;
80   return $self->_objects;
81 }
82
83 sub errors {
84   @{ $_[0]->_errors }
85 }
86
87 sub check_header {
88   $_[0]->_check_header;
89 }
90
91 # private stuff
92
93 sub _open_file {
94   my ($self, %params) = @_;
95
96   $self->encoding($self->_guess_encoding) if !$self->encoding;
97
98   $self->_io->open($self->file, '<' . $self->_encode_layer)
99     or die "could not open file " . $self->file;
100
101   return $self->_io;
102 }
103
104 # check, if data is multiplexed and if all nessesary infos are given
105 sub _check_multiplexed {
106   my ($self, %params) = @_;
107
108   $self->is_multiplexed(0);
109
110   # If more than one profile is given, it is multiplexed.
111   if ($self->profile) {
112     my @profile = @{ $self->profile };
113     if (scalar @profile > 1) {
114       # Each profile needs a class and a row_ident
115       my $info_ok = all { defined $_->{class} && defined $_->{row_ident} } @profile;
116       $self->_push_error([
117         0,
118         "missing class or row_ident in one of the profiles for multiplexed data",
119         0,
120         0]) unless $info_ok;
121
122       # If header is given, there needs to be a header for each profile
123       # and no empty headers.
124       if ($info_ok && $self->header) {
125         my @header = @{ $self->header };
126         my $t_ok = scalar @profile == scalar @header;
127         $self->_push_error([
128           0,
129           "number of headers and number of profiles must be the same for multiplexed data",
130           0,
131           0]) unless $t_ok;
132         $info_ok = $info_ok && $t_ok;
133
134         $t_ok = all { scalar @$_ > 0} @header;
135         $self->_push_error([
136           0,
137           "no empty headers are allowed for multiplexed data",
138           0,
139           0]) unless $t_ok;
140         $info_ok = $info_ok && $t_ok;
141       }
142       $self->is_multiplexed($info_ok);
143       return $info_ok;
144     }
145   }
146
147   # ok, if not multiplexed
148   return 1;
149 }
150
151 sub _check_header {
152   my ($self, %params) = @_;
153   my $header;
154
155   $header = $self->header;
156   if (!$header) {
157     my $n_header = ($self->is_multiplexed)? scalar @{ $self->profile } : 1;
158     foreach my $p_num (0..$n_header - 1) {
159       my $h = $self->_csv->getline($self->_io);
160
161       $self->_push_error([
162         $self->_csv->error_input,
163         $self->_csv->error_diag,
164         0,
165       ]) unless $h;
166
167       if ($self->is_multiplexed) {
168         push @{ $header }, $h;
169       } else {
170         $header = $h;
171       }
172     }
173   }
174
175   # Special case: utf8 BOM.
176   # certain software (namely MS Office and notepad.exe insist on prefixing
177   # data with a discouraged but valid byte order mark
178   # if not removed, the first header field will not be recognized
179   if ($header) {
180     my $h = ($self->is_multiplexed)? $header->[0] : $header;
181
182     if ($h && $h->[0] && $self->encoding =~ /utf-?8/i) {
183       $h->[0] =~ s/^\x{FEFF}//;
184     }
185   }
186
187   # check, if all header fields are parsed well
188   if ($self->is_multiplexed) {
189     return unless $header && all { $_ } @$header;
190   } else {
191     return unless $header;
192   }
193
194   # Special case: human stupidity
195   # people insist that case sensitivity doesn't exist and try to enter all
196   # sorts of stuff. at this point we've got a profile (with keys that represent
197   # valid methods), and a header full of strings. if two of them match, the user
198   # most likely meant that field, so rewrite the header
199   if ($self->case_insensitive_header) {
200     die 'case_insensitive_header is only possible with profile' unless $self->profile;
201     if ($header) {
202       my $h_aref = ($self->is_multiplexed)? $header : [ $header ];
203       my $p_num  = 0;
204       foreach my $h (@{ $h_aref }) {
205         my @names = (
206           keys %{ $self->profile->[$p_num]->{profile} || {} },
207           keys %{ $self->profile->[$p_num]->{mapping} || {} },
208         );
209         for my $name (@names) {
210           for my $i (0..$#$h) {
211             $h->[$i] = $name if lc $h->[$i] eq lc $name;
212           }
213         }
214         $p_num++;
215       }
216     }
217   }
218
219   return $self->header($header);
220 }
221
222 sub _check_multiplex_datatype_position {
223   my ($self) = @_;
224
225   return 1 if !$self->is_multiplexed; # ok if not multiplexed
226
227   my @positions = map { firstidx { 'datatype' eq lc($_) } @{ $_ } } @{ $self->header };
228   my $first_pos = $positions[0];
229   if (all { $first_pos == $_ } @positions) {
230     $self->_multiplex_datatype_position($first_pos);
231     return 1;
232   } else {
233     $self->_push_error([0,
234                         "datatype field must be at the same position for all datatypes for multiplexed data",
235                         0,
236                         0]);
237     return 0;
238   }
239 }
240
241 sub _parse_data {
242   my ($self, %params) = @_;
243   my (@data, @errors);
244
245   while (1) {
246     my $row = $self->_csv->getline($self->_io);
247     if ($row) {
248       my $header = $self->_header_by_row($row);
249       if (!$header) {
250         push @errors, [
251           0,
252           "Cannot get header for row. Maybe row name and datatype field not matching.",
253           0,
254           0];
255         last;
256       }
257       my %hr;
258       @hr{@{ $header }} = @$row;
259       push @data, \%hr;
260     } else {
261       last if $self->_csv->eof;
262       # Text::CSV_XS 0.89 added record number to error_diag
263       if (qv(Text::CSV_XS->VERSION) >= qv('0.89')) {
264         push @errors, [
265           $self->_csv->error_input,
266           $self->_csv->error_diag,
267         ];
268       } else {
269         push @errors, [
270           $self->_csv->error_input,
271           $self->_csv->error_diag,
272           $self->_io->input_line_number,
273         ];
274       }
275     }
276     last if $self->_csv->eof;
277   }
278
279   $self->_data(\@data);
280   $self->_push_error(@errors);
281
282   return ! @errors;
283 }
284
285 sub _header_by_row {
286   my ($self, $row) = @_;
287
288   # initialize lookup hash if not already done
289   if ($self->is_multiplexed && ! defined $self->_row_header ) {
290     $self->_row_header({ pairwise { no warnings 'once'; $a->{row_ident} => $b } @{ $self->profile }, @{ $self->header } });
291   }
292
293   if ($self->is_multiplexed) {
294     return $self->_row_header->{$row->[$self->_multiplex_datatype_position]}
295   } else {
296     return $self->header;
297   }
298 }
299
300 sub _encode_layer {
301   ':encoding(' . $_[0]->encoding . ')';
302 }
303
304 sub _make_objects {
305   my ($self, %params) = @_;
306   my @objs;
307
308   local $::myconfig{numberformat} = $self->numberformat if $self->numberformat;
309   local $::myconfig{dateformat}   = $self->dateformat   if $self->dateformat;
310
311   for my $line (@{ $self->_data }) {
312     my $tmp_obj = $self->dispatcher->dispatch($line);
313     push @objs, $tmp_obj;
314   }
315
316   $self->_objects(\@objs);
317 }
318
319 sub dispatcher {
320   my ($self, %params) = @_;
321
322   $self->{_dispatcher} ||= $self->_make_dispatcher;
323 }
324
325 sub _make_dispatcher {
326   my ($self, %params) = @_;
327
328   die 'need a header to make a dispatcher' unless $self->header;
329
330   return SL::Helper::Csv::Dispatcher->new($self);
331 }
332
333 sub _guess_encoding {
334   # won't fix
335   'utf-8';
336 }
337
338 sub _push_error {
339   my ($self, @errors) = @_;
340   my @new_errors = ($self->errors, map { SL::Helper::Csv::Error->new(@$_) } @errors);
341   $self->_errors(\@new_errors);
342 }
343
344 sub specs {
345   $_[0]->dispatcher->_specs
346 }
347
348 1;
349
350 __END__
351
352 =encoding utf-8
353
354 =head1 NAME
355
356 SL::Helper::Csv - take care of csv file uploads
357
358 =head1 SYNOPSIS
359
360   use SL::Helper::Csv;
361
362   my $csv = SL::Helper::Csv->new(
363     file        => \$::form->{upload_file},
364     encoding    => 'utf-8', # undef means utf8
365     sep_char    => ',',     # default ';'
366     quote_char  => '\'',    # default '"'
367     escape_char => '"',     # default '"'
368     header      => [ qw(id text sellprice word) ], # see later
369     profile     => [ { profile => { sellprice => 'sellprice_as_number'},
370                        class   => 'SL::DB::Part' } ],
371   );
372
373   my $status  = $csv->parse;
374   my $hrefs   = $csv->get_data;
375   my $objects = $csv->get_objects;
376
377   my @errors  = $csv->errors;
378
379 =head1 DESCRIPTION
380
381 See Synopsis.
382
383 Text::CSV already offers good functions to get lines out of a csv file, but in
384 most cases you will want those lines to be parsed into hashes or even objects,
385 so this model just skips ahead and gives you objects.
386
387 Its basic assumptions are:
388
389 =over 4
390
391 =item You do know what you expect to be in that csv file.
392
393 This means first and foremost that you have knowledge about encoding, number and
394 date format, csv parameters such as quoting and separation characters. You also
395 know what content will be in that csv and what L<Rose::DB> is responsible for
396 it. You provide valid header columns and their mapping to the objects.
397
398 =item You do NOT know if the csv provider yields to your expectations.
399
400 Stuff that does not work with what you expect should not crash anything, but
401 give you a hint what went wrong. As a result, if you remember to check for
402 errors after each step, you should be fine.
403
404 =item Data does not make sense. It's just data.
405
406 Almost all data imports have some type of constraints. Some data needs to be
407 unique, other data needs to be connected to existing data sets. This will not
408 happen here. You will receive a plain mapping of the data into the class tree,
409 nothing more.
410
411 =item Multiplex data
412
413 This module can handle multiplexed data of different class types. In that case
414 multiple profiles with classes and row identifiers must be given. Multiple
415 headers may also be given or read from csv data. Data must contain the row
416 identifier in the column named 'datatype'.
417
418 =back
419
420 =head1 METHODS
421
422 =over 4
423
424 =item C<new> PARAMS
425
426 Standard constructor. You can use this to set most of the data.
427
428 =item C<parse>
429
430 Do the actual work. Will return true ($self actually) if success, undef if not.
431
432 =item C<get_objects>
433
434 Parse the data into objects and return those.
435
436 This method will return an arrayref of all objects.
437
438 =item C<get_data>
439
440 Returns an arrayref of the raw lines as hashrefs.
441
442 =item C<errors>
443
444 Return all errors that came up during parsing. See error handling for detailed
445 information.
446
447 =back
448
449 =head1 PARAMS
450
451 =over 4
452
453 =item C<file>
454
455 The file which contents are to be read. Can be a name of a physical file or a
456 scalar ref for memory data.
457
458 =item C<encoding>
459
460 Encoding of the CSV file. Note that this module does not do any encoding
461 guessing. Know what your data is. Defaults to utf-8.
462
463 =item C<sep_char>
464
465 =item C<quote_char>
466
467 =item C<escape_char>
468
469 Same as in L<Text::CSV>
470
471 =item C<header> \@HEADERS
472
473 If given, it contains an ARRAY of the header fields for not multiplexed data.
474 Or an ARRAYREF for each different class type for multiplexed data. These
475 ARRAYREFS are the header fields which are an array of columns. In this case
476 the first lines are not used as a header. Empty header fields will be ignored
477 in objects.
478
479 If not given, headers are taken from the first n lines of data, where n is the
480 number of different class types.
481
482 In case of multiplexed data there must be a column named 'datatype'. This
483 column must be given in each header and must be at the same position in each
484 header.
485
486 Examples:
487
488   classic data of one type:
489   [ 'name', 'street', 'zipcode', 'city' ]
490
491   multiplexed data with two different types:
492   [ [ 'datatype', 'ordernumber', 'customer', 'transdate' ],
493     [ 'datatype', 'partnumber', 'qty', 'sellprice' ] ]
494
495 =item C<profile> PROFILE_DATA
496
497 The profile mapping csv to the objects.
498
499 See section L</PROFILE> for information on this topic.
500
501 =item C<ignore_unknown_columns>
502
503 If set, the import will ignore unkown header columns. Useful for lazy imports,
504 but deactivated by default.
505
506 =item C<case_insensitive_header>
507
508 If set, header columns will be matched against profile entries case
509 insensitive, and on match the profile name will be taken.
510
511 Only works if a profile is given, will die otherwise.
512
513 If both C<case_insensitive_header> and C<strict_profile> is set, matched header
514 columns will be accepted.
515
516 =item C<strict_profile>
517
518 If set, all columns to be parsed must be specified in C<profile>. Every header
519 field not listed there will be treated like an unknown column.
520
521 If both C<case_insensitive_header> and C<strict_profile> is set, matched header
522 columns will be accepted.
523
524 =back
525
526 =head1 PROFILE
527
528 The profile is needed for mapping csv data to the accessors in the data object.
529
530 The basic structure is:
531
532   PROFILE       := [ CLASS_PROFILE, CLASS_PROFILE* ]
533   CLASS_PROFILE := {
534                       profile   => { ACCESSORS+ },
535                       class     => $classname,
536                       row_ident => $row_ident,
537                       mapping   => { MAPPINGS* },
538                    }
539   ACCESSORS     := $field => $accessor
540   MAPPINGS      := $alias => $field
541
542 The C<ACCESSORS> may be used to map header fields to custom
543 accessors. Example:
544
545   profile => {
546     listprice => 'listprice_as_number',
547   }
548
549 In this case C<listprice_as_number> will be used to store the values from the
550 C<listprice> column.
551
552 In case of a One-To-One relationship these can also be set over
553 relationships by separating the steps with a dot (C<.>). This will work:
554
555   customer => 'customer.name',
556
557 And will result in something like this:
558
559   $obj->customer($obj->meta->relationship('customer')->class->new);
560   $obj->customer->name($csv_line->{customer})
561
562 Beware, this will not try to look up anything in the database! You will
563 simply receive objects that represent what the profile defined. If some of
564 these information are unique, or should be connected to preexisting data, you
565 will have to do that for yourself. Since you provided the profile, it is
566 assumed you know what to do in this case.
567
568 If no profile is given, any header field found will be taken as is.
569
570 If the path in a profile entry is empty, the field will be subjected to
571 C<strict_profile> and C<case_insensitive_header> checking and will be parsed
572 into C<get_data>, but will not be attempted to be dispatched into objects.
573
574 C<class> must be present. A new instance will be created for each line before
575 dispatching into it.
576
577 C<row_ident> is used to determine the correct profile in multiplexed data and
578 must be given there. It's not used in non-multiplexed data.
579
580 If C<mappings> is present, it must contain a hashref that maps strings to known
581 fields. This can be used to add custom profiles for known sources, that don't
582 comply with the expected header identities.
583
584 Without strict profiles, mappings can also directly map header fields that
585 should end up in the same accessor.
586
587 Mappings can be identical to known fields and will be prefered during lookup,
588 but will not replace the field, meaning that:
589
590   profile => {
591     name        => 'name',
592     description => 'description',
593   }
594   mapping => {
595     name        => 'description',
596     shortname   => 'name',
597   }
598
599 will work as expected, and shortname will not end up in description. This also
600 works with the case insensitive option. Note however that the case insensitive
601 option will not enable true unicode collating.
602
603
604 Here's a full example:
605
606   [
607     {
608       class     => 'SL::DB::Order',
609       row_ident => 'O'
610     },
611     {
612       class     => 'SL::DB::OrderItem',
613       row_ident => 'I',
614       profile   => { sellprice => 'sellprice_as_number' },
615       mapping   => { 'Verkaufspreis' => 'sellprice' }
616     },
617   ]
618
619 =head1 ERROR HANDLING
620
621 After parsing a file all errors will be accumulated into C<errors>.
622 Each entry is an object with the following attributes:
623
624  raw_input:  offending raw input,
625  code:   Text::CSV error code if Text:CSV signalled an error, 0 else,
626  diag:   error diagnostics,
627  line:   position in line,
628  col:    estimated line in file,
629
630 Note that the last entry can be off, but will give an estimate.
631
632 Error handling is also known to break on new Perl versions and need to be
633 adjusted from time to time due to changes in Text::CSV_XS.
634
635 =head1 CAVEATS
636
637 =over 4
638
639 =item *
640
641 sep_char, quote_char, and escape_char are passed to Text::CSV on creation.
642 Changing them later has no effect currently.
643
644 =item *
645
646 Encoding errors are not dealt with properly.
647
648 =back
649
650 =head1 TODO
651
652 Dispatch to child objects, like this:
653
654  $csv = SL::Helper::Csv->new(
655    file    => ...
656    profile => [ {
657      profile => [
658        makemodel => {
659          make_1  => make,
660          model_1 => model,
661        },
662        makemodel => {
663          make_2  => make,
664          model_2 => model,
665        },
666      ],
667      class   => SL::DB::Part,
668    } ]
669  );
670
671 =head1 AUTHOR
672
673 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>
674
675 =cut