Salome HOME
Updated copyright comment
[modules/kernel.git] / src / Logger / SALOME_Trace.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 #  SALOME Logger : CORBA server managing trace output
25 #  File   : SALOME_Trace.py
26 #  Module : SALOME
27 #
28 import sys
29 import CosNaming
30 from omniORB import CORBA
31 import SALOME_Logger
32 import time
33 import os
34
35 trace="local"
36 if ("SALOME_trace" in os.environ):
37   if (os.environ["SALOME_trace"] == "with_logger"):
38     trace="logger"
39
40 def ReturnLoggerOld():
41       m_pInterfaceLogger = None
42       ok = 0
43       steps = 40
44       while steps > 0 and ok == 0:
45
46             try:
47                   orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
48                   theObj = orb.resolve_initial_references("NameService")
49                   inc = theObj._narrow(CosNaming.NamingContext)
50                   name = [CosNaming.NameComponent("Logger","")]
51                   obj = inc.resolve(name);
52
53                   m_pInterfaceLogger = obj._narrow(SALOME_Logger.Logger)
54
55                   if not m_pInterfaceLogger is None:
56                         ok = 1
57             except CosNaming.NamingContext.NotFound as e :
58                   if steps == 1: print("Caught exception: Naming Service can't found Logger")
59             except (CORBA.TRANSIENT,CORBA.OBJECT_NOT_EXIST,CORBA.COMM_FAILURE):
60                   if steps == 1: print("Caught CORBA::SystemException CommFailure")
61             except CORBA.SystemException as e:
62                   if steps == 1: print("Caught CORBA::SystemException.")
63             except CORBA.Exception as e:
64                   if steps == 1: print("Caught CORBA::Exception.")
65             except Exception as e:
66                   if steps == 1: print("Caught unknown exception.")
67
68             time.sleep(0.25)
69             steps = steps - 1
70       return m_pInterfaceLogger
71       
72 def ReturnLoggerSSL():
73       import KernelLogger
74       m_pInterfaceLogger = None
75       try:
76             m_pInterfaceLogger = KernelLogger.myLogger()
77       except Exception:
78             pass
79       return m_pInterfaceLogger
80
81 class SALOME_Trace :
82     def __init__(self):
83         self.m_pInterfaceLogger = None
84         if trace=="logger":
85             import KernelBasis
86             if KernelBasis.getSSLMode():
87                   self.m_pInterfaceLogger = ReturnLoggerSSL()
88             else:
89                   self.m_pInterfaceLogger = ReturnLoggerOld()
90
91
92     def putMessage ( self, LogMsg ) :
93         if (CORBA.is_nil(self.m_pInterfaceLogger)):
94             print(LogMsg)
95         else:
96             self.m_pInterfaceLogger.putMessage(LogMsg)