|
@@ -1,75 +0,0 @@
|
|
|
-import subprocess
|
|
|
-import sys
|
|
|
-import setup_util
|
|
|
-import os
|
|
|
-
|
|
|
-def start(args, logfile, errfile):
|
|
|
- setup_util.replace_text('dart-stream/postgresql.yaml', 'host: .*', 'host: ' + args.database_host)
|
|
|
- setup_util.replace_text('dart-stream/mongodb.yaml', 'host: .*', 'host: ' + args.database_host)
|
|
|
- try:
|
|
|
- #
|
|
|
- # install dart dependencies
|
|
|
- #
|
|
|
- subprocess.check_call('$IROOT/dart-sdk/bin/pub upgrade', shell=True, cwd='dart-stream', 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-stream', stderr=errfile, stdout=logfile)
|
|
|
- #
|
|
|
- # create nginx configuration
|
|
|
- #
|
|
|
- conf = []
|
|
|
- conf.append('worker_processes ' + str(args.max_threads) + ';')
|
|
|
- conf.append('error_log /dev/null 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-stream/nginx.conf', 'w') as f:
|
|
|
- f.write('\n'.join(conf))
|
|
|
- #
|
|
|
- # start nginx
|
|
|
- #
|
|
|
- subprocess.Popen('sudo /usr/local/nginx/sbin/nginx -c $TROOT/nginx.conf', shell=True, cwd='dart-stream', 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 $TROOT/nginx.conf -s stop', shell=True, cwd='dart-stream', stderr=errfile, stdout=logfile)
|
|
|
- os.remove('dart-stream/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 and 'run-ci' not in line:
|
|
|
- pid = int(line.split(None, 2)[1])
|
|
|
- os.kill(pid, 15)
|
|
|
- return 0
|