cyborg/cyborg/api/controllers/v1/accelerators.py

238 lines
8.5 KiB
Python

# Copyright 2017 Huawei Technologies Co.,LTD.
# All Rights Reserved.
#
# 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.
import pecan
from six.moves import http_client
import wsme
from wsme import types as wtypes
from cyborg.api.controllers import base
from cyborg.api.controllers import link
from cyborg.api.controllers.v1 import deployables
from cyborg.api.controllers.v1 import types
from cyborg.api.controllers.v1 import utils as api_utils
from cyborg.api import expose
from cyborg.common import exception
from cyborg.common import policy
from cyborg import objects
class Accelerator(base.APIBase):
"""API representation of a accelerator.
This class enforces type checking and value constraints, and converts
between the internal object model and the API representation of
a accelerator.
"""
uuid = types.uuid
"""The UUID of the accelerator"""
name = wtypes.text
"""The name of the accelerator"""
description = wtypes.text
"""The description of the accelerator"""
project_id = types.uuid
"""The project UUID of the accelerator"""
user_id = types.uuid
"""The user UUID of the accelerator"""
device_type = wtypes.text
"""The device type of the accelerator"""
acc_type = wtypes.text
"""The type of the accelerator"""
acc_capability = wtypes.text
"""The capability of the accelerator"""
vendor_id = wtypes.text
"""The vendor id of the accelerator"""
product_id = wtypes.text
"""The product id of the accelerator"""
remotable = wtypes.IntegerType()
"""Whether the accelerator is remotable"""
links = wsme.wsattr([link.Link], readonly=True)
"""A list containing a self link"""
def __init__(self, **kwargs):
super(Accelerator, self).__init__(**kwargs)
self.fields = []
# NOTE(wangzhh): It not worked here. Because the response contain a
# white_list named _wsme_attributes. See wsme.types.list_attributes.
# Attribute which is not in the list will be ignored.
# We have no disscussion about it, so just left it here now.
for field in objects.Accelerator.fields:
self.fields.append(field)
setattr(self, field, kwargs.get(field, wtypes.Unset))
@classmethod
def convert_with_links(cls, obj_acc):
api_acc = cls(**obj_acc.as_dict())
url = pecan.request.public_url
api_acc.links = [
link.Link.make_link('self', url, 'accelerators', api_acc.uuid),
link.Link.make_link('bookmark', url, 'accelerators', api_acc.uuid,
bookmark=True)
]
return api_acc
class AcceleratorCollection(base.APIBase):
"""API representation of a collection of accelerators."""
accelerators = [Accelerator]
"""A list containing accelerator objects"""
@classmethod
def convert_with_links(cls, obj_accs):
collection = cls()
collection.accelerators = [Accelerator.convert_with_links(obj_acc)
for obj_acc in obj_accs]
return collection
class AcceleratorPatchType(types.JsonPatchType):
_api_base = Accelerator
@staticmethod
def internal_attrs():
defaults = types.JsonPatchType.internal_attrs()
return defaults + ['/project_id', '/user_id', '/device_type',
'/acc_type', '/acc_capability', '/vendor_id',
'/product_id', '/remotable']
class AcceleratorsControllerBase(base.CyborgController):
_resource = None
def _get_resource(self, uuid):
self._resource = objects.Accelerator.get(pecan.request.context, uuid)
return self._resource
class AcceleratorsController(AcceleratorsControllerBase):
"""REST controller for Accelerators."""
deployables = deployables.DeployablesController()
@policy.authorize_wsgi("cyborg:accelerator", "create", False)
@expose.expose(Accelerator, body=types.jsontype,
status_code=http_client.CREATED)
def post(self, acc):
"""Create a new accelerator.
:param acc: an accelerator within the request body.
"""
context = pecan.request.context
obj_acc = objects.Accelerator(context, **acc)
new_acc = pecan.request.conductor_api.accelerator_create(context,
obj_acc)
# Set the HTTP Location Header
pecan.response.location = link.build_url('accelerators', new_acc.uuid)
return Accelerator.convert_with_links(new_acc)
@policy.authorize_wsgi("cyborg:accelerator", "get")
@expose.expose(Accelerator, types.uuid)
def get_one(self, uuid):
"""Retrieve information about the given accelerator.
:param uuid: UUID of an accelerator.
"""
obj_acc = self._resource or self._get_resource(uuid)
return Accelerator.convert_with_links(obj_acc)
@expose.expose(AcceleratorCollection, int, types.uuid, wtypes.text,
wtypes.text, types.boolean)
def get_all(self, limit=None, marker=None, sort_key='id', sort_dir='asc',
all_tenants=None):
"""Retrieve a list of accelerators.
:param limit: Optional, to determinate the maximum number of
accelerators to return.
:param marker: Optional, to display a list of accelerators after this
marker.
:param sort_key: Optional, to sort the returned accelerators list by
this specified key value.
:param sort_dir: Optional, to return a list of accelerators with this
sort direction.
:param all_tenants: Optional, allows administrators to see the
accelerators owned by all tenants, otherwise only
the accelerators associated with the calling
tenant are included in the response.
"""
context = pecan.request.context
project_only = True
if context.is_admin and all_tenants:
project_only = False
marker_obj = None
if marker:
marker_obj = objects.Accelerator.get(context, marker)
obj_accs = objects.Accelerator.list(context, limit, marker_obj,
sort_key, sort_dir, project_only)
return AcceleratorCollection.convert_with_links(obj_accs)
@policy.authorize_wsgi("cyborg:accelerator", "update")
@expose.expose(Accelerator, types.uuid, body=[AcceleratorPatchType])
def patch(self, uuid, patch):
"""Update an accelerator.
:param uuid: UUID of an accelerator.
:param patch: a json PATCH document to apply to this accelerator.
"""
obj_acc = self._resource or self._get_resource(uuid)
try:
api_acc = Accelerator(
**api_utils.apply_jsonpatch(obj_acc.as_dict(), patch))
except api_utils.JSONPATCH_EXCEPTIONS as e:
raise exception.PatchError(patch=patch, reason=e)
# Update only the fields that have changed
for field in objects.Accelerator.fields:
try:
patch_val = getattr(api_acc, field)
except AttributeError:
# Ignore fields that aren't exposed in the API
continue
if patch_val == wtypes.Unset:
patch_val = None
if obj_acc[field] != patch_val:
obj_acc[field] = patch_val
context = pecan.request.context
new_acc = pecan.request.conductor_api.accelerator_update(context,
obj_acc)
return Accelerator.convert_with_links(new_acc)
@policy.authorize_wsgi("cyborg:accelerator", "delete")
@expose.expose(None, types.uuid, status_code=http_client.NO_CONTENT)
def delete(self, uuid):
"""Delete an accelerator.
:param uuid: UUID of an accelerator.
"""
context = pecan.request.context
obj_acc = self._resource or self._get_resource(uuid)
pecan.request.conductor_api.accelerator_delete(context, obj_acc)