Salome HOME
Base implementation of Notebook
[modules/kernel.git] / src / Logger / SALOME_Trace.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 #  SALOME Logger : CORBA server managing trace output
24 #  File   : SALOME_Trace.py
25 #  Module : SALOME
26 #
27 import sys
28 import CosNaming
29 from omniORB import CORBA
30 import SALOME_Logger
31 import time
32 import os
33
34 trace="local"
35 if (os.environ.has_key("SALOME_trace")):
36   if (os.environ["SALOME_trace"] == "with_logger"):
37     trace="logger"
38
39 class SALOME_Trace :
40     def __init__(self):
41         self.m_pInterfaceLogger = None
42         if trace=="logger":
43             ok = 0
44             steps = 40
45             while steps > 0 and ok == 0:
46
47               try:
48                 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
49                 theObj = orb.resolve_initial_references("NameService")
50                 inc = theObj._narrow(CosNaming.NamingContext)
51                 name = [CosNaming.NameComponent("Logger","")]
52                 obj = inc.resolve(name);
53
54                 self.m_pInterfaceLogger = obj._narrow(SALOME_Logger.Logger)
55
56                 if not self.m_pInterfaceLogger is None:
57                   ok = 1
58
59               except CosNaming.NamingContext.NotFound, e :
60                     if steps == 1: print "Caught exception: Naming Service can't found Logger"
61               except (CORBA.TRANSIENT,CORBA.OBJECT_NOT_EXIST,CORBA.COMM_FAILURE):
62                     if steps == 1: print "Caught CORBA::SystemException CommFailure"
63               except CORBA.SystemException, e:
64                     if steps == 1: print "Caught CORBA::SystemException."
65               except CORBA.Exception, e:
66                     if steps == 1: print "Caught CORBA::Exception."
67               except Exception, e:
68                     if steps == 1: print "Caught unknown exception."
69
70               time.sleep(0.25)
71               steps = steps - 1
72           
73           
74     def putMessage ( self, LogMsg ) :
75         
76         if (CORBA.is_nil(self.m_pInterfaceLogger)):
77             print  LogMsg;
78         else:
79             self.m_pInterfaceLogger.putMessage (LogMsg) 
80