--- trunk/lib/WebPAC/Parser.pm 2006/09/24 21:13:36 691 +++ trunk/lib/WebPAC/Parser.pm 2006/09/25 12:51:47 701 @@ -17,14 +17,24 @@ =head1 VERSION -Version 0.03 +Version 0.04 =cut -our $VERSION = '0.03'; +our $VERSION = '0.04'; =head1 SYNOPSIS +This module will parse L directives and generate source +to produce lookups and normalization. + +It's written using L, pure-perl parser for perl and heavily influenced by +reading about LISP. It might be a bit over-the board, but at least it removed +separate configuration files for lookups. + +This is experimental code, but it replaces all older formats which where, +at one point in time, available in WebPAC. + FIXME =head1 FUNCTIONS @@ -53,12 +63,6 @@ $self->read_sources; - $self->{config}->iterate_inputs( sub { - my ($input, $database) = @_; - return unless $self->valid_database_input($database, $input->{name}); - $self->parse_lookups($database,$input->{name}); - } ); - $self ? return $self : return undef; } @@ -77,57 +81,69 @@ my $nr = 0; + my @lookups; + $self->{config}->iterate_inputs( sub { my ($input, $database) = @_; - my $path = $input->{normalize}->{path} || return; - my $full = $self->{base_path} ? $self->{base_path} . '/' . $path : $path; + $log->debug("database: $database input = ", dump($input)); + + foreach my $normalize (@{ $input->{normalize} }) { - $log->logdie("normalization input $full doesn't exist") unless (-e $full); + my $path = $normalize->{path}; + return unless($path); + my $full = $self->{base_path} ? $self->{base_path} . '/' . $path : $path; - my $s = read_file( $full ) || $log->logdie("can't read $full: $!"); + $log->logdie("normalization input $full doesn't exist") unless (-e $full); - my $input_name = $input->{name} || $log->logdie("can't deduce name of input: ", dump( $input )); + my $s = read_file( $full ) || $log->logdie("can't read $full: $!"); - $log->debug("$database/$input_name: adding $path"); + my $input_name = _input_name($input) || $log->logdie("can't deduce name of input: ", dump( $input )); - $self->{valid_inputs}->{$database}->{$input_name} = { - source => $s, - path => $full, - usage => 0, - } unless defined($self->{valid_inputs}->{$database}->{$input_name}); + $log->debug("$database/$input_name: adding $path"); - $self->{valid_inputs}->{$database}->{$input_name}->{usage}++; + $self->{valid_inputs}->{$database}->{$input_name}++; - $nr++; + push @lookups, sub { + $self->parse_lookups( $database, $input_name, $full, $s ); + }; + + $nr++; + } } ); $log->debug("found $nr source files"); + # parse all lookups + $_->() foreach (@lookups); + return $nr; } -=head2 parse_lookup +=head2 parse_lookups - $parser->parse_lookups($database,$input); + $parser->parse_lookups($database,$input,$path,$source); + +Called for each normalize source in each input by L + +It will report invalid databases and inputs in error log after parsing. =cut sub parse_lookups { my $self = shift; - my ($database, $input) = @_; + my ($database, $input, $path, $source) = @_; + + $input = _input_name($input); my $log = $self->_get_logger(); $log->logdie("invalid database $database" ) unless $self->valid_database( $database ); $log->logdie("invalid input $input of database $database", ) unless $self->valid_database_input( $database, $input ); - my $source = $self->{valid_inputs}->{$database}->{$input}->{source}; - my $path = $self->{valid_inputs}->{$database}->{$input}->{path}; - $log->logdie("no source found for database $database input $input path $path") unless ($source); - $log->info("parsing lookups for $database/$input in $path"); + $log->info("parsing lookups for $database/$input from $path (",length($source)," bytes)"); my $Document = PPI::Document->new( \$source ) || $log->logdie("can't parse source:\n", $self->{source}); @@ -136,7 +152,6 @@ # Find all the named subroutines - my $eval_create; $self->{_lookup_errors} = (); sub _lookup_error { @@ -210,7 +225,17 @@ return $self->_lookup_error("invalid database $e[3] in $path" ) unless $self->valid_database( $e[3] ); return $self->_lookup_error("invalid input $e[5] of database $e[3] in $path", ) unless $self->valid_database_input( $e[3], $e[5] ); - $eval_create->{ $e[3] }->{ $e[5] } .= $create; + # save code to create this lookup + $self->{_lookup_create}->{ _q($e[3]) }->{ _q($e[5]) }->{ _q($key) } .= $create; + + + if (defined( $self->{depends}->{ $database }->{ $input }->{ _q($e[3]) }->{ _q($e[5]) } )) { + my $dep_key = $self->{depends}->{ $database }->{ $input }->{ _q($e[3]) }->{ _q($e[5]) }; + $log->warn("dependency of $database/$input on $e[3]/$e[5] allready recorded as $dep_key, now changed to $key") if ($dep_key ne $key); + } + + # save this dependency + $self->{depends}->{ $database }->{ $input }->{ _q($e[3]) }->{ _q($e[5]) } .= $key; if ($#e < 10) { $e[8]->insert_after( $e[8]->clone ); @@ -226,19 +251,35 @@ $log->debug(">>> ", $Element->snext_sibling); }); - $log->info("create: ", dump($eval_create) ); - $log->info("lookup: ", $Document->serialize ); + my $normalize_source = $Document->serialize; + $log->debug("create: ", dump($self->{_lookup_create}) ); + $log->debug("normalize: $normalize_source"); + + $self->{_normalize_source}->{$database}->{$input} = $normalize_source; if ($self->{debug}) { my $Dumper = PPI::Dumper->new( $Document ); $Dumper->print; } - $log->error("Parser errors: ", join("\n",@{ $self->{_lookup_errors} }) ) if ($self->{_lookup_errors}); + $log->error("Parser errors:\n", join("\n",@{ $self->{_lookup_errors} }) ) if ($self->{_lookup_errors}); return 1; } + +=head2 lookup_create_rules + + my $source = $parser->lookup_create_rules($database, $input); + +=cut + +sub lookup_create_rules { + my $self = shift; + my ($database,$input) = @_; + return $self->{_lookup_create}->{ _q($database) }->{ _q($input) }; +} + =head2 valid_database my $ok = $parse->valid_database('key'); @@ -249,9 +290,8 @@ my $self = shift; my $database = shift || return; - $database =~ s/['"]//g; - return defined($self->{valid_inputs}->{$database}); + return defined($self->{valid_inputs}->{ _q($database) }); } =head2 valid_database_input @@ -264,12 +304,64 @@ my $self = shift; my ($database,$input) = @_; - $database =~ s/['"]//g; - $input =~ s/['"]//g; + return defined($self->{valid_inputs}->{ _q($database) }->{ _q($input) }); +} + +=head2 depends + +Return all databases and inputs on which specified one depends + + $depends_on = $parser->depends('database','input'); + +=cut - return defined($self->{valid_inputs}->{$database}->{$input}); +sub depends { + my $self = shift; + my ($database,$input) = @_; + $self->_get_logger->debug("depends($database,$input)"); + return unless ( + defined( $self->{depends}->{ _q($database) } ) && + defined( $self->{depends}->{ _q($database) }->{ _q($input) } ) + ); + return $self->{depends}->{ _q($database) }->{ _q($input) }; } +=head1 PRIVATE + +=head2 _q + +Strip single or double quotes around value + + _q(qq/'foo'/) -> foo + +=cut + +sub _q { + my $v = shift || return; + $v =~ s/^['"]*//g; + $v =~ s/['"]*$//g; + return $v; +} + +=head2 _input_name + +Return C value if HASH or arg if scalar + + _input_name($input) + +=cut + +sub _input_name { + my $input = shift || return; + if (ref($input) eq 'HASH') { + die "can't find 'name' value in ", dump($input) unless defined($input->{name}); + return $input->{name}; + } else { + return $input; + } +} + + =head1 AUTHOR Dobrica Pavlinusic, C<< >>