aboutsummaryrefslogtreecommitdiffstats
path: root/netmodel/model/attribute.py
blob: b69ee1bfb886bc8843eca4afd1c24b2ee159bfb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017 Cisco and/or its affiliates.
#
# 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 abc
import copy
import logging
import operator
import types

from netmodel.model.mapper      import ObjectSpecification
from netmodel.model.type        import is_type
from netmodel.util.meta         import inheritors
from netmodel.util.misc         import is_iterable
from vicn.core.sa_collections   import InstrumentedList, _list_decorators

log = logging.getLogger(__name__)
instance_dict = operator.attrgetter('__dict__')

class NEVER_SET: None

#------------------------------------------------------------------------------
# Attribute Multiplicity
#------------------------------------------------------------------------------

class Multiplicity:
    _1_1 = '1_1'
    _1_N = '1_N'
    _N_1 = 'N_1'
    _N_N = 'N_N'
    

    @staticmethod
    def reverse(value):
        reverse_map = {
            Multiplicity._1_1: Multiplicity._1_1,
            Multiplicity._1_N: Multiplicity._N_1,
            Multiplicity._N_1: Multiplicity._1_N,
            Multiplicity._N_N: Multiplicity._N_N,
        }
        return reverse_map[value]


# Default attribute properties values (default to None)
DEFAULT = {
    'multiplicity'  :  Multiplicity._1_1,
    'mandatory'     : False,
}

#------------------------------------------------------------------------------
# Attribute
#------------------------------------------------------------------------------

class Attribute(abc.ABC, ObjectSpecification):
    properties = [
        'name',
        'type',
        'description',
        'default',
        'choices',
        'mandatory',
        'multiplicity',
        'ro',
        'auto',
        'func',
        'requirements',
        'reverse_name',
        'reverse_description',
        'reverse_auto'
    ]

    def __init__(self, *args, **kwargs):
        for key in Attribute.properties:
            value = kwargs.pop(key, NEVER_SET)
            setattr(self, key, value)

        if len(args) == 1:
            self.type, = args
        elif len(args) == 2:
            self.name, self.type = args
            assert is_type(self.type)

        self.is_aggregate = False

        self._reverse_attributes = list()
        
    #--------------------------------------------------------------------------
    # Display
    #--------------------------------------------------------------------------

    def __repr__(self):
        return '<Attribute {}>'.format(self.name)

    __str__ = __repr__

    #--------------------------------------------------------------------------
    # Descriptor protocol
    #
    # see. https://docs.python.org/3/howto/descriptor.html
    #--------------------------------------------------------------------------

    def __get__(self, instance, owner=None):
        if instance is None:
            return self

        value = instance_dict(instance).get(self.name, NEVER_SET)
        
        # Case : collection attribute
        if self.is_collection:
            if value is NEVER_SET:
                if isinstance(self.default, types.FunctionType):
                    default = self.default(instance)
                else:
                    default = self.default
                value = InstrumentedList(default)
                value._attribute = self
                value._instance  = instance
                self.__set__(instance, value)
                return value
            return value 

        # Case : scalar attribute

        if value in (None, NEVER_SET) and self.auto not in (None, NEVER_SET):
            # Automatic instanciation
            if not self.requirements in (None, NEVER_SET) and \
                    self.requirements:
                log.warning('Ignored requirement {}'.format(self.requirements))
            value = instance.auto_instanciate(self)
            self.__set__(instance, value)
            return value

        if value is NEVER_SET:
            if isinstance(self.default, types.FunctionType):
                value = self.default(instance)
            else:
                value = copy.deepcopy(self.default)
            self.__set__(instance, value)
            return value

        return value

    def __set__(self, instance, value):
        if instance is None:
            return

        if self.is_collection:
            if not isinstance(value, InstrumentedList):
                value = InstrumentedList(value) 
                value._attribute = self
                value._instance  = instance

        instance_dict(instance)[self.name] = value
        if hasattr(instance, '_state'):
            instance._state.attr_dirty.add(self.name)
            instance._state.dirty = True

    def __delete__(self, instance):
        raise NotImplementedError

    #--------------------------------------------------------------------------
    # Accessors
    #--------------------------------------------------------------------------

    def __getattribute__(self, name):
        value = super().__getattribute__(name)
        if value is NEVER_SET:
            if name == 'default':
                return list() if self.is_collection else None
            return DEFAULT.get(name, None)
        return value

    # Shortcuts

    def has_reverse_attribute(self):
        return self.reverse_name and self.multiplicity

    @property
    def is_collection(self):
        return self.multiplicity in (Multiplicity._1_N, Multiplicity._N_N)

    def is_set(self, instance):
        return self.name in instance_dict(instance)

    #--------------------------------------------------------------------------
    # Operations
    #--------------------------------------------------------------------------

    def merge(self, parent):
        for prop in Attribute.properties:
            # NOTE: we cannot use getattr otherwise we get the default value,
            # and we never override
            value = vars(self).get(prop, NEVER_SET)
            if value is not NEVER_SET and not is_iterable(value):
                continue

            parent_value = vars(parent).get(prop, NEVER_SET)
            if parent_value is NEVER_SET:
                continue

            if parent_value:
                if is_iterable(value):
                    value.extend(parent_value)
                else:
                    setattr(self, prop, parent_value)

    #--------------------------------------------------------------------------
    # Attribute values
    #--------------------------------------------------------------------------

    def _handle_getitem(self, instance, item):
        return item

    def _handle_add(self, instance, item):
        instance._state.dirty = True
        instance._state.attr_dirty.add(self.name)
        print('marking', self.name, 'as dirty')
        return item

    def _handle_remove(self, instance, item):
        instance._state.dirty = True
        instance._state.attr_dirty.add(self.name)
        print('marking', self.name, 'as dirty')

    def _handle_before_remove(self, instance):
        pass

    #--------------------------------------------------------------------------
    # Attribute values
    #--------------------------------------------------------------------------

class Relation(Attribute):
    properties = Attribute.properties[:]
    properties.extend([
        'reverse_name',
        'reverse_description',
        'multiplicity',
    ])

class SelfRelation(Relation):
    def __init__(self, *args, **kwargs):
        if args:
            if not len(args) == 1:
                raise ValueError('Bad initialized for SelfRelation')
            name, = args
            super().__init__(name, None, *args, **kwargs)
        else:
            super().__init__(None, *args, **kwargs)