]> SALOME platform Git repositories - modules/kernel.git/blob - src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx
Salome HOME
import SalomePro v1.2c
[modules/kernel.git] / src / ModuleCatalog / SALOME_ModuleCatalog_Server.cxx
1 //  SALOME ModuleCatalog : implementation of ModuleCatalog server which parsers xml description of modules
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   : SALOME_ModuleCatalog_Server.cxx
25 //  Module : SALOME
26
27 using namespace std;
28 /* $Header$ */
29 #include <iostream.h>
30 #include "SALOME_NamingService.hxx"
31 #include "SALOME_ModuleCatalog_impl.hxx"
32 #include "utilities.h"
33 # include "Utils_SINGLETON.hxx"
34
35 //#define CHECKTIME
36 #ifdef CHECKTIME
37 #include <Utils_Timer.hxx>
38 #endif
39
40 int main(int argc,char **argv)
41 {
42   try {
43   CosNaming::NamingContext_var _rootContext, catalogContext;
44
45   // initialize the ORB
46
47   CORBA::ORB_ptr orb = CORBA::ORB_init (argc, argv);
48
49   // initialize POA
50   //
51    long TIMESleep = 250000000;
52    int NumberOfTries = 40;
53    int a;
54    timespec ts_req;
55    ts_req.tv_nsec=TIMESleep;
56    ts_req.tv_sec=0;
57    timespec ts_rem;
58    ts_rem.tv_nsec=0;
59    ts_rem.tv_sec=0;
60    CosNaming::NamingContext_var inc;
61    PortableServer::POA_var poa;
62    CORBA::Object_var theObj;
63    CORBA::Object_var obj;
64    CORBA::Object_var object;
65    SALOME_Logger::Logger_var log;
66    int MODULE_CATALOG=0;
67    const char * Env = getenv("USE_LOGGER");
68    int EnvL =0;
69    if ((Env!=NULL) && (strlen(Env)))
70      EnvL=1;
71    CosNaming::Name name;
72    name.length(1);
73    name[0].id=CORBA::string_dup("Logger");    
74    PortableServer::POAManager_var mgr; 
75    for (int i = 1; i<=NumberOfTries; i++){
76      if (i!=1) 
77        a=nanosleep(&ts_req,&ts_rem);
78      try{ 
79        obj = orb->resolve_initial_references("RootPOA");
80        if(!CORBA::is_nil(obj))
81          poa = PortableServer::POA::_narrow(obj);
82        if(!CORBA::is_nil(poa))
83             mgr = poa->the_POAManager();
84        if(!CORBA::is_nil(orb)) 
85          theObj = orb->resolve_initial_references("NameService"); 
86      }
87      catch( CORBA::COMM_FAILURE& )
88        {
89          MESSAGE( "Module Catalog Server: CORBA::COMM_FAILURE: Unable to contact the Naming Service" )
90            }
91      if (!CORBA::is_nil(theObj)){
92        inc = CosNaming::NamingContext::_narrow(theObj);
93        if(!CORBA::is_nil(inc)) {
94          MESSAGE( "Module Catalog Server: Naming Service was found" )
95          if(EnvL==1){
96            CORBA::ORB_var orb1 = CORBA::ORB_init(argc,argv) ;
97            SALOME_NamingService &NS = *SINGLETON_<SALOME_NamingService>::Instance() ;
98            NS.init_orb( orb1 ) ;
99            for(int j=1; j<=NumberOfTries; j++){
100              if (j!=1) 
101                a=nanosleep(&ts_req, &ts_rem);
102              try{
103                object = inc->resolve(name);}
104              catch(CosNaming::NamingContext::NotFound){ MESSAGE( "Logger Server wasn't found" ) }
105              catch(...){ MESSAGE( "Module Catalog Server: Unknown exception" ) }
106              if (!CORBA::is_nil(object))
107                log = SALOME_Logger::Logger::_narrow(object);
108              if (!CORBA::is_nil(log)){
109                MESSAGE( "Module Catalog Server: Logger Server was found" )
110                log->ping();
111                MODULE_CATALOG=1;
112                break;
113              }
114                  }}
115        }}
116      if ((MODULE_CATALOG==1)||((EnvL==0)&&(!CORBA::is_nil(inc))))
117        break;
118          }
119   
120    //
121   // Active catalog
122
123   SALOME_ModuleCatalogImpl* Catalogue_i = new SALOME_ModuleCatalogImpl(argc, argv);
124   poa->activate_object (Catalogue_i);
125
126   mgr->activate();
127
128   
129   CORBA::Object_ptr myCata = Catalogue_i->_this();
130
131   // initialise Naming Service
132   SALOME_NamingService *_NS;
133   _NS = new SALOME_NamingService(orb);
134   // register Catalog in Naming Service
135   _NS->Register(myCata ,"/Kernel/ModulCatalog");
136
137   MESSAGE("Running CatalogServer.");
138
139 #ifdef CHECKTIME
140   Utils_Timer timer;
141   timer.Start();
142   timer.Stop();
143   MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
144   timer.ShowAbsolute();
145 #endif
146   orb->run();
147  
148   poa->destroy(1,1);
149  
150   }
151     catch(CORBA::SystemException&) {
152     INFOS("Caught CORBA::SystemException.")
153   }
154     catch(CORBA::Exception&) {
155     INFOS("Caught CORBA::Exception.")
156   }
157
158   return 0;
159 }