2003-02-28 09:49:49 +00:00
|
|
|
/**
|
|
|
|
* \file converter.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2003-02-28 09:49:49 +00:00
|
|
|
* \author Dekel Tsur
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-28 09:49:49 +00:00
|
|
|
*/
|
2000-08-30 03:40:51 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "converter.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
#include "buffer.h"
|
2003-06-24 20:42:15 +00:00
|
|
|
#include "buffer_funcs.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
#include "bufferparams.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "debug.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
#include "format.h"
|
|
|
|
#include "gettext.h"
|
2004-10-07 15:21:03 +00:00
|
|
|
#include "language.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
#include "LaTeX.h"
|
2004-10-26 18:39:13 +00:00
|
|
|
#include "mover.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2002-02-18 19:13:48 +00:00
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
|
|
|
#include "support/filetools.h"
|
2003-09-04 01:44:16 +00:00
|
|
|
#include "support/lyxlib.h"
|
2006-06-30 13:54:01 +00:00
|
|
|
#include "support/os.h"
|
2002-02-18 19:13:48 +00:00
|
|
|
#include "support/path.h"
|
|
|
|
#include "support/systemcall.h"
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
using support::addName;
|
|
|
|
using support::bformat;
|
|
|
|
using support::changeExtension;
|
|
|
|
using support::compare_ascii_no_case;
|
|
|
|
using support::contains;
|
|
|
|
using support::dirList;
|
|
|
|
using support::getExtension;
|
|
|
|
using support::isFileReadable;
|
|
|
|
using support::libFileSearch;
|
|
|
|
using support::libScriptSearch;
|
|
|
|
using support::makeRelPath;
|
|
|
|
using support::onlyFilename;
|
|
|
|
using support::onlyPath;
|
|
|
|
using support::Path;
|
|
|
|
using support::prefixIs;
|
|
|
|
using support::quoteName;
|
|
|
|
using support::split;
|
|
|
|
using support::subst;
|
|
|
|
using support::Systemcall;
|
2006-09-11 08:54:10 +00:00
|
|
|
|
2000-08-31 11:51:59 +00:00
|
|
|
using std::endl;
|
2000-10-23 12:16:05 +00:00
|
|
|
using std::find_if;
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
2003-09-08 00:33:41 +00:00
|
|
|
using std::vector;
|
2004-02-06 08:23:39 +00:00
|
|
|
using std::distance;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
2006-10-07 16:47:54 +00:00
|
|
|
namespace Alert = lyx::frontend::Alert;
|
|
|
|
|
2003-09-08 00:33:41 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
string const token_from("$$i");
|
|
|
|
string const token_base("$$b");
|
|
|
|
string const token_to("$$o");
|
2002-10-16 16:07:14 +00:00
|
|
|
string const token_path("$$p");
|
2000-08-30 03:40:51 +00:00
|
|
|
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
string const add_options(string const & command, string const & options)
|
2000-09-05 13:16:19 +00:00
|
|
|
{
|
|
|
|
string head;
|
2000-11-08 09:39:46 +00:00
|
|
|
string const tail = split(command, head, ' ');
|
2000-09-05 13:16:19 +00:00
|
|
|
return head + ' ' + options + ' ' + tail;
|
|
|
|
}
|
|
|
|
|
2003-07-17 08:23:33 +00:00
|
|
|
|
|
|
|
string const dvipdfm_options(BufferParams const & bp)
|
|
|
|
{
|
|
|
|
string result;
|
|
|
|
|
2005-07-16 16:57:55 +00:00
|
|
|
if (bp.papersize != PAPER_CUSTOM) {
|
2003-07-17 08:23:33 +00:00
|
|
|
string const paper_size = bp.paperSizeName();
|
|
|
|
if (paper_size != "b5" && paper_size != "foolscap")
|
|
|
|
result = "-p "+ paper_size;
|
|
|
|
|
2003-07-26 23:04:39 +00:00
|
|
|
if (bp.orientation == ORIENTATION_LANDSCAPE)
|
2003-07-17 08:23:33 +00:00
|
|
|
result += " -l";
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-01-31 15:30:24 +00:00
|
|
|
|
|
|
|
class ConverterEqual : public std::binary_function<string, string, bool> {
|
|
|
|
public:
|
|
|
|
ConverterEqual(string const & from, string const & to)
|
|
|
|
: from_(from), to_(to) {}
|
|
|
|
bool operator()(Converter const & c) const {
|
|
|
|
return c.from == from_ && c.to == to_;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
string const from_;
|
|
|
|
string const to_;
|
|
|
|
};
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
Converter::Converter(string const & f, string const & t,
|
|
|
|
string const & c, string const & l)
|
|
|
|
: from(f), to(t), command(c), flags(l),
|
|
|
|
From(0), To(0), latex(false), xml(false),
|
|
|
|
original_dir(false), need_aux(false)
|
2003-02-28 09:49:49 +00:00
|
|
|
{}
|
2000-11-06 11:20:22 +00:00
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
void Converter::readFlags()
|
2000-11-06 11:20:22 +00:00
|
|
|
{
|
2000-11-13 10:35:02 +00:00
|
|
|
string flag_list(flags);
|
|
|
|
while (!flag_list.empty()) {
|
|
|
|
string flag_name, flag_value;
|
|
|
|
flag_list = split(flag_list, flag_value, ',');
|
|
|
|
flag_value = split(flag_value, flag_name, '=');
|
|
|
|
if (flag_name == "latex")
|
|
|
|
latex = true;
|
2004-05-13 11:21:58 +00:00
|
|
|
else if (flag_name == "xml")
|
|
|
|
xml = true;
|
2000-11-13 10:35:02 +00:00
|
|
|
else if (flag_name == "originaldir")
|
|
|
|
original_dir = true;
|
|
|
|
else if (flag_name == "needaux")
|
|
|
|
need_aux = true;
|
|
|
|
else if (flag_name == "resultdir")
|
|
|
|
result_dir = (flag_value.empty())
|
|
|
|
? token_base : flag_value;
|
|
|
|
else if (flag_name == "resultfile")
|
|
|
|
result_file = flag_value;
|
|
|
|
else if (flag_name == "parselog")
|
|
|
|
parselog = flag_value;
|
|
|
|
}
|
|
|
|
if (!result_dir.empty() && result_file.empty())
|
2001-07-30 11:56:00 +00:00
|
|
|
result_file = "index." + formats.extension(to);
|
2000-11-13 10:35:02 +00:00
|
|
|
//if (!contains(command, token_from))
|
|
|
|
// latex = true;
|
2000-11-06 11:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
bool operator<(Converter const & a, Converter const & b)
|
|
|
|
{
|
2002-07-16 21:17:10 +00:00
|
|
|
// use the compare_ascii_no_case instead of compare_no_case,
|
|
|
|
// because in turkish, 'i' is not the lowercase version of 'I',
|
|
|
|
// and thus turkish locale breaks parsing of tags.
|
|
|
|
int const i = compare_ascii_no_case(a.From->prettyname(),
|
|
|
|
b.From->prettyname());
|
2000-11-13 10:35:02 +00:00
|
|
|
if (i == 0)
|
2003-08-28 07:41:31 +00:00
|
|
|
return compare_ascii_no_case(a.To->prettyname(),
|
2003-07-07 08:37:02 +00:00
|
|
|
b.To->prettyname()) < 0;
|
2000-11-13 10:35:02 +00:00
|
|
|
else
|
|
|
|
return i < 0;
|
|
|
|
}
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
Converter const * Converters::getConverter(string const & from,
|
2004-01-31 15:30:24 +00:00
|
|
|
string const & to) const
|
2000-08-30 03:40:51 +00:00
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
ConverterList::const_iterator const cit =
|
2001-07-30 11:56:00 +00:00
|
|
|
find_if(converterlist_.begin(), converterlist_.end(),
|
2004-01-31 15:30:24 +00:00
|
|
|
ConverterEqual(from, to));
|
2001-07-30 11:56:00 +00:00
|
|
|
if (cit != converterlist_.end())
|
2000-11-13 10:35:02 +00:00
|
|
|
return &(*cit);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2000-09-05 13:16:19 +00:00
|
|
|
|
2000-09-11 15:42:17 +00:00
|
|
|
|
2004-01-31 15:30:24 +00:00
|
|
|
int Converters::getNumber(string const & from, string const & to) const
|
2000-11-13 10:35:02 +00:00
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
ConverterList::const_iterator const cit =
|
2001-07-30 11:56:00 +00:00
|
|
|
find_if(converterlist_.begin(), converterlist_.end(),
|
2004-01-31 15:30:24 +00:00
|
|
|
ConverterEqual(from, to));
|
2001-07-30 11:56:00 +00:00
|
|
|
if (cit != converterlist_.end())
|
2004-01-31 15:30:24 +00:00
|
|
|
return distance(converterlist_.begin(), cit);
|
2000-11-13 10:35:02 +00:00
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
void Converters::add(string const & from, string const & to,
|
2000-11-13 10:35:02 +00:00
|
|
|
string const & command, string const & flags)
|
|
|
|
{
|
2001-07-30 11:56:00 +00:00
|
|
|
formats.add(from);
|
|
|
|
formats.add(to);
|
|
|
|
ConverterList::iterator it = find_if(converterlist_.begin(),
|
|
|
|
converterlist_.end(),
|
2004-01-31 15:30:24 +00:00
|
|
|
ConverterEqual(from , to));
|
2000-11-13 10:35:02 +00:00
|
|
|
|
|
|
|
Converter converter(from, to, command, flags);
|
2001-07-30 11:56:00 +00:00
|
|
|
if (it != converterlist_.end() && !flags.empty() && flags[0] == '*') {
|
2000-11-13 10:35:02 +00:00
|
|
|
converter = *it;
|
|
|
|
converter.command = command;
|
|
|
|
converter.flags = flags;
|
|
|
|
}
|
2001-07-30 11:56:00 +00:00
|
|
|
converter.readFlags();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
if (converter.latex && (latex_command_.empty() || to == "dvi"))
|
|
|
|
latex_command_ = subst(command, token_from, "");
|
2000-10-23 12:16:05 +00:00
|
|
|
// If we have both latex & pdflatex, we set latex_command to latex.
|
|
|
|
// The latex_command is used to update the .aux file when running
|
|
|
|
// a converter that uses it.
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
if (it == converterlist_.end()) {
|
|
|
|
converterlist_.push_back(converter);
|
|
|
|
} else {
|
2000-11-13 10:35:02 +00:00
|
|
|
converter.From = it->From;
|
|
|
|
converter.To = it->To;
|
|
|
|
*it = converter;
|
2000-10-23 12:16:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
void Converters::erase(string const & from, string const & to)
|
2000-10-23 12:16:05 +00:00
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
ConverterList::iterator const it =
|
|
|
|
find_if(converterlist_.begin(),
|
|
|
|
converterlist_.end(),
|
|
|
|
ConverterEqual(from, to));
|
2001-07-30 11:56:00 +00:00
|
|
|
if (it != converterlist_.end())
|
|
|
|
converterlist_.erase(it);
|
2000-11-06 11:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
// This method updates the pointers From and To in all the converters.
|
|
|
|
// The code is not very efficient, but it doesn't matter as the number
|
|
|
|
// of formats and converters is small.
|
2002-03-21 17:27:08 +00:00
|
|
|
// Furthermore, this method is called only on startup, or after
|
2000-11-13 10:35:02 +00:00
|
|
|
// adding/deleting a format in FormPreferences (the latter calls can be
|
|
|
|
// eliminated if the formats in the Formats class are stored using a map or
|
2002-03-21 17:27:08 +00:00
|
|
|
// a list (instead of a vector), but this will cause other problems).
|
2001-07-30 11:56:00 +00:00
|
|
|
void Converters::update(Formats const & formats)
|
2000-11-06 11:20:22 +00:00
|
|
|
{
|
2001-07-30 11:56:00 +00:00
|
|
|
ConverterList::iterator it = converterlist_.begin();
|
|
|
|
ConverterList::iterator end = converterlist_.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
it->From = formats.getFormat(it->from);
|
|
|
|
it->To = formats.getFormat(it->to);
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
2000-11-06 11:20:22 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
|
|
|
|
// This method updates the pointers From and To in the last converter.
|
|
|
|
// It is called when adding a new converter in FormPreferences
|
2001-07-30 11:56:00 +00:00
|
|
|
void Converters::updateLast(Formats const & formats)
|
2000-11-13 10:35:02 +00:00
|
|
|
{
|
2001-07-30 11:56:00 +00:00
|
|
|
if (converterlist_.begin() != converterlist_.end()) {
|
|
|
|
ConverterList::iterator it = converterlist_.end() - 1;
|
|
|
|
it->From = formats.getFormat(it->from);
|
|
|
|
it->To = formats.getFormat(it->to);
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
void Converters::sort()
|
2000-11-13 10:35:02 +00:00
|
|
|
{
|
2001-07-30 11:56:00 +00:00
|
|
|
std::sort(converterlist_.begin(), converterlist_.end());
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-27 16:38:47 +00:00
|
|
|
OutputParams::FLAVOR Converters::getFlavor(Graph::EdgePath const & path)
|
2000-11-13 10:35:02 +00:00
|
|
|
{
|
2003-02-28 09:49:49 +00:00
|
|
|
for (Graph::EdgePath::const_iterator cit = path.begin();
|
2000-11-13 10:35:02 +00:00
|
|
|
cit != path.end(); ++cit) {
|
2001-07-30 11:56:00 +00:00
|
|
|
Converter const & conv = converterlist_[*cit];
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.latex)
|
2003-11-27 16:38:47 +00:00
|
|
|
if (contains(conv.to, "pdf"))
|
|
|
|
return OutputParams::PDFLATEX;
|
2004-05-13 11:21:58 +00:00
|
|
|
if (conv.xml)
|
|
|
|
return OutputParams::XML;
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
2003-11-27 16:38:47 +00:00
|
|
|
return OutputParams::LATEX;
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
bool Converters::convert(Buffer const * buffer,
|
2000-11-13 10:35:02 +00:00
|
|
|
string const & from_file, string const & to_file_base,
|
|
|
|
string const & from_format, string const & to_format,
|
2006-08-13 16:16:43 +00:00
|
|
|
string & to_file, ErrorList & errorList, bool try_default)
|
2000-11-13 10:35:02 +00:00
|
|
|
{
|
2005-01-14 19:13:17 +00:00
|
|
|
string const to_ext = formats.extension(to_format);
|
2006-04-08 22:31:11 +00:00
|
|
|
to_file = changeExtension(to_file_base, to_ext);
|
2000-11-13 10:35:02 +00:00
|
|
|
|
|
|
|
if (from_format == to_format)
|
2004-10-26 18:39:13 +00:00
|
|
|
return move(from_format, from_file, to_file, false);
|
2000-11-13 10:35:02 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
Graph::EdgePath edgepath = getPath(from_format, to_format);
|
2000-11-13 10:35:02 +00:00
|
|
|
if (edgepath.empty()) {
|
2005-01-14 19:13:17 +00:00
|
|
|
if (try_default) {
|
|
|
|
// if no special converter defined, then we take the
|
|
|
|
// default one from ImageMagic.
|
2006-01-19 21:18:25 +00:00
|
|
|
string const from_ext = from_format.empty() ?
|
2006-04-08 22:31:11 +00:00
|
|
|
getExtension(from_file) :
|
2006-01-19 21:18:25 +00:00
|
|
|
formats.extension(from_format);
|
2005-04-17 19:31:27 +00:00
|
|
|
string const command =
|
2006-10-21 00:16:43 +00:00
|
|
|
support::os::python() + ' ' +
|
2006-06-26 14:17:12 +00:00
|
|
|
quoteName(libFileSearch("scripts", "convertDefault.py")) +
|
2005-04-17 19:31:27 +00:00
|
|
|
' ' +
|
2006-04-08 22:31:11 +00:00
|
|
|
quoteName(from_ext + ':' + from_file) +
|
2005-04-17 19:31:27 +00:00
|
|
|
' ' +
|
2006-04-08 22:31:11 +00:00
|
|
|
quoteName(to_ext + ':' + to_file);
|
2005-01-14 19:13:17 +00:00
|
|
|
lyxerr[Debug::FILES]
|
|
|
|
<< "No converter defined! "
|
2006-06-26 15:13:32 +00:00
|
|
|
"I use convertDefault.py:\n\t"
|
2005-01-14 19:13:17 +00:00
|
|
|
<< command << endl;
|
|
|
|
Systemcall one;
|
|
|
|
one.startscript(Systemcall::Wait, command);
|
2006-04-08 09:09:57 +00:00
|
|
|
if (isFileReadable(to_file)) {
|
2005-01-14 19:13:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::error(_("Cannot convert file"),
|
|
|
|
bformat(_("No information for converting %1$s "
|
2006-09-09 15:27:44 +00:00
|
|
|
"format files to %2$s.\n"
|
2006-10-19 16:38:13 +00:00
|
|
|
"Define a converter in the preferences."),
|
2006-10-21 00:16:43 +00:00
|
|
|
from_ascii(from_format), from_ascii(to_format)));
|
2000-08-30 03:40:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams runparams;
|
2003-11-27 16:38:47 +00:00
|
|
|
runparams.flavor = getFlavor(edgepath);
|
2006-10-04 19:01:00 +00:00
|
|
|
|
|
|
|
// Some converters (e.g. lilypond) can only output files to the
|
|
|
|
// current directory, so we need to change the current directory.
|
|
|
|
// This has the added benefit that all other files that may be
|
|
|
|
// generated by the converter are deleted when LyX closes and do not
|
|
|
|
// clutter the real working directory.
|
2006-04-08 22:31:11 +00:00
|
|
|
string path = onlyPath(from_file);
|
2000-09-11 15:42:17 +00:00
|
|
|
Path p(path);
|
2006-10-04 19:01:00 +00:00
|
|
|
|
2006-08-13 16:16:43 +00:00
|
|
|
// empty the error list before any new conversion takes place.
|
|
|
|
errorList.clear();
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2000-09-11 15:42:17 +00:00
|
|
|
bool run_latex = false;
|
2006-04-08 22:31:11 +00:00
|
|
|
string from_base = changeExtension(from_file, "");
|
|
|
|
string to_base = changeExtension(to_file, "");
|
2000-09-11 15:42:17 +00:00
|
|
|
string infile;
|
|
|
|
string outfile = from_file;
|
2003-02-28 09:49:49 +00:00
|
|
|
for (Graph::EdgePath::const_iterator cit = edgepath.begin();
|
2000-11-13 10:35:02 +00:00
|
|
|
cit != edgepath.end(); ++cit) {
|
2001-07-30 11:56:00 +00:00
|
|
|
Converter const & conv = converterlist_[*cit];
|
2000-11-13 10:35:02 +00:00
|
|
|
bool dummy = conv.To->dummy() && conv.to != "program";
|
2000-11-06 11:20:22 +00:00
|
|
|
if (!dummy)
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::FILES] << "Converting from "
|
2000-11-13 10:35:02 +00:00
|
|
|
<< conv.from << " to " << conv.to << endl;
|
2000-09-11 15:42:17 +00:00
|
|
|
infile = outfile;
|
2000-11-13 10:35:02 +00:00
|
|
|
outfile = conv.result_dir.empty()
|
2006-04-08 22:31:11 +00:00
|
|
|
? changeExtension(from_file, conv.To->extension())
|
|
|
|
: addName(subst(conv.result_dir,
|
2000-11-13 10:35:02 +00:00
|
|
|
token_base, from_base),
|
|
|
|
subst(conv.result_file,
|
2006-04-08 22:31:11 +00:00
|
|
|
token_base, onlyFilename(from_base)));
|
2000-11-13 10:35:02 +00:00
|
|
|
|
2002-11-29 15:51:17 +00:00
|
|
|
// if input and output files are equal, we use a
|
|
|
|
// temporary file as intermediary (JMarc)
|
|
|
|
string real_outfile;
|
|
|
|
if (outfile == infile) {
|
|
|
|
real_outfile = infile;
|
2006-04-08 22:31:11 +00:00
|
|
|
outfile = addName(buffer->temppath(), "tmpfile.out");
|
2002-11-29 15:51:17 +00:00
|
|
|
}
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.latex) {
|
2000-09-11 15:42:17 +00:00
|
|
|
run_latex = true;
|
2005-01-05 20:21:27 +00:00
|
|
|
string const command = subst(conv.command, token_from, "");
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::FILES] << "Running " << command << endl;
|
2006-08-13 16:16:43 +00:00
|
|
|
if (!runLaTeX(*buffer, command, runparams, errorList))
|
2000-08-30 03:40:51 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.need_aux && !run_latex
|
2001-07-30 11:56:00 +00:00
|
|
|
&& !latex_command_.empty()) {
|
2002-03-21 17:27:08 +00:00
|
|
|
lyxerr[Debug::FILES]
|
|
|
|
<< "Running " << latex_command_
|
2001-06-27 14:10:35 +00:00
|
|
|
<< " to update aux file"<< endl;
|
2006-08-13 16:16:43 +00:00
|
|
|
runLaTeX(*buffer, latex_command_, runparams, errorList);
|
2000-09-11 15:42:17 +00:00
|
|
|
}
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
string const infile2 = (conv.original_dir)
|
2006-04-08 22:31:11 +00:00
|
|
|
? infile : makeRelPath(infile, path);
|
2005-01-05 20:21:27 +00:00
|
|
|
string const outfile2 = (conv.original_dir)
|
2006-04-08 22:31:11 +00:00
|
|
|
? outfile : makeRelPath(outfile, path);
|
2002-07-17 17:26:35 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
string command = conv.command;
|
2006-04-08 22:31:11 +00:00
|
|
|
command = subst(command, token_from, quoteName(infile2));
|
|
|
|
command = subst(command, token_base, quoteName(from_base));
|
|
|
|
command = subst(command, token_to, quoteName(outfile2));
|
|
|
|
command = libScriptSearch(command);
|
2000-10-02 16:44:47 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (!conv.parselog.empty())
|
2006-04-08 22:31:11 +00:00
|
|
|
command += " 2> " + quoteName(infile2 + ".out");
|
2000-09-05 13:16:19 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.from == "dvi" && conv.to == "ps")
|
2000-09-05 13:16:19 +00:00
|
|
|
command = add_options(command,
|
2003-09-09 09:47:59 +00:00
|
|
|
buffer->params().dvips_options());
|
2001-01-28 16:52:27 +00:00
|
|
|
else if (conv.from == "dvi" && prefixIs(conv.to, "pdf"))
|
|
|
|
command = add_options(command,
|
2003-09-09 09:47:59 +00:00
|
|
|
dvipdfm_options(buffer->params()));
|
2000-09-05 13:16:19 +00:00
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::FILES] << "Calling " << command << endl;
|
2003-11-24 12:00:20 +00:00
|
|
|
if (buffer)
|
2006-09-11 08:54:10 +00:00
|
|
|
buffer->message(_("Executing command: ")
|
2006-10-21 00:16:43 +00:00
|
|
|
+ from_utf8(command));
|
2003-08-28 07:41:31 +00:00
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
Systemcall::Starttype const type = (dummy)
|
2002-02-18 19:13:48 +00:00
|
|
|
? Systemcall::DontWait : Systemcall::Wait;
|
|
|
|
Systemcall one;
|
2000-08-30 03:40:51 +00:00
|
|
|
int res;
|
2003-08-28 07:41:31 +00:00
|
|
|
if (conv.original_dir) {
|
2002-01-14 23:31:23 +00:00
|
|
|
Path p(buffer->filePath());
|
2000-11-06 11:20:22 +00:00
|
|
|
res = one.startscript(type, command);
|
2000-08-30 03:40:51 +00:00
|
|
|
} else
|
2000-11-06 11:20:22 +00:00
|
|
|
res = one.startscript(type, command);
|
2000-10-02 16:44:47 +00:00
|
|
|
|
2002-11-29 15:51:17 +00:00
|
|
|
if (!real_outfile.empty()) {
|
2004-10-26 18:39:13 +00:00
|
|
|
Mover const & mover = movers(conv.to);
|
|
|
|
if (!mover.rename(outfile, real_outfile))
|
2002-11-29 15:51:17 +00:00
|
|
|
res = -1;
|
|
|
|
else
|
|
|
|
lyxerr[Debug::FILES]
|
|
|
|
<< "renaming file " << outfile
|
|
|
|
<< " to " << real_outfile
|
|
|
|
<< endl;
|
2005-06-09 15:19:07 +00:00
|
|
|
// Finally, don't forget to tell any future
|
|
|
|
// converters to use the renamed file...
|
|
|
|
outfile = real_outfile;
|
2002-11-29 15:51:17 +00:00
|
|
|
}
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (!conv.parselog.empty()) {
|
2000-10-02 16:44:47 +00:00
|
|
|
string const logfile = infile2 + ".log";
|
2006-04-08 22:31:11 +00:00
|
|
|
string const script = libScriptSearch(conv.parselog);
|
2002-03-19 21:42:50 +00:00
|
|
|
string const command2 = script +
|
2006-04-08 22:31:11 +00:00
|
|
|
" < " + quoteName(infile2 + ".out") +
|
|
|
|
" > " + quoteName(logfile);
|
2002-02-18 19:13:48 +00:00
|
|
|
one.startscript(Systemcall::Wait, command2);
|
2006-08-13 16:16:43 +00:00
|
|
|
if (!scanLog(*buffer, command, logfile, errorList))
|
2000-10-02 16:44:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
if (res) {
|
2003-03-29 12:03:54 +00:00
|
|
|
if (conv.to == "program") {
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::error(_("Build errors"),
|
|
|
|
_("There were errors during the build process."));
|
2003-03-29 12:03:54 +00:00
|
|
|
} else {
|
2003-03-31 01:15:44 +00:00
|
|
|
// FIXME: this should go out of here. For example, here we cannot say if
|
|
|
|
// it is a document (.lyx) or something else. Same goes for elsewhere.
|
2006-10-07 16:47:54 +00:00
|
|
|
Alert::error(_("Cannot convert file"),
|
|
|
|
bformat(_("An error occurred whilst running %1$s"),
|
2006-10-21 00:16:43 +00:00
|
|
|
from_ascii(command.substr(0, 50))));
|
2003-03-29 12:03:54 +00:00
|
|
|
}
|
2000-08-30 03:40:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
Converter const & conv = converterlist_[edgepath.back()];
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.To->dummy())
|
2000-11-06 11:20:22 +00:00
|
|
|
return true;
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (!conv.result_dir.empty()) {
|
2006-04-08 22:31:11 +00:00
|
|
|
to_file = addName(subst(conv.result_dir, token_base, to_base),
|
2000-11-13 10:35:02 +00:00
|
|
|
subst(conv.result_file,
|
2006-04-08 22:31:11 +00:00
|
|
|
token_base, onlyFilename(to_base)));
|
2000-09-11 15:42:17 +00:00
|
|
|
if (from_base != to_base) {
|
2005-01-05 20:21:27 +00:00
|
|
|
string const from = subst(conv.result_dir,
|
2000-11-13 10:35:02 +00:00
|
|
|
token_base, from_base);
|
2005-01-05 20:21:27 +00:00
|
|
|
string const to = subst(conv.result_dir,
|
2000-11-13 10:35:02 +00:00
|
|
|
token_base, to_base);
|
2004-10-26 18:39:13 +00:00
|
|
|
Mover const & mover = movers(conv.from);
|
|
|
|
if (!mover.rename(from, to)) {
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::error(_("Cannot convert file"),
|
|
|
|
bformat(_("Could not move a temporary file from %1$s to %2$s."),
|
2006-10-21 00:16:43 +00:00
|
|
|
from_ascii(from), from_ascii(to)));
|
2000-11-06 11:20:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
2000-09-11 15:42:17 +00:00
|
|
|
}
|
2000-12-10 05:20:36 +00:00
|
|
|
return true;
|
2002-03-21 17:27:08 +00:00
|
|
|
} else
|
2004-10-26 18:39:13 +00:00
|
|
|
return move(conv.to, outfile, to_file, conv.latex);
|
2000-08-30 03:40:51 +00:00
|
|
|
}
|
|
|
|
|
2002-11-24 15:20:31 +00:00
|
|
|
|
2004-10-26 18:39:13 +00:00
|
|
|
bool Converters::move(string const & fmt,
|
|
|
|
string const & from, string const & to, bool copy)
|
2000-12-10 05:20:36 +00:00
|
|
|
{
|
|
|
|
if (from == to)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
bool no_errors = true;
|
2006-04-08 22:31:11 +00:00
|
|
|
string const path = onlyPath(from);
|
|
|
|
string const base = onlyFilename(changeExtension(from, ""));
|
|
|
|
string const to_base = changeExtension(to, "");
|
|
|
|
string const to_extension = getExtension(to);
|
2000-12-10 05:20:36 +00:00
|
|
|
|
2006-04-08 22:31:11 +00:00
|
|
|
vector<string> files = dirList(onlyPath(from), getExtension(from));
|
2000-12-10 05:20:36 +00:00
|
|
|
for (vector<string>::const_iterator it = files.begin();
|
|
|
|
it != files.end(); ++it)
|
|
|
|
if (prefixIs(*it, base)) {
|
2002-06-03 00:41:59 +00:00
|
|
|
string const from2 = path + *it;
|
2001-07-12 11:11:10 +00:00
|
|
|
string to2 = to_base + it->substr(base.length());
|
2006-04-08 22:31:11 +00:00
|
|
|
to2 = changeExtension(to2, to_extension);
|
2002-03-21 17:27:08 +00:00
|
|
|
lyxerr[Debug::FILES] << "moving " << from2
|
2001-06-27 14:10:35 +00:00
|
|
|
<< " to " << to2 << endl;
|
2004-10-26 18:39:13 +00:00
|
|
|
|
|
|
|
Mover const & mover = movers(fmt);
|
|
|
|
bool const moved = copy
|
|
|
|
? mover.copy(from2, to2)
|
|
|
|
: mover.rename(from2, to2);
|
2000-12-10 05:20:36 +00:00
|
|
|
if (!moved && no_errors) {
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::error(_("Cannot convert file"),
|
2004-11-08 08:22:03 +00:00
|
|
|
bformat(copy ?
|
2006-09-11 08:54:10 +00:00
|
|
|
_("Could not copy a temporary file from %1$s to %2$s.") :
|
|
|
|
_("Could not move a temporary file from %1$s to %2$s."),
|
2006-10-21 00:16:43 +00:00
|
|
|
from_ascii(from2), from_ascii(to2)));
|
2000-12-10 05:20:36 +00:00
|
|
|
no_errors = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return no_errors;
|
|
|
|
}
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
|
|
|
|
bool Converters::convert(Buffer const * buffer,
|
2003-07-07 08:37:02 +00:00
|
|
|
string const & from_file, string const & to_file_base,
|
2005-01-14 19:13:17 +00:00
|
|
|
string const & from_format, string const & to_format,
|
2006-08-13 16:16:43 +00:00
|
|
|
ErrorList & errorList, bool try_default)
|
2000-10-23 12:16:05 +00:00
|
|
|
{
|
|
|
|
string to_file;
|
2001-07-30 11:56:00 +00:00
|
|
|
return convert(buffer, from_file, to_file_base, from_format, to_format,
|
2006-08-13 16:16:43 +00:00
|
|
|
to_file, errorList, try_default);
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
bool Converters::formatIsUsed(string const & format)
|
2000-08-30 03:40:51 +00:00
|
|
|
{
|
2001-07-30 11:56:00 +00:00
|
|
|
ConverterList::const_iterator cit = converterlist_.begin();
|
|
|
|
ConverterList::const_iterator end = converterlist_.end();
|
|
|
|
for (; cit != end; ++cit) {
|
2000-11-13 10:35:02 +00:00
|
|
|
if (cit->from == format || cit->to == format)
|
|
|
|
return true;
|
2001-07-30 11:56:00 +00:00
|
|
|
}
|
2000-11-13 10:35:02 +00:00
|
|
|
return false;
|
2000-08-30 03:40:51 +00:00
|
|
|
}
|
|
|
|
|
2000-10-23 12:16:05 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
bool Converters::scanLog(Buffer const & buffer, string const & /*command*/,
|
2006-08-13 16:16:43 +00:00
|
|
|
string const & filename, ErrorList & errorList)
|
2000-10-02 16:44:47 +00:00
|
|
|
{
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams runparams;
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
2003-05-22 18:59:10 +00:00
|
|
|
LaTeX latex("", runparams, filename, "");
|
2000-10-02 16:44:47 +00:00
|
|
|
TeXErrors terr;
|
2005-01-05 20:21:27 +00:00
|
|
|
int const result = latex.scanLogFile(terr);
|
2003-05-20 16:56:07 +00:00
|
|
|
|
2003-07-07 08:37:02 +00:00
|
|
|
if (result & LaTeX::ERRORS)
|
2006-08-13 16:16:43 +00:00
|
|
|
bufferErrors(buffer, terr, errorList);
|
2000-10-23 12:16:05 +00:00
|
|
|
|
2000-10-02 16:44:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
2000-08-30 04:38:32 +00:00
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
2003-07-07 08:37:02 +00:00
|
|
|
namespace {
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
class showMessage : public std::unary_function<docstring, void>, public boost::signals::trackable {
|
2003-07-07 08:37:02 +00:00
|
|
|
public:
|
2003-08-28 07:41:31 +00:00
|
|
|
showMessage(Buffer const & b) : buffer_(b) {};
|
2006-09-11 08:54:10 +00:00
|
|
|
void operator()(docstring const & m) const
|
2003-07-07 08:37:02 +00:00
|
|
|
{
|
2003-08-28 07:41:31 +00:00
|
|
|
buffer_.message(m);
|
2003-07-07 08:37:02 +00:00
|
|
|
}
|
|
|
|
private:
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buffer_;
|
2003-07-07 08:37:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2000-10-23 12:16:05 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
|
|
|
bool Converters::runLaTeX(Buffer const & buffer, string const & command,
|
2006-08-13 16:16:43 +00:00
|
|
|
OutputParams const & runparams, ErrorList & errorList)
|
2000-08-30 03:40:51 +00:00
|
|
|
{
|
2003-08-28 07:41:31 +00:00
|
|
|
buffer.busy(true);
|
2006-09-11 08:54:10 +00:00
|
|
|
buffer.message(_("Running LaTeX..."));
|
2004-10-26 18:39:13 +00:00
|
|
|
|
2004-10-07 15:21:03 +00:00
|
|
|
runparams.document_language = buffer.params().language->babel();
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2002-03-19 03:56:23 +00:00
|
|
|
// do the LaTeX run(s)
|
2005-01-05 20:21:27 +00:00
|
|
|
string const name = buffer.getLatexName();
|
2003-08-28 07:41:31 +00:00
|
|
|
LaTeX latex(command, runparams, name, buffer.filePath());
|
2000-08-30 03:40:51 +00:00
|
|
|
TeXErrors terr;
|
2003-07-07 08:37:02 +00:00
|
|
|
showMessage show(buffer);
|
|
|
|
latex.message.connect(show);
|
2005-01-05 20:21:27 +00:00
|
|
|
int const result = latex.run(terr);
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2003-07-07 08:37:02 +00:00
|
|
|
if (result & LaTeX::ERRORS)
|
2006-08-13 16:16:43 +00:00
|
|
|
bufferErrors(buffer, terr, errorList);
|
2000-08-30 03:40:51 +00:00
|
|
|
|
|
|
|
// check return value from latex.run().
|
|
|
|
if ((result & LaTeX::NO_LOGFILE)) {
|
2006-09-11 08:54:10 +00:00
|
|
|
docstring const str =
|
|
|
|
bformat(_("LaTeX did not run successfully. "
|
2006-09-09 15:27:44 +00:00
|
|
|
"Additionally, LyX could not locate "
|
2006-10-21 00:16:43 +00:00
|
|
|
"the LaTeX log %1$s."), from_utf8(name));
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::error(_("LaTeX failed"), str);
|
2003-05-13 21:15:48 +00:00
|
|
|
} else if (result & LaTeX::NO_OUTPUT) {
|
2006-09-11 08:54:10 +00:00
|
|
|
Alert::warning(_("Output is empty"),
|
|
|
|
_("An empty output file was generated."));
|
2000-08-30 03:40:51 +00:00
|
|
|
}
|
2000-10-02 04:21:44 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
|
|
|
buffer.busy(false);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
|
|
int const ERROR_MASK =
|
2000-10-16 13:27:56 +00:00
|
|
|
LaTeX::NO_LOGFILE |
|
|
|
|
LaTeX::ERRORS |
|
|
|
|
LaTeX::NO_OUTPUT;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-10-16 13:27:56 +00:00
|
|
|
return (result & ERROR_MASK) == 0;
|
2000-08-30 03:40:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-09-05 13:16:19 +00:00
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
void Converters::buildGraph()
|
|
|
|
{
|
|
|
|
G_.init(formats.size());
|
|
|
|
ConverterList::iterator beg = converterlist_.begin();
|
2005-01-05 20:21:27 +00:00
|
|
|
ConverterList::iterator const end = converterlist_.end();
|
2003-02-28 09:49:49 +00:00
|
|
|
for (ConverterList::iterator it = beg; it != end ; ++it) {
|
|
|
|
int const s = formats.getNumber(it->from);
|
|
|
|
int const t = formats.getNumber(it->to);
|
|
|
|
G_.addEdge(s,t);
|
|
|
|
}
|
|
|
|
}
|
2001-01-28 16:52:27 +00:00
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
|
|
|
std::vector<Format const *> const
|
2003-02-28 09:49:49 +00:00
|
|
|
Converters::intToFormat(std::vector<int> const & input)
|
|
|
|
{
|
|
|
|
vector<Format const *> result(input.size());
|
2000-11-08 09:39:46 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
vector<int>::const_iterator it = input.begin();
|
2005-01-05 20:21:27 +00:00
|
|
|
vector<int>::const_iterator const end = input.end();
|
2003-02-28 09:49:49 +00:00
|
|
|
vector<Format const *>::iterator rit = result.begin();
|
|
|
|
for ( ; it != end; ++it, ++rit) {
|
|
|
|
*rit = &formats.get(*it);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
vector<Format const *> const
|
2005-01-05 20:21:27 +00:00
|
|
|
Converters::getReachableTo(string const & target, bool const clear_visited)
|
2003-02-28 09:49:49 +00:00
|
|
|
{
|
2003-03-03 23:19:01 +00:00
|
|
|
vector<int> const & reachablesto =
|
2003-02-28 09:49:49 +00:00
|
|
|
G_.getReachableTo(formats.getNumber(target), clear_visited);
|
|
|
|
|
|
|
|
return intToFormat(reachablesto);
|
|
|
|
}
|
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
vector<Format const *> const
|
2005-01-05 20:21:27 +00:00
|
|
|
Converters::getReachable(string const & from, bool const only_viewable,
|
|
|
|
bool const clear_visited)
|
2003-02-28 09:49:49 +00:00
|
|
|
{
|
2003-03-03 23:19:01 +00:00
|
|
|
vector<int> const & reachables =
|
|
|
|
G_.getReachable(formats.getNumber(from),
|
|
|
|
only_viewable,
|
2003-02-28 09:49:49 +00:00
|
|
|
clear_visited);
|
|
|
|
|
|
|
|
return intToFormat(reachables);
|
|
|
|
}
|
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
bool Converters::isReachable(string const & from, string const & to)
|
|
|
|
{
|
|
|
|
return G_.isReachable(formats.getNumber(from),
|
|
|
|
formats.getNumber(to));
|
|
|
|
}
|
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
Graph::EdgePath const
|
2003-02-28 09:49:49 +00:00
|
|
|
Converters::getPath(string const & from, string const & to)
|
|
|
|
{
|
|
|
|
return G_.getPath(formats.getNumber(from),
|
|
|
|
formats.getNumber(to));
|
|
|
|
}
|
2000-11-08 09:39:46 +00:00
|
|
|
|
2003-06-28 01:23:11 +00:00
|
|
|
|
2000-11-06 11:20:22 +00:00
|
|
|
/// The global instance
|
2000-11-13 10:35:02 +00:00
|
|
|
Converters converters;
|
2000-11-06 11:20:22 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
// The global copy after reading lyxrc.defaults
|
|
|
|
Converters system_converters;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|