1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file LaTeX.h
|
|
|
|
|
* 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-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author Dekel Tsur
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*/
|
|
|
|
|
|
1999-10-12 19:21:31 +00:00
|
|
|
|
#ifndef LATEX_H
|
|
|
|
|
#define LATEX_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "outputparams.h"
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2000-10-02 00:55:02 +00:00
|
|
|
|
#include <boost/utility.hpp>
|
2004-09-26 14:19:47 +00:00
|
|
|
|
#include <boost/signal.hpp>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
#include <set>
|
|
|
|
|
|
2003-09-04 03:54:04 +00:00
|
|
|
|
class DepTable;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
|
|
|
|
class TeXErrors {
|
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
struct Error {
|
|
|
|
|
///
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Error () : error_in_line(0) {}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
Error(int line, std::string const & desc, std::string const & text)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
: error_in_line(line),
|
|
|
|
|
error_desc(desc),
|
|
|
|
|
error_text(text) {}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// what line in the TeX file the error occured in
|
|
|
|
|
int error_in_line;
|
|
|
|
|
/// The kind of error
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string error_desc;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// The line/cmd that caused the error.
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string error_text;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
1999-11-04 01:40:20 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2000-04-04 00:19:15 +00:00
|
|
|
|
typedef std::vector<Error> Errors;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Errors::const_iterator begin() const { return errors.begin(); }
|
|
|
|
|
///
|
|
|
|
|
Errors::const_iterator end() const { return errors.end(); }
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void insertError(int line, std::string const & error_desc,
|
|
|
|
|
std::string const & error_text);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
private:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Errors errors;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2003-04-04 19:56:31 +00:00
|
|
|
|
|
2001-02-03 12:27:21 +00:00
|
|
|
|
class Aux_Info {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
Aux_Info() {}
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string aux_file;
|
2001-02-03 12:27:21 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::set<std::string> citations;
|
2001-02-03 12:27:21 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::set<std::string> databases;
|
2001-02-03 12:27:21 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::set<std::string> styles;
|
2001-02-03 12:27:21 +00:00
|
|
|
|
};
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-02-04 07:01:49 +00:00
|
|
|
|
|
|
|
|
|
///
|
2003-04-04 19:56:31 +00:00
|
|
|
|
bool operator==(Aux_Info const &, Aux_Info const &);
|
|
|
|
|
bool operator!=(Aux_Info const &, Aux_Info const &);
|
2001-02-07 14:01:31 +00:00
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-04-17 15:15:59 +00:00
|
|
|
|
class LaTeX : boost::noncopyable {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
|
|
|
|
/** Return values from scanLogFile() and run() (to come)
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
This enum should be enlarged a bit so that one could
|
|
|
|
|
get more feedback from the LaTeX run.
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
enum log_status {
|
|
|
|
|
///
|
|
|
|
|
NO_ERRORS = 0,
|
|
|
|
|
///
|
|
|
|
|
NO_LOGFILE = 1,
|
|
|
|
|
///
|
|
|
|
|
NO_OUTPUT = 2,
|
|
|
|
|
///
|
|
|
|
|
UNDEF_REF = 4, // Reference '...' on page ... undefined.
|
|
|
|
|
///
|
|
|
|
|
UNDEF_CIT = 8, // Citation '...' on page ... undefined.
|
|
|
|
|
///
|
|
|
|
|
RERUN = 16, // Label(s) may have changed. Rerun to get...
|
|
|
|
|
///
|
|
|
|
|
TEX_ERROR = 32,
|
|
|
|
|
///
|
|
|
|
|
TEX_WARNING = 64,
|
|
|
|
|
///
|
|
|
|
|
LATEX_ERROR = 128,
|
|
|
|
|
///
|
|
|
|
|
LATEX_WARNING = 256,
|
|
|
|
|
///
|
|
|
|
|
PACKAGE_WARNING = 512,
|
|
|
|
|
///
|
|
|
|
|
NO_FILE = 1024,
|
|
|
|
|
///
|
|
|
|
|
NO_CHANGE = 2048,
|
|
|
|
|
///
|
|
|
|
|
TOO_MANY_ERRORS = 4096,
|
|
|
|
|
///
|
2001-02-03 12:27:21 +00:00
|
|
|
|
ERROR_RERUN = 8192,
|
|
|
|
|
///
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ERRORS = TEX_ERROR + LATEX_ERROR,
|
|
|
|
|
///
|
|
|
|
|
WARNINGS = TEX_WARNING + LATEX_WARNING + PACKAGE_WARNING
|
|
|
|
|
};
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2003-07-07 08:37:02 +00:00
|
|
|
|
/// This signal emits an informative message
|
2004-09-26 14:19:47 +00:00
|
|
|
|
boost::signal<void(std::string)> message;
|
2003-07-07 08:37:02 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/**
|
1999-11-04 01:40:20 +00:00
|
|
|
|
cmd = the latex command, file = name of the (temporary) latex file,
|
|
|
|
|
path = name of the files original path.
|
|
|
|
|
*/
|
2003-11-05 12:06:20 +00:00
|
|
|
|
LaTeX(std::string const & cmd, OutputParams const &,
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const & file, std::string const & path);
|
2000-09-27 17:07:33 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// runs LaTeX several times
|
2003-07-07 08:37:02 +00:00
|
|
|
|
int run(TeXErrors &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
int getNumErrors() { return num_errors;}
|
|
|
|
|
|
2000-10-02 16:44:47 +00:00
|
|
|
|
///
|
|
|
|
|
int scanLogFile(TeXErrors &);
|
|
|
|
|
|
2003-04-04 19:56:31 +00:00
|
|
|
|
private:
|
|
|
|
|
/// use this for running LaTeX once
|
|
|
|
|
int startscript();
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
/// The dependency file.
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string depfile;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void deplog(DepTable & head);
|
|
|
|
|
|
|
|
|
|
///
|
2004-10-07 15:21:03 +00:00
|
|
|
|
bool runMakeIndex(std::string const &, OutputParams const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-26 06:57:35 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::vector<Aux_Info> const scanAuxFiles(std::string const &);
|
2001-02-03 12:27:21 +00:00
|
|
|
|
|
2001-01-20 17:31:07 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
Aux_Info const scanAuxFile(std::string const &);
|
2001-02-03 12:27:21 +00:00
|
|
|
|
|
2001-01-23 22:27:08 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void scanAuxFile(std::string const &, Aux_Info &);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-02-06 05:11:50 +00:00
|
|
|
|
void updateBibtexDependencies(DepTable &,
|
|
|
|
|
std::vector<Aux_Info> const &);
|
2001-02-03 12:27:21 +00:00
|
|
|
|
|
|
|
|
|
///
|
2001-02-06 15:17:11 +00:00
|
|
|
|
bool runBibTeX(std::vector<Aux_Info> const &);
|
2000-04-28 20:03:21 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void deleteFilesOnError() const;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string cmd;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string file;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string path;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
/// used by scanLogFile
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int num_errors;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-11-29 11:20:56 +00:00
|
|
|
|
/// The name of the final output file.
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string output_file;
|
2003-05-22 18:59:10 +00:00
|
|
|
|
|
|
|
|
|
///
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams runparams;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|