2000-08-30 03:40:51 +00:00
|
|
|
// -*- C++ -*-
|
2003-02-28 09:49:49 +00:00
|
|
|
/**
|
|
|
|
* \file converter.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Dekel Tsur
|
|
|
|
*
|
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-11-13 10:35:02 +00:00
|
|
|
|
2003-08-23 00:17:00 +00:00
|
|
|
#ifndef CONVERTER_H
|
|
|
|
#define CONVERTER_H
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
#include "graph.h"
|
2003-11-27 16:38:47 +00:00
|
|
|
#include "outputparams.h"
|
2002-07-16 21:17:10 +00:00
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
#include <vector>
|
2003-10-06 15:43:21 +00:00
|
|
|
#include <string>
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2003-09-06 23:36:02 +00:00
|
|
|
class Buffer;
|
2006-08-13 16:16:43 +00:00
|
|
|
class ErrorList;
|
2003-02-28 09:49:49 +00:00
|
|
|
class Format;
|
|
|
|
class Formats;
|
2003-11-05 12:06:20 +00:00
|
|
|
class OutputParams;
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
|
2000-08-30 04:38:32 +00:00
|
|
|
///
|
2000-11-13 10:35:02 +00:00
|
|
|
class Converter {
|
|
|
|
public:
|
2000-08-30 04:38:32 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
Converter(std::string const & f, std::string const & t, std::string const & c,
|
|
|
|
std::string const & l);
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
void readFlags();
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string from;
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string to;
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string command;
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string flags;
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
|
|
|
Format const * From;
|
|
|
|
///
|
|
|
|
Format const * To;
|
|
|
|
|
2000-10-23 12:16:05 +00:00
|
|
|
/// The converter is latex or its derivatives
|
|
|
|
bool latex;
|
2004-05-13 11:21:58 +00:00
|
|
|
/// The converter is xml
|
|
|
|
bool xml;
|
2000-09-11 15:42:17 +00:00
|
|
|
/// Do we need to run the converter in the original directory?
|
2000-08-30 03:40:51 +00:00
|
|
|
bool original_dir;
|
2000-09-11 15:42:17 +00:00
|
|
|
/// This converter needs the .aux files
|
|
|
|
bool need_aux;
|
|
|
|
/// If the converter put the result in a directory, then result_dir
|
|
|
|
/// is the name of the directory
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string result_dir;
|
2000-09-11 15:42:17 +00:00
|
|
|
/// If the converter put the result in a directory, then result_file
|
|
|
|
/// is the name of the main file in that directory
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string result_file;
|
2000-10-02 16:44:47 +00:00
|
|
|
/// Command to convert the program output to a LaTeX log file format
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string parselog;
|
2000-08-30 03:40:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-08-30 04:38:32 +00:00
|
|
|
///
|
2000-11-13 10:35:02 +00:00
|
|
|
class Converters {
|
2000-08-30 03:40:51 +00:00
|
|
|
public:
|
2003-02-28 09:49:49 +00:00
|
|
|
///
|
|
|
|
typedef std::vector<int> EdgePath; // to be removed SOON
|
|
|
|
///
|
2002-03-21 17:27:08 +00:00
|
|
|
typedef std::vector<Converter> ConverterList;
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2000-11-13 10:35:02 +00:00
|
|
|
typedef ConverterList::const_iterator const_iterator;
|
2000-10-23 12:16:05 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
Converter const & get(int i) const {
|
|
|
|
return converterlist_[i];
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
2000-11-06 11:20:22 +00:00
|
|
|
///
|
2004-01-31 15:30:24 +00:00
|
|
|
Converter const * getConverter(std::string const & from,
|
|
|
|
std::string const & to) const;
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2004-01-31 15:30:24 +00:00
|
|
|
int getNumber(std::string const & from, std::string const & to) const;
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
void add(std::string const & from, std::string const & to,
|
|
|
|
std::string const & command, std::string const & flags);
|
2000-11-13 10:35:02 +00:00
|
|
|
//
|
2003-10-06 15:43:21 +00:00
|
|
|
void erase(std::string const & from, std::string const & to);
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
void sort();
|
2000-10-16 13:27:56 +00:00
|
|
|
///
|
2000-11-13 10:35:02 +00:00
|
|
|
std::vector<Format const *> const
|
2003-10-06 15:43:21 +00:00
|
|
|
getReachableTo(std::string const & target, bool clear_visited);
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
|
|
|
std::vector<Format const *> const
|
2003-10-06 15:43:21 +00:00
|
|
|
getReachable(std::string const & from, bool only_viewable,
|
2000-11-13 10:35:02 +00:00
|
|
|
bool clear_visited);
|
2004-11-08 08:22:03 +00:00
|
|
|
/// Does a conversion path from format \p from to format \p to exist?
|
2003-10-06 15:43:21 +00:00
|
|
|
bool isReachable(std::string const & from, std::string const & to);
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
Graph::EdgePath const getPath(std::string const & from, std::string const & to);
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
2003-11-27 16:38:47 +00:00
|
|
|
OutputParams::FLAVOR getFlavor(Graph::EdgePath const & path);
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
bool convert(Buffer const * buffer,
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const & from_file, std::string const & to_file_base,
|
|
|
|
std::string const & from_format, std::string const & to_format,
|
2006-08-13 16:16:43 +00:00
|
|
|
std::string & to_file, ErrorList & errorList,
|
|
|
|
bool try_default = false);
|
2000-10-16 13:27:56 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
bool convert(Buffer const * buffer,
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const & from_file, std::string const & to_file_base,
|
2005-01-14 19:13:17 +00:00
|
|
|
std::string const & from_format, std::string const & to_format,
|
2006-08-13 16:16:43 +00:00
|
|
|
ErrorList & errorList, bool try_default = false);
|
2000-09-05 13:16:19 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
void update(Formats const & formats);
|
2000-11-08 09:39:46 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
void updateLast(Formats const & formats);
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
bool formatIsUsed(std::string const & format);
|
2000-11-13 10:35:02 +00:00
|
|
|
///
|
|
|
|
const_iterator begin() const {
|
2001-07-30 11:56:00 +00:00
|
|
|
return converterlist_.begin();
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
|
|
|
const_iterator end() const {
|
2001-07-30 11:56:00 +00:00
|
|
|
return converterlist_.end();
|
2000-11-13 10:35:02 +00:00
|
|
|
}
|
2003-02-28 09:49:49 +00:00
|
|
|
///
|
|
|
|
void buildGraph();
|
2000-08-30 03:40:51 +00:00
|
|
|
private:
|
2003-02-28 09:49:49 +00:00
|
|
|
///
|
|
|
|
std::vector<Format const *> const
|
2003-10-08 11:31:51 +00:00
|
|
|
intToFormat(std::vector<int> const & input);
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
bool scanLog(Buffer const & buffer, std::string const & command,
|
2006-08-13 16:16:43 +00:00
|
|
|
std::string const & filename, ErrorList & errorList);
|
2000-10-02 16:44:47 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
bool runLaTeX(Buffer const & buffer, std::string const & command,
|
2006-08-13 16:16:43 +00:00
|
|
|
OutputParams const &, ErrorList & errorList);
|
2000-08-30 03:40:51 +00:00
|
|
|
///
|
2001-07-30 11:56:00 +00:00
|
|
|
ConverterList converterlist_;
|
2000-09-11 15:42:17 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string latex_command_;
|
2004-11-08 08:22:03 +00:00
|
|
|
/// If \p from = /path/file.ext and \p to = /path2/file2.ext2 then
|
|
|
|
/// this method moves each /path/file*.ext file to /path2/file2*.ext2
|
2004-10-26 18:39:13 +00:00
|
|
|
bool move(std::string const & fmt,
|
|
|
|
std::string const & from, std::string const & to,
|
|
|
|
bool copy);
|
2003-02-28 09:49:49 +00:00
|
|
|
///
|
|
|
|
Graph G_;
|
2000-08-30 03:40:51 +00:00
|
|
|
};
|
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
extern Converters converters;
|
2000-11-06 11:20:22 +00:00
|
|
|
|
2000-11-13 10:35:02 +00:00
|
|
|
extern Converters system_converters;
|
2000-11-06 11:20:22 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-02-28 09:49:49 +00:00
|
|
|
#endif //CONVERTER_H
|