#!/bin/sh
# Benchmarking Suite
# Copyright 2014-2017 Engineering Ingegneria Informatica S.p.A.
#
# 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.
#
#
# Developed in the ARTIST EU project (www.artist-project.eu) and in the
# CloudPerfect EU project (https://cloudperfect.eu/)

OUTPUT_FILE=benchsuite-rest.log

start() {
    python -m benchsuite.rest.app >> $OUTPUT_FILE 2>&1 &
    echo "Server started."
}

stop() {
    pid=`ps -ef | grep '[p]ython -m benchsuite.rest.app' | awk '{ print $2 }'`
    kill $pid
    sleep 2
    echo "Server killed (pid was $pid)"
}

case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart)
    stop
    start
    ;;
  run)
    python -m benchsuite.rest.app
    ;;
  *)
    echo "Usage: benchsuite-rest {start|stop|restart|run}"
    exit 1
esac
exit 0