Statistics
| Branch: | Tag: | Revision:

root / kamaki / utils.py @ 8378faf2

History | View | Annotate | Download (3.3 kB)

1
# Copyright 2011 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
try:
35
    from collections import OrderedDict
36
except ImportError:
37
    from ordereddict import OrderedDict
38

    
39

    
40
def print_addresses(addresses, margin):
41
    for address in addresses:
42
        if address['id'] == 'public':
43
            net = 'public'
44
        else:
45
            net = '%s/%s' % (address['id'], address['name'])
46
        print '%s:' % net.rjust(margin + 4)
47

    
48
        ether = address.get('mac', None)
49
        if ether:
50
            print '%s: %s' % ('ether'.rjust(margin + 8), ether)
51

    
52
        firewall = address.get('firewallProfile', None)
53
        if firewall:
54
            print '%s: %s' % ('firewall'.rjust(margin + 8), firewall)
55

    
56
        for ip in address.get('values', []):
57
            key = 'inet' if ip['version'] == 4 else 'inet6'
58
            print '%s: %s' % (key.rjust(margin + 8), ip['addr'])
59

    
60

    
61
def print_dict(d, exclude=()):
62
    if not d:
63
        return
64
    margin = max(len(key) for key in d) + 1
65
    
66
    for key, val in sorted(d.items()):
67
        if key in exclude:
68
            continue
69
        
70
        if key == 'addresses':
71
            print '%s:' % 'addresses'.rjust(margin)
72
            print_addresses(val.get('values', []), margin)
73
            continue
74
        elif key == 'servers':
75
            val = ', '.join(str(x) for x in val['values'])
76
        elif isinstance(val, dict):
77
            if val.keys() == ['values']:
78
                val = val['values']
79
            print '%s:' % key.rjust(margin)
80
            for key, val in val.items():
81
                print '%s: %s' % (key.rjust(margin + 4), val)
82
            continue
83
        
84
        print '%s: %s' % (key.rjust(margin), val)
85

    
86

    
87
def print_items(items, title=('id', 'name')):
88
    for item in items:
89
        print ' '.join(str(item.pop(key)) for key in title if key in item)
90
        if item:
91
            print_dict(item)
92
            print