]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/CMathMLFactoryXSLTDiff.cc
8d59bf19a204cd9bceda8606c019be08cded9492
[helm.git] / helm / DEVEL / mathml_editor / src / CMathMLFactoryXSLTDiff.cc
1 /* Copyright (C) 2002-2003, Luca Padovani <luca.padovani@cs.unibo.it>,
2  *                    2003, Paolo Marinelli <pmarinel@cs.unibo.it>.
3  *
4  * This file is part of EdiTeX, an editor of mathematical
5  * expressions based on TeX syntax
6  * 
7  * EdiTeX is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * EdiTeX 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
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with EdiTeX; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20  * 
21  * For details, see the EdiTeX World-Wide-Web page,
22  * http://helm.cs.unibo.it/editex, or send a mail to
23  * <luca.padovani@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
33 CMathMLFactoryXSLTDiff::CMathMLFactoryXSLTDiff(ALogger& l, const DOMX::XSLTStylesheet& s)
34   : AMathMLFactory(l), style(s)
35 {
36   DOM::DOMImplementation di;
37   DOM::DocumentType dt;
38   result = di.createDocument(MATHML_NS_URI, "m:math", dt);
39 }
40
41 void
42 CMathMLFactoryXSLTDiff::documentModified(TDocument& doc)
43 {
44 #if 0
45   std::vector< std::pair<DOM::GdomeString, DOM::GdomeString> > dirtyId;
46   if (TNode dirty = doc.dirtyNode()) 
47     if (false && result.get_documentElement().hasAttribute("xref"))
48       dirtyId.push_back(std::make_pair(DOM::GdomeString("id"),
49                                        DOM::GdomeString("'" + std::string(dirty["id"]) + "'")));
50 #endif
51   DOM::Document res = style.apply(doc.document());
52   assert(res);
53   //cout << "*** THE TEX DOCUMENT" << endl;
54   //style.save(doc.document(), stdout);
55   cout << "*** THE CURRENT DOCUMENT:" << endl;
56   if (result) style.save(result, stdout);
57   cout << "*** THE NEW DOCUMENT:" << endl;
58   style.save(res, stdout);
59   cout << "*** THE DIFF:" << endl;
60   DOMX::Diff diff = DOMX::Diff::diff(result, res);
61   style.save(diff.document(), stdout);
62   diff.patch();
63
64   doc.clearDirty();
65 }
66
67 bool
68 CMathMLFactoryXSLTDiff::subst(const DOM::Element& e1, const DOM::GdomeString& id, const DOM::Element& e2)
69 {
70   assert(e1);
71   assert(e2);
72   if (e1.getAttribute("xref") == id)
73     {
74       DOMX::Diff diff = DOMX::Diff::diff(e1, e2);
75       style.save(diff.document(), stdout);
76       diff.patch();
77       return true;
78     }
79   else
80     {
81       DOM::Node p = e1.get_firstChild();
82       while (p)
83         {
84           while (p && p.get_nodeType() != DOM::Node::ELEMENT_NODE) p = p.get_nextSibling();
85           if (p)
86             if (subst(p, id, e2)) return true;
87             else p = p.get_nextSibling();
88         }
89       return false;
90     }
91 }
92