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