preflight.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Copyright 2020 Contributors to OpenLEADR
  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. # http://www.apache.org/licenses/LICENSE-2.0
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS,
  9. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. # See the License for the specific language governing permissions and
  11. # limitations under the License.
  12. """
  13. Tests message contents before sending them. It will correct benign errors and
  14. warn you about them. Uncorrectable errors will raise an Exception.
  15. """
  16. from datetime import timedelta
  17. import warnings
  18. def preflight_message(message_type, message_payload):
  19. if f'preflight_{message_type}' in globals():
  20. globals()[f'preflight_{message_type}'](message_payload)
  21. return message_type, message_payload
  22. def preflight_oadrDistributeEvent(message_payload):
  23. if 'parse_duration' not in globals():
  24. from .utils import parse_duration
  25. # Check that the total event_duration matches the sum of the interval durations (rule 8)
  26. for event in message_payload['events']:
  27. active_period_duration = event['active_period']['duration']
  28. signal_durations = []
  29. for signal in event['event_signals']:
  30. signal_durations.append(sum([parse_duration(i['duration']) for i in signal['intervals']], timedelta(seconds=0)))
  31. if not all([d==active_period_duration for d in signal_durations]):
  32. if not all([d==signal_durations[0] for d in signal_durations]):
  33. raise ValueError("The different EventSignals have different total durations. Please correct this.")
  34. else:
  35. warnings.warn(f"The active_period duration for event {event['event_descriptor']['event_id']} ({active_period_duration})"
  36. f" was different from the sum of the interval's durations ({signal_durations[0]})."
  37. f" The active_period duration has been adjusted to ({signal_durations[0]}).")
  38. event['active_period']['duration'] = signal_durations[0]
  39. # Check that payload values with signal name SIMPLE are constricted (rule 9)
  40. for event in message_payload['events']:
  41. for event_signal in event['event_signals']:
  42. if event_signal['signal_name'] == "SIMPLE":
  43. for interval in event_signal['intervals']:
  44. if interval['signal_payload'] not in (0, 1, 2, 3):
  45. raise ValueError("Payload Values used with Signal Name SIMPLE must be one of"
  46. "0, 1, 2 or 3")
  47. # Check that the current_value is 0 for SIMPLE events that are not yet active (rule 14)
  48. for event in message_payload['events']:
  49. for event_signal in event['event_signals']:
  50. if 'current_value' in event_signal and event_signal['current_value'] != 0:
  51. if event_signal['signal_name'] == "SIMPLE" and event['event_descriptor']['event_status'] != "ACTIVE":
  52. warnings.warn("The current_value for a SIMPLE event that is not yet active must be 0. This will be corrected.")
  53. event_signal['current_value'] = 0