X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fconverter.h;h=6bac8b87ff96420044a29e081df1f6fed1957eb6;hb=7cb3b054916d146ccf5b57d15351b448775af26a;hp=b23a0ffd62ca884140f8d13781a08b587a4103c4;hpb=4255b4a1b7dcb4d092c26aaccf7a5b240c8d7786;p=lyx.git diff --git a/src/converter.h b/src/converter.h index b23a0ffd62..6bac8b87ff 100644 --- a/src/converter.h +++ b/src/converter.h @@ -5,7 +5,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -16,24 +16,148 @@ #pragma interface #endif -#include #include +#include #include "LString.h" +#include "support/lstrings.h" class Buffer; /// -struct Command { +class Format { +public: + /// + Format(string const & n, string const & e, string const & p, + string const & s, string const & v) : + name_(n), extension_(e), prettyname_(p), shortcut_(s), + viewer_(v) {}; + /// + bool dummy() const; + /// + bool IsChildFormat() const; + /// + string const ParentFormat() const; + /// + string const & name() const { + return name_; + } + /// + string const & extension() const { + return extension_; + } + /// + string const & prettyname() const { + return prettyname_; + } + /// + string const & shortcut() const { + return shortcut_; + } + /// + string const & viewer() const { + return viewer_; + } + /// + void setViewer(string const & v) { + viewer_ = v; + } +private: + string name_; + /// + string extension_; + /// + string prettyname_; + /// + string shortcut_; + /// + string viewer_; +}; + + +inline +bool operator<(Format const & a, Format const & b) +{ + return compare_no_case(a.prettyname(),b.prettyname()) < 0; +} + + +/// +class Formats { +public: + /// + typedef std::vector FormatList; + /// + typedef FormatList::const_iterator const_iterator; + /// + Format const & Get(FormatList::size_type i) const { + return formatlist[i]; + } + /// + Format const * GetFormat(string const & name) const; /// - Command(string const & f, string const & t, string const & c) - : from(f), to(t), command(c), - original_dir(false), need_aux(false) {} + int GetNumber(string const & name) const; + /// + void Add(string const & name); + /// + void Add(string const & name, string const & extension, + string const & prettyname, string const & shortcut); + /// + void Delete(string const & name); + /// + void Sort(); + /// + void SetViewer(string const & name, string const & command); + /// + bool View(Buffer const * buffer, string const & filename, + string const & format_name) const; + /// + string const PrettyName(string const & name) const; + /// + string const Extension(string const & name) const; + /// + const_iterator begin() const { + return formatlist.begin(); + } + /// + const_iterator end() const { + return formatlist.end(); + } + /// + FormatList::size_type size() const { + return formatlist.size(); + } +private: + /// + FormatList formatlist; +}; + +/////////////////////////////////////////////////////////////////////// + +/// +class Converter { +public: + /// + Converter(string const & f, string const & t, string const & c, + string const & l) + : from(f), to(t), command(c), flags(l), From(0), To(0), + latex(false), original_dir(false), need_aux(false) {} + /// + void ReadFlags(); /// string from; /// string to; /// string command; + /// + string flags; + /// + 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 @@ -46,113 +170,108 @@ struct Command { string result_file; /// Command to convert the program output to a LaTeX log file format string parselog; - - /// Used by the BFS algorithm - bool visited; - /// Used by the BFS algorithm - std::vector::iterator previous; }; + /// -class Format { +class Converters { public: + typedef std::vector ConverterList; /// - Format() {} + typedef ConverterList::const_iterator const_iterator; /// - Format(string const & n); + typedef std::vector EdgePath; /// - string name; + Converter const & Get(int i) const { + return converterlist[i]; + } /// - string prettyname; + Converter const * GetConverter(string const & from, string const & to); /// - string viewer; -}; - -class FormatPair { -public: + int GetNumber(string const & from, string const & to); /// - Format * format; + void Add(string const & from, string const & to, + string const & command, string const & flags); + // + void Delete(string const & from, string const & to); /// - Format * from; + void Sort(); /// - string command; + std::vector const + GetReachableTo(string const & target, bool clear_visited); /// - FormatPair(Format * f1, Format * f2, string c) - : format(f1), from(f2), command(c) {} -}; - -/// -class Formats { -public: + std::vector const + GetReachable(string const & from, bool only_viewable, + bool clear_visited); /// - static - void Add(string const & name); + bool IsReachable(string const & from, string const & to); /// - static - void SetViewer(string const & name, string const & command); + EdgePath const GetPath(string const & from, string const & to); /// - static - bool View(Buffer const * buffer, string const & filename); + bool UsePdflatex(EdgePath const & path); /// - static - Format * GetFormat(string const & name); + bool Convert(Buffer const * buffer, + string const & from_file, string const & to_file_base, + string const & from_format, string const & to_format, + string & to_file); /// - static - string const PrettyName(string const & name); -private: + bool Convert(Buffer const * buffer, + string const & from_file, string const & to_file_base, + string const & from_format, string const & to_format); /// - static - std::map formats; -}; - -/// -class Converter { -public: + string const papersize(Buffer const * buffer); /// - static - void Add(string const & from, string const & to, - string const & command, string const & flags); - /// - - /// - static - std::vector const - GetReachable(string const & from, - bool only_viewable = false); + string const dvips_options(Buffer const * buffer); /// - static - bool IsReachable(string const & from, string const & target_format); + string const dvipdfm_options(Buffer const * buffer); /// - static - bool Convert(Buffer const * 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); + void BuildGraph(); /// - static - string const dvips_options(Buffer const * buffer); + bool FormatIsUsed(string const & format); /// - static - void init(); + const_iterator begin() const { + return converterlist.begin(); + } + const_iterator end() const { + return converterlist.end(); + } private: /// - static bool scanLog(Buffer const * buffer, string const & command, string const & filename); /// - static bool runLaTeX(Buffer const * buffer, string const & command); /// - static - std::vector commands; + ConverterList converterlist; /// - static string latex_command; + /// + struct Vertex { + std::vector in_vertices; + std::vector out_vertices; + std::vector out_edges; + }; + /// + static + std::vector vertices; + /// + std::vector visited; + /// + std::queue Q; + /// + int BFS_init(string const & start, bool clear_visited = true); + /// + bool Move(string const & from, string const & to, bool copy); }; +extern Formats formats; +extern Converters converters; + +extern Formats system_formats; +extern Converters system_converters; + #endif