forked from stanfordnlp/CoreNLP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpanishXMLTreeReader.java
312 lines (260 loc) · 9.22 KB
/
SpanishXMLTreeReader.java
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
302
303
304
305
306
307
308
309
310
311
312
package edu.stanford.nlp.trees.international.spanish;
import java.io.*;
import java.util.*;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
import edu.stanford.nlp.io.ReaderInputStream;
import edu.stanford.nlp.ling.CoreAnnotations;
import edu.stanford.nlp.ling.CoreLabel;
import edu.stanford.nlp.ling.HasCategory;
import edu.stanford.nlp.ling.HasContext;
import edu.stanford.nlp.ling.HasIndex;
import edu.stanford.nlp.ling.HasTag;
import edu.stanford.nlp.ling.HasWord;
import edu.stanford.nlp.ling.Label;
import edu.stanford.nlp.ling.Sentence;
import edu.stanford.nlp.trees.LabeledScoredTreeFactory;
import edu.stanford.nlp.trees.Tree;
import edu.stanford.nlp.trees.TreeFactory;
import edu.stanford.nlp.trees.TreeNormalizer;
import edu.stanford.nlp.trees.TreeReader;
import edu.stanford.nlp.trees.TreeReaderFactory;
import edu.stanford.nlp.trees.TreebankLanguagePack;
import edu.stanford.nlp.util.Generics;
import edu.stanford.nlp.util.XMLUtils;
/**
* A reader for XML format Spanish Treebank files.
*
* @author Jon Gauthier
* @author Spence Green (original French XML reader)
*
*/
public class SpanishXMLTreeReader implements TreeReader {
private InputStream stream;
private final TreeNormalizer treeNormalizer;
private final TreeFactory treeFactory;
private static final String NODE_SENT = "sentence";
private static final String ATTR_WORD = "wd";
private static final String ATTR_LEMMA = "lem";
private static final String ATTR_FUNC = "func";
private static final String ATTR_NAMED_ENTITY = "ne";
private static final String ATTR_POS = "pos";
private static final String ATTR_ELLIPTIC = "elliptic";
private static final String EMPTY_LEAF = "-NONE-";
private NodeList sentences;
private int sentIdx;
/**
* Read parse trees from a Reader.
*
* @param in The <code>Reader</code>
*/
public SpanishXMLTreeReader(Reader in, boolean ccTagset) {
// TODO custom tree normalization a la French reader?
this(in, new LabeledScoredTreeFactory(), new TreeNormalizer());
}
/**
* Read parse trees from a Reader.
*
* @param in Reader
* @param tf TreeFactory -- factory to create some kind of Tree
* @param tn the method of normalizing trees
*/
public SpanishXMLTreeReader(Reader in, TreeFactory tf, TreeNormalizer tn) {
TreebankLanguagePack tlp = new SpanishTreebankLanguagePack();
stream = new ReaderInputStream(in,tlp.getEncoding());
treeFactory = tf;
treeNormalizer = tn;
DocumentBuilder parser = XMLUtils.getXmlParser();
try {
final Document xml = parser.parse(stream);
final Element root = xml.getDocumentElement();
sentences = root.getElementsByTagName(NODE_SENT);
sentIdx = 0;
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public void close() {
try {
if(stream != null) {
stream.close();
stream = null;
}
} catch (IOException e) {
//Silently ignore
}
}
public Tree readTree() {
Tree t = null;
while(t == null && sentences != null && sentIdx < sentences.getLength()) {
int thisSentenceId = sentIdx++;
Node sentRoot = sentences.item(thisSentenceId);
t = getTreeFromXML(sentRoot);
if(t != null) {
t = treeNormalizer.normalizeWholeTree(t, treeFactory);
// TODO calculate sentence IDs -- why can't we just use sentIdx?
if(t.label() instanceof CoreLabel) {
// String ftbId = ((Element) sentRoot).getAttribute(ATTR_NUMBER);
// ((CoreLabel) t.label()).set(CoreAnnotations.SentenceIDAnnotation.class, ftbId);
((CoreLabel) t.label()).set(CoreAnnotations.SentenceIDAnnotation.class,
Integer.toString(thisSentenceId));
}
}
}
return t;
}
private boolean isWordNode(Element node) {
return node.hasAttribute(ATTR_WORD);
}
private boolean isEllipticNode(Element node) {
return node.hasAttribute(ATTR_ELLIPTIC);
}
/**
* Extract the morphological analysis from a leaf. Note that the "ee" field
* contains the relativizer flag.
*
* @param node
*/
// private String getMorph(Element node) {
// String ee = node.getAttribute(ATTR_EE);
// return ee == null ? "" : ee;
// }
/**
* Get the POS subcategory.
*
* @param node
* @return
*/
// private String getSubcat(Element node) {
// String subcat = node.getAttribute(ATTR_SUBCAT);
// return subcat == null ? "" : subcat;
// }
private String getWord(Element node) {
String word = node.getAttribute(ATTR_WORD);
if (word.equals(""))
return EMPTY_LEAF;
return word.trim();
}
private Tree getTreeFromXML(Node root) {
final Element eRoot = (Element) root;
if (isWordNode(eRoot)) {
return buildWordNode(eRoot);
} else if (isEllipticNode(eRoot)) {
return buildEllipticNode(eRoot);
} else {
List<Tree> kids = new ArrayList<Tree>();
for(Node childNode = eRoot.getFirstChild(); childNode != null;
childNode = childNode.getNextSibling()) {
if(childNode.getNodeType() != Node.ELEMENT_NODE) continue;
Tree t = getTreeFromXML(childNode);
if(t == null) {
System.err.printf("%s: Discarding empty tree (root: %s)%n", this.getClass().getName(),childNode.getNodeName());
} else {
kids.add(t);
}
}
String rootLabel = eRoot.getNodeName().trim();
Tree t = (kids.size() == 0) ? null : treeFactory.newTreeNode(treeNormalizer.normalizeNonterminal(rootLabel), kids);
return t;
}
}
/**
* Build a parse tree node corresponding to the word in the given XML node.
*/
private Tree buildWordNode(Node root) {
Element eRoot = (Element) root;
// TODO make sure there are no children as well?
String posStr = eRoot.getAttribute(ATTR_POS);
posStr = treeNormalizer.normalizeNonterminal(posStr);
String lemma = eRoot.getAttribute(ATTR_LEMMA);
String word = getWord(eRoot);
// TODO
// String morph = getMorph(eRoot);
// String subcat = getSubcat(eRoot);
String leafStr = treeNormalizer.normalizeTerminal(word);
Tree leafNode = treeFactory.newLeaf(leafStr);
if (leafNode.label() instanceof HasWord)
((HasWord) leafNode.label()).setWord(leafStr);
if (leafNode.label() instanceof CoreLabel && lemma != null) {
((CoreLabel) leafNode.label()).setLemma(lemma);
}
// TODO
// if (leafNode.label() instanceof HasContext) {
// ((HasContext) leafNode.label()).setOriginalText(morph);
// }
// if (leafNode.label() instanceof HasCategory) {
// ((HasCategory) leafNode.label()).setCategory(subcat);
// }
List<Tree> kids = new ArrayList<Tree>();
kids.add(leafNode);
Tree t = treeFactory.newTreeNode(posStr, kids);
if (t.label() instanceof HasTag) ((HasTag) t.label()).setTag(posStr);
return t;
}
/**
* Build a parse tree node corresponding to an elliptic node in the parse XML.
*/
private Tree buildEllipticNode(Node root) {
Element eRoot = (Element) root;
String constituentStr = eRoot.getNodeName();
List<Tree> kids = new ArrayList<Tree>();
Tree leafNode = treeFactory.newLeaf(EMPTY_LEAF);
if (leafNode.label() instanceof HasWord)
((HasWord) leafNode.label()).setWord(EMPTY_LEAF);
kids.add(leafNode);
Tree t = treeFactory.newTreeNode(constituentStr, kids);
return t;
}
/**
* For debugging.
*
* @param args
*/
public static void main(String[] args) {
if(args.length < 1) {
System.err.printf("Usage: java %s tree_file(s)%n%n",
SpanishXMLTreeReader.class.getName());
System.exit(-1);
}
List<File> fileList = new ArrayList<File>();
for(int i = 0; i < args.length; i++)
fileList.add(new File(args[i]));
TreeReaderFactory trf = new SpanishXMLTreeReaderFactory(false);
int totalTrees = 0;
Set<String> morphAnalyses = Generics.newHashSet();
try {
for(File file : fileList) {
TreeReader tr = trf.newTreeReader(new BufferedReader(new InputStreamReader(new FileInputStream(file), "ISO-8859-1")));
Tree t;
int numTrees;
String canonicalFileName = file.getName().substring(0, file.getName().lastIndexOf('.'));
for(numTrees = 0; (t = tr.readTree()) != null; numTrees++) {
String ftbID = ((CoreLabel) t.label()).get(CoreAnnotations.SentenceIDAnnotation.class);
System.out.printf("%s-%s\t%s%n",canonicalFileName, ftbID, t.toString());
List<Label> leaves = t.yield();
for(Label label : leaves) {
if(label instanceof CoreLabel)
morphAnalyses.add(((CoreLabel) label).originalText());
}
}
tr.close();
System.err.printf("%s: %d trees%n",file.getName(),numTrees);
totalTrees += numTrees;
}
//wsg2011: Print out the observed morphological analyses
// for(String analysis : morphAnalyses)
// System.err.println(analysis);
System.err.printf("%nRead %d trees%n",totalTrees);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}