]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/CMathMLFactoryXSLTDiff.cc
ocaml 3.09 transition
[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 <config.h>
27 #include <cassert>
28
29 #include "dom.hh"
30 #include "timer.hh"
31 #include "Diff.hh"
32 #include "TNode.hh"
33 #include "TDocument.hh"
34 #include "CMathMLFactoryXSLTDiff.hh"
35 #include "AMathMLConsumer.hh"
36
37 CMathMLFactoryXSLTDiff::CMathMLFactoryXSLTDiff(ALogger& l, const DOMX::XSLTStylesheet& s)
38   : AMathMLFactory(l), style(s)
39 {
40   DOM::DOMImplementation di;
41   DOM::DocumentType dt;
42   result = di.createDocument(MATHML_NS_URI, "m:math", dt);
43 }
44
45 void
46 CMathMLFactoryXSLTDiff::documentModified(TDocument& doc)
47 {
48 #if 0
49   std::vector< std::pair<DOM::GdomeString, DOM::GdomeString> > dirtyId;
50   if (TNode dirty = doc.dirtyNode()) 
51     if (false && result.get_documentElement().hasAttribute("xref"))
52       dirtyId.push_back(std::make_pair(DOM::GdomeString("id"),
53                                        DOM::GdomeString("'" + std::string(dirty["id"]) + "'")));
54 #endif
55   long t0 = getTimer();
56   DOM::Document res = style.apply(doc.document());
57   long t1 = getTimer();
58   assert(res);
59   //cout << "*** THE TEX DOCUMENT" << endl;
60   //style.save(doc.document(), stdout);
61   //std::cout << "*** THE CURRENT DOCUMENT:" << std::endl;
62   //if (result) style.save(result, stdout);
63   //std::cout << "*** THE NEW DOCUMENT:" << std::endl;
64   //style.save(res, stdout);
65   //std::cout << "*** THE DIFF:" << std::endl;
66   DOMX::Diff diff = DOMX::Diff::diff(result, res);
67   //style.save(diff.document(), stdout);
68   long t2 = getTimer();
69   diff.patch();
70   long t3 = getTimer();
71
72   //std::cout << "=== APPLY = " << (t1 - t0) / 1000 << " DIFF = " << (t2 - t1) / 1000 << " PATCH = " << (t3 - t2) / 1000 << std::endl;
73
74   doc.clearDirty();
75 }
76
77 bool
78 CMathMLFactoryXSLTDiff::subst(const DOM::Element& e1, const DOM::GdomeString& id, const DOM::Element& e2)
79 {
80   assert(e1);
81   assert(e2);
82   if (e1.getAttribute("xref") == id)
83     {
84       DOMX::Diff diff = DOMX::Diff::diff(e1, e2);
85       //style.save(diff.document(), stdout);
86       diff.patch();
87       return true;
88     }
89   else
90     {
91       DOM::Node p = e1.get_firstChild();
92       while (p)
93         {
94           while (p && p.get_nodeType() != DOM::Node::ELEMENT_NODE) p = p.get_nextSibling();
95           if (p)
96             if (subst(p, id, e2)) return true;
97             else p = p.get_nextSibling();
98         }
99       return false;
100     }
101 }
102