]> git.lyx.org Git - lyx.git/blob - src/insets/insetexternal.C
b95ae9939712e1e54a7c91b8c27d058cdc9ffa8e
[lyx.git] / src / insets / insetexternal.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *      
6  *          Copyright 1995 Matthias Ettrich
7  *          Copyright 1995-2000 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include <cstdio>
18 #include <utility>
19
20 #include "insetexternal.h"
21 #include "ExternalTemplate.h"
22 #include "BufferView.h"
23 #include "buffer.h"
24 #include "LyXView.h"
25 #include "frontends/Dialogs.h"
26 #include "lyx_main.h"
27 #include "LaTeXFeatures.h"
28 #include "support/filetools.h"
29 #include "support/lstrings.h"
30 #include "support/path.h"
31 #include "support/syscall.h"
32 #include "gettext.h"
33
34 using std::endl;
35
36 InsetExternal::InsetExternal() 
37         : view(0)
38 {
39         tempname = lyx::tempName(string(), "lyxext");
40         //ExternalTemplateManager::Templates::const_iterator i1;
41         params_.templ = ExternalTemplateManager::get().getTemplates().begin()->second;
42 }
43
44
45 InsetExternal::~InsetExternal()
46 {
47         lyx::unlink(tempname);
48         hideDialog();
49 }
50
51
52 InsetExternal::Params InsetExternal::params() const
53 {
54         return params_;
55 }
56  
57  
58 void InsetExternal::setFromParams(Params const & p)
59 {
60         params_.filename = p.filename;
61         params_.parameters = p.parameters;
62         params_.templ = p.templ;
63 }      
64
65
66 string const InsetExternal::EditMessage() const
67 {
68         return doSubstitution(0, params_.templ.guiName);
69 }
70
71
72 void InsetExternal::Edit(BufferView * bv,
73                          int /*x*/, int /*y*/, unsigned int /*button*/)
74 {
75         view = bv;
76         view->owner()->getDialogs()->showExternal(this);
77 }
78
79
80 void InsetExternal::Write(Buffer const *, std::ostream & os) const
81 {
82         os << "External " << params_.templ.lyxName << ",\"" << params_.filename 
83            << "\",\"" << params_.parameters << "\"\n";
84 }
85
86
87 void InsetExternal::Read(Buffer const *, LyXLex & lex)
88 {
89         string format;
90         string token;
91
92         // Read inset data from lex and store in format
93         if (lex.EatLine()) {
94                 format = lex.GetString();
95         } else
96                 lex.printError("InsetExternal: Parse error: `$$Token'");
97         while (lex.IsOK()) {
98                 lex.nextToken();
99                 token = lex.GetString();
100                 if (token == "\\end_inset")
101                         break;
102         }
103         if (token != "\\end_inset") {
104                 lex.printError("Missing \\end_inset at this point. "
105                                "Read: `$$Token'");
106         }
107
108         // Parse string format...
109         string::size_type const pos1 = format.find(",");
110         params_.templ = ExternalTemplateManager::get().getTemplateByName(format.substr(0, pos1));
111         string::size_type const pos2 = format.find("\",\"", pos1);
112         params_.filename = format.substr(pos1 + 2, pos2 - (pos1 + 2));
113         params_.parameters = format.substr(pos2 + 3, format.length() - (pos2 + 4));
114
115         lyxerr[Debug::INFO] << "InsetExternal::Read: " << params_.templ.lyxName
116                             << " " << params_.filename
117                             << " " << params_.parameters << endl;
118 }
119
120
121 int InsetExternal::write(string const & format,
122                          Buffer const * buf, std::ostream & os) const
123 {
124         ExternalTemplate const & et = params_.templ;
125         ExternalTemplate::Formats::const_iterator cit =
126                 et.formats.find(format);
127         if (cit == et.formats.end()) {
128                 lyxerr << "External template format '" << format
129                        << "' not specified in template " << params_.templ.lyxName
130                        << endl;
131                 return 0;
132         }
133         
134         if (et.automaticProduction) {
135                 executeCommand(doSubstitution(buf,
136                                               (*cit).second.updateCommand),
137                                buf);
138         }
139         
140         os << doSubstitution(buf, (*cit).second.product);
141         return 0; // CHECK  (FIXME check what ? - jbl)
142 }
143
144
145 int InsetExternal::Latex(Buffer const * buf,
146                          std::ostream & os, bool, bool) const
147 {
148         return write("LaTeX", buf, os);
149 }
150
151
152 int InsetExternal::Ascii(Buffer const * buf, std::ostream & os, int) const
153 {
154         return write("Ascii", buf, os);
155 }
156
157
158 int InsetExternal::Linuxdoc(Buffer const * buf, std::ostream & os) const
159 {
160         return write("LinuxDoc", buf, os);
161 }
162
163
164 int InsetExternal::DocBook(Buffer const * buf, std::ostream & os) const
165 {
166         return write("DocBook", buf, os);
167 }
168
169
170 void InsetExternal::Validate(LaTeXFeatures & features) const
171 {
172         ExternalTemplate const & et = params_.templ;
173         ExternalTemplate::Formats::const_iterator cit =
174                 et.formats.find("LaTeX");
175
176         if (cit == et.formats.end())
177                 return;
178         
179         if (!(*cit).second.requirement.empty()) {
180                 features.require((*cit).second.requirement);
181         }
182         if (!(*cit).second.preamble.empty()) {
183                 features.externalPreambles += (*cit).second.preamble + "\n";
184         }
185 }
186
187
188 Inset * InsetExternal::Clone(Buffer const &) const
189 {
190         InsetExternal * inset = new InsetExternal();
191         inset->params_ = params_;
192         return inset;
193 }
194
195
196 string const InsetExternal::getScreenLabel() const
197 {
198         ExternalTemplate const & et = params_.templ;
199         if (et.guiName.empty())
200                 return _("External");
201         else
202                 return doSubstitution(0, et.guiName);
203 }
204
205
206 void InsetExternal::executeCommand(string const & s,
207                                    Buffer const * buffer) const
208 {
209         string buf = MakeAbsPath(buffer->fileName());
210         string path = OnlyPath(buf);
211         Path p(path);
212         Systemcalls one;
213         if (lyxerr.debugging()) {
214                 lyxerr << "Executing '" << s << "' in '"
215                        << path << "'" << endl;
216         }
217         one.startscript(Systemcalls::Wait, s);
218 }
219
220
221 string const InsetExternal::doSubstitution(Buffer const * buffer,
222                                      string const & s) const
223 {
224         string result;
225         string const basename = ChangeExtension(params_.filename, string());
226         result = subst(s, "$$FName", params_.filename);
227         result = subst(result, "$$Basename", basename);
228         result = subst(result, "$$Parameters", params_.parameters);
229         result = ReplaceEnvironmentPath(result);
230         result = subst(result, "$$Tempname", tempname);
231         result = subst(result, "$$Sysdir", system_lyxdir);
232         
233         // Handle the $$Contents(filename) syntax
234         if (contains(result, "$$Contents(\"")) {
235
236                 string::size_type const pos = result.find("$$Contents(\"");
237                 string::size_type const end = result.find("\")", pos);
238                 string const file = result.substr(pos + 12, end - (pos + 12));
239                 string contents;
240                 if (buffer) {
241                         // Make sure we are in the directory of the buffer
242                         string const buf = MakeAbsPath(buffer->fileName());
243                         string const path = OnlyPath(buf);
244                         Path p(path);
245                         contents = GetFileContents(file);
246                 } else {
247                         contents = GetFileContents(file);
248                 }
249                 result = subst(result,
250                                ("$$Contents(\"" + file + "\")").c_str(),
251                                contents);
252         }
253
254         return result;
255 }
256
257
258 void InsetExternal::updateExternal() const
259 {
260         ExternalTemplate const & et = params_.templ;
261         ExternalTemplate::Formats::const_iterator cit =
262                 et.formats.find("LaTeX");
263         if (cit == et.formats.end())
264                 return;
265         
266         executeCommand(doSubstitution(view->buffer(),
267                                       (*cit).second.updateCommand),
268                        view->buffer());
269 }
270
271
272 void InsetExternal::viewExternal() const
273 {
274         ExternalTemplate const & et = params_.templ;
275         if (et.automaticProduction)
276                 updateExternal();
277
278         executeCommand(doSubstitution(view->buffer(),
279                                       et.viewCommand),
280                        view->buffer());
281 }
282
283
284 void InsetExternal::editExternal() const
285 {
286         ExternalTemplate const & et = params_.templ;
287         if (et.automaticProduction)
288                 updateExternal();
289
290         executeCommand(doSubstitution(view->buffer(),
291                                       et.editCommand),
292                        view->buffer());
293 }
294
295
296 bool operator==(InsetExternal::Params const & left,
297                 InsetExternal::Params const & right)
298 {
299         return ((left.filename   == right.filename) &&
300                 (left.parameters == right.parameters) &&
301                 (left.templ.lyxName == right.templ.lyxName));
302 }
303
304
305 bool operator!=(InsetExternal::Params const & left,
306                 InsetExternal::Params const & right)
307 {
308         return  !(left == right);
309 }
310