2
# vim: tabstop=4 shiftwidth=4 softtabstop=4
4
# Copyright [2010] [Anso Labs, LLC]
6
# Licensed under the Apache License, Version 2.0 (the "License");
7
# you may not use this file except in compliance with the License.
8
# You may obtain a copy of the License at
10
# http://www.apache.org/licenses/LICENSE-2.0
12
# Unless required by applicable law or agreed to in writing, software
13
# distributed under the License is distributed on an "AS IS" BASIS,
14
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
# See the License for the specific language governing permissions and
16
# limitations under the License.
18
Tornado daemon for the main API endpoint.
23
from nova import vendor
24
from tornado import httpserver
25
from tornado import ioloop
27
from nova import flags
29
from nova import server
30
from nova import utils
31
from nova.auth import users
32
from nova.endpoint import admin
33
from nova.endpoint import api
34
from nova.endpoint import cloud
40
user_manager = users.UserManager()
42
'Cloud': cloud.CloudController(),
43
'Admin': admin.AdminController(user_manager)
45
_app = api.APIServerApplication(user_manager, controllers)
47
conn = rpc.Connection.instance()
48
consumer = rpc.AdapterConsumer(connection=conn,
49
topic=FLAGS.cloud_topic,
50
proxy=controllers['Cloud'])
52
io_inst = ioloop.IOLoop.instance()
53
_injected = consumer.attach_to_tornado(io_inst)
55
http_server = httpserver.HTTPServer(_app)
56
http_server.listen(FLAGS.cc_port)
57
logging.debug('Started HTTP server on %s', FLAGS.cc_port)
61
if __name__ == '__main__':
62
utils.default_flagfile()
63
server.serve('nova-api', main)