X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fconverter.h;h=6775fb0f1afacc2b2449bff06d50586753ab7b37;hb=67f9c9fdae42211aa3ff8d0c6f62485bd721d8eb;hp=91f1444aff805b502ae7f41f6a395360188fdcdc;hpb=8aff605caefaba655e48bc629ed344bb74bcd61a;p=lyx.git diff --git a/src/converter.h b/src/converter.h index 91f1444aff..6775fb0f1a 100644 --- a/src/converter.h +++ b/src/converter.h @@ -1,60 +1,51 @@ // -*- 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; + /// -class Format { +class Converter { public: /// - Format() {} + Converter(std::string const & f, std::string const & t, std::string const & c, + std::string const & l); /// - Format(string const & n, string const & e, string const & p, - string const & s) : - name(n), extension(e), prettyname(p), shortcut(s) {}; + void readFlags(); /// - string name; + std::string from; /// - string extension; + std::string to; /// - string prettyname; + std::string command; /// - string shortcut; - /// - string viewer; -}; - -/// -struct Command { + std::string flags; /// - Command(Format const * f, Format const * t, string const & c) - : from(f), to(t), command(c), - latex(false), original_dir(false), need_aux(false) {} + Format const * From; /// - Format const * from; - /// - Format const * to; - /// - string command; + Format const * To; + /// The converter is latex or its derivatives bool latex; /// Do we need to run the converter in the original directory? @@ -63,121 +54,99 @@ struct Command { 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; + std::string result_file; /// Command to convert the program output to a LaTeX log file format - string parselog; - /// Backends in which the converter is not used - std::vector disable; - - /// Used by the BFS algorithm - bool visited; - /// Used by the BFS algorithm - std::vector::iterator previous; + std::string parselog; }; -class FormatPair { + +/// +class Converters { public: /// - Format const * format; + typedef std::vector EdgePath; // to be removed SOON /// - Format const * from; + typedef std::vector ConverterList; /// - string command; + typedef ConverterList::const_iterator const_iterator; /// - FormatPair(Format const * f1, Format const * f2, string c) - : format(f1), from(f2), command(c) {} -}; - -/// -class Formats { -public: + Converter const & get(int i) const { + return converterlist_[i]; + } /// - static - void Add(string const & name); + Converter const * getConverter(std::string const & from, + std::string const & to) const; /// - static - void Add(string const & name, string const & extension, - string const & prettyname, string const & shortcut); + int getNumber(std::string const & from, std::string const & to) const; /// - static - void SetViewer(string const & name, string const & command); + 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 - bool View(Buffer const * buffer, string const & filename, - string const & format_name); + void sort(); /// - static - Format * GetFormat(string const & name); + std::vector const + getReachableTo(std::string const & target, bool clear_visited); /// - static - string const PrettyName(string const & name); + std::vector const + getReachable(std::string const & from, bool only_viewable, + bool clear_visited); /// - static - string const Extension(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); /// - static - void Add(string const & from, string const & to, - string const & command, string const & flags); + OutputParams::FLAVOR getFlavor(Graph::EdgePath const & path); /// - + 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, string const & stop_format, - bool only_viewable); + 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 IsReachable(string const & from, string const & to); + void update(Formats const & formats); /// - static - bool Convert(Buffer const * buffer, - string const & from_file, string const & to_file_base, - string const & from_format, string const & to_format, - string const & using_format, string & to_file); + void updateLast(Formats const & formats); /// - static - bool Convert(Buffer const * buffer, - string const & from_file, string const & to_file_base, - string const & from_format, string const & to_format, - string const & using_format = string()); + bool formatIsUsed(std::string const & format); /// - static - string const SplitFormat(string const & str, string & format); + const_iterator begin() const { + return converterlist_.begin(); + } + const_iterator end() const { + return converterlist_.end(); + } /// - static - string const dvi_papersize(Buffer const * buffer); + void buildGraph(); +private: /// - static - string const dvips_options(Buffer const * buffer); + std::vector const + intToFormat(std::vector const & input); /// - static - void init(); -private: + bool scanLog(Buffer const & buffer, std::string const & command, + std::string const & filename); /// - static - bool scanLog(Buffer const * buffer, string const & command, - string const & filename); + bool runLaTeX(Buffer const & buffer, std::string const & command, + OutputParams const &); /// - static - bool runLaTeX(Buffer const * buffer, string const & command); + 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