Salome HOME
Updating copyright date information and version
[modules/adao.git] / src / daSalome / daGUI / daGuiImpl / adaoCase.py
index ddb1b8d945d8c755b3a3da50661eb73eec6d43ef..5a2c9b94a944a5cb0feb4cb35943e7feb97f69f9 100644 (file)
@@ -1,21 +1,23 @@
-# -*- coding: iso-8859-1 -*-
-#  Copyright (C) 2010 EDF R&D
+# -*- coding: utf-8 -*-
+# Copyright (C) 2008-2015 EDF R&D
 #
-#  This library is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU Lesser General Public
-#  License as published by the Free Software Foundation; either
-#  version 2.1 of the License.
+# This file is part of SALOME ADAO module
 #
-#  This library is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  Lesser General Public License for more details.
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License.
 #
-#  You should have received a copy of the GNU Lesser General Public
-#  License along with this library; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
 #
-#  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
 import os
@@ -23,49 +25,74 @@ import subprocess
 import traceback
 import SalomePyQt
 
+import eficasSalome
+from Ihm import CONNECTOR
+import adaoGuiHelper
+import adaoStudyEditor
+
 class AdaoCase:
 
   def __init__(self):
-    self.__name = "new_case"
-    self.__filename = ""
-    self.__yacs_filename = ""
 
-  def get_name(self):
-    return self.__name
+    self.name = "not yet defined"           # Name of the case
+
+    self.filename = "not yet defined"       # Python filename generated by Eficas
+    self.yacs_filename = "not yet defined"  # Yacs schema filename
+
+    self.salome_study_id = -1               # Study of the case
+    self.salome_study_item = None           # Study item object
 
-  def set_name(self, name):
-    self.__name = str(name)
+    self.eficas_editor = None               # Editor object from Eficas
 
-  def get_filename(self):
-    return self.__filename
+  def setEditor(self, editor):
+    if editor is not self.eficas_editor:
+      self.eficas_editor = editor
+      # Connect to the jdc
+      CONNECTOR.Connect(self.eficas_editor.jdc, "valid", self.editorValidEvent, ())
 
-  def set_filename(self, name):
-    self.__filename = str(name)
+  # Rq on notera que l'on utilise isvalid dans isOk
+  #    et que isOk appelle editorValidEvent
+  #    il n'y a pas de boucle infini car isvalid n'émet
+  #    son signal que si l'état a changé
+  def editorValidEvent(self):
+    adaoStudyEditor.updateItem(self.salome_study_id, self.salome_study_item, self)
+    adaoGuiHelper.refreshObjectBrowser()
+
+  def isOk(self):
+    if self.eficas_editor.jdc:
+      return self.eficas_editor.jdc.isvalid()
+    return False
 
   def createYACSFile(self):
     rtn = ""
-    if (self.__filename == ""):
-      return "You need to save your case to export it"
+    if (self.filename == ""):
+      return "You need to save your case to export it."
+
+    self.yacs_filename = self.filename[:self.filename.rfind(".")] + '.xml'
+    yacs_filename_backup = self.filename[:self.filename.rfind(".")] + '.xml.back'
+    if os.path.exists(self.yacs_filename):
+      os.rename(self.yacs_filename, yacs_filename_backup)
 
-    filename = self.__filename[:self.__filename.rfind(".")] + '.py'
+    self.eficas_editor.modified = True
+    self.eficas_editor.saveFile()
+    filename = self.filename[:self.filename.rfind(".")] + '.py'
     if not os.path.exists(filename):
-      msg =  "Cannot find the py file for YACS generation \n"
-      msg += "Is your case correct ? \n"
-      msg += "(Try to load: " + filename + ")"
+      msg =  "Cannot find the COMM associated python file for YACS\n"
+      msg += "generation. Is your case correct?\n"
       return msg
 
     if not os.environ.has_key("ADAO_ROOT_DIR"):
-      return "Please add ADAO_ROOT_DIR to your environnement"
+      return "Please add ADAO_ROOT_DIR to your environnement."
 
     adao_path = os.environ["ADAO_ROOT_DIR"]
     adao_exe = adao_path + "/bin/salome/AdaoYacsSchemaCreator.py"
-    self.__yacs_filename = self.__filename[:self.__filename.rfind(".")] + '.xml'
-    args = [adao_exe, filename, self.__yacs_filename]
+    args = ["python", adao_exe, filename, self.yacs_filename]
     p = subprocess.Popen(args)
     (stdoutdata, stderrdata) = p.communicate()
-    if not os.path.exists(self.__yacs_filename):
-      msg  = "An error occured during the execution of AdaoYacsSchemaCreator.py \n"
-      msg += "See erros details in your terminal \n"
+    if not os.path.exists(self.yacs_filename):
+      msg  = "An error occured during the execution of the ADAO YACS Schema\n"
+      msg += "Creator. If SALOME is launched by command line, see errors\n"
+      msg += "details in your terminal.\n"
       return msg
     return rtn
 
@@ -78,10 +105,9 @@ class AdaoCase:
     try:
       import libYACS_Swig
       yacs_swig = libYACS_Swig.YACS_Swig()
-      yacs_swig.loadSchema(self.__yacs_filename)
+      yacs_swig.loadSchema(self.yacs_filename, 1, 1)
     except:
       msg =  "Please install YACS module, error was: \n"
       msg += traceback.format_exc()
       return msg
     return rtn
-