File: Checker.pm

package info (click to toggle)
libstar-parser-perl 0.59-5
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 220 kB
  • sloc: perl: 1,360; makefile: 2
file content (301 lines) | stat: -rw-r--r-- 9,628 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package STAR::Checker;

use STAR::DataBlock;
use STAR::Dictionary;

use strict;
use Time::localtime;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);

$VERSION = '0.02';

#  $Id: Checker.pm,v 1.2 2000/12/19 22:54:56 helgew Exp $   RCS Identification


####################
# Constructor: new #
####################

sub new {
    my $proto = shift;
    my $class = ref($proto) || $proto;
    my $self = {};
    bless ($self,$class);
    return $self;
}


#######################
# Class method: check #
#######################

sub check {

    my ($self, @parameters) = @_;                 
    my ($data,$dict,$options);
    $options = "";
	
    while ($_ = shift @parameters) {
       $data = shift @parameters if /-datablock/;
       $dict = shift @parameters if /-dictionary/;
       $options = shift @parameters if /-options/;
    }

    my ($n, $d, $save, @saves, $cat, @cats, $item, @items);
    my (@depend_items, $depend_item);
    my ($value, @values);
    my (%dict_lookup, %item_lookup, %cat_lookup);
    my (@parent_items, @child_items);
    my (%cp_hash, $cp_hash_ref);   #child parent hash
    my ($mand);
    my ($construct, @constructs, $code, @code_data, @codes, %item_types);
    my ($debug, $log,$problem);

    $log = 1       if $options =~ /l/;
    $debug = 1     if $options =~ /d/;
    
    if ( $data->type eq 'dictionary' ) {
        print STDERR "Method check_against_dict is to be invoked only on\n",
          "DataBlock objects, not on dictionaries themselves.\n";
        return;
    }

    print STDERR "-"x50,"\n" if $log;
    print STDERR "$0 ", ctime(),"\n" if $log;
    print STDERR "Checking ",$data->title,
      " against ",$dict->title,"\n" if $log;

    @items = $data->get_items;
    @cats = $data->get_categories;
    @saves = $dict->get_save_blocks;

    #make a dictionary lookup hash -- keys: lowercase, values: original case
    foreach $save (@saves) {
        $dict_lookup{lc($save)} = $save;
    }

    #same for an file item lookup hash
    foreach $item (@items) {
        $item_lookup{lc($item)} = $item;
    }

    #same for a file category lookup hash
    foreach $cat (@cats) {
        $cat_lookup{lc($cat)} = $cat;
    }

    # 1) checking whether items are present in dictionary
    # ---------------------------------------------------

    print STDERR "Checking whether items are present in dictionary\n" if $log;

    foreach $item (@items) {
        if ( ! exists $dict_lookup{lc($item)} ) {
	    $problem=1;
	    print STDERR "\t$item not in dictionary\n" if $log;
	}
    }
  
    # 2) checking for presence of mandatory items in file
    # ---------------------------------------------------

    print STDERR "Checking whether mandatory items ",
     "are present in file\n" if $log;

    foreach $save ( @saves ) {
        if ( $save =~ /^(_\S+?)\.\S+/ ) { # $save is item, not cat 
            $cat = $1;
            $item = $save;
            $mand = ($dict->get_item_data(-save=>$save,
                                 -item=>"_item.mandatory_code"))[0];
            if ( $mand eq "yes" ) {  #item is mandatory
                if ( exists $cat_lookup{lc($cat)} ) { #the cat is in the file
                    if ( ! exists $item_lookup{lc($item)} ) { #oops, should've
                                                             #been present
                        $problem=1;
                        print STDERR "\t$item not present\n" if $log;
                    }
                }
            }
        }
    } 
    
    # 3) checking for presence of dependent items in file
    # ---------------------------------------------------

    print STDERR "Checking whether dependent items",
     " are present in file\n" if $log;

    foreach $item ( @items ) {
        if ( exists $dict_lookup{lc($item)} ) {
            @depend_items = $dict->get_item_data(
                              -save=>$dict_lookup{lc($item)},
                              -item=>"_item_dependent.dependent_name");
            foreach $depend_item ( @depend_items ) {
                if ( ! exists $item_lookup{lc($depend_item)} ) {
                    $problem=1;
                    print STDERR "\t$depend_item not present ",
                      "(required by $item)\n" if $log;
                }
            }
        }
    }
 
    # 4) checking for presence of parent items
    # ----------------------------------------

    print STDERR "Checking for presence of parent items\n" if $log;

    if ( -r "cp_hash" ) {
        print "Retrieving previously stored cp_hash\n" if $log;
        $cp_hash_ref = Storable::retrieve("cp_hash");
        %cp_hash = %$cp_hash_ref;
    }
    else {
        print "Assembling and storing new cp_hash\n" if $log;
        foreach $save ( @saves ) {
            @parent_items  = $dict->get_item_data(-save=>$save,
                                      -item=>"_item_linked.parent_name");
            @child_items   = $dict->get_item_data(-save=>$save,
                                      -item=>"_item_linked.child_name");
            if ( $#parent_items >=0 ) {
                foreach $n ( 0..$#parent_items ) {
                    $cp_hash{lc($child_items[$n])} = lc($parent_items[$n]);
                }
            }
        }
        Storable::store \%cp_hash, "cp_hash";
    }
 
    foreach $item ( @items ) {
        if ( exists $cp_hash{lc($item)} ) {
            if ( ! exists $item_lookup{$cp_hash{lc($item)}} ) {
                print STDERR "\t",$cp_hash{lc($item)}, " not present ",
                  "(parent to $item)\n" if $log;
            }
        }
    }
    
    # 5) checking for correct item types
    # ----------------------------------

    print STDERR "Checking values against type definitions\n" if $log;

    @constructs=$dict->get_item_data(-save=>'-',
                                     -item=>'_item_type_list.construct');
    @codes=$dict->get_item_data(-save=>'-',
                                -item=>'_item_type_list.code');
    foreach $n (0..$#codes) {
        $item_types{$codes[$n]} = $constructs[$n];
    }

    foreach $item ( @items ) {
        $code="";
        print STDERR "data item: $item\n" if $debug;
        print STDERR "dict item: ",$dict_lookup{lc($item)},"\n" if $debug;
        if ($dict_lookup{lc($item)}) {
            $code = ($dict->get_item_data
                          (-save=>$dict_lookup{lc($item)},
                           -item=>'_item_type.code'))[0];
		     # not all items have this defined
            $construct = $item_types{$code} if $code;
        }
		
	if ( !$code ) {
            print STDERR "type code undefined\n" if $debug;
	}
	else {
            @values = $data->get_item_data(-item=>$item);
	    print STDERR "values 0..",$#values,"\n" if $debug;
            $n=0;
	    foreach $value (@values) {
                if ( $value eq '.' || $value eq '?' ) {
                    print STDERR "$n item value undefined\n" if $debug;
                }
                elsif ( $value =~ /^$construct$/ ) {
                    print STDERR "$n type $code ok\n" if $debug;
                }              
                else {
	            $problem = 1;
                    if ($log) {
                        print STDERR "\t","-"x14,"\n","\ttype mismatch:\n"; 
                        print STDERR "\titem: $item\n";
                        print STDERR "\titeration: $n\n";
                        print STDERR "\tvalue: $value\n";
                        print STDERR "\tcode: $code\n";
                        print STDERR "\tconstruct: $construct\n";
                    }
                }
            $n++;
            }
	}
    }
    return ( $problem ? 0 : 1 );  #returns 1 if check ok (no problem)
                                  #returns 0 if problem found
}

