--- trunk/lib/WebPAC/Input.pm 2006/08/26 12:00:36 625 +++ trunk/lib/WebPAC/Input.pm 2006/12/06 23:43:45 784 @@ -7,7 +7,7 @@ use WebPAC::Common; use base qw/WebPAC::Common/; -use Data::Dumper; +use Data::Dump qw/dump/; use Encode qw/from_to/; =head1 NAME @@ -16,11 +16,11 @@ =head1 VERSION -Version 0.11 +Version 0.16 =cut -our $VERSION = '0.11'; +our $VERSION = '0.16'; =head1 SYNOPSIS @@ -43,7 +43,6 @@ my $db = WebPAC::Input->new( module => 'WebPAC::Input::ISIS', - low_mem => 1, ); $db->open( path => '/path/to/database' ); @@ -63,7 +62,6 @@ my $db = new WebPAC::Input( module => 'WebPAC::Input::MARC', encoding => 'ISO-8859-2', - low_mem => 1, recode => 'char pairs', no_progress_bar => 1, ); @@ -75,8 +73,6 @@ used internally). This should probably be your terminal encoding, and by default, it C. -Default is not to use C options (see L below). - C is optional string constisting of character or words pairs that should be replaced in input stream. @@ -96,60 +92,18 @@ $log->logconfess("code_page argument is not suppored any more. change it to encoding") if ($self->{lookup}); $log->logconfess("lookup argument is not suppored any more. rewrite call to lookup_ref") if ($self->{lookup}); + $log->logconfess("low_mem argument is not suppored any more. rewrite it to load_row and save_row") if ($self->{low_mem}); $log->logconfess("specify low-level file format module") unless ($self->{module}); - my $module = $self->{module}; - $module =~ s#::#/#g; - $module .= '.pm'; - $log->debug("require low-level module $self->{module} from $module"); - - require $module; - #eval $self->{module} .'->import'; - - # check if required subclasses are implemented - foreach my $subclass (qw/open_db fetch_rec init/) { - my $n = $self->{module} . '::' . $subclass; - if (! defined &{ $n }) { - my $missing = "missing $subclass in $self->{module}"; - $self->{$subclass} = sub { $log->logwarn($missing) }; - } else { - $self->{$subclass} = \&{ $n }; - } - } + my $module_path = $self->{module}; + $module_path =~ s#::#/#g; + $module_path .= '.pm'; + $log->debug("require low-level module $self->{module} from $module_path"); - if ($self->{init}) { - $log->debug("calling init"); - $self->{init}->($self, @_); - } + require $module_path; $self->{'encoding'} ||= 'ISO-8859-2'; - # running with low_mem flag? well, use DBM::Deep then. - if ($self->{'low_mem'}) { - $log->info("running with low_mem which impacts performance (<32 Mb memory usage)"); - - my $db_file = "data.db"; - - if (-e $db_file) { - unlink $db_file or $log->logdie("can't remove '$db_file' from last run"); - $log->debug("removed '$db_file' from last run"); - } - - require DBM::Deep; - - my $db = new DBM::Deep $db_file; - - $log->logdie("DBM::Deep error: $!") unless ($db); - - if ($db->error()) { - $log->logdie("can't open '$db_file' under low_mem: ",$db->error()); - } else { - $log->debug("using file '$db_file' for DBM::Deep"); - } - - $self->{'db'} = $db; - } - $self ? return $self : return undef; } @@ -157,21 +111,33 @@ This function will read whole database in memory and produce lookups. + my $store; # simple in-memory hash + $input->open( path => '/path/to/database/file', code_page => 'cp852', limit => 500, offset => 6000, - lookup => $lookup_obj, stats => 1, - lookup_ref => sub { - my ($k,$v) = @_; - # store lookup $k => $v + lookup_coderef => sub { + my $rec = shift; + # store lookups }, modify_records => { 900 => { '^a' => { ' : ' => '^b' } }, 901 => { '*' => { '^b' => ' ; ' } }, }, + modify_file => 'conf/modify/mapping.map', + save_row => sub { + my $a = shift; + $store->{ $a->{id} } = $a->{row}; + }, + load_row => sub { + my $a = shift; + return defined($store->{ $a->{id} }) && + $store->{ $a->{id} }; + }, + ); By default, C is assumed to be C. @@ -182,13 +148,19 @@ C create optional report about usage of fields and subfields -C is closure to call when adding C<< key => 'value' >> combinations to -lookup. +C is closure to called to save data into lookups C specify mapping from subfields to delimiters or from delimiters to subfields, as well as oprations on fields (if subfield is defined as C<*>. +C is alternative for C above which preserves order and offers +(hopefully) simplier sintax than YAML or perl (see L). This option +overrides C if both exists for same input. + +C and C are low-level implementation of store engine. Calling convention +is documented in example above. + Returns size of database, regardless of C and C parametars, see also C. @@ -204,6 +176,8 @@ $log->logconfess("lookup_coderef must be CODE, not ",ref($arg->{lookup_coderef})) if ($arg->{lookup_coderef} && ref($arg->{lookup_coderef}) ne 'CODE'); + $log->debug( $arg->{lookup_coderef} ? '' : 'not ', "using lookup_coderef"); + $log->logcroak("need path") if (! $arg->{'path'}); my $code_page = $arg->{'code_page'} || 'cp852'; @@ -213,6 +187,16 @@ $self->{$v} = $arg->{$v} if ($arg->{$v}); } + if ($arg->{load_row} || $arg->{save_row}) { + $log->logconfess("save_row and load_row must be defined in pair and be CODE") unless ( + ref($arg->{load_row}) eq 'CODE' && + ref($arg->{save_row}) eq 'CODE' + ); + $self->{load_row} = $arg->{load_row}; + $self->{save_row} = $arg->{save_row}; + $log->debug("using load_row and save_row instead of in-memory hash"); + } + my $filter_ref; my $recode_regex; my $recode_map; @@ -235,10 +219,19 @@ } - my $rec_regex = $self->modify_record_regexps(%{ $arg->{modify_records} }); - $log->debug("rec_regex: ", Dumper($rec_regex)); + my $rec_regex; + if (my $p = $arg->{modify_file}) { + $log->debug("using modify_file $p"); + $rec_regex = $self->modify_file_regexps( $p ); + } elsif (my $h = $arg->{modify_records}) { + $log->debug("using modify_records ", sub { dump( $h ) }); + $rec_regex = $self->modify_record_regexps(%{ $h }); + } + $log->debug("rec_regex: ", sub { dump($rec_regex) }) if ($rec_regex); + + my $class = $self->{module} || $log->logconfess("can't get low-level module name!"); - my ($db, $size) = $self->{open_db}->( $self, + my $ll_db = $class->new( path => $arg->{path}, # filter => sub { # my ($l,$f_nr) = @_; @@ -250,11 +243,13 @@ %{ $arg }, ); - unless (defined($db)) { + unless (defined($ll_db)) { $log->logwarn("can't open database $arg->{path}, skipping..."); return; } + my $size = $ll_db->size; + unless ($size) { $log->logwarn("no records in database $arg->{path}, skipping..."); return; @@ -286,7 +281,7 @@ $log->debug("position: $pos\n"); - my $rec = $self->{fetch_rec}->($self, $db, $pos, sub { + my $rec = $ll_db->fetch_rec($pos, sub { my ($l,$f_nr) = @_; # return unless defined($l); # return $l unless ($rec_regex && $f_nr); @@ -294,8 +289,7 @@ $log->debug("-=> $f_nr ## $l"); # codepage conversion and recode_regex -# from_to($l, $code_page, $self->{'encoding'}); - from_to($l, $code_page, 'utf-8'); + from_to($l, $code_page, $self->{'encoding'}); $l =~ s/($recode_regex)/$recode_map->{$1}/g if ($recode_regex && $recode_map); # apply regexps @@ -303,8 +297,11 @@ $log->logconfess("regexps->{$f_nr} must be ARRAY") if (ref($rec_regex->{$f_nr}) ne 'ARRAY'); my $c = 0; foreach my $r (@{ $rec_regex->{$f_nr} }) { - #$log->debug("\$l = $l\neval \$l =~ $r"); + my $old_l = $l; eval '$l =~ ' . $r; + if ($old_l ne $l) { + $log->debug("REGEX on $f_nr eval \$l =~ $r\n## old l: [$old_l]\n## new l: [$l]"); + } $log->error("error applying regex: $r") if ($@); } } @@ -313,7 +310,7 @@ return $l; }); - $log->debug(sub { Dumper($rec) }); + $log->debug(sub { dump($rec) }); if (! $rec) { $log->warn("record $pos empty? skipping..."); @@ -321,8 +318,11 @@ } # store - if ($self->{low_mem}) { - $self->{db}->put($pos, $rec); + if ($self->{save_row}) { + $self->{save_row}->({ + id => $pos, + row => $rec, + }); } else { $self->{data}->{$pos} = $rec; } @@ -334,7 +334,7 @@ if ($self->{stats}) { # fetch clean record with regexpes applied for statistics - my $rec = $self->{fetch_rec}->($self, $db, $pos); + my $rec = $ll_db->fetch_rec($pos); foreach my $fld (keys %{ $rec }) { $self->{_stats}->{fld}->{ $fld }++; @@ -371,6 +371,9 @@ $self->{max_pos} = $to_rec; $log->debug("max_pos: $to_rec"); + # save for dump + $self->{ll_db} = $ll_db; + return $size; } @@ -410,8 +413,8 @@ my $rec; - if ($self->{low_mem}) { - $rec = $self->{db}->get($mfn); + if ($self->{load_row}) { + $rec = $self->{load_row}->({ id => $mfn }); } else { $rec = $self->{data}->{$mfn}; } @@ -527,14 +530,32 @@ } sort { $a cmp $b } keys %{ $s->{fld} } ); - $log->debug( sub { Dumper($s) } ); + $log->debug( sub { dump($s) } ); return $out; } +=head2 dump_ascii + +Display humanly readable dump of record + +=cut + +sub dump_ascii { + my $self = shift; + + return unless $self->{ll_db}; + + if ($self->{ll_db}->can('dump_rec')) { + return $self->{ll_db}->dump_ascii( $self->{pos} ); + } else { + return dump( $self->{ll_db}->fetch_rec( $self->{pos} ) ); + } +} + =head2 modify_record_regexps -Generate hash with regexpes to be applied using L. +Generate hash with regexpes to be applied using l. my $regexpes = $input->modify_record_regexps( 900 => { '^a' => { ' : ' => '^b' } }, @@ -543,33 +564,44 @@ =cut +sub _get_regex { + my ($sf,$from,$to) = @_; + if ($from =~ m/^regex:(.+)$/) { + $from = $1; + } else { + $from = '\Q' . $from . '\E'; + } + if ($sf =~ /^\^/) { + return + 's/\Q'. $sf .'\E([^\^]*?)'. $from .'([^\^]*?)/'. $sf .'$1'. $to .'$2/'; + } else { + return + 's/'. $from .'/'. $to .'/g'; + } +} + sub modify_record_regexps { my $self = shift; my $modify_record = {@_}; my $regexpes; + my $log = $self->_get_logger(); + foreach my $f (keys %$modify_record) { -warn "--- f: $f\n"; + $log->debug("field: $f"); + foreach my $sf (keys %{ $modify_record->{$f} }) { -warn "---- sf: $sf\n"; + $log->debug("subfield: $sf"); + foreach my $from (keys %{ $modify_record->{$f}->{$sf} }) { my $to = $modify_record->{$f}->{$sf}->{$from}; #die "no field?" unless defined($to); -warn "----- transform: |$from| -> |$to|\n"; - - if ($sf =~ /^\^/) { - my $regex = - 's/\Q'. $sf .'\E([^\^]+)\Q'. $from .'\E([^\^]+)/'. $sf .'$1'. $to .'$2/g'; - push @{ $regexpes->{$f} }, $regex; -warn ">>>>> $regex [sf]\n"; - } else { - my $regex = - 's/\Q'. $from .'\E/'. $to .'/g'; - push @{ $regexpes->{$f} }, $regex; -warn ">>>>> $regex [global]\n"; - } + $log->debug("transform: |$from| -> |$to|"); + my $regex = _get_regex($sf,$from,$to); + push @{ $regexpes->{$f} }, $regex; + $log->debug("regex: $regex"); } } } @@ -577,36 +609,65 @@ return $regexpes; } -=head1 MEMORY USAGE +=head2 modify_file_regexps + +Generate hash with regexpes to be applied using l from +pseudo hash/yaml format for regex mappings. + +It should be obvious: + + 200 + '^a' + ' : ' => '^e' + ' = ' => '^d' + +In field I<200> find C<'^a'> and then C<' : '>, and replace it with C<'^e'>. +In field I<200> find C<'^a'> and then C<' = '>, and replace it with C<'^d'>. + + my $regexpes = $input->modify_file_regexps( 'conf/modify/common.pl' ); -C options is double-edged sword. If enabled, WebPAC -will run on memory constraint machines (which doesn't have enough -physical RAM to create memory structure for whole source database). - -If your machine has 512Mb or more of RAM and database is around 10000 records, -memory shouldn't be an issue. If you don't have enough physical RAM, you -might consider using virtual memory (if your operating system is handling it -well, like on FreeBSD or Linux) instead of dropping to L to handle -parsed structure of ISIS database (this is what C option does). - -Hitting swap at end of reading source database is probably o.k. However, -hitting swap before 90% will dramatically decrease performance and you will -be better off with C and using rest of availble memory for -operating system disk cache (Linux is particuallary good about this). -However, every access to database record will require disk access, so -generation phase will be slower 10-100 times. - -Parsed structures are essential - you just have option to trade RAM memory -(which is fast) for disk space (which is slow). Be sure to have planty of -disk space if you are using C and thus L. - -However, when WebPAC is running on desktop machines (or laptops :-), it's -highly undesireable for system to start swapping. Using C option can -reduce WecPAC memory usage to around 64Mb for same database with lookup -fields and sorted indexes which stay in RAM. Performance will suffer, but -memory usage will really be minimal. It might be also more confortable to -run WebPAC reniced on those machines. +On undef path it will just return. +=cut + +sub modify_file_regexps { + my $self = shift; + + my $modify_path = shift || return; + + my $log = $self->_get_logger(); + + my $regexpes; + + CORE::open(my $fh, $modify_path) || $log->logdie("can't open modify file $modify_path: $!"); + + my ($f,$sf); + + while(<$fh>) { + chomp; + next if (/^#/ || /^\s*$/); + + if (/^\s*(\d+)\s*$/) { + $f = $1; + $log->debug("field: $f"); + next; + } elsif (/^\s*'([^']*)'\s*$/) { + $sf = $1; + $log->die("can't define subfiled before field in: $_") unless ($f); + $log->debug("subfield: $sf"); + } elsif (/^\s*'([^']*)'\s*=>\s*'([^']*)'\s*$/) { + my ($from,$to) = ($1, $2); + + $log->debug("transform: |$from| -> |$to|"); + + my $regex = _get_regex($sf,$from,$to); + push @{ $regexpes->{$f} }, $regex; + $log->debug("regex: $regex"); + } + } + + return $regexpes; +} =head1 AUTHOR