~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/api/openstack/v2/views/addresses.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-01-20 11:54:15 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: package-import@ubuntu.com-20120120115415-h2ujma9o536o1ut6
Tags: upstream-2012.1~e3~20120120.12170
ImportĀ upstreamĀ versionĀ 2012.1~e3~20120120.12170

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
 
 
3
 
# Copyright 2010-2011 OpenStack LLC.
4
 
# All Rights Reserved.
5
 
#
6
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
7
 
#    not use this file except in compliance with the License. You may obtain
8
 
#    a copy of the License at
9
 
#
10
 
#         http://www.apache.org/licenses/LICENSE-2.0
11
 
#
12
 
#    Unless required by applicable law or agreed to in writing, software
13
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15
 
#    License for the specific language governing permissions and limitations
16
 
#    under the License.
17
 
 
18
 
import itertools
19
 
 
20
 
from nova.api.openstack import common
21
 
from nova import flags
22
 
from nova import log as logging
23
 
 
24
 
 
25
 
FLAGS = flags.FLAGS
26
 
LOG = logging.getLogger('nova.api.openstack.v2.views.addresses')
27
 
 
28
 
 
29
 
class ViewBuilder(common.ViewBuilder):
30
 
    """Models server addresses as a dictionary."""
31
 
 
32
 
    _collection_name = "addresses"
33
 
 
34
 
    def basic(self, ip):
35
 
        """Return a dictionary describing an IP address."""
36
 
        return {
37
 
            "version": ip["version"],
38
 
            "addr": ip["addr"],
39
 
        }
40
 
 
41
 
    def show(self, network, label):
42
 
        """Returns a dictionary describing a network."""
43
 
        all_ips = itertools.chain(network["ips"], network["floating_ips"])
44
 
        return {label: [self.basic(ip) for ip in all_ips]}
45
 
 
46
 
    def index(self, networks):
47
 
        """Return a dictionary describing a list of networks."""
48
 
        addresses = {}
49
 
        for label, network in networks.items():
50
 
            network_dict = self.show(network, label)
51
 
            addresses[label] = network_dict[label]
52
 
        return dict(addresses=addresses)