blob: b16642ae6daf20dd031c09d0e7226e8ab5131d1b [file] [log] [blame]
Andy Bavier561f3e52019-03-15 10:46:05 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
17from xossynchronizer.model_policies.policy import Policy
18import os
19import sys
20
21sync_path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), ".."))
22sys.path.append(sync_path)
23
24from helpers import TtHelpers
25
26class TtWorkflowDriverWhiteListEntryPolicy(Policy):
27 model_name = "TtWorkflowDriverWhiteListEntry"
28
29 def handle_create(self, whitelist):
30 self.handle_update(whitelist)
31
32 # Update the SI if the onu_state has changed.
33 # The SI model policy will take care of updating other state.
34 def validate_onu_state(self, si):
35 [valid, message] = TtHelpers.validate_onu(self.model_accessor, self.logger, si)
36 if valid:
37 si.onu_state = "ENABLED"
38 else:
39 si.onu_state = "DISABLED"
40
41 self.logger.debug(
42 "MODEL_POLICY: activating TtWorkflowDriverServiceInstance because of change in the whitelist", si=si, onu_state=si.onu_state)
43 si.save_changed_fields(always_update_timestamp=True)
44
45 def handle_update(self, whitelist):
46 self.logger.debug("MODEL_POLICY: handle_update for TtWorkflowDriverWhiteListEntry", whitelist=whitelist)
47
48 sis = self.model_accessor.TtWorkflowDriverServiceInstance.objects.all()
49
50 for si in sis:
51
52 if si.serial_number.lower() != whitelist.serial_number.lower():
53 # NOTE we don't care about this SI as it has a different serial number
54 continue
55
56 self.validate_onu_state(si)
57
58 whitelist.backend_need_delete_policy=True
59 whitelist.save_changed_fields()
60
61 def handle_delete(self, whitelist):
62 self.logger.debug("MODEL_POLICY: handle_delete for TtWorkflowDriverWhiteListEntry", serial_number=whitelist.serial_number, pon_port=whitelist.pon_port_id, device=whitelist.device_id)
63
64 # BUG: Sometimes the delete policy is not called, because the reaper deletes
65
66 assert(whitelist.owner)
67
68 sis = self.model_accessor.TtWorkflowDriverServiceInstance.objects.all()
69 sis = [si for si in sis if si.serial_number.lower() == whitelist.serial_number.lower()]
70
71 for si in sis:
72 self.validate_onu_state(si)
73
74 whitelist.backend_need_reap=True
75 whitelist.save_changed_fields()