#!python

from grlc.server import app as grlc_app
from grlc import static
from sys import platform


def runViaWaitress():
    from waitress import serve
    serve(grlc_app, listen='*:8088')

def runViaGunicorn():
    from gunicorn.app.base import BaseApplication
    from gunicorn.six import iteritems
    class StandaloneApplication(BaseApplication):
        def __init__(self, app, options=None):
            self.options = options or {}
            self.application = app
            super(StandaloneApplication, self).__init__()

        def load_config(self):
            config = dict([(key, value) for key, value in iteritems(self.options)
                           if key in self.cfg.settings and value is not None])
            for key, value in iteritems(config):
                self.cfg.set(key.lower(), value)

        def load(self):
            return self.application

    options = {
        'bind': '%s:%d' % ('0.0.0.0', 8088),
        'workers': 20,
        'debug': static.LOG_DEBUG_MODE
    }
    StandaloneApplication(grlc_app, options).run()

if __name__ == '__main__':
    if platform=='win32':
        runViaWaitress()
    else:
        runViaGunicorn()
