]> git.lyx.org Git - lyx.git/blob - src/exporter.C
Real fix from Bernhard Roider
[lyx.git] / src / exporter.C
1 /**
2  * \file exporter.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author Alfredo Braunstein
8  * \author Lars Gullik Bjønnes
9  * \author Jean Marc Lasgouttes
10  * \author Angus Leeming
11  * \author John Levon
12  * \author André Pönitz
13  *
14  * Full author contact details are available in file CREDITS.
15  */
16
17 #include <config.h>
18
19 #include "exporter.h"
20
21 #include "buffer.h"
22 #include "buffer_funcs.h"
23 #include "bufferparams.h"
24 #include "converter.h"
25 #include "format.h"
26 #include "gettext.h"
27 #include "lyxrc.h"
28 #include "mover.h"
29 #include "output_plaintext.h"
30 #include "outputparams.h"
31 #include "frontends/Alert.h"
32
33 #include "support/filetools.h"
34 #include "support/lyxlib.h"
35 #include "support/package.h"
36
37 #include <boost/filesystem/operations.hpp>
38
39
40 namespace lyx {
41
42 using support::addName;
43 using support::bformat;
44 using support::changeExtension;
45 using support::contains;
46 using support::FileName;
47 using support::makeAbsPath;
48 using support::makeDisplayPath;
49 using support::onlyFilename;
50 using support::onlyPath;
51 using support::package;
52 using support::prefixIs;
53
54 using std::find;
55 using std::string;
56 using std::vector;
57
58 namespace Alert = frontend::Alert;
59 namespace fs = boost::filesystem;
60
61 namespace {
62
63 vector<string> const Backends(Buffer const & buffer)
64 {
65         vector<string> v;
66         if (buffer.params().getLyXTextClass().isTeXClassAvailable()) {
67                 v.push_back(bufferFormat(buffer));
68                 // FIXME: Don't hardcode format names here, but use a flag
69                 if (v.back() == "latex")
70                         v.push_back("pdflatex");
71         }
72         v.push_back("text");
73         v.push_back("lyx");
74         return v;
75 }
76
77
78 /// ask the user what to do if a file already exists
79 int checkOverwrite(FileName const & filename)
80 {
81         if (fs::exists(filename.toFilesystemEncoding())) {
82                 docstring text = bformat(_("The file %1$s already exists.\n\n"
83                                                      "Do you want to over-write that file?"),
84                                       makeDisplayPath(filename.absFilename()));
85                 return Alert::prompt(_("Over-write file?"),
86                                      text, 0, 2,
87                                      _("&Over-write"), _("Over-write &all"),
88                                      _("&Cancel export"));
89         }
90         return 0;
91 }
92
93
94 enum CopyStatus {
95         SUCCESS,
96         FORCE,
97         CANCEL
98 };
99
100
101 /** copy file \p sourceFile to \p destFile. If \p force is false, the user
102  *  will be asked before existing files are overwritten.
103  *  \return
104  *  - SUCCESS if this file got copied
105  *  - FORCE   if subsequent calls should not ask for confirmation before
106  *            overwriting files anymore.
107  *  - CANCEL  if the export should be cancelled
108  */
109 CopyStatus copyFile(string const & format,
110                     FileName const & sourceFile, FileName const & destFile,
111                     string const & latexFile, bool force)
112 {
113         CopyStatus ret = force ? FORCE : SUCCESS;
114
115         // Only copy files that are in our tmp dir, all other files would
116         // overwrite themselves. This check could be changed to
117         // boost::filesystem::equivalent(sourceFile, destFile) if export to
118         // other directories than the document directory is desired.
119         if (!prefixIs(onlyPath(sourceFile.absFilename()), package().temp_dir()))
120                 return ret;
121
122         if (!force) {
123                 switch(checkOverwrite(destFile)) {
124                 case 0:
125                         ret = SUCCESS;
126                         break;
127                 case 1:
128                         ret = FORCE;
129                         break;
130                 default:
131                         return CANCEL;
132                 }
133         }
134
135         Mover const & mover = getMover(format);
136         if (!mover.copy(sourceFile, destFile, latexFile))
137                 Alert::error(_("Couldn't copy file"),
138                              bformat(_("Copying %1$s to %2$s failed."),
139                                      makeDisplayPath(sourceFile.absFilename()),
140                                      makeDisplayPath(destFile.absFilename())));
141
142         return ret;
143 }
144
145 } //namespace anon
146
147
148 bool Exporter::Export(Buffer * buffer, string const & format,
149                       bool put_in_tempdir, string & result_file)
150 {
151         string backend_format;
152         OutputParams runparams;
153         runparams.flavor = OutputParams::LATEX;
154         runparams.linelen = lyxrc.plaintext_linelen;
155         vector<string> backends = Backends(*buffer);
156         // FIXME: Without this test export to lyx1[34] would be through
157         // latex -> lyx -> lyx1[34], because the first backend below with a
158         // working conversion path is used. We should replace this test and
159         // the explicit loop below with a method
160         // getShortestPath(vector<string> const & from, string const & to)
161         // which returns the shortest path from one of the formats in 'from'
162         // to 'to'.
163         if ((format == "lyx13x" || format == "lyx14x") &&
164             !theConverters().getPath("lyx", format).empty())
165                 backend_format = "lyx";
166         else if (find(backends.begin(), backends.end(), format) == backends.end()) {
167                 for (vector<string>::const_iterator it = backends.begin();
168                      it != backends.end(); ++it) {
169                         Graph::EdgePath p = theConverters().getPath(*it, format);
170                         if (!p.empty()) {
171                                 runparams.flavor = theConverters().getFlavor(p);
172                                 backend_format = *it;
173                                 break;
174                         }
175                 }
176                 if (backend_format.empty()) {
177                         Alert::error(_("Couldn't export file"),
178                                 bformat(_("No information for exporting the format %1$s."),
179                                    formats.prettyName(format)));
180                         return false;
181                 }
182         } else {
183                 backend_format = format;
184                 // FIXME: Don't hardcode format names here, but use a flag
185                 if (backend_format == "pdflatex")
186                         runparams.flavor = OutputParams::PDFLATEX;
187         }
188
189         string filename = buffer->getLatexName(false);
190         filename = addName(buffer->temppath(), filename);
191         filename = changeExtension(filename,
192                                    formats.extension(backend_format));
193
194         // Plain text backend
195         if (backend_format == "text")
196                 writePlaintextFile(*buffer, FileName(filename), runparams);
197         // no backend
198         else if (backend_format == "lyx")
199                 buffer->writeFile(FileName(filename));
200         // Docbook backend
201         else if (buffer->isDocBook()) {
202                 runparams.nice = !put_in_tempdir;
203                 buffer->makeDocBookFile(FileName(filename), runparams);
204         }
205         // LaTeX backend
206         else if (backend_format == format) {
207                 runparams.nice = true;
208                 if (!buffer->makeLaTeXFile(FileName(filename), string(), runparams))
209                         return false;
210         } else if (!lyxrc.tex_allows_spaces
211                    && contains(buffer->filePath(), ' ')) {
212                 Alert::error(_("File name error"),
213                            _("The directory path to the document cannot contain spaces."));
214                 return false;
215         } else {
216                 runparams.nice = false;
217                 if (!buffer->makeLaTeXFile(FileName(filename), buffer->filePath(), runparams))
218                         return false;
219         }
220
221         string const error_type = (format == "program")? "Build" : bufferFormat(*buffer);
222         string const ext = formats.extension(format);
223         FileName const tmp_result_file(changeExtension(filename, ext));
224         bool const success = theConverters().convert(buffer, FileName(filename),
225                 tmp_result_file, FileName(buffer->fileName()), backend_format, format,
226                 buffer->errorList(error_type));
227         // Emit the signal to show the error list.
228         if (format != backend_format)
229                 buffer->errors(error_type);
230         if (!success)
231                 return false;
232
233         if (put_in_tempdir)
234                 result_file = tmp_result_file.absFilename();
235         else {
236                 result_file = changeExtension(buffer->fileName(), ext);
237                 // We need to copy referenced files (e. g. included graphics
238                 // if format == "dvi") to the result dir.
239                 vector<ExportedFile> const files =
240                         runparams.exportdata->externalFiles(format);
241                 string const dest = onlyPath(result_file);
242                 CopyStatus status = SUCCESS;
243                 for (vector<ExportedFile>::const_iterator it = files.begin();
244                                 it != files.end() && status != CANCEL; ++it) {
245                         string const fmt =
246                                 formats.getFormatFromFile(it->sourceName);
247                         status = copyFile(fmt, it->sourceName,
248                                           makeAbsPath(it->exportName, dest),
249                                           it->exportName, status == FORCE);
250                 }
251                 if (status == CANCEL) {
252                         buffer->message(_("Document export cancelled."));
253                 } else if (fs::exists(tmp_result_file.toFilesystemEncoding())) {
254                         // Finally copy the main file
255                         status = copyFile(format, tmp_result_file,
256                                           FileName(result_file), result_file,
257                                           status == FORCE);
258                         buffer->message(bformat(_("Document exported as %1$s "
259                                                                "to file `%2$s'"),
260                                                 formats.prettyName(format),
261                                                 makeDisplayPath(result_file)));
262                 } else {
263                         // This must be a dummy converter like fax (bug 1888)
264                         buffer->message(bformat(_("Document exported as %1$s"),
265                                                 formats.prettyName(format)));
266                 }
267         }
268
269         return true;
270 }
271
272
273 bool Exporter::Export(Buffer * buffer, string const & format,
274                       bool put_in_tempdir)
275 {
276         string result_file;
277         return Export(buffer, format, put_in_tempdir, result_file);
278 }
279
280
281 bool Exporter::preview(Buffer * buffer, string const & format)
282 {
283         string result_file;
284         if (!Export(buffer, format, true, result_file))
285                 return false;
286         return formats.view(*buffer, FileName(result_file), format);
287 }
288
289
290 bool Exporter::isExportable(Buffer const & buffer, string const & format)
291 {
292         vector<string> backends = Backends(buffer);
293         for (vector<string>::const_iterator it = backends.begin();
294              it != backends.end(); ++it)
295                 if (theConverters().isReachable(*it, format))
296                         return true;
297         return false;
298 }
299
300
301 vector<Format const *> const
302 Exporter::getExportableFormats(Buffer const & buffer, bool only_viewable)
303 {
304         vector<string> backends = Backends(buffer);
305         vector<Format const *> result =
306                 theConverters().getReachable(backends[0], only_viewable, true);
307         for (vector<string>::const_iterator it = backends.begin() + 1;
308              it != backends.end(); ++it) {
309                 vector<Format const *>  r =
310                         theConverters().getReachable(*it, only_viewable, false);
311                 result.insert(result.end(), r.begin(), r.end());
312         }
313         return result;
314 }
315
316
317 ExportedFile::ExportedFile(FileName const & s, string const & e) :
318         sourceName(s), exportName(e) {}
319
320
321 bool operator==(ExportedFile const & f1, ExportedFile const & f2)
322 {
323         return f1.sourceName == f2.sourceName &&
324                f1.exportName == f2.exportName;
325
326 }
327
328
329 void ExportData::addExternalFile(string const & format,
330                                  FileName const & sourceName,
331                                  string const & exportName)
332 {
333         // Make sure that we have every file only once, otherwise copyFile()
334         // would ask several times if it should overwrite a file.
335         vector<ExportedFile> & files = externalfiles[format];
336         ExportedFile file(sourceName, exportName);
337         if (find(files.begin(), files.end(), file) == files.end())
338                 files.push_back(file);
339 }
340
341
342 void ExportData::addExternalFile(string const & format,
343                                  FileName const & sourceName)
344 {
345         addExternalFile(format, sourceName, onlyFilename(sourceName.absFilename()));
346 }
347
348
349 vector<ExportedFile> const
350 ExportData::externalFiles(string const & format) const
351 {
352         FileMap::const_iterator cit = externalfiles.find(format);
353         if (cit != externalfiles.end())
354                 return cit->second;
355         return vector<ExportedFile>();
356 }
357
358
359 } // namespace lyx