]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/CMathMLFactoryXSLTDiff.cc
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / DEVEL / mathml_editor / src / CMathMLFactoryXSLTDiff.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 "Diff.hh"
28 #include "TNode.hh"
29 #include "TDocument.hh"
30 #include "CMathMLFactoryXSLTDiff.hh"
31 #include "AMathMLConsumer.hh"
32 #include <cassert>
33
34 CMathMLFactoryXSLTDiff::CMathMLFactoryXSLTDiff(ALogger& l, const DOMX::XSLTStylesheet& s)
35   : AMathMLFactory(l), style(s)
36 {
37   DOM::DOMImplementation di;
38   DOM::DocumentType dt;
39   result = di.createDocument(MATHML_NS_URI, "m:math", dt);
40 }
41
42 void
43 CMathMLFactoryXSLTDiff::documentModified(TDocument& doc)
44 {
45 #if 0
46   std::vector< std::pair<DOM::GdomeString, DOM::GdomeString> > dirtyId;
47   if (TNode dirty = doc.dirtyNode()) 
48     if (false && result.get_documentElement().hasAttribute("xref"))
49       dirtyId.push_back(std::make_pair(DOM::GdomeString("id"),
50                                        DOM::GdomeString("'" + std::string(dirty["id"]) + "'")));
51 #endif
52   DOM::Document res = style.apply(doc.document());
53   assert(res);
54   //cout << "*** THE TEX DOCUMENT" << endl;
55   //style.save(doc.document(), stdout);
56   std::cout << "*** THE CURRENT DOCUMENT:" << std::endl;
57   if (result) style.save(result, stdout);
58   std::cout << "*** THE NEW DOCUMENT:" << std::endl;
59   style.save(res, stdout);
60   std::cout << "*** THE DIFF:" << std::endl;
61   DOMX::Diff diff = DOMX::Diff::diff(result, res);
62   style.save(diff.document(), stdout);
63   diff.patch();
64
65   doc.clearDirty();
66 }
67
68 bool
69 CMathMLFactoryXSLTDiff::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       DOMX::Diff diff = DOMX::Diff::diff(e1, e2);
76       style.save(diff.document(), stdout);
77       diff.patch();
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