1;
__END__

=head1 NAME

STAR::Checker - Perl extension for checking DataBlock objects

=head2 Version

This documentation refers to version 0.02 of this module.

=head1 SYNOPSIS

  use STAR::Checker;
 
  $check = STAR::Checker->check( -datablock=>$ARGV[0],
                                 -dictionary=>$ARGV[1] );

=head1 DESCRIPTION

Contains the checker object, with methods for checking DataBlock object against 
STAR rules and against a specified dictionary.
DataBlock objects are created by Parser and modified by DataBlock.

=head1 CLASS METHODS

=head2 check

  Usage:   $check = STAR::Checker->check(-datablock=>$data, 
                                         -dictionary=>$dict [,
                                         -options=>$options ] );

Checks the DataBlock object C<$data> against the dictionary object 
C<$dict> (see STAR::Parser and STAR::DataBlock). Checks 1) whether 
all items in the DataBlock are defined in the dictionary, 
2) whether mandatory items are present in the file, 3) whether dependent 
items are present in the file (e.g. cartn_x makes cartn_y and cartn_z 
dependent), 4) whether parent items are present,  
and 5) whether the item values in the DataBlock conform to the item type 
definitions in the dictionary.

Returns 1 if the check was successful (no problems were found), 
and 0 if the check was unsuccessful (problems were found). 
A list of the specific problems is written to STDERR when C<-options=E<gt>'l'> 
is specified.

=head1 AUTHOR

Wolfgang Bluhm, mail@wbluhm.com

=head2 Acknowledgments

Thanks to Phil Bourne, Helge Weissig, Anne Kuller, Doug Greer, 
Michele Bluhm, and others for support, help, and comments.

=head1 COPYRIGHT

A full copyright statement is provided with the distribution
Copyright (c) 2000 University of California, San Diego

=head1 SEE ALSO

STAR::Parser, STAR::DataBlock, STAR::Dictionary.

=cut