forked from ekalinin/nodeenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodeenv.py
581 lines (478 loc) · 16.3 KB
/
nodeenv.py
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
nodeenv
~~~~~~~
Node.js virtual environment
:copyright: (c) 2011 by Eugene Kalinin
:license: BSD, see LICENSE for more details.
"""
nodeenv_version = '0.3.8'
import sys
import os
import time
import logging
import optparse
import subprocess
import ConfigParser
join = os.path.join
abspath = os.path.abspath
# ---------------------------------------------------------
# Utils
def create_logger():
"""
Create logger for diagnostic
"""
# create logger
logger = logging.getLogger("nodeenv")
logger.setLevel(logging.INFO)
# monkey patch
def emit(self, record):
msg = self.format(record)
fs = "%s" if getattr(record, "continued", False) else "%s\n"
self.stream.write(fs % msg)
self.flush()
logging.StreamHandler.emit = emit
# create console handler and set level to debug
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
# create formatter
formatter = logging.Formatter(fmt="%(message)s")
# add formatter to ch
ch.setFormatter(formatter)
# add ch to logger
logger.addHandler(ch)
return logger
logger = create_logger()
def parse_args():
"""
Parses command line arguments
"""
parser = optparse.OptionParser(
version=nodeenv_version,
usage="%prog [OPTIONS] ENV_DIR")
parser.add_option('-n', '--node', dest='node',
metavar='NODE_VER', default=get_last_stable_node_version(),
help='The node.js version to use, e.g., '
'--node=0.4.3 will use the node-v0.4.3 '
'to create the new environment. The default is last stable version.')
parser.add_option('-j', '--jobs', dest='jobs', default=2,
help='Sets number of parallel commands at node.js compilation. '
'The default is 2 jobs.')
parser.add_option('-v', '--verbose',
action='store_true', dest='verbose', default=False,
help="Verbose mode")
parser.add_option('-q', '--quiet',
action='store_true', dest='quiet', default=False,
help="Quete mode")
parser.add_option('-r', '--requirement',
dest='requirements', default='', metavar='FILENAME',
help='Install all the packages listed in the given requirements file. '
'Not compatible with --without-npm option.')
parser.add_option('--prompt', dest='prompt',
help='Provides an alternative prompt prefix for this environment')
parser.add_option('-l', '--list', dest='list',
action='store_true', default=False,
help='Lists available node.js versions')
parser.add_option( '--without-ssl', dest='without_ssl',
action='store_true', default=False,
help='Build node.js without SSL support')
parser.add_option( '--debug', dest='debug',
action='store_true', default=False,
help='Build debug variant of the node.js')
parser.add_option( '--profile', dest='profile',
action='store_true', default=False,
help='Enable profiling for node.js')
parser.add_option( '--without-npm', dest='without_npm',
action='store_true', default=False,
help='Install npm in new virtual environment')
parser.add_option('--npm', dest='npm',
metavar='NODE_VER', default='latest',
help='The npm version to use, e.g., '
'--npm=0.3.18 will use the npm-0.3.18.tgz '
'tarball to install. The default is last available version.')
parser.add_option( '--no-npm-clean', dest='no_npm_clean',
action='store_true', default=False,
help='Skip the npm 0.x cleanup. Do cleanup by default.')
parser.add_option('--python-virtualenv', dest='python_virtualenv',
action='store_true', default=False,
help='Add node.js to an existing Python virtualenv')
options, args = parser.parse_args()
if not options.list:
if not args:
print('You must provide a DEST_DIR')
parser.print_help()
sys.exit(2)
if len(args) > 1:
print('There must be only one argument: DEST_DIR (you gave %s)' % (
' '.join(args)))
parser.print_help()
sys.exit(2)
if options.requirements and options.without_npm:
print('These options are not compatible: --requirements, --without-npm')
parser.print_help()
sys.exit(2)
return options, args
def mkdir(path):
"""
Create directory
"""
if not os.path.exists(path):
logger.debug(' * Creating: %s ... ', path, extra=dict(continued=True))
os.makedirs(path)
logger.debug('done.')
else:
logger.debug(' * Directory %s already exists', path)
def writefile(dest, content, overwrite=True):
"""
Create file and write content in it
"""
if not os.path.exists(dest):
logger.debug(' * Writing %s ... ', dest, extra=dict(continued=True))
f = open(dest, 'wb')
f.write(content.encode('utf-8'))
f.close()
logger.debug('done.')
return
else:
f = open(dest, 'rb')
c = f.read()
f.close()
if c != content:
if not overwrite:
logger.info(' * File %s exists with different content; not overwriting', dest)
return
logger.info(' * Overwriting %s with new content', dest)
f = open(dest, 'wb')
f.write(content.encode('utf-8'))
f.close()
else:
logger.debug(' * Content %s already in place', dest)
def callit(cmd, show_stdout=True, in_shell=False,
cwd=None, extra_env=None):
"""
Execute cmd line in sub-shell
"""
all_output = []
cmd_parts = []
for part in cmd:
if len(part) > 45:
part = part[:20]+"..."+part[-20:]
if ' ' in part or '\n' in part or '"' in part or "'" in part:
part = '"%s"' % part.replace('"', '\\"')
cmd_parts.append(part)
cmd_desc = ' '.join(cmd_parts)
logger.debug(" ** Running command %s" % cmd_desc)
if in_shell:
cmd = ' '.join(cmd)
# output
stdout = subprocess.PIPE
# env
if extra_env:
env = os.environ.copy()
if extra_env:
env.update(extra_env)
else:
env = None
# execute
try:
proc = subprocess.Popen(
cmd, stderr=subprocess.STDOUT, stdin=None, stdout=stdout,
cwd=cwd, env=env, shell=in_shell)
except Exception:
e = sys.exc_info()[1]
logger.error("Error %s while executing command %s" % (e, cmd_desc))
raise
stdout = proc.stdout
while stdout:
line = stdout.readline()
if not line:
break
line = line.rstrip()
all_output.append(line)
if show_stdout:
logger.info(line)
proc.wait()
# error handler
if proc.returncode:
for s in all_output:
logger.critical(s)
raise OSError("Command %s failed with error code %s"
% (cmd_desc, proc.returncode))
return proc.returncode, all_output
# ---------------------------------------------------------
# Virtual environment functions
def install_node(env_dir, src_dir, opt):
"""
Download source code for node.js, unpack it
and install it in virtual environment.
"""
logger.info(' * Install node.js (%s) ' % opt.node,
extra=dict(continued=True))
node_name = 'node-v%s'%(opt.node)
tar_name = '%s.tar.gz'%(node_name)
node_url = 'http://nodejs.org/dist/%s'%(tar_name)
node_tar = join(src_dir, tar_name)
node_src_dir = join(src_dir, node_name)
env_dir = abspath(env_dir)
old_chdir = os.getcwd()
cmd = []
cmd.append('curl')
cmd.append('--silent')
cmd.append('-L')
cmd.append(node_url)
cmd.append('|')
cmd.append('tar')
cmd.append('xzf')
cmd.append('-')
cmd.append('-C')
cmd.append(src_dir)
callit(cmd, opt.verbose, True, env_dir)
logger.info('.', extra=dict(continued=True))
env = {'JOBS': str(opt.jobs) }
conf_cmd = []
conf_cmd.append('./configure')
conf_cmd.append('--prefix=%s'%(env_dir))
if opt.without_ssl:
conf_cmd.append('--without-ssl')
if opt.debug:
conf_cmd.append('--debug')
if opt.profile:
conf_cmd.append('--profile')
callit(conf_cmd , opt.verbose, True, node_src_dir, env)
logger.info('.', extra=dict(continued=True))
callit(['make'] , opt.verbose, True, node_src_dir, env)
logger.info('.', extra=dict(continued=True))
callit(['make install'] , opt.verbose, True, node_src_dir, env)
logger.info(' done.')
def install_npm(env_dir, src_dir, opt):
"""
Download source code for npm, unpack it
and install it in virtual environment.
"""
logger.info(' * Install npm.js (%s) ... ' % opt.npm,
extra=dict(continued=True))
cmd = ['. %s && curl %s | clean=%s npm_install=%s bash && deactivate'%(
join(env_dir, 'bin', 'activate'),
'http://npmjs.org/install.sh',
'no' if opt.no_npm_clean else 'yes',
opt.npm)]
callit(cmd, opt.verbose, True)
logger.info('done.')
def install_packages(env_dir, opt):
"""
Install node.js packages via npm
"""
logger.info(' * Install node.js packages ... ',
extra=dict(continued=True))
packages = [ package.replace('\n', '') for package in
open(opt.requirements).readlines() ]
activate_path = join(env_dir, 'bin', 'activate')
if opt.npm == 'latest':
cmd = '. ' + activate_path + \
' && npm install -g %(pack)s'
else:
cmd = '. ' + activate_path + \
' && npm install %(pack)s' + \
' && npm activate %(pack)s'
for package in packages:
callit(cmd=[ cmd % {"pack": package} ],
show_stdout=opt.verbose, in_shell=True)
logger.info('done.')
def install_activate(env_dir, opt):
"""
Install virtual environment activation script
"""
files = {'activate': ACTIVATE_SH}
bin_dir = join(env_dir, 'bin')
mod_dir = join('lib', 'node_modules')
prompt = opt.prompt or '(%s)' % os.path.basename(os.path.abspath(env_dir))
for name, content in files.items():
file_path = join(bin_dir, name)
content = content.replace('__VIRTUAL_PROMPT__', prompt)
content = content.replace('__VIRTUAL_ENV__', os.path.abspath(env_dir))
content = content.replace('__BIN_NAME__', os.path.basename(bin_dir))
content = content.replace('__MOD_NAME__', mod_dir)
writefile(file_path, content)
os.chmod(file_path, 0755)
def modify_python_activate(env_dir, opt):
"""
Modify a Python virtual environment activation script for node.js
"""
bin_dir = join(env_dir, 'bin')
mod_dir = join('lib', 'node_modules')
activate_path = join(bin_dir, 'activate')
activate_contents = open(activate_path).read()
nodeenv_fragment = '''
_OLD_NODE_PATH="NODE_PATH"
NODE_PATH="$VIRTUAL_ENV/__MOD_NAME__"
export NODE_PATH
'''.replace('__MOD_NAME__', mod_dir)
# Splice in this fragment where PATH is set
marker_string = 'PATH="$VIRTUAL_ENV/bin:$PATH"\nexport PATH'
first, second = activate_contents.split(marker_string)
activate_content = first + marker_string + nodeenv_fragment + second
writefile(activate_path, activate_content)
os.chmod(activate_path, 0755)
def create_environment(env_dir, opt):
"""
Creates a new environment in ``env_dir``.
"""
if not opt.python_virtualenv and os.path.exists(env_dir):
logger.info(' * Environment already exists: %s', env_dir)
sys.exit(2)
elif opt.python_virtualenv and \
not os.path.exists(join(env_dir,'bin','activate_this.py')):
logger.info(' * Not a Python virtualenv: %s', env_dir)
sys.exit(2)
src_dir = abspath(join(env_dir, 'src'))
mkdir(src_dir)
save_env_options(env_dir, opt)
install_node(env_dir, src_dir, opt)
# activate script install must be
# before npm install, npm use activate
# for install
if opt.python_virtualenv:
modify_python_activate(env_dir, opt)
else:
install_activate(env_dir, opt)
if not opt.without_npm:
install_npm(env_dir, src_dir, opt)
if opt.requirements:
install_packages(env_dir, opt)
def print_node_versions():
"""
Prints into stdout all available node.js versions
"""
p = subprocess.Popen(
"curl -s http://nodejs.org/dist/ | "
"egrep -o '[0-9]+\.[0-9]+\.[0-9]+' | "
"sort -u -k 1,1n -k 2,2n -k 3,3n -t . ",
shell=True, stdout=subprocess.PIPE)
#out, err = p.communicate()
pos = 0
rowx = []
while 1:
row = p.stdout.readline()
pos += 1
if not row:
logger.info('\t'.join(rowx))
break
if pos%8 == 0:
logger.info('\t'.join(rowx))
rowx =[]
else:
rowx.append(row.replace('\n', ''))
def get_last_stable_node_version():
"""
Return last stable node.js version
"""
p = subprocess.Popen(
"curl -s http://nodejs.org/dist/ | "
"egrep -o '[0-9]+\.[2468]+\.[0-9]+' | "
"sort -u -k 1,1n -k 2,2n -k 3,3n -t . | "
"tail -n1",
shell=True, stdout=subprocess.PIPE)
return p.stdout.readline().replace("\n", "")
def save_env_options(env_dir, opt, file_path='install.cfg'):
"""
Save command line options into config file
"""
section_name = 'options'
config = ConfigParser.RawConfigParser()
config.add_section(section_name)
for o, v in opt.__dict__.items():
config.set(section_name, o, v)
with open(join(env_dir, file_path), 'wb') as configfile:
config.write(configfile)
def main():
"""
Entry point
"""
opt, args = parse_args()
if opt.list:
print_node_versions()
else:
env_dir = args[0]
if opt.quiet:
logger.setLevel(logging.CRITICAL)
create_environment(env_dir, opt)
# ---------------------------------------------------------
# Shell scripts content
ACTIVATE_SH = """
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
# reset old environment variables
if [ -n "$_OLD_VIRTUAL_PATH" ] ; then
PATH="$_OLD_VIRTUAL_PATH"
export PATH
unset _OLD_VIRTUAL_PATH
NODE_PATH="$_OLD_NODE_PATH"
export NODE_PATH
unset _OLD_NODE_PATH
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
hash -r
fi
if [ -n "$_OLD_VIRTUAL_PS1" ] ; then
PS1="$_OLD_VIRTUAL_PS1"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "$1" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
freeze () {
NPM_VER=`npm -v | cut -d '.' -f 1`
if [ "$NPM_VER" != '1' ]; then
NPM_LIST=`npm list installed active 2>/dev/null | cut -d ' ' -f 1 | grep -v npm`
else
NPM_LIST=`npm ls -g | grep -E '^.{4}\w{1}' | grep -o -E '[a-zA-Z\-]+@[0-9]+\.[0-9]+\.[0-9]+' | grep -v npm`
fi
if [ -z "$@" ]; then
echo "$NPM_LIST"
else
echo "$NPM_LIST" > $@
fi
}
# unset irrelavent variables
deactivate nondestructive
VIRTUAL_ENV="__VIRTUAL_ENV__"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/__BIN_NAME__:$PATH"
export PATH
_OLD_NODE_PATH="NODE_PATH"
NODE_PATH="$VIRTUAL_ENV/__MOD_NAME__"
export NODE_PATH
if [ -z "$VIRTUAL_ENV_DISABLE_PROMPT" ] ; then
_OLD_VIRTUAL_PS1="$PS1"
if [ "x__VIRTUAL_PROMPT__" != x ] ; then
PS1="__VIRTUAL_PROMPT__$PS1"
else
if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
fi
fi
export PS1
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
hash -r
fi
"""
if __name__ == '__main__':
main()