blob: d39c44544ff9cae0168cf253e19162c67797bb60 (
plain)
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
|
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
from __future__ import absolute_import
import inspect
import logging
from six.moves import filter
from flasgger import Swagger
from flask import Flask
from flask_restful import Api
from api.database import Base
from api.database import db_session
from api.database import engine
from api.database.v1 import models
from api.urls import urlpatterns
from yardstick import _init_logging
logger = logging.getLogger(__name__)
app = Flask(__name__)
Swagger(app)
api = Api(app)
@app.teardown_request
def shutdown_session(exception=None):
db_session.remove()
for u in urlpatterns:
api.add_resource(u.resource, u.url, endpoint=u.endpoint)
def init_db():
def func(a):
try:
if issubclass(a[1], Base):
return True
except TypeError:
pass
return False
subclses = filter(func, inspect.getmembers(models, inspect.isclass))
logger.debug('Import models: %s', [a[1] for a in subclses])
Base.metadata.create_all(bind=engine)
def app_wrapper(*args, **kwargs):
init_db()
return app(*args, **kwargs)
if __name__ == '__main__':
_init_logging()
logger.setLevel(logging.DEBUG)
logger.info('Starting server')
init_db()
app.run(host='0.0.0.0')
|