Blame view

src/core/pyros_django/scheduler/UserManager.py 1 KB
bca9a283   Jeremy   Reworked the sche...
1
2
3
4
from common.models import *
from utils.Logger import *
from decimal import *

a6e63604   Alexis Koralewski   adding agentSP an...
5
class UserQuotaManager(Logger):
bca9a283   Jeremy   Reworked the sche...
6
7
8
9
10
11
12
13
    REJECTED = "Insufficient quota"

    def __init__(self, user: PyrosUser):
        super().__init__("UserManager", "UserManager")
        self.user = user

    @classmethod
    def determineQuota(cls, sequence: Sequence) -> float:
2fdcd8bb   Alexis Koralewski   adapt tests to ne...
14
15
        #TODO : change return value (quota isn't associated with PyrosUser)
        return 100
bca9a283   Jeremy   Reworked the sche...
16
17
18
19
        return sequence.request.pyros_user.quota

    @classmethod
    def isSufficient(cls, quota: float, sequence: Sequence) -> bool:
e573c1f1   Etienne Pallier   All unit tests no...
20
21
        #print("seq is", sequence.duration)
        #print("quota is", quota)
bca9a283   Jeremy   Reworked the sche...
22
23
24
25
26
27
28
29
30
        if quota < sequence.duration:
            return False
        return True

    @classmethod
    def determinePriority(cls, sequence: Sequence) -> float:
        return 0

    def decreaseQuota(self, value: Decimal) -> int:
2fdcd8bb   Alexis Koralewski   adapt tests to ne...
31
32
33
        #TODO : update this method according to new models
        #self.user.quota -= float(value)
        #self.user.save()
bca9a283   Jeremy   Reworked the sche...
34
        return 0