2002-02-27 09:59:52 +00:00
|
|
|
/*
|
|
|
|
* \file GraphicsConverter.C
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "GraphicsConverter.h"
|
|
|
|
|
|
|
|
#include "converter.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/forkedcall.h"
|
|
|
|
#include "support/path.h"
|
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
#include <fstream>
|
|
|
|
|
2002-06-19 10:39:57 +00:00
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
string const move_file(string const & from_file, string const & to_file)
|
|
|
|
{
|
|
|
|
if (from_file == to_file)
|
|
|
|
return string();
|
|
|
|
|
|
|
|
ostringstream command;
|
|
|
|
command << "fromfile=" << from_file << "\n"
|
|
|
|
<< "tofile=" << to_file << "\n\n"
|
|
|
|
<< "'mv' -f ${fromfile} ${tofile}\n"
|
|
|
|
<< "if [ $? -ne 0 ]; then\n"
|
|
|
|
<< "\t'cp' -f ${fromfile} ${tofile}\n"
|
|
|
|
<< "\tif [ $? -ne 0 ]; then\n"
|
|
|
|
<< "\t\texit 1\n"
|
|
|
|
<< "\tfi\n"
|
|
|
|
<< "\t'rm' -f ${fromfile}\n"
|
|
|
|
<< "fi\n";
|
|
|
|
|
|
|
|
return command.str().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
namespace grfx {
|
|
|
|
|
|
|
|
GConverter & GConverter::get()
|
|
|
|
{
|
|
|
|
static GConverter singleton;
|
|
|
|
return singleton;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
bool GConverter::isReachable(string const & from_format_name,
|
|
|
|
string const & to_format_name) const
|
|
|
|
{
|
|
|
|
return converters.isReachable(from_format_name, to_format_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GConverter::convert(string const & from_file, string const & to_file_base,
|
|
|
|
string const & from_format, string const & to_format,
|
|
|
|
SignalTypePtr on_finish)
|
|
|
|
{
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "[GraphicsConverter::convert]\n"
|
|
|
|
<< "\tfrom_file: " << from_file
|
|
|
|
<< "\n\tto_file_base: " << to_file_base
|
|
|
|
<< "\n\tfrom_format: " << from_format
|
|
|
|
<< "\n\tto_format: " << to_format << endl;
|
2002-02-27 09:59:52 +00:00
|
|
|
// The conversion commands are stored in a stringstream
|
|
|
|
ostringstream script;
|
|
|
|
script << "#!/bin/sh\n";
|
2002-06-18 20:47:49 +00:00
|
|
|
string script_command;
|
|
|
|
string script_file;
|
|
|
|
|
|
|
|
bool success = build_script(from_file, to_file_base,
|
|
|
|
from_format, to_format, script);
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
lyxerr[Debug::GRAPHICS] << "\tConversion script:\n"
|
|
|
|
<< "--------------------------------------\n"
|
|
|
|
<< script.str().c_str()
|
|
|
|
<< "\n--------------------------------------\n";
|
|
|
|
|
|
|
|
// Output the script to file.
|
|
|
|
static int counter = 0;
|
|
|
|
script_file = OnlyPath(to_file_base) + "lyxconvert" +
|
|
|
|
tostr(counter++) + ".sh";
|
|
|
|
|
|
|
|
std::ofstream fs(script_file.c_str());
|
|
|
|
if (!fs.good()) {
|
|
|
|
// Unable to output the conversion script to file.
|
|
|
|
success = false;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
fs << script.str().c_str();
|
|
|
|
fs.close();
|
|
|
|
|
|
|
|
// Create a dummy command for ease of understanding of the
|
|
|
|
// list of forked processes.
|
|
|
|
// Note that 'sh ' is absolutely essential, or execvp will fail.
|
|
|
|
script_command =
|
|
|
|
"sh " + script_file + " " +
|
|
|
|
OnlyFilename(from_file) + " " + to_format;
|
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
string const to_file =
|
|
|
|
ChangeExtension(to_file_base, formats.extension(to_format));
|
|
|
|
|
2002-06-18 20:47:49 +00:00
|
|
|
if (!success) {
|
|
|
|
script_file = string();
|
|
|
|
script_command =
|
|
|
|
"convert -depth 8 " +
|
|
|
|
from_format + ':' + from_file + ' ' +
|
|
|
|
to_format + ':' + to_file;
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
<< "\tNo converter defined! I use convert from ImageMagic:\n\t"
|
|
|
|
<< script_command << endl;
|
|
|
|
}
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
// Launch the conversion process.
|
|
|
|
ConvProcessPtr shared_ptr;
|
2002-03-21 17:27:08 +00:00
|
|
|
shared_ptr.reset(new ConvProcess(script_file, script_command,
|
2002-02-27 09:59:52 +00:00
|
|
|
to_file, on_finish));
|
|
|
|
all_processes_.push_back(shared_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
typedef boost::shared_ptr<ConvProcess> ConvProcessPtr;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
class Find_Ptr {
|
|
|
|
public:
|
|
|
|
Find_Ptr(ConvProcess * ptr) : ptr_(ptr) {}
|
|
|
|
|
|
|
|
bool operator()(ConvProcessPtr const & ptr)
|
|
|
|
{
|
|
|
|
return ptr.get() == ptr_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ConvProcess * ptr_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace anon
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
void GConverter::erase(ConvProcess * process)
|
|
|
|
{
|
|
|
|
std::list<ConvProcessPtr>::iterator begin = all_processes_.begin();
|
|
|
|
std::list<ConvProcessPtr>::iterator end = all_processes_.end();
|
|
|
|
std::list<ConvProcessPtr>::iterator it =
|
|
|
|
std::find_if(begin, end, Find_Ptr(process));
|
|
|
|
|
|
|
|
if (it == end)
|
|
|
|
return;
|
|
|
|
|
|
|
|
all_processes_.erase(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
bool GConverter::build_script(string const & from_file,
|
2002-02-27 09:59:52 +00:00
|
|
|
string const & to_file_base,
|
|
|
|
string const & from_format,
|
|
|
|
string const & to_format,
|
|
|
|
ostringstream & script) const
|
|
|
|
{
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "[GraphicsConverter::build_script] ... ";
|
2002-02-27 09:59:52 +00:00
|
|
|
typedef Converters::EdgePath EdgePath;
|
|
|
|
|
|
|
|
string const to_file = ChangeExtension(to_file_base,
|
|
|
|
formats.extension(to_format));
|
|
|
|
|
|
|
|
if (from_format == to_format) {
|
|
|
|
script << move_file(QuoteName(from_file), QuoteName(to_file));
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "ready (from == to)" << endl;
|
2002-02-27 09:59:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
EdgePath edgepath = converters.getPath(from_format, to_format);
|
|
|
|
|
|
|
|
if (edgepath.empty()) {
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "ready (edgepath.empty())" << endl;
|
2002-02-27 09:59:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a temporary base file-name for all intermediate steps.
|
|
|
|
// Remember to remove the temp file because we only want the name...
|
|
|
|
static int counter = 0;
|
|
|
|
string const tmp = "gconvert" + tostr(counter++);
|
|
|
|
string const to_base = lyx::tempName(string(), tmp);
|
|
|
|
lyx::unlink(to_base);
|
|
|
|
|
|
|
|
string outfile = from_file;
|
|
|
|
|
|
|
|
// The conversion commands may contain these tokens that need to be
|
|
|
|
// changed to infile, infile_base, outfile respectively.
|
|
|
|
string const token_from("$$i");
|
|
|
|
string const token_base("$$b");
|
|
|
|
string const token_to("$$o");
|
|
|
|
|
|
|
|
EdgePath::const_iterator it = edgepath.begin();
|
|
|
|
EdgePath::const_iterator end = edgepath.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
Converter const & conv = converters.get(*it);
|
|
|
|
|
|
|
|
// Build the conversion command
|
|
|
|
string const infile = outfile;
|
|
|
|
string const infile_base = ChangeExtension(infile, string());
|
|
|
|
outfile = ChangeExtension(to_base, conv.To->extension());
|
|
|
|
|
|
|
|
// Store these names in the shell script
|
|
|
|
script << "infile=" << QuoteName(infile) << '\n'
|
|
|
|
<< "infile_base=" << QuoteName(infile_base) << '\n'
|
|
|
|
<< "outfile=" << QuoteName(outfile) << '\n';
|
|
|
|
|
|
|
|
string command = conv.command;
|
|
|
|
command = subst(command, token_from, "${infile}");
|
|
|
|
command = subst(command, token_base, "${infile_base}");
|
|
|
|
command = subst(command, token_to, "${outfile}");
|
|
|
|
|
|
|
|
// Store in the shell script
|
|
|
|
script << "\n" << command << "\n\n";
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
// Test that this was successful. If not, remove
|
2002-02-27 09:59:52 +00:00
|
|
|
// ${outfile} and exit the shell script
|
|
|
|
script << "if [ $? -ne 0 ]; then\n"
|
|
|
|
<< "\t'rm' -f ${outfile}\n"
|
|
|
|
<< "\texit 1\n"
|
|
|
|
<< "fi\n\n";
|
|
|
|
|
|
|
|
// Test that the outfile exists.
|
|
|
|
// ImageMagick's convert will often create ${outfile}.0,
|
|
|
|
// ${outfile}.1.
|
|
|
|
// If this occurs, move ${outfile}.0 to ${outfile}
|
|
|
|
// and delete ${outfile}.?
|
|
|
|
script << "if [ ! -f ${outfile} ]; then\n"
|
|
|
|
<< "\tif [ -f ${outfile}.0 ]; then\n"
|
|
|
|
<< "\t\t'mv' -f ${outfile}.0 ${outfile}\n"
|
|
|
|
<< "\t\t'rm' -f ${outfile}.?\n"
|
|
|
|
<< "\telse\n"
|
|
|
|
<< "\t\texit 1\n"
|
|
|
|
<< "\tfi\n"
|
|
|
|
<< "fi\n\n";
|
|
|
|
|
|
|
|
// Delete the infile, if it isn't the original, from_file.
|
|
|
|
if (infile != from_file) {
|
|
|
|
script << "'rm' -f ${infile}\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move the final outfile to to_file
|
|
|
|
script << move_file("${outfile}", QuoteName(to_file));
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "ready!" << endl;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
ConvProcess::ConvProcess(string const & script_file,
|
2002-02-27 09:59:52 +00:00
|
|
|
string const & script_command,
|
|
|
|
string const & to_file, SignalTypePtr on_finish)
|
|
|
|
: script_file_(script_file), to_file_(to_file), on_finish_(on_finish)
|
|
|
|
{
|
|
|
|
Forkedcall::SignalTypePtr convert_ptr;
|
|
|
|
convert_ptr.reset(new Forkedcall::SignalType);
|
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
convert_ptr->connect(boost::bind(&ConvProcess::converted, this, _1, _2, _3));
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
Forkedcall call;
|
|
|
|
int retval = call.startscript(script_command, convert_ptr);
|
|
|
|
if (retval > 0) {
|
|
|
|
// Unable to even start the script, so clean-up the mess!
|
|
|
|
converted(string(), 0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-11 22:58:05 +00:00
|
|
|
void ConvProcess::converted(string const &/* cmd */,
|
|
|
|
pid_t /* pid */, int retval)
|
2002-02-27 09:59:52 +00:00
|
|
|
{
|
|
|
|
// Clean-up behind ourselves
|
|
|
|
lyx::unlink(script_file_);
|
|
|
|
|
|
|
|
if (retval > 0) {
|
|
|
|
lyx::unlink(to_file_);
|
|
|
|
to_file_.erase();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (on_finish_.get()) {
|
2002-05-29 16:21:03 +00:00
|
|
|
on_finish_->operator()(to_file_);
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
grfx::GConverter::get().erase(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace grfx
|