Salome HOME
Merge with version on tag OCC-V2_1_0d
[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     Base_i();
62     virtual ~Base_i();
63     virtual char* GetID();
64     virtual VISU::VISUType GetType() = 0;
65
66   protected:
67     std::string myID;
68
69   protected:
70     static QMutex* myMutex;
71     static CORBA::ORB_var myOrb;
72     static PortableServer::POA_var myPoa;
73     static SALOME_NamingService* myNamingService;
74     static VISU_Gen_i* myVisuGenImpl;
75     static SALOME_LifeCycleCORBA* myEnginesLifeCycle;
76
77   public:
78     static CORBA::ORB_var GetORB() { return myOrb;}
79     static PortableServer::POA_var GetPOA() { return myPoa;}
80     static SALOME_NamingService* GetNS() { return myNamingService;}
81     static SALOME_LifeCycleCORBA* GetLCC() { return myEnginesLifeCycle;}
82     static VISU_Gen_i* GetVisuGenImpl() { return myVisuGenImpl;}
83   };
84
85
86   //===========================================================================
87   class Mutex{
88     QMutex* myMutex;
89     int isQAppLocked;
90   public:
91     Mutex(QMutex* theMutex);
92     ~Mutex();
93   };
94
95
96   //===========================================================================
97   class Storable : public virtual Base_i {
98   protected:
99     virtual void ToStream(std::ostringstream& theStr) = 0;
100   public:
101     std::string ToString();
102     virtual const char* GetComment() const = 0;
103     typedef std::map<std::string,QString> TRestoringMap;
104     typedef Storable* (*TStorableEngine)(SALOMEDS::SObject_ptr theSObject, 
105                                          const std::string& thePrefix, const TRestoringMap& theMap);
106     typedef std::map<std::string,TStorableEngine> TCallbackMap;
107     static void Registry(const char* theComment, TStorableEngine theEngine);
108     static Storable* Create(SALOMEDS::SObject_ptr, const std::string& thePrefix, const std::string& theString); 
109     static const QString& FindValue(const TRestoringMap& theMap, const std::string& theArg, bool* isFind = NULL);
110     static void StrToMap(const QString& theStr, VISU::Storable::TRestoringMap& theMap);
111     static SALOMEDS::SObject_ptr GetResultSO(SALOMEDS::SObject_ptr theSObject);
112     static void DataToStream(std::ostringstream& theStr, const QString& theName, const QString& theVal);
113     static void DataToStream(std::ostringstream& theStr, const QString& theName, const int theVal);
114     static void DataToStream(std::ostringstream& theStr, const QString& theName, const double theVal);
115   };
116
117
118   //===========================================================================
119   const CORBA::Boolean IsMultifile();
120   QString GenerateName(const std::string& theFmt, int theId);
121
122   PortableServer::ServantBase_var GetServant(CORBA::Object_ptr theObject);
123   CORBA::Object_var SObjectToObject(SALOMEDS::SObject_ptr theSObject);
124
125   SALOMEDS::SComponent_var FindOrCreateVisuComponent(SALOMEDS::Study_ptr theStudyDocument);
126
127   std::string CreateAttributes(SALOMEDS::Study_ptr theStudyDocument, 
128                                const char* theFatherEntry, const char* theRefFatherEntry,
129                                const char* theIOR, const char* theName, 
130                                const char* thePersistentRef, const char* theComment,
131                                CORBA::Boolean theCreateNew = true);
132
133   std::string FindEntryWithComment(SALOMEDS::Study_ptr theStudyDocument, const char* theStartEntry,
134                                    const char* theComment, int IsAllLevels = true);
135 }
136
137
138 #endif