Salome HOME
PR: mergefrom_BSEC_br1_14Mar04
[modules/kernel.git] / src / Notification / NOTIFICATION.cxx
1 //  SALOME Notification : wrapping of Notification service services
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : NOTIFICATION.cxx
25 //  Author : Laurent DADA / Francis KLOSS
26 //  Module : SALOME
27
28 #include "NOTIFICATION.hxx"
29
30 #include "Utils_ORB_INIT.hxx"
31 #include "Utils_SINGLETON.hxx"
32 using namespace std;
33
34 CosNA_EventChannel_ptr NOTIFICATION_channel() {
35     ORB_INIT&      init = *SINGLETON_<ORB_INIT>::Instance(); ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting());
36     CORBA::ORB_ptr orb  = init(0, 0);
37
38     CosNA_EventChannel_ptr       channel = CosNA_EventChannel::_nil();
39     CosNaming::NamingContext_var name_context;
40     CosNaming::Name              name;
41     CORBA::Object_var            name_service;
42
43     try {
44         name_service = orb->resolve_initial_references("NameService");
45         name_context = CosNaming::NamingContext::_narrow(name_service);
46         if (CORBA::is_nil(name_context)) {
47             MESSAGE("NOTIFICATION Error : failed to obtain context for NameService");
48             return(channel);
49         };
50     } catch(CORBA::ORB::InvalidName& ex) {
51         MESSAGE("NOTIFICATION Error : service required is invalid [does not exist]");
52         return(channel);
53     } catch (CORBA::COMM_FAILURE& ex) {
54         MESSAGE("NOTIFICATION Error : caught system exception COMM_FAILURE");
55         return(channel);
56     } catch (...) {
57         MESSAGE("NOTIFICATION Error : caught exception while resolving the naming service");
58         return(channel);
59     }
60
61     name.length(1);
62     name[0].id   = CORBA::string_dup((const char*)NOTIFICATION_ChannelName);
63     name[0].kind = CORBA::string_dup((const char*)NOTIFICATION_ChannelName);
64
65     try {
66         CORBA::Object_var channel_ref = name_context->resolve(name);
67         channel = CosNA_EventChannel::_narrow(channel_ref);
68         if (CORBA::is_nil(channel)) {
69             MESSAGE("NOTIFICATION Error : failed to narrow object found in naming service");
70         };
71     } catch(CORBA::ORB::InvalidName& ex) {
72         MESSAGE("NOTIFICATION Error : invalid name");
73     } catch (CORBA::COMM_FAILURE& ex) {
74         MESSAGE("NOTIFICATION Error : caught system exception COMM_FAILURE while resolving event channel name");
75     } catch (...) {
76         MESSAGE("NOTIFICATION Error : caught exception while resolving event channel name");
77     }
78
79     return(channel);
80 }
81
82 #include <time.h>
83 #include <stdio.h>
84
85 static char JourSemaine[7][4] = {"Sun", "Mon", "Tue", "Wed", "Thu" , "Fri", "Sat"};
86
87 static char Mois[12][4] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
88
89 static char NOTIFICATION_DATE[50];
90
91 char* NOTIFICATION_date() {
92     time_t aTime;
93     time(&aTime);
94     struct tm* temps = localtime(&aTime);
95
96     sprintf(NOTIFICATION_DATE, "%4d %3d %3s %2d %3s %02d:%02d:%02d", 1900+temps->tm_year, temps->tm_mon+1, Mois[temps->tm_mon], temps->tm_mday, JourSemaine[temps->tm_wday], temps->tm_hour, temps->tm_min, temps->tm_sec);
97
98     return(NOTIFICATION_DATE);
99 }