2013-12-17 15:13:30 -08:00
|
|
|
"""
|
|
|
|
Copyright 2013 Rackspace, Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
2013-12-19 16:59:16 -08:00
|
|
|
import collections
|
2013-12-17 15:13:30 -08:00
|
|
|
import time
|
|
|
|
|
2013-12-18 15:47:48 -08:00
|
|
|
import pkg_resources
|
|
|
|
from teeth_rest import encoding
|
|
|
|
from werkzeug import serving
|
2013-12-17 15:13:30 -08:00
|
|
|
|
2013-12-18 15:47:48 -08:00
|
|
|
from teeth_agent import api
|
2013-12-21 17:22:09 -08:00
|
|
|
from teeth_agent import errors
|
2013-12-17 15:13:30 -08:00
|
|
|
|
|
|
|
|
2013-12-18 15:47:48 -08:00
|
|
|
class TeethAgentStatus(encoding.Serializable):
|
2013-12-17 15:13:30 -08:00
|
|
|
def __init__(self, mode, started_at, version):
|
|
|
|
self.mode = mode
|
|
|
|
self.started_at = started_at
|
|
|
|
self.version = version
|
|
|
|
|
|
|
|
def serialize(self, view):
|
2013-12-19 16:59:16 -08:00
|
|
|
"""Turn the status into a dict."""
|
|
|
|
return collections.OrderedDict([
|
2013-12-17 15:13:30 -08:00
|
|
|
('mode', self.mode),
|
|
|
|
('started_at', self.started_at),
|
|
|
|
('version', self.version),
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2013-12-20 12:57:38 -08:00
|
|
|
class BaseTeethAgent(object):
|
2013-12-17 15:13:30 -08:00
|
|
|
def __init__(self, listen_host, listen_port, mode):
|
|
|
|
self.listen_host = listen_host
|
|
|
|
self.listen_port = listen_port
|
|
|
|
self.started_at = None
|
|
|
|
self.mode = mode
|
2013-12-18 15:47:48 -08:00
|
|
|
self.api = api.TeethAgentAPIServer(self)
|
2013-12-21 17:22:09 -08:00
|
|
|
self.command_map = {}
|
2013-12-17 15:13:30 -08:00
|
|
|
|
|
|
|
def get_status(self):
|
2013-12-19 16:59:16 -08:00
|
|
|
"""Retrieve a serializable status."""
|
2013-12-17 15:13:30 -08:00
|
|
|
return TeethAgentStatus(
|
|
|
|
mode=self.mode,
|
|
|
|
started_at=self.started_at,
|
2013-12-18 15:47:48 -08:00
|
|
|
version=pkg_resources.get_distribution('teeth-agent').version
|
2013-12-17 15:13:30 -08:00
|
|
|
)
|
|
|
|
|
2013-12-20 16:03:30 -08:00
|
|
|
def execute_command(self, command_name, **kwargs):
|
2013-12-19 16:59:16 -08:00
|
|
|
"""Execute an agent command."""
|
2013-12-21 17:22:09 -08:00
|
|
|
if command_name not in self.command_map:
|
|
|
|
raise errors.InvalidCommandError(command_name)
|
|
|
|
|
2013-12-31 11:49:32 -08:00
|
|
|
result = self.command_map[command_name](command_name, **kwargs)
|
2013-12-18 15:47:48 -08:00
|
|
|
|
2013-12-27 12:53:44 -08:00
|
|
|
# TODO(russellhaering): allow long-running commands to return a
|
|
|
|
# "promise" which can be converted into a watch URL.
|
|
|
|
|
2013-12-27 15:06:29 -08:00
|
|
|
return result
|
|
|
|
|
2013-12-17 15:13:30 -08:00
|
|
|
def run(self):
|
2013-12-19 16:59:16 -08:00
|
|
|
"""Run the Teeth Agent."""
|
2013-12-17 15:13:30 -08:00
|
|
|
if self.started_at:
|
|
|
|
raise RuntimeError('Agent was already started')
|
|
|
|
|
|
|
|
self.started_at = time.time()
|
2013-12-18 15:47:48 -08:00
|
|
|
serving.run_simple(self.listen_host, self.listen_port, self.api)
|