backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / services / protocols / ovsdb / model.py
1 # Copyright (c) 2014 Rackspace Hosting
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #    http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 import uuid
17
18
19 class _UUIDDict(dict):
20     def _uuidize(self):
21         if '_uuid' not in self or self['_uuid'] is None:
22             self['_uuid'] = uuid.uuid4()
23
24     @property
25     def uuid(self):
26         self._uuidize()
27         return self['_uuid']
28
29     @uuid.setter
30     def uuid(self, value):
31         self['_uuid'] = value
32
33
34 class Row(_UUIDDict):
35     @property
36     def delete(self):
37         if '_delete' in self and self['_delete']:
38             return True
39
40         return False
41
42     @delete.setter
43     def delete(self, value):
44         self['_delete'] = value