Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a6372bfa

Von Bernd Bleßmann vor etwa 11 Jahren hinzugefügt

  • ID a6372bfafa12301c00d77f7b806810177ced0e15
  • Vorgänger 0de514ad
  • Nachfolger c80cdcf8

_check_multiplexed setzt error im Fehlerfall.

Unterschiede anzeigen:

SL/Helper/Csv.pm
if (scalar @profile > 1) {
# Each profile needs a class and a row_ident
my $info_ok = all { defined $_->{class} && defined $_->{row_ident} } @profile;
$self->_push_error([
0,
"missing class or row_ident in one of the profiles for multiplexed data",
0,
0]) unless $info_ok;
# If header is given, there need to be a header for each profile
# and no empty headers.
if ($info_ok && $self->header) {
my @header = @{ $self->header };
$info_ok = $info_ok && scalar @profile == scalar @header;
$info_ok = $info_ok && all { scalar @$_ > 0} @header;
my $t_ok = scalar @profile == scalar @header;
$self->_push_error([
0,
"number of headers and number of profiles must be the same for multiplexed data",
0,
0]) unless $t_ok;
$info_ok = $info_ok && $t_ok;
$t_ok = all { scalar @$_ > 0} @header;
$self->_push_error([
0,
"no empty headers are allowed for multiplexed data",
0,
0]) unless $t_ok;
$info_ok = $info_ok && $t_ok;
}
$self->is_multiplexed($info_ok);
return $info_ok;

Auch abrufbar als: Unified diff