Salome HOME
09fab3362d1afef7aef6d67f92a75bdd5a568707
[modules/kernel.git] / src / Notification / NOTIFICATION.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME Notification : wrapping of Notification service services
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
33 CosNA_EventChannel_ptr NOTIFICATION_channel() {
34     ORB_INIT&      init = *SINGLETON_<ORB_INIT>::Instance(); ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting());
35     CORBA::ORB_ptr orb  = init(0, 0);
36
37     CosNA_EventChannel_ptr       channel = CosNA_EventChannel::_nil();
38     CosNaming::NamingContext_var name_context;
39     CosNaming::Name              name;
40     CORBA::Object_var            name_service;
41
42     try {
43         name_service = orb->resolve_initial_references("NameService");
44         name_context = CosNaming::NamingContext::_narrow(name_service);
45         if (CORBA::is_nil(name_context)) {
46             MESSAGE("NOTIFICATION Error : failed to obtain context for NameService");
47             return(channel);
48         };
49     } catch(CORBA::ORB::InvalidName& ) {
50         MESSAGE("NOTIFICATION Error : service required is invalid [does not exist]");
51         return(channel);
52     } catch (CORBA::SystemException& ) {
53         MESSAGE("NOTIFICATION Error : caught system exception COMM_FAILURE");
54         return(channel);
55     } catch (...) {
56         MESSAGE("NOTIFICATION Error : caught exception while resolving the naming service");
57         return(channel);
58     }
59
60     name.length(1);
61     name[0].id   = CORBA::string_dup((const char*)NOTIFICATION_ChannelName);
62     name[0].kind = CORBA::string_dup((const char*)NOTIFICATION_ChannelName);
63
64     try {
65         CORBA::Object_var channel_ref = name_context->resolve(name);
66         channel = CosNA_EventChannel::_narrow(channel_ref);
67         if (CORBA::is_nil(channel)) {
68             MESSAGE("NOTIFICATION Error : failed to narrow object found in naming service");
69         };
70     } catch(CORBA::ORB::InvalidName& ) {
71         MESSAGE("NOTIFICATION Error : invalid name");
72     } catch (CORBA::SystemException& ) {
73         MESSAGE("NOTIFICATION Error : caught system exception COMM_FAILURE while resolving event channel name");
74     } catch (...) {
75         MESSAGE("NOTIFICATION Error : caught exception while resolving event channel name");
76     }
77
78     return(channel);
79 }
80
81 #include <time.h>
82 #include <stdio.h>
83
84 static char JourSemaine[7][4] = {"Sun", "Mon", "Tue", "Wed", "Thu" , "Fri", "Sat"};
85
86 static char Mois[12][4] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
87
88 static char NOTIFICATION_DATE[50];
89
90 char* NOTIFICATION_date() {
91     time_t aTime;
92     time(&aTime);
93     struct tm* temps = localtime(&aTime);
94
95     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);
96
97     return(NOTIFICATION_DATE);
98 }