X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fconverter.h;h=6775fb0f1afacc2b2449bff06d50586753ab7b37;hb=67f9c9fdae42211aa3ff8d0c6f62485bd721d8eb;hp=3b6f01270c8d79b64141db8f9e7d224a0e4c6b2a;hpb=45a03f4f67bb00f8142e465c615f348f0622eb32;p=lyx.git diff --git a/src/converter.h b/src/converter.h index 3b6f01270c..6775fb0f1a 100644 --- a/src/converter.h +++ b/src/converter.h @@ -1,132 +1,152 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. +/** + * \file converter.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ====================================================== */ + * \author Dekel Tsur + * + * Full author contact details are available in file CREDITS. + */ #ifndef CONVERTER_H #define CONVERTER_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "graph.h" +#include "outputparams.h" -#include #include -#include "LString.h" +#include + class Buffer; +class Format; +class Formats; +class OutputParams; + /// -struct Command { +class Converter { +public: + /// + Converter(std::string const & f, std::string const & t, std::string const & c, + std::string const & l); + /// + void readFlags(); + /// + std::string from; /// - Command(string const & f, string const & t, string const & c) - : from(f), to(t), command(c), - original_dir(false), need_aux(false) {} + std::string to; /// - string from; + std::string command; /// - string to; + std::string flags; /// - string command; + Format const * From; + /// + Format const * To; + + /// The converter is latex or its derivatives + bool latex; /// Do we need to run the converter in the original directory? bool original_dir; /// 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 - string result_dir; + std::string result_dir; /// If the converter put the result in a directory, then result_file /// is the name of the main file in that directory - string result_file; - /// - bool visited; - /// - std::vector::iterator previous; + std::string result_file; + /// Command to convert the program output to a LaTeX log file format + std::string parselog; }; + /// -class Format { +class Converters { public: /// - Format() : in_degree(0) {} + typedef std::vector EdgePath; // to be removed SOON /// - Format(string const & n); + typedef std::vector ConverterList; /// - string name; + typedef ConverterList::const_iterator const_iterator; /// - string prettyname; + Converter const & get(int i) const { + return converterlist_[i]; + } /// - string viewer; + Converter const * getConverter(std::string const & from, + std::string const & to) const; /// - int in_degree; -}; - -/// -class Formats { -public: + int getNumber(std::string const & from, std::string const & to) const; /// - static - void Add(string const & name); + void add(std::string const & from, std::string const & to, + std::string const & command, std::string const & flags); + // + void erase(std::string const & from, std::string const & to); /// - static - void SetViewer(string const & name, string const & command); + void sort(); /// - static - bool View(Buffer * buffer, string const & filename); + std::vector const + getReachableTo(std::string const & target, bool clear_visited); /// - static - Format * GetFormat(string const & name); + std::vector const + getReachable(std::string const & from, bool only_viewable, + bool clear_visited); /// - static - string const PrettyName(string const & name); -private: + bool isReachable(std::string const & from, std::string const & to); /// - static - std::map formats; -}; - -/// -class Converter { -public: + Graph::EdgePath const getPath(std::string const & from, std::string const & to); + /// + OutputParams::FLAVOR getFlavor(Graph::EdgePath const & path); /// - static - void Add(string const & from, string const & to, - string const & command, string const & flags); + bool convert(Buffer const * buffer, + std::string const & from_file, std::string const & to_file_base, + std::string const & from_format, std::string const & to_format, + std::string & to_file); /// - static - std::vector > const - GetReachable(string const & from, - bool only_viewable = false); + bool convert(Buffer const * buffer, + std::string const & from_file, std::string const & to_file_base, + std::string const & from_format, std::string const & to_format); /// - static - bool Convert(Buffer * buffer, string const & from_file, - string const & to_file, string const & using_format, - string * view_file = 0); + void update(Formats const & formats); /// - static - string const SplitFormat(string const & str, string & format); + void updateLast(Formats const & formats); /// - static - string const dvi_papersize(Buffer const * buffer); + bool formatIsUsed(std::string const & format); /// - static - string const dvips_options(Buffer const * buffer); + const_iterator begin() const { + return converterlist_.begin(); + } + const_iterator end() const { + return converterlist_.end(); + } + /// + void buildGraph(); private: /// - static - bool runLaTeX(Buffer * buffer, string const & command); + std::vector const + intToFormat(std::vector const & input); + /// + bool scanLog(Buffer const & buffer, std::string const & command, + std::string const & filename); + /// + bool runLaTeX(Buffer const & buffer, std::string const & command, + OutputParams const &); + /// + ConverterList converterlist_; /// - static - std::vector commands; + std::string latex_command_; /// - static - string latex_command; + bool move(std::string const & from, std::string const & to, bool copy); + /// + Graph G_; }; -#endif +extern Converters converters; + +extern Converters system_converters; + +#endif //CONVERTER_H