1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import subprocess
- import sys
- import setup_util
- import os
- def start(args, logfile, errfile):
- setup_util.replace_text('dart/postgresql.yaml', 'host: .*', 'host: ' + args.database_host)
- try:
- #
- # install dart dependencies
- #
- subprocess.check_call('pub upgrade', shell=True, cwd='dart', stderr=errfile, stdout=logfile)
- #
- # start dart servers
- #
- for port in range(9001, 9001 + args.max_threads):
- subprocess.Popen('dart server.dart -a 127.0.0.1 -p ' + str(port) + ' -d ' + str(args.max_concurrency / args.max_threads), shell=True, cwd='dart', stderr=errfile, stdout=logfile)
- #
- # create nginx configuration
- #
- conf = []
- conf.append('worker_processes ' + str(args.max_threads) + ';')
- conf.append('error_log stderr error;')
- conf.append('events {')
- conf.append(' worker_connections 1024;')
- conf.append('}')
- conf.append('http {')
- conf.append(' access_log off;')
- conf.append(' include /usr/local/nginx/conf/mime.types;')
- conf.append(' default_type application/octet-stream;')
- conf.append(' sendfile on;')
- conf.append(' upstream dart_cluster {')
- for port in range(9001, 9001 + args.max_threads):
- conf.append(' server 127.0.0.1:' + str(port) + ';')
- conf.append(' keepalive ' + str(args.max_concurrency / args.max_threads) + ';')
- conf.append(' }')
- conf.append(' server {')
- conf.append(' listen 8080;')
- conf.append(' location / {')
- conf.append(' proxy_pass http://dart_cluster;')
- conf.append(' proxy_http_version 1.1;')
- conf.append(' proxy_set_header Connection "";')
- conf.append(' }')
- conf.append(' }')
- conf.append('}')
- #
- # write nginx configuration to disk
- #
- with open('dart/nginx.conf', 'w') as f:
- f.write('\n'.join(conf))
- #
- # start nginx
- #
- subprocess.Popen('sudo /usr/local/nginx/sbin/nginx -c `pwd`/nginx.conf', shell=True, cwd='dart', stderr=errfile, stdout=logfile);
- return 0
- except subprocess.CalledProcessError:
- return 1
- def stop(logfile, errfile):
- #
- # stop nginx
- #
- subprocess.check_call('sudo /usr/local/nginx/sbin/nginx -c `pwd`/nginx.conf -s stop', shell=True, cwd='dart', stderr=errfile, stdout=logfile)
- os.remove('dart/nginx.conf')
- #
- # stop dart servers
- #
- p = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE)
- out, err = p.communicate()
- for line in out.splitlines():
- if 'dart' in line and 'run-tests' not in line:
- pid = int(line.split(None, 2)[1])
- os.kill(pid, 15)
- return 0
|