Solve import order problem when POULibrary imports ConfigTreeNode because of UserAddressedException. Now UserAddressedException is declared in POULibrary.py, as a quick and dirty fix, but some independant module should be created for beremiz exceptions in general.
authorEdouard Tisserant
Tue, 26 May 2020 09:58:20 +0200
changeset 2645 d15a997859b1
parent 2644 769fefae7c81
child 2646 d692e01d94f4
Solve import order problem when POULibrary imports ConfigTreeNode because of UserAddressedException. Now UserAddressedException is declared in POULibrary.py, as a quick and dirty fix, but some independant module should be created for beremiz exceptions in general.
ConfigTreeNode.py
POULibrary.py
ProjectController.py
--- a/ConfigTreeNode.py	Wed Dec 18 13:31:22 2019 +0100
+++ b/ConfigTreeNode.py	Tue May 26 09:58:20 2020 +0200
@@ -678,6 +678,3 @@
 
         raise UserAddressedException(message)
 
-class UserAddressedException(Exception):
-    pass
-
--- a/POULibrary.py	Wed Dec 18 13:31:22 2019 +0100
+++ b/POULibrary.py	Tue May 26 09:58:20 2020 +0200
@@ -26,6 +26,10 @@
 from __future__ import absolute_import
 from weakref import ref
 
+# Exception type for problems that user has to take action in order to fix
+class UserAddressedException(Exception):
+    pass
+
 
 class POULibrary(object):
     def __init__(self, CTR, LibName, TypeStack):
@@ -59,6 +63,11 @@
         # Pure python or IEC libs doesn't produce C code
         return ((""), [], False), ""
 
+    def FatalError(self, message):
+        """ Raise an exception that will trigger error message intended to 
+            the user, but without backtrace since it is not a software error """
+
+        raise UserAddressedException(message)
 
 def SimplePOULibraryFactory(path):
     class SimplePOULibrary(POULibrary):
--- a/ProjectController.py	Wed Dec 18 13:31:22 2019 +0100
+++ b/ProjectController.py	Tue May 26 09:58:20 2020 +0200
@@ -63,7 +63,8 @@
 import targets
 from runtime.typemapping import DebugTypesSize, UnpackDebugBuffer
 from runtime import PlcStatus
-from ConfigTreeNode import ConfigTreeNode, XSDSchemaErrorMessage, UserAddressedException
+from ConfigTreeNode import ConfigTreeNode, XSDSchemaErrorMessage
+from POULibrary import UserAddressedException
 
 base_folder = paths.AbsParentDir(__file__)