-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Disk resource to Delfin * Add unit tests of disk db apis * Fix review comments
- Loading branch information
Showing
18 changed files
with
532 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright 2020 The SODA Authors. | ||
# | ||
# 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. | ||
|
||
from delfin import db | ||
from delfin.api import api_utils | ||
from delfin.api.common import wsgi | ||
from delfin.api.views import disks as disk_view | ||
|
||
|
||
class DiskController(wsgi.Controller): | ||
|
||
def __init__(self): | ||
super(DiskController, self).__init__() | ||
self.search_options = ['name', 'status', 'id', 'storage_id', | ||
'native_disk_id'] | ||
|
||
def _get_disks_search_options(self): | ||
"""Return disks search options allowed .""" | ||
return self.search_options | ||
|
||
def index(self, req): | ||
ctxt = req.environ['delfin.context'] | ||
query_params = {} | ||
query_params.update(req.GET) | ||
# update options other than filters | ||
sort_keys, sort_dirs = api_utils.get_sort_params(query_params) | ||
marker, limit, offset = api_utils.get_pagination_params(query_params) | ||
# strip out options except supported search options | ||
api_utils.remove_invalid_options(ctxt, query_params, | ||
self._get_disks_search_options()) | ||
|
||
disks = db.disk_get_all(ctxt, marker, limit, sort_keys, | ||
sort_dirs, query_params, offset) | ||
return disk_view.build_disks(disks) | ||
|
||
def show(self, req, id): | ||
ctxt = req.environ['delfin.context'] | ||
disk = db.disk_get(ctxt, id) | ||
return disk_view.build_disk(disk) | ||
|
||
|
||
def create_resource(): | ||
return wsgi.Resource(DiskController()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2020 The SODA Authors. | ||
# | ||
# 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 copy | ||
|
||
|
||
def build_disks(disks): | ||
# Build list of disks | ||
views = [build_disk(disk) | ||
for disk in disks] | ||
return dict(disks=views) | ||
|
||
|
||
def build_disk(disk): | ||
view = copy.deepcopy(disk) | ||
return dict(view) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.