forked from vvo/npm-pkgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
173 lines (144 loc) · 4.5 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
module.exports = npmPkgr;
var async = require('contra');
var fs = require('fs');
var lockfile = require('lockfile');
var mkdirp = require('mkdirp');
var path = require('path');
var rimraf = require('rimraf');
var computeHash = require('./lib/compute-hash');
var installNpm = require('./lib/install-npm');
var lazyCopy = require('./lib/lazy-copy');
var realPath = require('./lib/real-path');
function npmPkgr(opts, cb) {
var debug = require('debug')('npm-pkgr');
console.log('starting npm-pkgr with opts: %j', opts);
opts.args = opts.args || [];
var npmArgs = opts.args.join(' ');
var npmUsed;
var files = ['package.json', 'npm-shrinkwrap.json', '.npmrc'].map(realPath(opts.cwd));
var production = opts.args.indexOf('--production') !== -1;
var npmPkgrCache = path.join(process.env.HOME, '.npm-pkgr');
var lockOpts = {
wait: 2 * 1000,
stale: 60 * 1000,
retries: 30
};
/**
* Flow:
* - create `~/.npm-pkgr`
* - compute project hash (based on dependencies)
* - get cache lock on `~/.npm-pkgr/$hash`
* - create `~/.npm-pkgr/$hash`
* - dir exists?
* - yes
* release cache lock
* get node_modules/
* - no
* copy package.json, npm-shrinkwrap.json into `~/.npm-pkgr/$hash`
* npm install in `~/.npm-pkgr/$hash`
* release cache lock
* get node_modules/
* - error or interrupt at any moment?
* release locks
* rm -rf `~/.npm-pkgr/$hash`
* call cb
* - everything went fine?
* call cb with {
* dir: opts.cwd,
* node_modules: opts.cwd/node_modules
* npm: npmUsed // was npm used in the process?
* }
*/
async.series([
mkdirp.bind(null, npmPkgrCache),
computeHash.bind(null, opts.cwd, production)
], function(err, res) {
if (err) {
return end(err);
}
var hash = res[1];
var cachelock = path.join(npmPkgrCache, hash + '.lock');
var copylock = path.join(npmPkgrCache, hash + '-copy.lock');
var cachedir = path.join(npmPkgrCache, hash);
var cancelAndExit = cancel.bind(null, true);
var destination = path.join(opts.cwd, 'node_modules');
async.series([
lockfile.lock.bind(lockfile, cachelock, lockOpts),
mkdirp.bind(null, cachedir)
], function(err, res) {
debug('cachedir: %s, lockfile: %s', cachedir, cachelock);
if (err) {
return end(err);
}
process.once('SIGTERM', cancelAndExit);
process.once('SIGINT', cancelAndExit);
// mkdirp sends (err, made), made = null means dir already exists
var exists = res[1] === null;
if (exists) {
return async.series([
lockfile.unlock.bind(null, cachelock),
getNodeModules
], end);
}
npmUsed = true;
async.series([
lazyCopy.bind(null, files, cachedir),
installNpm.bind(null, cachedir, npmArgs),
lockfile.unlock.bind(lockfile, cachelock),
getNodeModules
], end);
});
function cancel(exit) {
try {
// save npm-debug.log before deleting everything
if (fs.existsSync(path.join(cachedir, 'npm-debug.log'))) {
fs.writeFileSync(path.join(opts.cwd, 'npm-debug.log'), fs.readFileSync(path.join(cachedir, 'npm-debug.log')))
}
rimraf.sync(cachedir);
lockfile.unlockSync(cachelock);
lockfile.unlockSync(copylock);
} catch (e) {}
if (exit) {
process.exit(1);
}
}
function end(err) {
try {
process.removeListener('SIGTERM', cancelAndExit);
process.removeListener('SIGINT', cancelAndExit);
} catch (e) {}
if (err) {
cancel();
return cb(err);
}
cb(null, {
dir: opts.cwd,
node_modules: destination,
npm: npmUsed
});
}
// externalize
function getNodeModules(cb) {
var ncp = require('ncp');
var get;
if (opts.strategy === 'copy') {
get = ncp.bind(null,
path.join(cachedir, 'node_modules'),
path.join(opts.cwd, 'node_modules'));
} else {
get = fs.symlink.bind(fs,
path.join(cachedir, 'node_modules'),
path.join(opts.cwd, 'node_modules'),
'dir'
)
}
async.series([
lockfile.lock.bind(lockfile, copylock, lockOpts),
rimraf.bind(null, path.join(opts.cwd, 'node_modules')),
// copy or symlink
get,
lockfile.unlock.bind(lockfile, copylock)
], cb);
}
});
}