forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.js
375 lines (309 loc) · 10.6 KB
/
deploy.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
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
// Copyright 2012 Selenium committers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview Script used to prepare WebDriverJS as a Node module.
*/
'use strict';
var assert = require('assert'),
fs = require('fs'),
path = require('path'),
vm = require('vm');
var optparse = require('./optparse');
var CLOSURE_BASE_REGEX = /^var goog = goog \|\| \{\};/;
var REQUIRE_REGEX = /^goog\.require\s*\(\s*[\'\"]([^\)]+)[\'\"]\s*\);?$/;
var PROVIDE_REGEX = /^goog\.provide\s*\(\s*[\'\"]([^\)]+)[\'\"]\s*\);?$/;
/**
* Map of file paths to a hash of what symbols that file provides and requires.
* @type {!Object.<{provides: !Array.<string>,
* requires: !Array.<string>}>}
*/
var FILE_INFO = {};
/**
* Map of symbol to path of the file that provides it.
* @type {!Object.<string>}
*/
var PROVIDERS = {};
/**
* Map of unprovided symbols to a list of files that require it.
* @type {!Object.<!Array.<string>>}
*/
var UNPROVIDED = {};
/**
* Maps file paths to their location in the lib/ directory.
* @type {!Object.<string>}
*/
var CONTENT_MAP = {};
/**
* Records a dependency on a symbol from a specific file.
* @param {string} path Path to the file that requires the symbol.
* @param {string} symbol The provided symbol.
*/
function addRequiredEdge(path, symbol) {
var provider = PROVIDERS[symbol];
if (!provider) {
UNPROVIDED[symbol] = UNPROVIDED[symbol] || [];
UNPROVIDED[symbol].push(path);
}
}
/**
* Records a symbol as being provided by a specific file.
* @param {string} path Path to the file that provides the symbol.
* @param {string} symbol The provided symbol.
*/
function updateProviders(path, symbol) {
var provider = PROVIDERS[symbol];
if (provider) {
throw Error('Duplicate provide: ' + symbol + ':' +
'\n ' + provider + '\n ' + path);
}
PROVIDERS[symbol] = path;
var pendingRequires = UNPROVIDED[symbol];
if (pendingRequires) {
delete UNPROVIDED[symbol];
pendingRequires.forEach(function(path) {
addRequiredEdge(path, symbol);
});
}
}
/**
* Parses a file for closure dependency info.
* @param {string} path Path to the file to parse.
*/
function parseFile(path) {
var contents = fs.readFileSync(path, 'utf8');
var info = {provides: [], requires: []};
FILE_INFO[path] = info;
contents.split(/\n/).forEach(function(line) {
var match = line.match(REQUIRE_REGEX);
if (match) {
info.requires.push(match[1]);
addRequiredEdge(path, match[1]);
} else if (match = line.match(PROVIDE_REGEX)) {
info.provides.push(match[1]);
updateProviders(path, match[1]);
} else if (line.match(CLOSURE_BASE_REGEX)) {
updateProviders(path, 'goog');
}
});
}
/**
* @param {!Array.<string>} filePaths Paths to the library files to resolve.
* @param {!Array.<string>} contentRoots Paths for the content roots.
*/
function processLibraryFiles(filePaths, contentRoots) {
var seen = {};
filePaths.forEach(function(filePath) {
if (seen[filePath]) return;
seen[filePath] = 1;
if (fs.statSync(filePath).isDirectory()) {
expandDir(filePath);
} else {
processFile(filePath);
}
});
function processFile(filePath) {
assert.ok(contentRoots.some(function(root) {
if (filePath.substring(0, root.length) === root) {
CONTENT_MAP[filePath] = filePath.substring(root.length + 1);
return true;
}
}), 'File does not belong to a content root: ' + filePath);
parseFile(filePath);
}
function expandDir(dirPath) {
if (path.basename(dirPath) === '.svn') return;
fs.readdirSync(dirPath).forEach(function(file) {
file = path.join(dirPath, file);
if (fs.statSync(file).isDirectory()) {
expandDir(file);
} else if (file.substring(file.length - 3) === '.js') {
processFile(file);
}
});
}
}
/**
* @param {string} srcDir Path to the main source directory.
* @param {string} outputDirPath Path to the directory to copy src files to.
*/
function copySrcs(srcDir, outputDirPath) {
var filePaths = fs.readdirSync(srcDir);
filePaths.forEach(function(filePath) {
filePath = path.join(srcDir, filePath);
if (fs.statSync(filePath).isDirectory()) {
copySrcs(filePath, path.join(outputDirPath, path.basename(filePath)));
} else {
var dest = path.join(outputDirPath, path.basename(filePath));
copyFile(filePath, dest);
}
});
}
function copyLibraries(outputDirPath, filePaths) {
// Always copy over Closure base.
var base = PROVIDERS['goog'];
var googDirPath = path.join(outputDirPath, 'lib', CONTENT_MAP[base]);
googDirPath = path.dirname(googDirPath);
copy(base);
var depsFileContents = [
'// This file has been auto-generated; do not edit by hand'
];
var seenSymbols = {};
var seenFiles = {};
var symbols = [];
var providedSymbols = [];
filePaths.filter(function(path) {
return !fs.statSync(path).isDirectory();
}).forEach(function(path) {
providedSymbols = providedSymbols.concat(FILE_INFO[path].provides);
symbols = symbols.concat(FILE_INFO[path].requires);
});
providedSymbols.forEach(resolveDeps);
symbols.forEach(resolveDeps);
var depsPath = path.join(outputDirPath, 'lib', 'deps.js');
fs.writeFileSync(depsPath, depsFileContents.join('\n') + '\n', 'utf8');
function resolveDeps(symbol) {
if (seenSymbols[symbol]) return;
seenSymbols[symbol] = true;
if (UNPROVIDED[symbol]) {
throw Error('Missing provider for ' + JSON.stringify(symbol) +
'; required in\n ' + UNPROVIDED[symbol].join('\n '));
}
var file = PROVIDERS[symbol];
if (seenFiles[file]) return;
seenFiles[file] = true;
copy(file);
var outputPath = pathFor(file);
var relativePath = path.relative(googDirPath, outputPath);
depsFileContents.push([
'goog.addDependency(',
JSON.stringify(relativePath), ', ',
JSON.stringify(FILE_INFO[file].provides), ', ',
JSON.stringify(FILE_INFO[file].requires),
');'
].join(''));
FILE_INFO[file].requires.forEach(resolveDeps);
}
function pathFor(file) {
return path.join(outputDirPath, 'lib', CONTENT_MAP[file]);
}
function copy(filePath) {
var dest = pathFor(filePath);
copyFile(filePath, dest);
}
}
function copyFile(src, dest) {
createDirectoryIfNecessary(path.dirname(dest));
var buffer = fs.readFileSync(src);
fs.writeFileSync(dest, buffer);
}
function copyDirectory(baseDir, dest, exclusions) {
createDirectoryIfNecessary(dest);
if (!fs.statSync(dest).isDirectory()) {
throw Error(dest + ' is not a directory!');
}
fs.readdirSync(path.resolve(baseDir)).
map(function(filePath) {
return path.join(baseDir, filePath);
}).
filter(function(filePath) {
return !exclusions.some(function(exclusion) {
return exclusion.test(filePath);
});
}).
forEach(function(srcFile) {
var destFile = path.join(dest, srcFile.substring(baseDir.length));
if (fs.statSync(srcFile).isDirectory()) {
copyDirectory(srcFile, destFile, exclusions);
} else {
copyFile(path.resolve(srcFile), destFile);
}
});
}
function createDirectoryIfNecessary(dirPath) {
var toCreate = [];
var current = dirPath;
while (!fs.existsSync(current)) {
toCreate.push(path.basename(current));
current = path.dirname(current);
}
while (toCreate.length) {
current = path.join(current, toCreate.pop());
fs.mkdirSync(current);
}
}
function copyResources(outputDirPath, resources, exclusions) {
resources.forEach(function(resource) {
var parts = resource.split(':', 2);
var src = path.resolve(parts[0]);
var dest = outputDirPath;
var isAbsolute = path.resolve(parts[1]) === parts[1];
if (!isAbsolute) {
dest = path.join(dest, 'lib');
}
dest = path.join(dest, parts[1]);
if (fs.statSync(src).isDirectory()) {
copyDirectory(parts[0], dest, exclusions);
} else {
copyFile(src, dest);
}
});
}
function main() {
var parser = new optparse.OptionParser().
path('output', { help: 'Path to the output directory' }).
path('src', {
help: 'Path to the module source directory. The entire contents of ' +
'this directory will be copied recursively to the main output ' +
'directory.'
}).
path('lib', {
help: 'Path to a library file that should be copied to the lib/ ' +
'sub-directory. This file will only be copied over if it is ' +
'included in the transitive closure of a src file\'s ' +
'dependencies. If a directory is specified, it will be ' +
'recursively scanned for its .js files',
list: true
}).
path('root', {
help: 'A content root for mapping input files to their location under' +
' lib/. Each lib file will have its path stripped of any leading' +
' content roots befor being copied to the lib/ directory. Each ' +
'lib file must belong to a directory under a content root.',
list: true
}).
string('resource', {
help: 'A resource which should be copied into the final module, in ' +
'the form of a ":" colon separated pair, the first part ' +
'designating the source, and the second its destination. If ' +
'the destination path is absolute, it is relative to the ' +
'module root, otherwise it will be treated relative to the ' +
'lib/ directory. If the source refers to a directory, the ' +
'recursive contents of that directory will be copied to the ' +
'destination directory.',
list: true
}).
regex('exclude_resource', {
help: 'A pattern for files to exclude when copying ' +
'an entire directory of resources.',
list: true
});
parser.parse();
var options = parser.options;
processLibraryFiles(options.lib, options.root);
copySrcs(options.src, options.output);
copyLibraries(options.output, options.lib);
copyResources(options.output, options.resource, options.exclude_resource);
}
assert.strictEqual(module, require.main, 'This module may not be included');
main();