]> git.lyx.org Git - lyx.git/blob - src/CiteEnginesList.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / CiteEnginesList.h
1 // -*- C++ -*-
2 /**
3  * \file CiteEnginesList.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Richard Heck
8  * \author Jürgen Spitzmüller
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef CITEENGINESLIST_H
14 #define CITEENGINESLIST_H
15
16 #include "Citation.h"
17
18 #include <string>
19 #include <vector>
20
21 namespace lyx {
22
23 /**
24  *  This class represents a particular LyX "cite engine", which defines the features
25  * of a particular citation backend such as natbib or biblatex. In that sense, it is more like
26  *  a LaTeX package, where a layout file corresponds to a LaTeX class.
27  *
28  *  In general, a given cite engine can be used with any document class. That said,
29  *  one cite engine may `require' another, or it may `exclude' some other cite engine.
30  *  The requires and excludes are given in comments within the cite engine file,
31  *  which must begin roughly so:
32  *  # \DeclareLyXCiteEngine[natbib.sty]{Natbib}
33  *  # DescriptionBegin
34  *  #   Natbib supports a range of both author-year and numerical styles mainly
35  *  #   aimed at the Humanities. It features automatic sorting and merging of
36  *  #   numerical citations, annotations, capitalization of the `van' part of
37  *  #   author names, shortened and full author lists, and more.
38  *  # DescriptionEnd
39  *  # Excludes: basic | jurabib
40  *  The description will be used in the gui to give information to the user. The
41  *  Requires and Excludes lines are read by the configuration script
42  *  and written to a file citeengines.lst in the user configuration directory.
43  *  That file is then read on startup to populate the CiteEnginesList, below.
44  *
45  *  Engines can also be "provided" or "excluded" by document classes, using
46  *  the ProvidesEngine and ExcludesEngine tags.
47  */
48
49 class LyXCiteEngine {
50 public:
51         ///
52         LyXCiteEngine(std::string const & name, std::string const & id,
53                       std::vector<std::string> const & enginetypes,
54                       std::string const & cfm,
55                       std::vector<std::string> const & defaultbiblios,
56                       std::string const & description,
57                       std::vector<std::string> const & packagelist);
58         /// whether the required packages are available
59         bool isAvailable() const;
60         /// the missing prerequisites, if any
61         std::vector<std::string> prerequisites() const;
62         ///
63         std::string const & getName() const { return name_; }
64         ///
65         std::string const & getID() const { return id_; }
66         ///
67         std::string const & getFilename() const { return filename_; }
68         ///
69         std::string const & getCiteFramework() const { return cite_framework_; }
70         ///
71         std::vector<std::string> const & getEngineType() const { return engine_types_; }
72         ///
73         bool hasEngineType(CiteEngineType const &) const;
74         ///
75         std::string getDefaultBiblio(CiteEngineType const &) const;
76         ///
77         bool isDefaultBiblio(std::string const &) const;
78         ///
79         std::string const & getDescription() const { return description_; }
80         ///
81         std::vector<std::string> const & getPackageList() const
82                 { return package_list_; }
83         ///
84         bool requires(std::string const p) const;
85 private:
86         /// what appears in the ui
87         std::string name_;
88         /// the engine's unique identifier
89         /// at present, this is the filename, without the extension
90         std::string id_;
91         /// the filename
92         std::string filename_;
93         /// the engine type(s)
94         std::vector<std::string> engine_types_;
95         /// cite framework (bibtex, biblatex)
96         std::string cite_framework_;
97         /// default bibliography styles
98         std::vector<std::string> default_biblios_;
99         /// a short description for use in the ui
100         std::string description_;
101         /// the LaTeX packages on which this depends, if any
102         std::vector<std::string> package_list_;
103         // these are mutable because they are used to cache the results
104         // or an otherwise const operation.
105         ///
106         mutable bool checked_;
107         ///
108         mutable bool available_;
109         ///
110         mutable std::vector<std::string> prerequisites_;
111 };
112
113 typedef std::vector<LyXCiteEngine> LyXCiteEnginesList;
114
115 /**
116  *  The CiteEnginesList represents the various LyXCiteEngine's that are available at
117  *  present.
118  */
119 class CiteEnginesList {
120 public:
121         ///
122         CiteEnginesList() {}
123         ///
124         std::string getTypeAsString(CiteEngineType const &) const;
125         ///
126         CiteEngineType getType(std::string const &) const;
127         /// reads the engines from a file generated by configure.py
128         bool read();
129         ///
130         LyXCiteEnginesList::const_iterator begin() const;
131         ///
132         LyXCiteEnginesList::iterator begin();
133         ///
134         LyXCiteEnginesList::const_iterator end() const;
135         ///
136         LyXCiteEnginesList::iterator end();
137         ///
138         bool empty() const { return englist_.empty(); }
139         /// Returns a pointer to the LyXCiteEngine with filename str.
140         /// Returns a null pointer if no such engine is found.
141         LyXCiteEngine const * operator[](std::string const & str) const;
142         ///
143         LyXCiteEngine * operator[](std::string const & str);
144         private:
145         /// noncopyable
146         CiteEnginesList(CiteEnginesList const &);
147         ///
148         void operator=(CiteEnginesList const &);
149         /// add an engine to the list
150         void addCiteEngine(std::string const &, std::string const &,
151                 std::vector<std::string> const &, std::string const &,
152                 std::vector<std::string> const &, std::string const &,
153                 std::vector<std::string> const &);
154         ///
155         std::vector<LyXCiteEngine> englist_;
156 };
157
158 extern CiteEnginesList theCiteEnginesList;
159 } // namespace lyx
160 #endif