Salome HOME
0021063: [CEA 434] Compilation using gnu compiler v4.5
[modules/kernel.git] / src / Logger / SALOME_Trace.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2010  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
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 (os.environ.has_key("SALOME_trace")):
37   if (os.environ["SALOME_trace"] == "with_logger"):
38     trace="logger"
39
40 class SALOME_Trace :
41     def __init__(self):
42         self.m_pInterfaceLogger = None
43         if trace=="logger":
44             ok = 0
45             steps = 40
46             while steps > 0 and ok == 0:
47
48               try:
49                 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
50                 theObj = orb.resolve_initial_references("NameService")
51                 inc = theObj._narrow(CosNaming.NamingContext)
52                 name = [CosNaming.NameComponent("Logger","")]
53                 obj = inc.resolve(name);
54
55                 self.m_pInterfaceLogger = obj._narrow(SALOME_Logger.Logger)
56
57                 if not self.m_pInterfaceLogger is None:
58                   ok = 1
59
60               except CosNaming.NamingContext.NotFound, e :
61                     if steps == 1: print "Caught exception: Naming Service can't found Logger"
62               except (CORBA.TRANSIENT,CORBA.OBJECT_NOT_EXIST,CORBA.COMM_FAILURE):
63                     if steps == 1: print "Caught CORBA::SystemException CommFailure"
64               except CORBA.SystemException, e:
65                     if steps == 1: print "Caught CORBA::SystemException."
66               except CORBA.Exception, e:
67                     if steps == 1: print "Caught CORBA::Exception."
68               except Exception, e:
69                     if steps == 1: print "Caught unknown exception."
70
71               time.sleep(0.25)
72               steps = steps - 1
73           
74           
75     def putMessage ( self, LogMsg ) :
76         
77         if (CORBA.is_nil(self.m_pInterfaceLogger)):
78             print  LogMsg;
79         else:
80             self.m_pInterfaceLogger.putMessage (LogMsg) 
81