]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/gdome_xslt/C++/gdome_xslt/GdomeSmartDOMXSLTStylesheet.cc
Initial revision
[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 GdomeSmartDOM {
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 std::vector< std::pair<GdomeString,GdomeString> >& params) const
56   {
57     assert(source);
58
59     char** _params = (char**) malloc(sizeof(char*) * (2 * params.size() + 1));
60     for (unsigned i = 0; i < params.size(); i++)
61       {
62         std::string param = params[i].first;
63         _params[2 * i] = strdup(param.c_str());
64         std::string value = params[i].second;
65         _params[2 * i + 1] = strdup(value.c_str());
66       }
67     _params[2 * params.size()] = 0;
68
69     GdomeDocument* _source = gdome_cast_doc(source.gdome_object());
70     assert(_source);
71     GdomeDocument* _result = applyStylesheet(_source, stylesheet, const_cast<const char**>(_params));
72
73     GdomeException _exc = 0;
74     gdome_doc_unref(_source, &_exc);
75     assert(_exc == 0);
76
77     for (unsigned i = 0; i < 2 * params.size(); i++) free(_params[i]);
78     free(_params);
79
80     Document result(_result);
81     gdome_doc_unref(_result, &_exc);
82     assert(_exc == 0);
83
84     return result;
85   }
86
87   void
88   XSLTStylesheet::save(const Document& doc, const std::string& filename) const
89   {
90     assert(doc);
91     GdomeException _exc = 0;
92     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
93     assert(_doc);
94     if (saveResultToFilename(filename.c_str(), _doc, stylesheet, 0) < 0) throw SaveException();
95     gdome_doc_unref(_doc, &_exc);
96     assert(_exc == 0);
97   }
98
99   void
100   XSLTStylesheet::save(const Document& doc, FILE* f) const
101   {
102     assert(doc);
103     GdomeException _exc = 0;
104     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
105     assert(_doc);
106     if (saveResultToFile(f, _doc, stylesheet) < 0) throw SaveException();
107     gdome_doc_unref(_doc, &_exc);
108     assert(_exc == 0);
109   }
110
111   void
112   XSLTStylesheet::save(const Document& doc, int fd) const
113   {
114     assert(doc);
115     GdomeException _exc = 0;
116     GdomeDocument* _doc = gdome_cast_doc(doc.gdome_object());
117     assert(_doc);
118     if (saveResultToFd(fd, _doc, stylesheet) < 0) throw SaveException();
119     gdome_doc_unref(_doc, &_exc);
120     assert(_exc == 0);
121   }
122
123 }