Ginga  0.13.6
 All Classes Namespaces Functions Variables
NclComponentsConverter.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 NclComponentsConverter_H
51 #define NclComponentsConverter_H
52 
53 #include "ncl/reuse/ReferNode.h"
54 #include "ncl/reuse/ReferredNode.h"
55 using namespace ::br::pucrio::telemidia::ncl::reuse;
56 
57 #include "ncl/switches/SwitchNode.h"
58 using namespace ::br::pucrio::telemidia::ncl::switches;
59 
60 #include "ncl/descriptor/GenericDescriptor.h"
61 using namespace ::br::pucrio::telemidia::ncl::descriptor;
62 
63 #include "ncl/interfaces/Anchor.h"
64 #include "ncl/interfaces/Port.h"
65 using namespace ::br::pucrio::telemidia::ncl::interfaces;
66 
67 #include "ncl/components/NodeEntity.h"
68 #include "ncl/components/ContextNode.h"
69 #include "ncl/components/ContentNode.h"
70 #include "ncl/components/AbsoluteReferenceContent.h"
71 using namespace ::br::pucrio::telemidia::ncl::components;
72 
73 #include "ncl/link/Link.h"
74 using namespace ::br::pucrio::telemidia::ncl::link;
75 
76 #include "ncl/connectors/Role.h"
77 using namespace ::br::pucrio::telemidia::ncl::connectors;
78 
79 #include "ncl/NclDocument.h"
80 using namespace ::br::pucrio::telemidia::ncl;
81 
82 #include <map>
83 #include <vector>
84 #include <string>
85 using namespace std;
86 
87 #include "../framework/DocumentParser.h"
88 #include "../framework/ModuleParser.h"
89 using namespace ::br::pucrio::telemidia::converter::framework;
90 
91 #include "../framework/ncl/NclComponentsParser.h"
92 using namespace ::br::pucrio::telemidia::converter::framework::ncl;
93 
94 #include "NclPresentationSpecConverter.h"
95 #include "NclLinkingConverter.h"
96 #include "NclInterfacesConverter.h"
97 #include "NclPresentationControlConverter.h"
98 
99 #include <xercesc/dom/DOM.hpp>
100 XERCES_CPP_NAMESPACE_USE
101 
102 namespace br {
103 namespace pucrio {
104 namespace telemidia {
105 namespace converter {
106 namespace ncl {
107  class NclComponentsConverter : public NclComponentsParser {
108  /*tabela com a lista dos elementos q devem ser compilados ao fim do
109  * processamento da composicao, ja' que referenciam outros elementos
110  * TODO deve ser feito o mesmo para linkBase, mas como esse elemento costuma
111  * vir ao final da composicao, foi ignorado pelo momento
112  * para reaproveitar:
113  * 1) copiar e inicializar as vars. abaixo
114  * 2) criar addbinddescriptor...2 para representar o add original
115  * 3) criar addcompositeinterface...2 para representar o add original
116  * 4) copiar o addbinddescriptor... addcompositeinterface...
117  * posCreateCompositionContentGroup e posCompileCompositionContentGroup
118  *
119  * 5)chamar o posCreateCompositionContentGroup do createcomposition
120  * 6) chamar o posCreateCompositionContentGroup na criacao do body
121  * 7) chamar o posCompileCompositionContentGroup no poscompile do body
122  * 8) criar createBindDescriptorGroup2 e fazer o antigo retornar o elemento
123  * 9) criar createCompositeInterfaceElementGroup2 e fazer o antigo retornar
124  * o elemento
125  */
126 
127  public:
128  NclComponentsConverter(DocumentParser *documentParser);
129  void addPortToContext(void *parentObject, void *childObject);
130  void addPropertyToContext(void *parentObject, void *childObject);
131  void addContextToContext(void *parentObject, void *childObject);
132  void addMediaToContext(void *parentObject, void *childObject);
133  void addLinkToContext(void *parentObject, void *childObject);
134 
135  private:
136  void addNodeToContext(ContextNode *contextNode, NodeEntity *node);
137  void addAnchorToMedia(ContentNode *contentNode, Anchor *anchor);
138 
139  public:
140  void addAreaToMedia(void *parentObject, void *childObject);
141  void addPropertyToMedia(void *parentObject, void *childObject);
142  void addSwitchToContext(void *parentObject, void *childObject);
143  void *createContext(DOMElement *parentElement, void *objGrandParent);
144  void *posCompileContext(DOMElement *parentElement, void *parentObject);
145  void *createMedia(DOMElement *parentElement, void *objGrandParent);
146  };
147 }
148 }
149 }
150 }
151 }
152 
153 #endif //NclComponentsConverter