1 | #!/bin/bash |
---|
2 | |
---|
3 | echo `basename $0` $@ |
---|
4 | |
---|
5 | no_of_parts=0 |
---|
6 | |
---|
7 | while [ $# -gt 2 ] |
---|
8 | do |
---|
9 | case $1 |
---|
10 | in |
---|
11 | -p) |
---|
12 | no_of_parts=$2 |
---|
13 | shift 2 |
---|
14 | ;; |
---|
15 | |
---|
16 | *) |
---|
17 | echo "The arguments to use are" |
---|
18 | echo "-p: number of parts" |
---|
19 | shift 1 |
---|
20 | ;; |
---|
21 | esac |
---|
22 | done |
---|
23 | |
---|
24 | if [ $# -lt 2 ] |
---|
25 | then |
---|
26 | echo "Usage:" |
---|
27 | echo " compdic [-p <parts>] <wordlist> <automaton>" |
---|
28 | echo "where" |
---|
29 | echo " <wordlist> - file containig a list of words, one per line, iso-8859-2 encoded" |
---|
30 | echo " <automaton> - a file to which the compiled automaton (cor/kor format) shoul be written" |
---|
31 | exit 0 |
---|
32 | fi |
---|
33 | |
---|
34 | if [ $no_of_parts -eq 0 ] |
---|
35 | then |
---|
36 | no_of_parts=$(( `cat $1 | wc -l` / 75000 + 1 )) |
---|
37 | fi |
---|
38 | |
---|
39 | |
---|
40 | echo number of parts: $no_of_parts |
---|
41 | |
---|
42 | tempdir=`mktemp -d /tmp/compdic.XXXXXX` |
---|
43 | |
---|
44 | alphabet=`tempfile -d $tempdir` |
---|
45 | |
---|
46 | cat <<EOF > $alphabet |
---|
47 | <eps> 0 |
---|
48 | a 1 |
---|
49 | A 2 |
---|
50 | ä 3 |
---|
51 | ± 4 |
---|
52 | ¡ 5 |
---|
53 | b 6 |
---|
54 | B 7 |
---|
55 | c 8 |
---|
56 | C 9 |
---|
57 | æ 10 |
---|
58 | Æ 11 |
---|
59 | d 12 |
---|
60 | D 13 |
---|
61 | e 14 |
---|
62 | E 15 |
---|
63 | é 16 |
---|
64 | ê 17 |
---|
65 | Ê 18 |
---|
66 | f 19 |
---|
67 | F 20 |
---|
68 | g 21 |
---|
69 | G 22 |
---|
70 | h 23 |
---|
71 | H 24 |
---|
72 | i 25 |
---|
73 | I 26 |
---|
74 | j 27 |
---|
75 | J 28 |
---|
76 | k 29 |
---|
77 | K 30 |
---|
78 | l 31 |
---|
79 | L 32 |
---|
80 | ³ 33 |
---|
81 | £ 34 |
---|
82 | m 35 |
---|
83 | M 36 |
---|
84 | n 37 |
---|
85 | N 38 |
---|
86 | ñ 39 |
---|
87 | Ñ 40 |
---|
88 | o 41 |
---|
89 | O 42 |
---|
90 | ö 43 |
---|
91 | ó 44 |
---|
92 | Ó 45 |
---|
93 | p 46 |
---|
94 | P 47 |
---|
95 | q 48 |
---|
96 | Q 49 |
---|
97 | r 50 |
---|
98 | R 51 |
---|
99 | s 52 |
---|
100 | S 53 |
---|
101 | ¶ 54 |
---|
102 | Š 55 |
---|
103 | t 56 |
---|
104 | T 57 |
---|
105 | u 58 |
---|
106 | U 59 |
---|
107 | ü 60 |
---|
108 | v 61 |
---|
109 | V 62 |
---|
110 | w 63 |
---|
111 | W 64 |
---|
112 | x 65 |
---|
113 | X 66 |
---|
114 | y 67 |
---|
115 | Y 68 |
---|
116 | z 69 |
---|
117 | Z 70 |
---|
118 | Œ 71 |
---|
119 | ¬ 72 |
---|
120 | ¿ 73 |
---|
121 | ¯ 74 |
---|
122 | 0 75 |
---|
123 | 1 76 |
---|
124 | 2 77 |
---|
125 | 3 78 |
---|
126 | 4 79 |
---|
127 | 5 80 |
---|
128 | 6 81 |
---|
129 | 7 82 |
---|
130 | 8 83 |
---|
131 | 9 84 |
---|
132 | _ 85 |
---|
133 | - 86 |
---|
134 | ? 87 |
---|
135 | ! 88 |
---|
136 | ~ 89 |
---|
137 | ; 90 |
---|
138 | , 91 |
---|
139 | / 92 |
---|
140 | * 93 |
---|
141 | + 94 |
---|
142 | Ö 95 |
---|
143 | EOF |
---|
144 | |
---|
145 | |
---|
146 | no_of_lines=$(( (`cat $1 | wc -l` / $no_of_parts) + 1 )) |
---|
147 | |
---|
148 | split -l $no_of_lines $1 $tempdir/part. |
---|
149 | |
---|
150 | automaton=$tempdir/output.fst |
---|
151 | |
---|
152 | cat <<EOF | fstcompile --acceptor --isymbols=$alphabet > $automaton |
---|
153 | EOF |
---|
154 | |
---|
155 | n=0 |
---|
156 | |
---|
157 | for f in $tempdir/part.* |
---|
158 | do |
---|
159 | temp1=`tempfile -d $tempdir` |
---|
160 | temp2=`tempfile -d $tempdir` |
---|
161 | temp3=`tempfile -d $tempdir` |
---|
162 | |
---|
163 | n=$(( $n + 1 )) |
---|
164 | echo processing part $n |
---|
165 | |
---|
166 | cat $f |\ |
---|
167 | lst2fstext |\ |
---|
168 | fstcompile --acceptor --isymbols=$alphabet |\ |
---|
169 | fstrmepsilon |\ |
---|
170 | fstdeterminize > $temp1 |
---|
171 | fstminimize $temp1 $temp2 |
---|
172 | |
---|
173 | fstunion $automaton $temp2 | fstrmepsilon | fstdeterminize > $temp3 |
---|
174 | fstminimize $temp3 $automaton |
---|
175 | done |
---|
176 | |
---|
177 | echo generating binary automaton file ... |
---|
178 | |
---|
179 | cat $automaton | fsttopsort | fstprint --acceptor --isymbols=$alphabet | fsm2aut | aut2fsa > $2 |
---|
180 | rm -r $tempdir |
---|
181 | |
---|
182 | echo generating cats file ... |
---|
183 | |
---|
184 | cat $1 | cut -d ',' -f 2 | sort -u > $2.cats |
---|