]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/CMathMLFactoryXSLT.cc
* licenses updated
[helm.git] / helm / DEVEL / mathml_editor / src / CMathMLFactoryXSLT.cc
1 /* This file is part of EdiTeX, an editor of mathematical
2  * expressions based on TeX syntax.
3  * 
4  * Copyright (C) 2002-2003 Luca Padovani <lpadovan@cs.unibo.it>,
5  *                    2003 Paolo Marinelli <pmarinel@cs.unibo.it>.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  * For more information, please visit the project's home page
22  * http://helm.cs.unibo.it/editex/
23  * or send an email to <lpadovan@cs.unibo.it>
24  */
25
26 #include "dom.hh"
27 #include "TNode.hh"
28 #include "TDocument.hh"
29 #include "CMathMLFactoryXSLT.hh"
30 #include "AMathMLConsumer.hh"
31
32 CMathMLFactoryXSLT::CMathMLFactoryXSLT(ALogger& l, const DOMX::XSLTStylesheet& s)
33   : AMathMLFactory(l), style(s)
34 {
35   DOM::DOMImplementation di;
36   DOM::DocumentType dt;
37   result = di.createDocument(MATHML_NS_URI, "m:math", dt);
38 }
39
40 void
41 CMathMLFactoryXSLT::documentModified(TDocument& doc)
42 {
43   std::vector< std::pair<DOM::GdomeString, DOM::GdomeString> > dirtyId;
44   if (TNode dirty = doc.dirtyNode())
45     if (result.get_documentElement().hasAttribute("xref"))
46       dirtyId.push_back(std::make_pair(DOM::GdomeString("id"),
47                                        DOM::GdomeString("'" + std::string(dirty["id"]) + "'")));
48   DOM::Document res = style.apply(doc.document(), dirtyId);
49   assert(res);
50   style.save(doc.document(), stdout);
51
52   DOM::Element root = res.get_documentElement();
53   assert(root);
54
55   if (result.get_documentElement().hasAttribute("xref"))
56     {
57       bool ok = subst(result.get_documentElement(), root.getAttribute("xref"), result.importNode(root, true));
58       assert(ok);
59     }
60   else
61     result.replaceChild(result.importNode(root, true), result.get_documentElement());
62
63   style.save(result, stdout);
64
65   doc.clearDirty();
66 }
67
68 bool
69 CMathMLFactoryXSLT::subst(const DOM::Element& e1, const DOM::GdomeString& id, const DOM::Element& e2)
70 {
71   assert(e1);
72   assert(e2);
73   if (e1.getAttribute("xref") == id)
74     {
75       DOM::Node parent = e1.get_parentNode();
76       assert(parent);
77       parent.replaceChild(e2, e1);
78       return true;
79     }
80   else
81     {
82       DOM::Node p = e1.get_firstChild();
83       while (p)
84         {
85           while (p && p.get_nodeType() != DOM::Node::ELEMENT_NODE) p = p.get_nextSibling();
86           if (p)
87             if (subst(p, id, e2)) return true;
88             else p = p.get_nextSibling();
89         }
90       return false;
91     }
92 }
93