This repository has been archived by the owner on Dec 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
251 lines (211 loc) · 6.44 KB
/
index.js
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
'use strict';
var cheerio = require('cheerio'),
kuler = require("kuler"),
args = require("args"),
async = require("async"),
argv = process.argv,
fs = require('fs'),
path = require('path');
/* ------------- */
/* CLI OPTIONS */
/* ------------- */
var options = args.Options.parse([
{
name: 'help',
shortName: 'h',
help: 'Get Help',
defaultValue : null,
type : "bool",
required : false
},
{
name: 'input',
shortName: 'i',
help: 'Input folder or XML file',
defaultValue : null,
required : true
},
{
name: 'list',
shortName: 'l',
help: 'Input TBX list version 1.4',
defaultValue : null,
required : true
}
]);
// Parse cli options
var parsed = args.parser(argv).parse(options);
/* ----------- */
/* SPLIT VAL */
/* ----------- */
if(parsed.attribut){
var attVal = (parsed.attribut).split("::").length > 1 ? (parsed.attribut).split("::")[1].split(",,") : 0 ,
attName = (parsed.attribut).split("::").length > 1 ? (parsed.attribut).split("::")[0] : parsed.attribut ;
}
/* ----------- */
/* CHECK ARGS */
/* ----------- */
if(parsed.help){
// Affichage aide
console.info(options.getHelp());
return;
}
if(!parsed.input){
console.info(kuler("Please indicate XML File/Folder , see help" , "red"));
return;
}
if(!parsed.list){
console.info(kuler("Please indicate TBX V1.4 list , see help" , "red"));
return;
}
/* ------------- */
/* PATH 2 STRING */
/* ------------- */
parsed.input = (parsed.input).toString();
parsed.list = (parsed.list).toString();
// termObj will contains info of termEntries
var termObj = {},
nbDone = 0;
/* --------------------*/
/* Load TBX 1.4 LIST */
/* --------------------*/
fs.readFile(parsed.list, (err, data) => {
if(err) throw kuler(err , "red");
console.time("listeTBX");
//Charge la list TBX 1.4 dans cheerio
var $ = cheerio.load(data, {
normalizeWhitespace: true,
xmlMode: true
});
// Pour chaque termEntry
async.each($("termEntry") , (termEntry , next) => {
var obj = {},
iTermEntry = $(termEntry),
term = iTermEntry.find("term").first().text().replace(/\s|_/g, '').toLowerCase();
obj.termpilot = iTermEntry.find("termNote[type='termPilot']").first().text().replace(/\s|_/g, '').toLowerCase();
obj.formList = iTermEntry.find("descrip[type='formList']").first().text().replace(/\s|_/g, '').toLowerCase();
obj.xmlid = iTermEntry.attr("xml:id").split("-")[1];
obj.term = term;
termObj[term] = obj;
// termEntry suivant
next();
}, err => {
if(err) throw kuler(err , "red");
console.timeEnd("listeTBX");
//Tous termEntry Chargé , on charge corpus
checkPath(parsed.input, err => {
if (err) throw err;
console.log(kuler('\n All done !' , "green"));
});
});
});
/* --------------------*/
/* convertSpanCorresp */
/* --------------------*/
function convertSpanCorresp(pathXML, callback) {
// Chargement fichier
fs.readFile(pathXML, (err, file) => {
if (err) return callback(err);
// Fichier dans cheerio
var $ = cheerio.load(file, {
normalizeWhitespace: true,
xmlMode: true,
decodeEntities : false
});
var spans = $('spanGrp[type="candidatsTermes"] span');
// Pour chaque span ...
async.each(spans, (span, nextSpan) => {
var iSpan = $(span),
expressionL = "\"" + iSpan.attr("lemma") + "\"",
expression = expressionL.replace(/\s|_/g, '').toLowerCase(),
corresp = iSpan.attr("corresp");
var matched = {};
// Pour chaque obj de la list crée
async.each(termObj, (obj, nextObj) => {
if(obj.formList.indexOf(expression) > (-1)){
matched[obj.xmlid] = obj;
}
nextObj();
}, (err) => {
if(err) return callback(err);
var nbOfMatch = Object.keys(matched).length;
// Si il n'y a aucun match :
if (nbOfMatch < 1) {
// Si c'est un corresp avec attribut smarties (Obligatoire)
if(corresp.indexOf("smarties") > (-1)){
console.error("Pas de correspondance trouvé pour " + pathXML + " corresp : " + corresp)
}
// Sinon c'est juste un 2.0
else {
iSpan.attr("corresp" , "#TS2.0-entry-" + (corresp).replace("#entry-" , ""));
}
return nextSpan();
}
// Si plus d'un match => comparaison avec lemme
else if (nbOfMatch > 1) {
var target = iSpan.attr("target").split(" "),
lemma = "";
//Recreation du lemme a partir des targets
for(var i = 0 ; i < target.length ; i++){
lemma = lemma + $('spanGrp[type="wordForms"] span[target="' + target[i] + '"]').attr("lemma").replace(/\s|_/g, '').toLowerCase();
}
console.error("==========================");
console.error("Verif du lemme pour : " + pathXML + " corresp : " + corresp + " (Expression : " + expressionL + " / Lemma : " + lemma + ") ");
console.error("Possibilité : ", matched);
// Pour chaque match: garde suivant le lemme
for(var index in matched){
if(matched[index].term == lemma){
console.error("Choix : " + matched[index].xmlid);
matched = matched[index];
break;
}
}
console.error("==========================");
}
// Si un seul match
else{
matched = matched[Object.keys(matched)[0]];
}
var ts1 = "#TS1.4-entry-" + (matched.xmlid).replace("#entry-" , ""),
ts2 = (corresp.indexOf("smarties") > (-1)) ? null : "#TS2.0-entry-" + (corresp).replace(/#entry-|#smarties-/ , ""),
ts = ts2 ? ts2 + "-" + ts1 : ts1;
iSpan.attr("corresp" , ts );
nextSpan();
});
}, (err) => {
if (err) return callback(err);
process.stdout.write(kuler("Fichier(s) traité(s) : " + nbDone++ + "\r", "orange"));
// Tous les spans traités , ecriture dans le fichier
fs.writeFile(pathXML, $.xml(), callback);
});
});
};
/* --------------------------------- */
/* Recursive Check & load Files */
/* --------------------------------- */
function checkPath(path2check, done) {
path2check = path.resolve(path2check);
// Verifie Si c'est dossier | fichiers
fs.stat(path2check , (err, stats) => {
if(err) throw kuler(err , "red");
// Si c'est un fichier
if (!stats.isDirectory()) {
return convertSpanCorresp(path2check, done);
}
// Si c'ets un dossier.
fs.readdir(path2check , (err , list) => {
if (err) throw err;
var filesToExecFolder = list.length;
if(!filesToExecFolder) return;
(function parseNext() {
var file = list.pop();
if (!file) { return done(); }
file = path.resolve(path2check, file);
checkPath(file, err => {
if (err) return done(err);
parseNext();
});
})();
});
});
}