Salome HOME
b4f3d9e0e881e1d99c4ab1f69b20f647307a35f4
[modules/superv.git] / src / GraphBase / DataFlowBase_XmlHandler.hxx
1 //  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
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   : GraphBase_XmlHandler.hxx
25 //  Author : Arnaud RES
26 //  Module : SUPERV
27 //  $Header$
28
29 #define  INCLUDE_MENUITEM_DEF 
30 #define QT_ALTERNATE_QTSMANIP
31
32 #include "DataFlowBase_Graph.hxx"
33
34 #include <qxml.h>
35 #include <qstringlist.h>
36 #include <qaction.h>
37 #include <qlist.h>
38
39 //#include <SALOMEconfig.h>
40 //#include CORBA_CLIENT_HEADER(SALOME_SuperVision)
41
42
43 #define maxlevel 7
44
45 namespace GraphBase {
46
47   class XmlHandler : public QXmlDefaultHandler {
48
49     CORBA::ORB_ptr _Orb ;
50     bool dataflowxml ;
51     string fieldname[maxlevel] ;
52     string fieldvalue[maxlevel] ;
53     long step[maxlevel] ;
54     long depth ;
55     bool constructor ;
56     GraphBase::SNode aNode ;
57     SALOME_ModuleCatalog::ServicesParameter aParameter ;
58     GraphBase::InDataStreamParameter anInDataStreamParameter ;
59     GraphBase::OutDataStreamParameter anOutDataStreamParameter ;
60 //    SALOME_ModuleCatalog::ServicesDataStreamParameter aDataStreamParameter ;
61     SUPERV::ListOfStrings aPythonFunction ;
62     GraphBase::SLink aLink ;
63 //    SALOME_SuperVisionBase::ServicesParameterValue aLinkValue ;
64     CORBA::Any aLinkValue ;
65     int X ;
66     int Y ;
67     int VXSize ;
68     vector<int > VX ;
69     vector<int > VY ;
70     QString     errorProt;
71
72     int GraphsNumber ;
73     GraphBase::ListOfSGraphs aListOfDataFlows ;
74
75   public:
76
77     XmlHandler();
78     XmlHandler( CORBA::ORB_ptr Orb , const bool aConstructor );
79     virtual ~XmlHandler();
80
81     GraphBase::ListOfSGraphs & ListOfDataFlows() {
82                                return aListOfDataFlows ; } ;
83
84     // return the error protocol if parsing failed
85     QString errorProtocol();
86   
87     // overloaded handler functions
88     bool startDocument() ;
89     bool endDocument() ;
90     bool startElement( const QString& namespaceURI, const QString& localName, 
91                        const QString& qName, const QXmlAttributes& atts ) ;
92     bool endElement( const QString& namespaceURI, const QString& localName,
93                      const QString& qName ) ;
94     bool characters( const QString& ch ) ;
95   
96     QString errorString();
97   
98     bool fatalError( const QXmlParseException& exception);
99
100     SUPERV::SDate StringToDate( QString& qstrDate) const; 
101
102     const long getdepth() const { return depth ; } ;
103     const string getfieldname( const long adepth ) const { return fieldname[adepth] ; } ;
104     const string getfieldvalue( const long adepth ) const { return fieldvalue[adepth] ; } ;
105
106   };
107
108 } ;
109