]> git.lyx.org Git - features.git/blob - src/graphics/GraphicsConverter.cpp
Fix a regression reported at #9146
[features.git] / src / graphics / GraphicsConverter.cpp
1 /**
2  * \file GraphicsConverter.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GraphicsConverter.h"
14
15 #include "Converter.h"
16 #include "Format.h"
17
18 #include "support/lassert.h"
19 #include "support/convert.h"
20 #include "support/debug.h"
21 #include "support/FileName.h"
22 #include "support/filetools.h"
23 #include "support/ForkedCalls.h"
24 #include "support/lstrings.h"
25 #include "support/os.h"
26
27 #include "support/bind.h"
28
29 #include <sstream>
30 #include <fstream>
31
32 using namespace std;
33 using namespace lyx::support;
34
35 namespace lyx {
36
37 namespace graphics {
38
39 class Converter::Impl : public boost::signals::trackable {
40 public:
41         ///
42         Impl(FileName const &, string const &, string const &, string const &);
43
44         ///
45         void startConversion();
46
47         /** This method is connected to a signal passed to the forked call
48          *  class, passing control back here when the conversion is completed.
49          *  Cleans-up the temporary files, emits the finishedConversion
50          *  signal and removes the Converter from the list of all processes.
51          */
52         void converted(pid_t pid, int retval);
53
54         /** At the end of the conversion process inform the outside world
55          *  by emitting a signal.
56          */
57         typedef boost::signal<void(bool)> SignalType;
58         ///
59         SignalType finishedConversion;
60
61         ///
62         string script_command_;
63         ///
64         FileName script_file_;
65         ///
66         FileName to_file_;
67         ///
68         bool valid_process_;
69         ///
70         bool finished_;
71 };
72
73
74 bool Converter::isReachable(string const & from_format_name,
75                             string const & to_format_name)
76 {
77         return theConverters().isReachable(from_format_name, to_format_name);
78 }
79
80
81 Converter::Converter(FileName const & from_file, string const & to_file_base,
82                      string const & from_format, string const & to_format)
83         : pimpl_(new Impl(from_file, to_file_base, from_format, to_format))
84 {}
85
86
87 Converter::~Converter()
88 {
89         delete pimpl_;
90 }
91
92
93 void Converter::startConversion() const
94 {
95         pimpl_->startConversion();
96 }
97
98
99 boost::signals::connection Converter::connect(slot_type const & slot) const
100 {
101         return pimpl_->finishedConversion.connect(slot);
102 }
103
104
105 FileName const & Converter::convertedFile() const
106 {
107         static FileName const empty;
108         return pimpl_->finished_ ? pimpl_->to_file_ : empty;
109 }
110
111 /** Build the conversion script.
112  *  The script is output to the stream \p script.
113  */
114 static void build_script(string const & from_file, string const & to_file_base,
115                   string const & from_format, string const & to_format,
116                   ostream & script);
117
118
119 Converter::Impl::Impl(FileName const & from_file, string const & to_file_base,
120                       string const & from_format, string const & to_format)
121         : valid_process_(false), finished_(false)
122 {
123         LYXERR(Debug::GRAPHICS, "Converter c-tor:\n"
124                 << "\tfrom_file:      " << from_file
125                 << "\n\tto_file_base: " << to_file_base
126                 << "\n\tfrom_format:  " << from_format
127                 << "\n\tto_format:    " << to_format);
128
129         // The converted image is to be stored in this file (we do not
130         // use ChangeExtension because this is a basename which may
131         // nevertheless contain a '.')
132         to_file_ = FileName(to_file_base + '.' +  formats.extension(to_format));
133
134         // The conversion commands are stored in a stringstream
135         ostringstream script;
136         build_script(from_file.toFilesystemEncoding(),
137                      to_file_.toFilesystemEncoding(),
138                      from_format, to_format, script);
139         LYXERR(Debug::GRAPHICS, "\tConversion script:"
140                    "\n--------------------------------------\n"
141                 << script.str()
142                 << "\n--------------------------------------\n");
143
144         // Output the script to file.
145         // FIXME THREAD
146         static int counter = 0;
147         script_file_ = FileName(onlyPath(to_file_base) + "lyxconvert" +
148                 convert<string>(counter++) + ".py");
149
150         ofstream fs(script_file_.toFilesystemEncoding().c_str());
151         if (!fs.good()) {
152                 lyxerr << "Unable to write the conversion script to \""
153                        << script_file_ << '\n'
154                        << "Please check your directory permissions."
155                        << endl;
156                 return;
157         }
158
159         fs << script.str();
160         fs.close();
161
162         // The command needed to run the conversion process
163         // We create a dummy command for ease of understanding of the
164         // list of forked processes.
165         // Note: 'python ' is absolutely essential, or execvp will fail.
166         script_command_ = os::python() + ' ' +
167                 quoteName(script_file_.toFilesystemEncoding()) + ' ' +
168                 quoteName(onlyFileName(from_file.toFilesystemEncoding())) + ' ' +
169                 quoteName(to_format);
170         // All is ready to go
171         valid_process_ = true;
172 }
173
174
175 void Converter::Impl::startConversion()
176 {
177         if (!valid_process_) {
178                 converted(0, 1);
179                 return;
180         }
181
182         ForkedCall::SignalTypePtr ptr =
183                 ForkedCallQueue::add(script_command_);
184         ptr->connect(bind(&Impl::converted, this, _1, _2));
185 }
186
187
188 void Converter::Impl::converted(pid_t /* pid */, int retval)
189 {
190         if (finished_)
191                 // We're done already!
192                 return;
193
194         finished_ = true;
195         // Clean-up behind ourselves
196         script_file_.removeFile();
197
198         if (retval > 0) {
199                 to_file_.removeFile();
200                 to_file_.erase();
201                 finishedConversion(false);
202         } else {
203                 finishedConversion(true);
204         }
205 }
206
207
208 static string const move_file(string const & from_file, string const & to_file)
209 {
210         if (from_file == to_file)
211                 return string();
212
213         ostringstream command;
214         command << "fromfile = " << from_file << "\n"
215                 << "tofile = "   << to_file << "\n\n"
216                 << "try:\n"
217                 << "  os.rename(fromfile, tofile)\n"
218                 << "except:\n"
219                 << "  try:\n"
220                 << "    shutil.copy(fromfile, tofile)\n"
221                 << "  except:\n"
222                 << "    sys.exit(1)\n"
223                 << "  unlinkNoThrow(fromfile)\n";
224
225         return command.str();
226 }
227
228
229 static void build_conversion_command(string const & command, ostream & script)
230 {
231         // Store in the python script
232         script << "\nif os.system(r'" << command << "') != 0:\n";
233
234         // Test that this was successful. If not, remove
235         // ${outfile} and exit the python script
236         script << "  unlinkNoThrow(outfile)\n"
237                << "  sys.exit(1)\n\n";
238
239         // Test that the outfile exists.
240         // ImageMagick's convert will often create ${outfile}.0,
241         // ${outfile}.1.
242         // If this occurs, move ${outfile}.0 to ${outfile}
243         // and delete ${outfile}.? (ignore errors)
244         script << "if not os.path.isfile(outfile):\n"
245                   "  if os.path.isfile(outfile + '.0'):\n"
246                   "    os.rename(outfile + '.0', outfile)\n"
247                   "    import glob\n"
248                   "    for file in glob.glob(outfile + '.?'):\n"
249                   "      unlinkNoThrow(file)\n"
250                   "  else:\n"
251                   "    sys.exit(1)\n\n";
252
253         // Delete the infile
254         script << "if infile != outfile:\n"
255                   "  unlinkNoThrow(infile)\n\n";
256 }
257
258
259 static string const strip_digit(string const & format)
260 {
261         // Strip trailing digits from format names e.g. "pdf6" -> "pdf"
262         return format.substr(0, format.find_last_not_of("0123456789") + 1);
263 }
264
265
266 static void build_script(string const & from_file,
267                   string const & to_file,
268                   string const & from_format,
269                   string const & to_format,
270                   ostream & script)
271 {
272         LASSERT(from_format != to_format, return);
273         LYXERR(Debug::GRAPHICS, "build_script ... ");
274         typedef Graph::EdgePath EdgePath;
275
276         script << "#!/usr/bin/env python\n"
277                   "# -*- coding: utf-8 -*-\n"
278                   "import os, shutil, sys\n\n"
279                   "def unlinkNoThrow(file):\n"
280                   "  ''' remove a file, do not throw if an error occurs '''\n"
281                   "  try:\n"
282                   "    os.unlink(file)\n"
283                   "  except:\n"
284                   "    pass\n\n";
285
286         EdgePath const edgepath = from_format.empty() ?
287                 EdgePath() :
288                 theConverters().getPath(from_format, to_format);
289
290         // Create a temporary base file-name for all intermediate steps.
291         // Remember to remove the temp file because we only want the name...
292         // FIXME THREAD
293         static int counter = 0;
294         string const tmp = "gconvert" + convert<string>(counter++);
295         string const to_base = FileName::tempName(tmp).toFilesystemEncoding();
296
297         // Create a copy of the file in case the original name contains
298         // problematic characters like ' or ". We can work around that problem
299         // in python, but the converters might be shell scripts and have more
300         // troubles with it.
301         string outfile = addExtension(to_base, getExtension(from_file));
302         script << "infile = "
303                         << quoteName(from_file, quote_python)
304                         << "\n"
305                   "outfile = "
306                         << quoteName(outfile, quote_python) << "\n"
307                   "shutil.copy(infile, outfile)\n";
308
309         // Some converters (e.g. lilypond) can only output files to the
310         // current directory, so we need to change the current directory.
311         // This has the added benefit that all other files that may be
312         // generated by the converter are deleted when LyX closes and do not
313         // clutter the real working directory.
314         script << "os.chdir("
315                << quoteName(onlyPath(outfile)) << ")\n";
316
317         if (edgepath.empty()) {
318                 // Either from_format is unknown or we don't have a
319                 // converter path from from_format to to_format, so we use
320                 // the default converter.
321                 script << "infile = outfile\n"
322                        << "outfile = "
323                        << quoteName(to_file, quote_python) << "\n";
324
325                 ostringstream os;
326                 os << os::python() << ' '
327                    << commandPrep("$$s/scripts/convertDefault.py") << ' ';
328                 if (!from_format.empty())
329                         os << strip_digit(from_format) << ':';
330                 // The extra " quotes around infile and outfile are needed
331                 // because the filename may contain spaces and it is used
332                 // as argument of os.system().
333                 os << "' + '\"' + infile + '\"' + ' "
334                    << strip_digit(to_format) << ":' + '\"' + outfile + '\"' + '";
335                 string const command = os.str();
336
337                 LYXERR(Debug::GRAPHICS,
338                         "\tNo converter defined! I use convertDefault.py\n\t"
339                         << command);
340
341                 build_conversion_command(command, script);
342         }
343
344         // The conversion commands may contain these tokens that need to be
345         // changed to infile, infile_base, outfile and output directory respectively.
346         string const token_from  = "$$i";
347         string const token_base  = "$$b";
348         string const token_to    = "$$o";
349         string const token_todir = "$$d";
350
351         EdgePath::const_iterator it  = edgepath.begin();
352         EdgePath::const_iterator end = edgepath.end();
353
354         for (; it != end; ++it) {
355                 lyx::Converter const & conv = theConverters().get(*it);
356
357                 // Build the conversion command
358                 string const infile      = outfile;
359                 string const infile_base = changeExtension(infile, string());
360                 outfile = conv.result_file.empty()
361                         ? addExtension(to_base, conv.To->extension())
362                         : addName(subst(conv.result_dir,
363                                         token_base, infile_base),
364                                   subst(conv.result_file,
365                                         token_base, onlyFileName(infile_base)));
366
367                 // If two formats share the same extension we may get identical names
368                 if (outfile == infile && conv.result_file.empty()) {
369                         string const new_base = FileName::tempName(tmp).toFilesystemEncoding();
370                         outfile = addExtension(new_base, conv.To->extension());
371                 }
372
373                 // Store these names in the python script
374                 script << "infile = "
375                                 << quoteName(infile, quote_python) << "\n"
376                           "infile_base = "
377                                 << quoteName(infile_base, quote_python) << "\n"
378                           "outfile = "
379                                 << quoteName(outfile, quote_python) << "\n"
380                           "outdir  = os.path.dirname(outfile)\n" ;
381
382                 // See comment about extra " quotes above (although that
383                 // applies only for the first loop run here).
384                 string command = conv.command;
385                 command = subst(command, token_from,  "' + '\"' + infile + '\"' + '");
386                 command = subst(command, token_base,  "' + '\"' + infile_base + '\"' + '");
387                 command = subst(command, token_to,    "' + '\"' + outfile + '\"' + '");
388                 command = subst(command, token_todir, "' + '\"' + outdir + '\"' + '");
389
390                 build_conversion_command(command, script);
391         }
392
393         // Move the final outfile to to_file
394         script << move_file("outfile", quoteName(to_file, quote_python));
395         LYXERR(Debug::GRAPHICS, "ready!");
396 }
397
398 } // namespace graphics
399 } // namespace lyx