]> SALOME platform Git repositories - modules/kernel.git/blob - src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx
Salome HOME
7c64ee719a6303df3758ec6bcd8f4baa8df46bc7
[modules/kernel.git] / src / ModuleCatalog / SALOME_ModuleCatalog_Acomponent_impl.hxx
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_Acomponent_impl.hxx
25 //  Author : Estelle Deville
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef ACOMPONENT_IMPL_H
30 #define ACOMPONENT_IMPL_H
31
32 #include "utilities.h"
33 #include "PathPrefix.hxx"
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SALOME_ModuleCatalog)
36
37 class SALOME_ModuleCatalog_AcomponentImpl: public POA_SALOME_ModuleCatalog::Acomponent,
38                       public PortableServer::RefCountServantBase 
39 {
40 public:
41   //! standard constructor
42   SALOME_ModuleCatalog_AcomponentImpl(const char* name, 
43                                       const char* constraint, 
44                                       SALOME_ModuleCatalog::ComponentType componenttype, 
45                                       CORBA::Boolean componentmultistudy,
46                                       const char* icone,
47                                       SALOME_ModuleCatalog::ListOfDefInterface list_interfaces,
48                                       ListOfPathPrefix pathes);
49
50   //! standard destructor
51   virtual ~SALOME_ModuleCatalog_AcomponentImpl();
52
53   //! method to get a list of the interfaces name of a component
54   /*!
55     \return a list of the interfaces of a component 
56   */
57   virtual SALOME_ModuleCatalog::ListOfInterfaces* GetInterfaceList() ;
58
59   //! method to get one interface of a component
60   /*! If the specified interface doesn't exist, the Notfound exception is thrown
61     \param interface name const car* arguments
62     \return the wanted interface
63   */
64   virtual SALOME_ModuleCatalog::DefinitionInterface* 
65              GetInterface(const char* interfacename)
66              throw(SALOME_ModuleCatalog::NotFound);
67
68   //! method to get a list of the services name of an interface of a component
69  /*!If the specified interface doesn't exist, the Notfound exception is thrown
70    \param interfacename const char* arguments 
71    \return a list of the services of the wanted interface
72  */
73   virtual SALOME_ModuleCatalog::ListOfServices* 
74              GetServiceList(const char* interfacename)
75              throw(SALOME_ModuleCatalog::NotFound);
76
77     
78   //! method to get one service of an interface of a component
79  /*! If the wanted service or the specified interface don't exist, 
80   *  the Notfound exception is thrown
81    \param interfacename const char* arguments 
82    \param servicename const char* arguments
83    \return the wanted service
84  */
85   virtual SALOME_ModuleCatalog::Service* 
86              GetService(const char* interfacename, 
87                         const char* servicename) 
88              throw(SALOME_ModuleCatalog::NotFound);
89
90   //! method to get the default service of an interface of a component
91   /*! If the specified interface doesn't exist, the Notfound exception is thrown
92     \param interfacename const char* arguments 
93     \return the default service of the interface
94   */
95   virtual SALOME_ModuleCatalog::Service* 
96              GetDefaultService(const char* interfacename) 
97              throw(SALOME_ModuleCatalog::NotFound);
98
99   //! method to get the PathPrefix of a computer
100  /*! If the wanted computer doesn't exist, the Notfound exception is thrown
101    \param machinename const char* arguments 
102    \return the prefix path
103  */
104   virtual char* GetPathPrefix(const char* machinename) 
105                 throw(SALOME_ModuleCatalog::NotFound);
106
107   //! method to obtain the constraint affected to a component
108   /*! to be resolved by LifeCycle for the computer choice
109     \return the constraint
110   */
111   virtual char* constraint() ;
112
113   //! method to obtain the componentname
114   /*!
115     \return the component name
116   */
117   virtual char* componentname();
118
119   //! method to define if a component can be multistudy or not
120   /*!
121     \return true if the component supports multistudy
122   */
123   virtual CORBA::Boolean multistudy();
124
125   //! method to define the type of the component
126   /*!
127     \return the component type
128   */
129   virtual SALOME_ModuleCatalog::ComponentType component_type() ;
130
131   //! method to obtain the component icone (for IAPP)
132   /*!
133     \return the component icone
134   */
135   virtual char* component_icone();
136
137 private :
138   char* _component_name ;
139   char* _constraint;
140   char* _icone;
141   SALOME_ModuleCatalog::ComponentType _componenttype;
142   CORBA::Boolean _componentmultistudy;
143   SALOME_ModuleCatalog::ListOfDefInterface _list_interfaces;
144   ListOfPathPrefix _pathes ;
145   
146
147  //! method to duplicate a service
148   /*!
149     \param service SALOME_ModuleCatalog::Service arguments
150     \return the service
151   */
152   virtual SALOME_ModuleCatalog::Service_var _duplicate_service(SALOME_ModuleCatalog::Service service);
153 };
154
155 #endif // ACOMPONENT_IMPL_H