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-02-28 09:49:49 +00:00
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
*/
|
2000-08-30 03:40:51 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "converter.h"
|
2003-02-28 09:49:49 +00:00
|
|
|
#include "graph.h"
|
|
|
|
#include "format.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "bufferview_funcs.h"
|
|
|
|
#include "LaTeX.h"
|
2000-09-05 13:16:19 +00:00
|
|
|
#include "lyx_cb.h" // ShowMessage()
|
2001-04-17 15:15:59 +00:00
|
|
|
#include "gettext.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "BufferView.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "debug.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2002-02-18 19:13:48 +00:00
|
|
|
#include "frontends/Alert.h"
|
2002-11-21 18:33:09 +00:00
|
|
|
#include "frontends/LyXView.h"
|
2002-02-18 19:13:48 +00:00
|
|
|
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lyxfunctional.h"
|
|
|
|
#include "support/path.h"
|
|
|
|
#include "support/systemcall.h"
|
|
|
|
|
2003-03-30 20:25:44 +00:00
|
|
|
#include "support/BoostFormat.h"
|
2002-11-21 18:33:09 +00:00
|
|
|
|
|
|
|
#include <cctype>
|
|
|
|
|
2002-06-10 07:57:39 +00:00
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
|
|
|
using std::isdigit;
|
|
|
|
#endif
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
using std::vector;
|
2000-08-31 11:51:59 +00:00
|
|
|
using std::endl;
|
2000-10-23 12:16:05 +00:00
|
|
|
using std::find_if;
|
2000-08-30 03:40:51 +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;
|
|
|
|
}
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
Converter::Converter(string const & f, string const & t, string const & c,
|
2003-03-03 23:19:01 +00:00
|
|
|
string const & l): from(f), to(t), command(c), flags(l),
|
|
|
|
From(0), To(0), latex(false),
|
|
|
|
original_dir(false), need_aux(false)
|
2003-02-28 09:49:49 +00:00
|
|
|
{}
|
2000-11-06 11:20:22 +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;
|
|
|
|
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)
|
2002-07-16 21:17:10 +00:00
|
|
|
return compare_ascii_no_case(a.To->prettyname(), b.To->prettyname())
|
2000-11-13 10:35:02 +00:00
|
|
|
< 0;
|
|
|
|
else
|
|
|
|
return i < 0;
|
|
|
|
}
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
|
2000-09-05 13:16:19 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
class compare_Converter {
|
2000-10-23 12:16:05 +00:00
|
|
|
public:
|
2000-11-13 10:35:02 +00:00
|
|
|
compare_Converter(string const & f, string const & t)
|
|
|
|
: from(f), to(t) {}
|
|
|
|
bool operator()(Converter const & c) {
|
|
|
|
return c.from == from && c.to == to;
|
2000-10-23 12:16:05 +00:00
|
|
|
}
|
|
|
|
private:
|
2000-12-17 06:57:54 +00:00
|
|
|
string const & from;
|
|
|
|
string const & to;
|
2000-10-23 12:16:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
Converter const * Converters::getConverter(string const & from,
|
2000-11-13 10:35:02 +00:00
|
|
|
string const & to)
|
2000-08-30 03:40:51 +00:00
|
|
|
{
|
2000-11-13 10:35:02 +00:00
|
|
|
ConverterList::const_iterator cit =
|
2001-07-30 11:56:00 +00:00
|
|
|
find_if(converterlist_.begin(), converterlist_.end(),
|
2000-11-13 10:35:02 +00:00
|
|
|
compare_Converter(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
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
int Converters::getNumber(string const & from, string const & to)
|
2000-11-13 10:35:02 +00:00
|
|
|
{
|
|
|
|
ConverterList::const_iterator cit =
|
2001-07-30 11:56:00 +00:00
|
|
|
find_if(converterlist_.begin(), converterlist_.end(),
|
2000-11-13 10:35:02 +00:00
|
|
|
compare_Converter(from, to));
|
2001-07-30 11:56:00 +00:00
|
|
|
if (cit != converterlist_.end())
|
|
|
|
return cit - converterlist_.begin();
|
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(),
|
2000-11-13 10:35:02 +00:00
|
|
|
compare_Converter(from, to));
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2001-07-30 11:56:00 +00:00
|
|
|
ConverterList::iterator it = find_if(converterlist_.begin(),
|
|
|
|
converterlist_.end(),
|
2000-11-13 10:35:02 +00:00
|
|
|
compare_Converter(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-02-28 09:49:49 +00:00
|
|
|
bool Converters::usePdflatex(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)
|
|
|
|
return contains(conv.to, "pdf");
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
string & to_file)
|
|
|
|
{
|
|
|
|
to_file = ChangeExtension(to_file_base,
|
2001-07-30 11:56:00 +00:00
|
|
|
formats.extension(to_format));
|
2000-11-13 10:35:02 +00:00
|
|
|
|
|
|
|
if (from_format == to_format)
|
2001-07-30 11:56:00 +00:00
|
|
|
return move(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()) {
|
2000-08-30 03:40:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-09-11 15:42:17 +00:00
|
|
|
string path = OnlyPath(from_file);
|
|
|
|
Path p(path);
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2000-09-11 15:42:17 +00:00
|
|
|
bool run_latex = false;
|
|
|
|
string from_base = ChangeExtension(from_file, "");
|
|
|
|
string to_base = ChangeExtension(to_file, "");
|
|
|
|
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()
|
|
|
|
? ChangeExtension(from_file, conv.To->extension())
|
|
|
|
: AddName(subst(conv.result_dir,
|
|
|
|
token_base, from_base),
|
|
|
|
subst(conv.result_file,
|
|
|
|
token_base, OnlyFilename(from_base)));
|
|
|
|
|
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;
|
|
|
|
outfile = AddName(buffer->tmppath, "tmpfile.out");
|
|
|
|
}
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.latex) {
|
2000-09-11 15:42:17 +00:00
|
|
|
run_latex = true;
|
2000-11-13 10:35:02 +00:00
|
|
|
string command = subst(conv.command, token_from, "");
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::FILES] << "Running " << command << endl;
|
2000-11-13 10:35:02 +00:00
|
|
|
if (!runLaTeX(buffer, command))
|
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;
|
2001-07-30 11:56:00 +00:00
|
|
|
runLaTeX(buffer, latex_command_);
|
2000-09-11 15:42:17 +00:00
|
|
|
}
|
|
|
|
|
2002-07-17 17:26:35 +00:00
|
|
|
string infile2 = (conv.original_dir)
|
2000-09-11 15:42:17 +00:00
|
|
|
? infile : MakeRelPath(infile, path);
|
2002-07-17 17:26:35 +00:00
|
|
|
string outfile2 = (conv.original_dir)
|
2000-09-11 15:42:17 +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;
|
|
|
|
command = subst(command, token_from, QuoteName(infile2));
|
|
|
|
command = subst(command, token_base, QuoteName(from_base));
|
|
|
|
command = subst(command, token_to, QuoteName(outfile2));
|
2002-07-17 17:26:35 +00:00
|
|
|
command = LibScriptSearch(command);
|
2000-10-02 16:44:47 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
if (!conv.parselog.empty())
|
2000-10-02 16:44:47 +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,
|
|
|
|
dvips_options(buffer));
|
2001-01-28 16:52:27 +00:00
|
|
|
else if (conv.from == "dvi" && prefixIs(conv.to, "pdf"))
|
|
|
|
command = add_options(command,
|
|
|
|
dvipdfm_options(buffer));
|
2000-09-05 13:16:19 +00:00
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::FILES] << "Calling " << command << endl;
|
2000-10-23 12:16:05 +00:00
|
|
|
if (buffer)
|
|
|
|
ShowMessage(buffer, _("Executing command:"), command);
|
2000-11-06 11:20:22 +00:00
|
|
|
|
2002-02-18 19:13:48 +00:00
|
|
|
Systemcall::Starttype type = (dummy)
|
|
|
|
? Systemcall::DontWait : Systemcall::Wait;
|
|
|
|
Systemcall one;
|
2000-08-30 03:40:51 +00:00
|
|
|
int res;
|
2000-11-13 10:35:02 +00:00
|
|
|
if (conv.original_dir && buffer) {
|
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()) {
|
|
|
|
if (!lyx::rename(outfile, real_outfile))
|
|
|
|
res = -1;
|
|
|
|
else
|
|
|
|
lyxerr[Debug::FILES]
|
|
|
|
<< "renaming file " << outfile
|
|
|
|
<< " to " << real_outfile
|
|
|
|
<< endl;
|
|
|
|
}
|
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";
|
2002-03-27 00:05:28 +00:00
|
|
|
string const script = LibScriptSearch(conv.parselog);
|
2002-03-19 21:42:50 +00:00
|
|
|
string const command2 = script +
|
2000-10-02 16:44:47 +00:00
|
|
|
" < " + QuoteName(infile2 + ".out") +
|
|
|
|
" > " + QuoteName(logfile);
|
2002-02-18 19:13:48 +00:00
|
|
|
one.startscript(Systemcall::Wait, command2);
|
2000-10-02 16:44:47 +00:00
|
|
|
if (!scanLog(buffer, command, logfile))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
if (res) {
|
2003-03-29 12:03:54 +00:00
|
|
|
if (conv.to == "program") {
|
|
|
|
Alert::error(_("Build errors"),
|
|
|
|
_("There were errors during the build process."));
|
|
|
|
} else {
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Cannot convert file"),
|
2002-11-21 18:33:09 +00:00
|
|
|
_("Error while executing"),
|
2000-10-02 16:44:47 +00:00
|
|
|
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()) {
|
|
|
|
to_file = AddName(subst(conv.result_dir, token_base, to_base),
|
|
|
|
subst(conv.result_file,
|
|
|
|
token_base, OnlyFilename(to_base)));
|
2000-09-11 15:42:17 +00:00
|
|
|
if (from_base != to_base) {
|
2000-11-13 10:35:02 +00:00
|
|
|
string from = subst(conv.result_dir,
|
|
|
|
token_base, from_base);
|
|
|
|
string to = subst(conv.result_dir,
|
|
|
|
token_base, to_base);
|
2000-11-06 11:20:22 +00:00
|
|
|
if (!lyx::rename(from, to)) {
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Error while trying to move directory:"),
|
2002-11-21 18:33:09 +00:00
|
|
|
from, boost::io::str(boost::format(_("to %1$s")) % to));
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
|
|
|
Alert::alert(_("Error while trying to move directory:"),
|
|
|
|
from, _("to ") + to);
|
|
|
|
#endif
|
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
|
2001-07-30 11:56:00 +00:00
|
|
|
return move(outfile, to_file, conv.latex);
|
2000-08-30 03:40:51 +00:00
|
|
|
}
|
|
|
|
|
2002-11-24 15:20:31 +00:00
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
// If from = /path/file.ext and to = /path2/file2.ext2 then this method
|
2000-12-10 05:20:36 +00:00
|
|
|
// moves each /path/file*.ext file to /path2/file2*.ext2'
|
2001-07-30 11:56:00 +00:00
|
|
|
bool Converters::move(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;
|
2000-12-17 06:57:54 +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
|
|
|
|
|
|
|
vector<string> files = DirList(OnlyPath(from), GetExtension(from));
|
|
|
|
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());
|
2000-12-10 05:20:36 +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;
|
2002-06-03 00:41:59 +00:00
|
|
|
bool const moved = (copy)
|
2000-12-10 05:20:36 +00:00
|
|
|
? lyx::copy(from2, to2)
|
|
|
|
: lyx::rename(from2, to2);
|
|
|
|
if (!moved && no_errors) {
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Error while trying to move file:"),
|
2002-11-21 18:33:09 +00:00
|
|
|
from2, boost::io::str(boost::format(_("to %1$s")) % to2));
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
|
|
|
Alert::alert(_("Error while trying to move file:"),
|
|
|
|
from2, _("to ") + to2);
|
|
|
|
#endif
|
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,
|
2000-10-23 12:16:05 +00:00
|
|
|
string const & from_file, string const & to_file_base,
|
2000-11-13 10:35:02 +00:00
|
|
|
string const & from_format, string const & to_format)
|
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,
|
2000-11-13 10:35:02 +00:00
|
|
|
to_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-03-29 12:03:54 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void alertErrors(string const & prog, int nr_errors)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
#if USE_BOOST_FORMAT
|
|
|
|
if (nr_errors == 1) {
|
|
|
|
boost::format fmt(_("One error detected when running %1$s.\n"));
|
|
|
|
fmt % prog;
|
|
|
|
s = fmt.str();
|
|
|
|
} else {
|
|
|
|
boost::format fmt(_("%1$s errors detected when running %2$s.\n"));
|
|
|
|
fmt % tostr(nr_errors);
|
|
|
|
fmt % prog;
|
|
|
|
s = fmt.str();
|
|
|
|
}
|
|
|
|
#else
|
2003-03-29 19:12:24 +00:00
|
|
|
if (nr_errors == 1) {
|
2003-03-29 12:03:54 +00:00
|
|
|
s = _("One error detected");
|
|
|
|
} else {
|
2003-03-29 19:12:24 +00:00
|
|
|
s = tostr(nr_errors);
|
2003-03-29 12:03:54 +00:00
|
|
|
s += _(" errors detected.");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
Alert::error(_("Errors found"), s);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
bool Converters::scanLog(Buffer const * buffer, string const & command,
|
2000-10-02 16:44:47 +00:00
|
|
|
string const & filename)
|
|
|
|
{
|
2000-10-23 12:16:05 +00:00
|
|
|
if (!buffer)
|
|
|
|
return false;
|
|
|
|
|
2000-10-02 16:44:47 +00:00
|
|
|
BufferView * bv = buffer->getUser();
|
|
|
|
if (bv) {
|
2003-02-14 14:49:51 +00:00
|
|
|
bv->owner()->busy(true);
|
2002-03-19 03:56:23 +00:00
|
|
|
// all error insets should have been removed by now
|
2000-10-02 16:44:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LaTeX latex("", filename, "");
|
|
|
|
TeXErrors terr;
|
|
|
|
int result = latex.scanLogFile(terr);
|
|
|
|
if (bv) {
|
|
|
|
if ((result & LaTeX::ERRORS)) {
|
|
|
|
// Insert all errors as errors boxes
|
|
|
|
bv->insertErrors(terr);
|
2002-06-21 02:22:13 +00:00
|
|
|
#warning repaint() or update() or nothing ?
|
|
|
|
bv->repaint();
|
2001-08-02 14:55:06 +00:00
|
|
|
bv->fitCursor();
|
2000-10-02 16:44:47 +00:00
|
|
|
}
|
2003-02-14 14:49:51 +00:00
|
|
|
bv->owner()->busy(false);
|
2000-10-02 16:44:47 +00:00
|
|
|
}
|
2000-10-23 12:16:05 +00:00
|
|
|
|
2000-10-02 16:44:47 +00:00
|
|
|
if ((result & LaTeX::ERRORS)) {
|
|
|
|
string head;
|
|
|
|
split(command, head, ' ');
|
2003-03-29 12:03:54 +00:00
|
|
|
alertErrors(head, latex.getNumErrors());
|
2000-10-02 16:44:47 +00:00
|
|
|
return false;
|
2000-10-23 12:16:05 +00:00
|
|
|
} else if (result & LaTeX::NO_OUTPUT) {
|
2003-03-29 12:03:54 +00:00
|
|
|
Alert::warning(_("Output is empty"),
|
|
|
|
_("An empty output file was generated."));
|
2000-10-23 12:16:05 +00:00
|
|
|
return false;
|
2000-10-02 16:44:47 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2000-08-30 04:38:32 +00:00
|
|
|
|
2000-10-23 12:16:05 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
bool Converters::runLaTeX(Buffer const * buffer, string const & command)
|
2000-08-30 03:40:51 +00:00
|
|
|
{
|
2000-10-23 12:16:05 +00:00
|
|
|
if (!buffer)
|
|
|
|
return false;
|
|
|
|
|
2000-08-30 03:40:51 +00:00
|
|
|
BufferView * bv = buffer->getUser();
|
|
|
|
|
2000-10-02 04:21:44 +00:00
|
|
|
if (bv) {
|
2003-02-14 14:49:51 +00:00
|
|
|
bv->owner()->busy(true);
|
2001-04-24 17:33:01 +00:00
|
|
|
bv->owner()->message(_("Running LaTeX..."));
|
2002-03-19 03:56:23 +00:00
|
|
|
// all the autoinsets have already been removed
|
2000-10-02 04:21:44 +00:00
|
|
|
}
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2002-03-19 03:56:23 +00:00
|
|
|
// do the LaTeX run(s)
|
|
|
|
string name = buffer->getLatexName();
|
2002-03-21 17:27:08 +00:00
|
|
|
LaTeX latex(command, name, buffer->filePath());
|
2000-08-30 03:40:51 +00:00
|
|
|
TeXErrors terr;
|
|
|
|
int result = latex.run(terr,
|
2002-08-13 14:40:38 +00:00
|
|
|
bv ? &bv->owner()->getLyXFunc() : 0);
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2000-10-02 04:21:44 +00:00
|
|
|
if (bv) {
|
|
|
|
if ((result & LaTeX::ERRORS)) {
|
|
|
|
// Insert all errors as errors boxes
|
|
|
|
bv->insertErrors(terr);
|
2002-06-21 02:22:13 +00:00
|
|
|
#warning repaint() or update() or nothing ?
|
|
|
|
bv->repaint();
|
2001-08-02 14:55:06 +00:00
|
|
|
bv->fitCursor();
|
2000-10-02 04:21:44 +00:00
|
|
|
}
|
|
|
|
}
|
2000-08-30 03:40:51 +00:00
|
|
|
|
|
|
|
// check return value from latex.run().
|
|
|
|
if ((result & LaTeX::NO_LOGFILE)) {
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("LaTeX did not work!"),
|
2000-08-30 03:40:51 +00:00
|
|
|
_("Missing log file:"), name);
|
|
|
|
} else if ((result & LaTeX::ERRORS)) {
|
2003-03-29 12:03:54 +00:00
|
|
|
alertErrors("LaTeX", latex.getNumErrors());
|
2000-10-23 12:16:05 +00:00
|
|
|
} else if (result & LaTeX::NO_OUTPUT) {
|
2003-03-29 12:03:54 +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
|
|
|
|
|
|
|
if (bv)
|
2003-02-14 14:49:51 +00:00
|
|
|
bv->owner()->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
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
string const Converters::dvips_options(Buffer const * buffer)
|
2000-09-05 13:16:19 +00:00
|
|
|
{
|
|
|
|
string result;
|
2000-10-23 12:16:05 +00:00
|
|
|
if (!buffer)
|
|
|
|
return result;
|
|
|
|
|
2000-09-05 13:16:19 +00:00
|
|
|
if (buffer->params.use_geometry
|
|
|
|
&& buffer->params.papersize2 == BufferParams::VM_PAPER_CUSTOM
|
|
|
|
&& !lyxrc.print_paper_dimension_flag.empty()
|
|
|
|
&& !buffer->params.paperwidth.empty()
|
|
|
|
&& !buffer->params.paperheight.empty()) {
|
|
|
|
// using a custom papersize
|
|
|
|
result = lyxrc.print_paper_dimension_flag;
|
|
|
|
result += ' ' + buffer->params.paperwidth;
|
|
|
|
result += ',' + buffer->params.paperheight;
|
|
|
|
} else {
|
2001-07-30 11:56:00 +00:00
|
|
|
string const paper_option = papersize(buffer);
|
2000-09-05 13:16:19 +00:00
|
|
|
if (paper_option != "letter" ||
|
|
|
|
buffer->params.orientation != BufferParams::ORIENTATION_LANDSCAPE) {
|
|
|
|
// dvips won't accept -t letter -t landscape. In all other
|
|
|
|
// cases, include the paper size explicitly.
|
|
|
|
result = lyxrc.print_paper_flag;
|
|
|
|
result += ' ' + paper_option;
|
|
|
|
}
|
|
|
|
}
|
2001-01-28 16:52:27 +00:00
|
|
|
if (buffer->params.orientation == BufferParams::ORIENTATION_LANDSCAPE &&
|
|
|
|
buffer->params.papersize2 != BufferParams::VM_PAPER_CUSTOM)
|
2000-09-05 13:16:19 +00:00
|
|
|
result += ' ' + lyxrc.print_landscape_flag;
|
|
|
|
return result;
|
|
|
|
}
|
2000-10-16 13:27:56 +00:00
|
|
|
|
2001-01-28 16:52:27 +00:00
|
|
|
|
|
|
|
string const Converters::dvipdfm_options(Buffer const * buffer)
|
|
|
|
{
|
|
|
|
string result;
|
|
|
|
if (!buffer)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if (buffer->params.papersize2 != BufferParams::VM_PAPER_CUSTOM) {
|
2001-07-30 11:56:00 +00:00
|
|
|
string const paper_size = papersize(buffer);
|
2001-01-28 16:52:27 +00:00
|
|
|
if (paper_size != "b5" && paper_size != "foolscap")
|
|
|
|
result = "-p "+ paper_size;
|
|
|
|
|
|
|
|
if (buffer->params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
|
|
|
|
result += " -l";
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
void Converters::buildGraph()
|
|
|
|
{
|
|
|
|
G_.init(formats.size());
|
|
|
|
ConverterList::iterator beg = converterlist_.begin();
|
|
|
|
ConverterList::iterator end = converterlist_.end();
|
|
|
|
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-02-28 09:49:49 +00:00
|
|
|
vector<Format const *> const
|
|
|
|
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();
|
|
|
|
vector<int>::const_iterator end = input.end();
|
|
|
|
vector<Format const *>::iterator rit = result.begin();
|
|
|
|
for ( ; it != end; ++it, ++rit) {
|
|
|
|
*rit = &formats.get(*it);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<Format const *> const
|
|
|
|
Converters::getReachableTo(string const & target, bool clear_visited)
|
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<Format const *> const
|
|
|
|
Converters::getReachable(string const & from, bool only_viewable,
|
|
|
|
bool clear_visited)
|
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Converters::isReachable(string const & from, string const & to)
|
|
|
|
{
|
|
|
|
return G_.isReachable(formats.getNumber(from),
|
|
|
|
formats.getNumber(to));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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;
|