Ginga  0.13.6
 All Classes Namespaces Functions Variables
NclStructureParser.h
1 /******************************************************************************
2 Este arquivo eh parte da implementacao do ambiente declarativo do middleware
3 Ginga (Ginga-NCL).
4 
5 Direitos Autorais Reservados (c) 1989-2007 PUC-Rio/Laboratorio TeleMidia
6 
7 Este programa eh software livre; voce pode redistribui-lo e/ou modificah-lo sob
8 os termos da Licenca Publica Geral GNU versao 2 conforme publicada pela Free
9 Software Foundation.
10 
11 Este programa eh distribuido na expectativa de que seja util, porem, SEM
12 NENHUMA GARANTIA; nem mesmo a garantia implicita de COMERCIABILIDADE OU
13 ADEQUACAO A UMA FINALIDADE ESPECIFICA. Consulte a Licenca Publica Geral do
14 GNU versao 2 para mais detalhes.
15 
16 Voce deve ter recebido uma copia da Licenca Publica Geral do GNU versao 2 junto
17 com este programa; se nao, escreva para a Free Software Foundation, Inc., no
18 endereco 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
19 
20 Para maiores informacoes:
21 ncl @ telemidia.puc-rio.br
22 http://www.ncl.org.br
23 http://www.ginga.org.br
24 http://www.telemidia.puc-rio.br
25 ******************************************************************************
26 This file is part of the declarative environment of middleware Ginga (Ginga-NCL)
27 
28 Copyright: 1989-2007 PUC-RIO/LABORATORIO TELEMIDIA, All Rights Reserved.
29 
30 This program is free software; you can redistribute it and/or modify it under
31 the terms of the GNU General Public License version 2 as published by
32 the Free Software Foundation.
33 
34 This program is distributed in the hope that it will be useful, but WITHOUT ANY
35 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
36 PARTICULAR PURPOSE. See the GNU General Public License version 2 for more
37 details.
38 
39 You should have received a copy of the GNU General Public License version 2
40 along with this program; if not, write to the Free Software
41 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
42 
43 For further information contact:
44 ncl @ telemidia.puc-rio.br
45 http://www.ncl.org.br
46 http://www.ginga.org.br
47 http://www.telemidia.puc-rio.br
48 *******************************************************************************/
49 
50 #ifndef NCLSTRUCTUREPARSER_H_
51 #define NCLSTRUCTUREPARSER_H_
52 
53 #include "../ModuleParser.h"
54 #include "../DocumentParser.h"
55 using namespace ::br::pucrio::telemidia::converter::framework;
56 
57 #include <xercesc/dom/DOM.hpp>
58 XERCES_CPP_NAMESPACE_USE
59 
60 #include <iostream>
61 #include <string>
62 using namespace std;
63 
64 #include "NclTransitionParser.h"
65 #include "NclPresentationSpecificationParser.h"
66 #include "NclComponentsParser.h"
67 #include "NclLinkingParser.h"
68 #include "NclLayoutParser.h"
69 #include "NclInterfacesParser.h"
70 #include "NclPresentationControlParser.h"
71 #include "NclConnectorsParser.h"
72 #include "NclImportParser.h"
73 #include "NclMetainformationParser.h"
74 
75 namespace br {
76 namespace pucrio {
77 namespace telemidia {
78 namespace converter {
79 namespace framework {
80 namespace ncl {
82  protected:
83  NclTransitionParser* transitionParser;
85  presentationSpecificationParser;
86 
87  NclComponentsParser *componentsParser;
88  NclLinkingParser *linkingParser;
89  NclLayoutParser *layoutParser;
90  NclInterfacesParser *interfacesParser;
91  NclPresentationControlParser *presentationControlParser;
92  NclConnectorsParser *connectorsParser;
93  NclImportParser *importParser;
94  NclMetainformationParser* metainformationParser;
95 
96  public:
97  NclStructureParser(DocumentParser *documentParser);
98 
99  virtual void* parseBody(DOMElement *parentElement,
100  void *objGrandParent);
101 
102  virtual void* posCompileBody(
103  DOMElement *parentElement, void *parentObject);
104 
105  virtual void* createBody(
106  DOMElement *parentElement, void *objGrandParent)=0;
107 
108  virtual void addPropertyToBody(
109  void *parentObject, void *childObject)=0;
110 
111  virtual void addPortToBody(
112  void *parentObject, void *childObject)=0;
113 
114  virtual void addMediaToBody(
115  void *parentObject, void *childObject)=0;
116 
117  virtual void addContextToBody(
118  void *parentObject, void *childObject)=0;
119 
120  virtual void addSwitchToBody(
121  void *parentObject, void *childObject)=0;
122 
123  virtual void addLinkToBody(
124  void *parentObject, void *childObject)=0;
125 
126  virtual void* parseHead(
127  DOMElement *parentElement, void *objGrandParent);
128 
129  virtual void* createHead(
130  DOMElement *parentElement, void *objGrandParent)=0;
131 
132  virtual void addRegionBaseToHead(
133  void *parentObject, void *childObject)=0;
134 
135  virtual void addDescriptorBaseToHead(
136  void *parentObject, void *childObject)=0;
137 
138  virtual void addTransitionBaseToHead(
139  void* parentObject, void* childObject)=0;
140 
141  virtual void addRuleBaseToHead(
142  void *parentObject, void *childObject)=0;
143 
144  virtual void addConnectorBaseToHead(
145  void *parentObject, void *childObject)=0;
146 
147  virtual void addImportedDocumentBaseToHead(
148  void *parentObject, void *childObject)=0;
149 
150  virtual void addMetaToHead(
151  void *parentObject, void *childObject)=0;
152 
153  virtual void addMetadataToHead(
154  void *parentObject, void *childObject)=0;
155 
156  virtual void* parseNcl(
157  DOMElement *parentElement, void *objGrandParent);
158 
159  virtual void* createNcl(
160  DOMElement *parentElement, void *objGrandParent)=0;
161 
162  virtual void addHeadToNcl(
163  void *parentObject, void *childObject)=0;
164 
165  virtual void addBodyToNcl(
166  void *parentObject, void *childObject)=0;
167 
168  NclTransitionParser* getTransitionParser();
169  void setTransitionParser(NclTransitionParser* transitionParser);
170 
172  getPresentationSpecificationParser();
173 
174  void setPresentationSpecificationParser(
176  presentationSpecificationParser);
177 
178  NclComponentsParser* getComponentsParser();
179  void setComponentsParser(NclComponentsParser *componentsParser);
180  NclLinkingParser* getLinkingParser();
181  void setLinkingParser(NclLinkingParser *linkingParser);
182  NclLayoutParser* getLayoutParser();
183  void setLayoutParser(NclLayoutParser *layoutParser);
184  NclMetainformationParser* getMetainformationParser();
185  NclInterfacesParser* getInterfacesParser();
186  void setInterfacesParser(NclInterfacesParser *interfacesParser);
187  NclPresentationControlParser* getPresentationControlParser();
188 
189  void setPresentationControlParser(
190  NclPresentationControlParser *presentationControlParser);
191 
192  NclConnectorsParser* getConnectorsParser();
193  void setConnectorsParser(NclConnectorsParser *connectorsParser);
194  NclImportParser* getImportParser();
195  void setImportParser(NclImportParser *importParser);
196  void setMetainformationParser(
197  NclMetainformationParser* metainformationParser);
198  };
199 }
200 }
201 }
202 }
203 }
204 }
205 
206 #endif /*NCLSTRUCTUREPARSER_H_*/