source: app/src/dgp/dgc @ 19dfa5c

help
Last change on this file since 19dfa5c was 19dfa5c, checked in by pawelk <pawelk@…>, 16 years ago

gph i dgc obsluguja configi

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@33 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100755
File size: 5.3 KB
Line 
1#!/usr/bin/perl
2
3#package:       UAM Text Tools
4#component:     dgc (dg compiler)
5#version:       1.0
6#author:        Tomasz Obrebski
7
8# wymaga niejawnie programu canonize!!!!
9#use lib "ENV{HOME}/.utt/lib/perl";
10
11use strict;
12use Getopt::Long;
13use Data::Dumper;
14
15use attr;
16use File::HomeDir;
17
18my $systemconfigfile='/usr/local/etc/utt/dgc.conf';
19my $userconfigfile=home()."/.utt/dgc.conf";
20
21Getopt::Long::Configure('no_ignore_case_always');
22
23my $help=0;
24my $catfile=0;
25my $dicfile=0;
26my $gramfile=0;
27my $outputfile=0;
28
29#read configuration files###########################
30my $file;
31foreach $file ($systemconfigfile, $userconfigfile){
32  if(open(CONFIG, $file)){
33        while (<CONFIG>) {
34                chomp;
35                s/#.*//;
36                s/^\s+//;
37                s/\s+$//;
38                next unless length;
39                my ($name, $value) = split(/\s*=\s*/, $_, 2);
40                if(($name eq "catfile")or($name eq "c")){
41                        $catfile=$value;
42                }
43                elsif(($name eq "dicfile")or($name eq "d")){
44                        $dicfile=$value;
45                }
46                elsif(($name eq "gramfile")or($name eq "g")){
47                        $gramfile=$value;
48                }
49                elsif(($name eq "outputfile")or($name eq "o")){
50                        $outputfile=$value;
51                }
52                elsif(($name eq "help")or($name eq "h")){
53                        $help=1;
54                }
55
56        }
57        close CONFIG;
58  }
59}
60#########################################################
61
62GetOptions("help|h" => \$help,
63           "catfile|c=s" => \$catfile,
64           "dicfile|d=s" => \$dicfile,
65           "gramfile|g=s" => \$gramfile,
66           "outputfile|o=s" => \$outputfile);
67
68if($help)
69{
70    print <<'END'
71Usage: dgc [OPTIONS]
72
73Options:
74   --catfile -c filename        List of syntactic categories.
75   --dicfile -d filename        Dictionary.
76   --gramfile -g filename       List of grammar rules.
77   --outputfile -o filename     Output filename.
78   --help -h                    Help.
79END
80;
81    exit 0;
82}
83
84die("At least one of --cats and --dic must be given.\n") if !$catfile && !$dicfile;
85
86my $ncat=0;
87my $nrole=0;
88my $nsgl=0;
89my $nleft=0;
90my $nright=0;
91my $nreq=0;
92my $nlink=0;
93
94my %cats;
95my %roles;
96my %agr;
97my %gov;
98
99if(!$outputfile) {
100        *OUTPUT = *STDOUT;
101}
102elsif($outputfile eq "-") {
103    *OUTPUT = *STDOUT;
104}
105else {
106        open(OUTPUT, ">$outputfile") or die("Can't open output file: $outputfile!");
107}
108
109
110
111loadcats($catfile) if $catfile;
112extractcats($dicfile) if $dicfile;
113
114
115my $cats_re = qr/(?:$attr::cat_re\s*(?:,\s*$attr::cat_re)*)/;
116
117# class parse_class:
118# /$attr::cat_re/g;
119
120
121if(!$gramfile) { 
122        *INPUT = *STDIN;
123}
124elsif($gramfile eq "-"){
125    *INPUT = *STDIN;
126}
127else {
128        open(INPUT, $gramfile) or die("Unable to open: $gramfile!");
129}
130
131while(<INPUT>)
132{
133    if(/^\s*AGR\s+(\S+)\s+(\S+)\s*$/)
134    {
135        push @{$agr{$1}}, $2;
136    }
137    elsif(/^\s*GOV\s+(\S+)\s+(\S+)\s*$/)
138    {
139        push @{$gov{$1}}, attr::parse($2);
140    }
141    elsif(/^\s*ROLE\s+\S+\s*$/)
142    {
143        $roles{$_}=1;
144        print OUTPUT;
145    }
146    elsif(/^\s*SGL\s+\S+\s*$/)
147    {
148        ++$nsgl;
149        print OUTPUT;
150    }
151    elsif(/^\s*REQ\s+(\S+)\s+(\S+)\s*$/)
152    {
153        print OUTPUT "#$_";
154        my $cat = attr::parse $1;
155        for my $atomcat (keys %cats)
156        {
157            if(attr::match @$cat, @{$cats{$atomcat}})
158            {
159                print OUTPUT "REQ ".$atomcat." $2\n";
160                ++$nreq;
161            }
162        }
163    }
164    elsif(/^\s*LEFT\s+\S+\s*$/)
165    {
166        ++$nleft;
167        print OUTPUT;
168    }
169    elsif(/^\s*RIGHT\s+\S+\s*$/)
170    {
171        ++$nright;
172        print OUTPUT;
173    }
174    elsif(my ($hs,$ds,$r) = /^\s*LINK\s+($cats_re)\s+($cats_re)\s+(\S+)\s*$/)
175    {
176        print OUTPUT "#$_";
177        for my $h ($hs =~ /$attr::cat_re/g)
178        {
179            for my $d ($ds =~ /$attr::cat_re/g)
180            {
181                addlinks($h,$d,$r);
182            }
183        }
184    }
185   
186    else
187    {
188        print OUTPUT;
189    }
190}
191
192
193sub addlinks
194{
195    my ($h,$d,$r) = @_;
196
197    for my $a (@{$agr{$r}}) { print OUTPUT "#AGR $r $a\n"; }
198    for my $c (@{$gov{$r}}) { print OUTPUT "#GOV $r ".attr::unparse(@$c)."\n"; }
199    my $head = attr::parse $h;
200    my $dep = attr::parse $d;
201   
202    for my $atomhead (keys %cats)
203    {
204        if(attr::match @$head, @{$cats{$atomhead}})
205        {
206          DEP:
207            for my $atomdep (keys %cats)
208            {
209                next DEP if ! attr::match @$dep, @{$cats{$atomdep}};
210               
211                for my $a (@{$agr{$r}})
212                {
213                    next DEP if ! attr::agree(@{$cats{$atomhead}},@{$cats{$atomdep}},$a);
214                }
215               
216                for my $c (@{$gov{$r}})
217                {
218                    next DEP if ! attr::match(@$c,@{$cats{$atomdep}});
219                }
220               
221                print OUTPUT "LINK ";
222                print OUTPUT $atomhead." ";
223                print OUTPUT $atomdep." $r\n";
224                ++$nlink;
225               
226            }
227        }
228    }
229}
230
231
232printf STDERR "%6d CAT   statements\n", 0+keys(%cats);
233printf STDERR "%6d ROLE  statements\n", 0+keys(%roles);
234printf STDERR "%6d SGL   statements\n", $nsgl;
235printf STDERR "%6d REQ   statements\n", $nreq;
236printf STDERR "%6d LEFT  statements\n", $nleft;
237printf STDERR "%6d RIGHT statements\n", $nright;
238printf STDERR "%6d LINK  statements\n", $nlink;
239
240
241sub extractcats
242{
243    my $file = shift;
244    open DICFILE, "canonize $file |";
245    while(<DICFILE>)
246    {
247        while(/,([^[:space:];]+)/g)
248        {
249            my $cat=$1;
250            next if !$cat || exists $cats{$cat};
251            $ncat++;
252            print OUTPUT "CAT $1\n";
253            $cats{$cat}=attr::parse($cat);
254        }
255    }
256    close DICFILE;
257}
258
259
260sub loadcats
261{
262    my $file = shift;
263    open CATFILE, "canonize $file |";
264    while(<CATFILE>)
265    {
266        tr/ \t\n//d;
267        next if !$_ || exists $cats{$_};
268        print OUTPUT "CAT $_\n";
269        ++$ncat;
270        $cats{$_}=attr::parse($_);
271    }
272    close CATFILE;
273}
274
Note: See TracBrowser for help on using the repository browser.