-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAIMLParser.js
132 lines (112 loc) · 2.98 KB
/
AIMLParser.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
/**
*
* This program reads the aiml file and runs the program
*
**/
// this are modules to handle input/output.
var io = require('fs');
var path = require('path');
var process = require('process');
//this are modules that handle aiml xml specific
var DomJS = require('dom-js').DomJS;
var domjs = new DomJS();
var random = require("random-js")();
// initialize variables
var params = {};
var domArr = [];
var domTotal = 0;
var prevRandomReply = '';
var randomReplyArr = [];
var prevAns = '';
var isLoaded = false;
//initialize AIML module
var AIMLParser = function(parameters){
var self = this;
params = parameters;
// 1st function: load all the AIML files
this.load = function(cb){
// .:: step 1: LOOP through all the files ::.
if(!isLoaded){
var currentDir = "./aiml";
io.readdir(currentDir, function(err, files){
if(err){
console.error("Error: Failed to open directory", err);
process.exit(1);
}
files.forEach(function(file,index){
var dirFile = path.join(currentDir,file);
io.stat(dirFile, function(error, stat){
if(error){
console.error("Error: Failed to analyse file.");
return;
}
if(stat.isFile()){
// .:: step 2: OPEN individual files to read ::.
io.readFile(dirFile, 'utf8', function (err,data) {
if(err){
console.error("Error: Failed to read file:" + dirFile);
return;
}
// .:: step 3: STORE the parsed data ::.
domjs.parse(data, function(err, dom){
if(err){
console.error("Error: Failed to parse XML file.");
return;
}
if(dom.name == ! 'aiml'){
console.error("Error: File is NOT aiml.");
return;
}
domArr[domTotal] = dom;
++domTotal;
console.log("read file: " + dirFile);
});
domjs.reset();
});
}
});
});
var loadWrapper = function(cb){
return function(){
if(domTotal == files.length){
isLoaded = true;
return cb();
}
};
};
if(domTotal != files.length){
setTimeout(loadWrapper(cb), 100);
}
});
}
};
// 2nd function: return the phrase
this.reply = function(inputStr,cb){
// .:: step 1: load the aiml file just in case if its not loaded. ::.
var finalReply = this.load(replycb1);
return finalReply;
}
this.debug = function(){
console.log("AIML files loaded successfully.");
console.log("<-- START OF DEBUG -->: " + domTotal);
for(var i=0; i<domTotal; ++i){
console.log(domArr[i]);
console.log();
}
console.log("<-- END OF DEBUG -->");
};
}
// Functions listed below are support functions.
var replycb1 = function(inputStr){
clientInput = clientInput.toLowerCase();
randomReplyArr = [];
var reply = '';
// .:: step 1: text-parsing. remove all spaces from dom
for(var index=0; index<domArr.length; ++index){
removeSpaceFromDom(domArray[i].children);
}
}
var removeSpaceFromDom(){
//do nothing
}
module.exports = AIMLParser;