]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/gdome_xslt/C++/gdome_xslt/GdomeSmartDOMXSLTStylesheet.cc
* added apply method that takes no parameters
[helm.git] / helm / DEVEL / gdome_xslt / C++ / gdome_xslt / GdomeSmartDOMXSLTStylesheet.cc
1 // This file is part of a XSLT engine working on Gdome documents. In fact,
2 // it just maps Gdome documents to libxml documents back and forth, and
3 // applies the transformation on libxml documents using libxlt.
4 // 
5 // Copyright (C) 2002: Luca Padovani <lpadovan@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 send an email to lpadovan@cs.unibo.it
22
23 #include "config.h"
24
25 #include <string>
26
27 #include <stdio.h>
28 #include <GdomeSmartDOM.hh>
29
30 #include "GdomeSmartDOMXSLTStylesheet.hh"
31
32 namespace GdomeSmartDOMExt {
33
34   XSLTStylesheet::XSLTStylesheet(const Document& doc)
35   {
36     assert(doc);
37     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
38     assert(_doc);
39     stylesheet = processStylesheet(_doc);
40     GdomeException _exc = 0;
41     gdome_doc_unref(_doc, &_exc);
42     assert(_exc == 0);
43   }
44
45   XSLTStylesheet::~XSLTStylesheet()
46   {
47     if (stylesheet)
48       {
49         xsltFreeStylesheet(stylesheet);
50         stylesheet = 0;
51       }
52   }
53
54   Document
55   XSLTStylesheet::apply(const Document& source) const
56   {
57     std::vector< std::pair<GdomeString,GdomeString> > noParams;
58     return apply(source, noParams);
59   }
60
61   Document
62   XSLTStylesheet::apply(const Document& source, const std::vector< std::pair<GdomeString,GdomeString> >& params) const
63   {
64     assert(source);
65
66     char** _params = (char**) malloc(sizeof(char*) * (2 * params.size() + 1));
67     for (unsigned i = 0; i < params.size(); i++)
68       {
69         std::string param = params[i].first;
70         _params[2 * i] = strdup(param.c_str());
71         std::string value = params[i].second;
72         _params[2 * i + 1] = strdup(value.c_str());
73       }
74     _params[2 * params.size()] = 0;
75
76     GdomeDocument* _source = gdome_cast_doc(source.gdome_object());
77     assert(_source);
78     GdomeDocument* _result = applyStylesheet(_source, stylesheet, const_cast<const char**>(_params));
79
80     GdomeException _exc = 0;
81     gdome_doc_unref(_source, &_exc);
82     assert(_exc == 0);
83
84     for (unsigned i = 0; i < 2 * params.size(); i++) free(_params[i]);
85     free(_params);
86
87     Document result(_result);
88     gdome_doc_unref(_result, &_exc);
89     assert(_exc == 0);
90
91     return result;
92   }
93
94   void
95   XSLTStylesheet::save(const Document& doc, const std::string& filename) const
96   {
97     assert(doc);
98     GdomeException _exc = 0;
99     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
100     assert(_doc);
101     if (saveResultToFilename(filename.c_str(), _doc, stylesheet, 0) < 0) throw SaveException();
102     gdome_doc_unref(_doc, &_exc);
103     assert(_exc == 0);
104   }
105
106   void
107   XSLTStylesheet::save(const Document& doc, FILE* f) const
108   {
109     assert(doc);
110     GdomeException _exc = 0;
111     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
112     assert(_doc);
113     if (saveResultToFile(f, _doc, stylesheet) < 0) throw SaveException();
114     gdome_doc_unref(_doc, &_exc);
115     assert(_exc == 0);
116   }
117
118   void
119   XSLTStylesheet::save(const Document& doc, int fd) const
120   {
121     assert(doc);
122     GdomeException _exc = 0;
123     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
124     assert(_doc);
125     if (saveResultToFd(fd, _doc, stylesheet) < 0) throw SaveException();
126     gdome_doc_unref(_doc, &_exc);
127     assert(_exc == 0);
128   }
129
130 }