Salome HOME
68f5d16c9c7dccecc80d8dfdf3eaadb1ba8bb4dc
[modules/visu.git] / src / VISU_I / VISUConfig.hh
1 //  VISU OBJECT : interactive object for VISU entities implementation
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 //  File   : VISUConfig.hh
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #ifndef __VISU_CONFIG_H__
28 #define __VISU_CONFIG_H__
29
30 // standard C++ headers
31 #include <stdio.h>
32 #include <iostream>
33 #include <string>
34 #include <qstring.h> 
35 #include <qthread.h> 
36 #include <qfileinfo.h>
37 #include <qapplication.h>
38
39 // IDL headers
40 #include "SALOMEconfig.h"
41 #include CORBA_SERVER_HEADER(VISU_Gen)
42 #include CORBA_SERVER_HEADER(MED)
43 #include CORBA_SERVER_HEADER(SALOMEDS)
44 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
45 #include "SALOME_NamingService.hxx"
46 #include "SALOME_LifeCycleCORBA.hxx"
47 #include "Utils_CorbaException.hxx"
48 #include "utilities.h"
49
50 #include <stdexcept>
51 #include <sstream>      
52
53 namespace VISU{
54   //===========================================================================
55   class VISU_Gen_i;
56
57   class Base_i : public virtual POA_VISU::Base,
58                  public virtual PortableServer::RefCountServantBase
59   {
60   public:
61     virtual ~Base_i();
62     virtual char* GetID();
63     virtual VISU::VISUType GetType() = 0;
64   protected:
65     static QMutex* myMutex;
66     static CORBA::ORB_var myOrb;
67     static PortableServer::POA_var myPOA;
68     static SALOME_NamingService* myNamingService;
69     static VISU_Gen_i* myVisuGenImpl;
70     static SALOME_LifeCycleCORBA* myEnginesLifeCycle;
71   public:
72     static CORBA::ORB_ptr GetORB() { return myOrb;}
73     static PortableServer::POA_ptr GetPOA() { return myPOA;}
74     static SALOME_NamingService* GetNS() { return myNamingService;}
75     static SALOME_LifeCycleCORBA* GetLCC() { return myEnginesLifeCycle;}
76     static VISU_Gen_i* GetVisuGenImpl() { return myVisuGenImpl;}
77   };
78
79
80   //===========================================================================
81   class Mutex{
82     QMutex* myMutex;
83     QApplication* myQApp;
84     int isQAppLocked, isSessionLocked, myDelay;
85   public:
86     Mutex(QMutex* theMutex, QApplication* theQApp, int theDelay = 0);
87     ~Mutex();
88   };
89
90
91   //===========================================================================
92   class Storable : public virtual Base_i {
93   protected:
94     virtual void ToStream(std::ostringstream& theStr) = 0;
95   public:
96     std::string ToString();
97     virtual const char* GetComment() const = 0;
98     typedef std::map<std::string,QString> TRestoringMap;
99     typedef Storable* (*TStorableEngine)(SALOMEDS::SObject_ptr theSObject, 
100                                          const std::string& thePrefix, const TRestoringMap& theMap);
101     typedef std::map<string,TStorableEngine> TCallbackMap;
102     static void Registry(const char* theComment, TStorableEngine theEngine) 
103       throw(std::logic_error&);
104     static Storable* Create(SALOMEDS::SObject_ptr, const std::string& thePrefix, const std::string& theString) 
105       throw(std::runtime_error&);
106     static const QString& FindValue(const TRestoringMap& theMap, const std::string& theArg, bool* isFind = NULL)
107       throw(std::logic_error&);
108     static void StrToMap(const QString& theStr, VISU::Storable::TRestoringMap& theMap);
109     static SALOMEDS::SObject_ptr GetResultSO(SALOMEDS::SObject_ptr theSObject);
110     static void DataToStream(std::ostringstream& theStr, const QString& theName, const QString& theVal);
111     static void DataToStream(std::ostringstream& theStr, const QString& theName, const int theVal);
112     static void DataToStream(std::ostringstream& theStr, const QString& theName, const double theVal);
113   };
114
115
116   //===========================================================================
117   const CORBA::Boolean IsMultifile();
118   QString GenerateName(const string& theFmt, int theId);
119
120   PortableServer::Servant GetServant(CORBA::Object_ptr theObject);
121   CORBA::Object_var SObjectToObject(SALOMEDS::SObject_ptr theSObject);
122
123   SALOMEDS::SComponent_var FindOrCreateVisuComponent(SALOMEDS::Study_ptr theStudyDocument);
124
125   std::string CreateAttributes(SALOMEDS::Study_ptr theStudyDocument, 
126                                const char* theFatherEntry, const char* theRefFatherEntry,
127                                const char* theIOR, const char* theName, 
128                                const char* thePersistentRef, const char* theComment,
129                                CORBA::Boolean theCreateNew = true);
130
131   std::string FindEntryWithComment(SALOMEDS::Study_ptr theStudyDocument, const char* theStartEntry,
132                                    const char* theComment, int IsAllLevels = true);
133 }
134
135 #endif