-
Notifications
You must be signed in to change notification settings - Fork 214
/
node.js
241 lines (209 loc) · 7.34 KB
/
node.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
/*jshint node:true, browser:false */
var FS = require("q-io/fs");
var MontageBoot = require("./montage");
var Require = require("mr");
var URL = require("url");
var htmlparser = require("htmlparser2");
var DomUtils = htmlparser.DomUtils;
var PATH = require("path");
function findPackage(path) {
var directory = FS.directory(path);
if (directory === path) {
throw new Error("Can't find package");
}
var packageJson = FS.join(directory, "package.json");
return FS.stat(packageJson).then(function (stat) {
if (stat.isFile()) {
return directory;
} else {
return findPackage(directory);
}
});
}
function loadFreeModule(/*program, command, args*/) {
throw new Error("Can't load module that is not in a package");
}
function loadPackagedModule(directory, program/*, command, args*/) {
return MontageBoot.loadPackage(directory)
.then(function (require) {
var id = program.slice(directory.length + 1);
return require.async(id);
});
}
exports.bootstrap = function () {
var command = process.argv.slice(0, 3);
var args = process.argv.slice(2);
var program = args.shift();
return FS.canonical(program).then(function (program) {
return findPackage(program)
.catch(function (error) {
if (error.message === "Can't find package") {
loadFreeModule(program, command, args);
} else {
throw new Error(error);
}
})
.then(function (directory) {
return loadPackagedModule(directory, program, command, args);
});
});
};
MontageBoot.loadPackage = function (location, config) {
if (location.slice(location.length - 1, location.length) !== "/") {
location += "/";
}
config = config || {};
config.overlays = ["node", "server", "montage"];
config.location = URL.resolve(Require.getLocation(), location);
return Require.loadPackage(config.location, config);
};
function getMontageMontageDeserializer() {
if (getMontageMontageDeserializer._promise) {
return getMontageMontageDeserializer._promise;
}
return (getMontageMontageDeserializer._promise = MontageBoot.loadPackage(PATH.join(__dirname, "."))
.then(function (mr) {
return mr.async("./core/serialization/deserializer/montage-deserializer")
.then(function (MontageDeserializerModule) {
return (MontageBoot.MontageDeserializer =
MontageDeserializerModule.MontageDeserializer
);
});
}));
}
Require.delegate = MontageBoot;
function parseHtml(html) {
var dom, error;
var handler = new htmlparser.DomHandler(function (_error, _dom) {
error = _error;
dom = _dom;
});
// although these functions use callbacks they are actually synchronous
var parser = new htmlparser.Parser(handler);
parser.write(html);
parser.done();
if (error) {
throw error;
} else if (!dom) {
throw new Error("HTML parsing did not complete");
}
// wrap the returned array in a pseudo-document object for consistency
return {type: "document", children: dom};
}
function visit(element, visitor) {
var pruned;
var prune = function () {
pruned = true;
};
visitor(element, prune);
if (pruned) {
return;
}
var children = element.children;
var len = children ? children.length : 0;
for (var i = 0; i < len; i++) {
visit(children[i], visitor);
}
}
function getAttribute(element, name) {
return element.attribs ? element.attribs[name] : null;
}
function getText(element) {
return DomUtils.getText(element);
}
function parsePrototypeForModule(prototype) {
return prototype.replace(/\[[^\]]+\]$/, "");
}
function collectSerializationDependencies(text, dependencies) {
var serialization = JSON.parse(text);
Object.keys(serialization).forEach(function (label) {
var description = serialization[label];
if (description.lazy) {
return;
}
if (typeof description.prototype === "string") {
dependencies.push(parsePrototypeForModule(description.prototype));
}
if (typeof description.object === "string") {
dependencies.push(parsePrototypeForModule(description.object));
}
});
return dependencies;
}
function collectHtmlDependencies(dom, dependencies) {
visit(dom, function (element) {
if (DomUtils.isTag(element)) {
if (element.name === "script") {
if (getAttribute(element, "type") === "text/montage-serialization") {
collectSerializationDependencies(getText(element), dependencies);
}
} else if (element.name === "link") {
if (getAttribute(element, "type") === "text/montage-serialization") {
dependencies.push(getAttribute(element, "href"));
}
}
}
});
}
function parseHtmlDependencies(text/*, location*/) {
var dependencies = [];
var dom = parseHtml(text);
collectHtmlDependencies(dom, dependencies);
return dependencies;
}
MontageBoot.TemplateLoader = function (config, load) {
return function (moduleId, module) {
//Adding support for modules like:
//"prototype": "spec/serialization/bindings-spec[Type]",
var bracketIndex = moduleId.indexOf("["),
id;
if (bracketIndex > 0) {
id = moduleId.substr(0, bracketIndex);
}
else {
id = moduleId;
}
var html = id.match(/(.*\/)?(?=[^\/]+\.html$)/);
var serialization = id.match(/(?=[^\/]+\.json$)/); // XXX this is not necessarily a strong indicator of a serialization alone
var meta = id.match(/(?=[^\/]+\.(?:mjson|meta)$)/);
var reelModule = id.match(/(.*\/)?([^\/]+)\.reel\/\2$/);
if (html) {
return load(id, module)
.then(function () {
module.dependencies = parseHtmlDependencies(module.text, module.location);
return module;
});
} else if (serialization) {
return load(id, module)
.then(function () {
module.dependencies = collectSerializationDependencies(module.text, []);
return module;
});
} else if (meta) {
return load(id, module);
} else if (reelModule) {
return load(id, module)
.then(function () {
var reelHtml = URL.resolve(module.location, reelModule[2] + ".html");
return FS.stat(URL.parse(reelHtml).pathname)
.then(function (stat) {
if (stat.isFile()) {
module.extraDependencies = [id + ".html"];
}
}, function (error) {
// not a problem
// montage/ui/loader.reel/loader.html": Error: ENOENT: no such file or directory
console.log(error.message);
});
});
} else {
return load(id, module);
}
};
};
// add the TemplateLoader to the middleware chain
Require.makeLoader = (function (makeLoader) {
return function (config) {
return MontageBoot.TemplateLoader(config, makeLoader(config));
};
})(Require.makeLoader);