Salome HOME
Update copyright information
[modules/superv.git] / src / GraphBase / DataFlowBase_StreamGraph.hxx
1 //  Copyright (C) 2007-2008  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.
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 //  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
23 //  File   : DataFlowBase_StreamGraph.hxx
24 //  Author : Jean Rahuel
25 //  Module : SUPERV
26 //
27 #ifndef _DATAFLOWBASE_STREAMGRAPH_HXX
28 #define _DATAFLOWBASE_STREAMGRAPH_HXX
29
30 #include "DataFlowBase_Graph.hxx"
31
32 namespace GraphBase {
33
34   class StreamGraph : public Graph {
35
36     private:
37     
38 // Configuration :
39 // The name is the name of the graph
40       long                          _Timeout ;
41       SUPERV::KindOfDataStreamTrace _DataStreamTrace ;
42       double                        _DeltaTime ;
43
44 // Total number of SubStreamGraphs
45       int                           _SubStreamGraphsNumber ;
46
47     protected:
48
49     public:
50
51       StreamGraph() ;
52
53       StreamGraph( CORBA::ORB_ptr ORB ,
54                    SALOME_NamingService* ptrNamingService ,
55                    const char * DataFlowName ,
56                    const SUPERV::KindOfNode DataFlowkind ,
57                    int * Graph_prof_debug ,
58                    ofstream * Graph_fdebug ) ;
59
60       StreamGraph( CORBA::ORB_ptr ORB ,
61                    SALOME_NamingService * ptrNamingService ,
62                    const SALOME_ModuleCatalog::Service & DataFlowService ,
63                    const char * DataFlowComponentName ,
64                    const char * DataFlowInterfaceName ,
65                    const char * DataFlowName ,
66                    const SUPERV::KindOfNode DataFlowkind ,
67                    const SUPERV::SDate DataFlowFirstCreation ,
68                    const SUPERV::SDate DataFlowLastModification ,
69                    const char * DataFlowEditorRelease ,
70                    const char * DataFlowAuthor ,
71                    const char * DataFlowComputer ,
72                    const char * DataFlowComment ,
73                    int * Graph_prof_debug ,
74                    ofstream * Graph_fdebug ) ;
75
76       ~StreamGraph() ;
77
78       bool SetStreamParams( CORBA::Long Timeout ,
79                             const SUPERV::KindOfDataStreamTrace DataStreamTrace ,
80                             CORBA::Double  DeltaTime ) ;
81       void StreamParams( CORBA::Long & Timeout ,
82                          SUPERV::KindOfDataStreamTrace & DataStreamTrace ,
83                          CORBA::Double & DeltaTime ) const ;
84
85       bool CreateStreamTopology( const char * aDirectory ) ;
86
87       void SubStreamGraphsNumber( int SubStreamGraphsNumber ) {
88            _SubStreamGraphsNumber = SubStreamGraphsNumber ; } ;
89       long SubStreamGraphsNumber() const {
90            return _SubStreamGraphsNumber ; } ;
91
92   };
93
94 };
95
96 ostream & operator<< (ostream &,const SUPERV::KindOfDataStreamTrace &);
97
98 #endif