Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / quotas / util.py @ c4e45b57

History | View | Annotate | Download (3.9 kB)

1
# Copyright 2012 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
from django.db.models import Sum, Count
35

    
36
from synnefo.db.models import VirtualMachine, Network
37
from synnefo.quotas import get_quota_holder, NoEntityError
38

    
39

    
40
def get_db_holdings(users=None):
41
    """Get holdings from Cyclades DB."""
42
    holdings = {}
43

    
44
    vms = VirtualMachine.objects.filter(deleted=False)
45
    networks = Network.objects.filter(deleted=False)
46

    
47
    if users:
48
        assert(type(users) is list)
49
        vms = vms.filter(userid__in=users)
50
        networks = networks.filter(userid__in=users)
51

    
52
    # Get resources related with VMs
53
    vm_resources = vms.values("userid").annotate(num=Count("id"),
54
                                                 ram=Sum("flavor__ram"),
55
                                                 cpu=Sum("flavor__cpu"),
56
                                                 disk=Sum("flavor__disk"))
57
    for vm_res in vm_resources:
58
        user = vm_res['userid']
59
        res = {"vm": vm_res["num"],
60
               "cpu": vm_res["cpu"],
61
               "disk": 1073741824 * vm_res["disk"],
62
               "ram": 1048576 * vm_res["ram"]}
63
        holdings[user] = res
64

    
65
    # Get resources related with networks
66
    net_resources = networks.values("userid")\
67
                            .annotate(num=Count("id"))
68
    for net_res in net_resources:
69
        user = net_res['userid']
70
        if user not in holdings:
71
            holdings[user] = {}
72
        holdings[user]["network.private"] = net_res["num"]
73

    
74
    return holdings
75

    
76

    
77
def get_quotaholder_holdings(users=[]):
78
    """Get holdings from Quotaholder.
79

80
    If the entity for the user does not exist in quotaholder, no holding
81
    is returned.
82
    """
83
    holdings = {}
84
    with get_quota_holder() as qh:
85
        for user in users:
86
            try:
87
                (qh_holdings, _) = \
88
                    qh.list_holdings(context={}, list_holdings=[(user, "1")])
89
                if not qh_holdings:
90
                    continue
91
                qh_holdings = qh_holdings[0]
92
                qh_holdings = filter(lambda x: x[1].startswith("cyclades."),
93
                                     qh_holdings)
94
                holdings[user] = dict(map(decode_holding, qh_holdings))
95
            except NoEntityError:
96
                pass
97
    return holdings
98

    
99

    
100
def decode_holding(holding):
101
    entity, resource, imported, exported, returned, released = holding
102
    res = resource.replace("cyclades.", "")
103
    return (res, imported - exported + returned - released)