4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Angus Leeming
11 * Full author contact details are available in file CREDITS.
17 #include "support/docstring.h"
30 /// FIXME: To Citation.cpp?
31 /// Returns a vector of available Citation styles.
32 std::vector
<CiteStyle
> citeStyles(CiteEngine
);
33 /// \param latex_str a LaTeX command, "cite", "Citep*", etc
34 CitationStyle
citationStyleFromString(std::string
const & latex_str
);
35 /// the other way round
36 std::string
citationStyleToString(CitationStyle
const &);
39 /// Class to represent information about a BibTeX or
40 /// bibliography entry.
41 /// This class basically wraps a std::map, and many of its
42 /// methods simply delegate to the corresponding methods of
46 /// The keys are BibTeX fields (e.g., author, title, etc),
47 /// and the values are the associated field values.
48 typedef std::map
<docstring
, docstring
>::const_iterator const_iterator
;
50 BibTeXInfo() : is_bibtex_(true) {}
51 /// argument sets isBibTeX_, so should be false only if it's coming
52 /// from a bibliography environment
53 BibTeXInfo(bool ib
) : is_bibtex_(ib
) {}
54 /// constructor that sets the entryType
55 BibTeXInfo(docstring
const & key
, docstring
const & type
);
57 bool hasField(docstring
const & field
) const;
58 /// \return the short form of an authorlist
59 docstring
const getAbbreviatedAuthor() const;
61 docstring
const getYear() const;
63 docstring
const getXRef() const;
64 /// \return formatted BibTeX data suitable for framing.
65 /// \param pointer to crossref information
66 docstring
const & getInfo(BibTeXInfo
const * const xref
= 0) const;
68 int count(docstring
const & f
) const { return bimap_
.count(f
); }
70 const_iterator
find(docstring
const & f
) const { return bimap_
.find(f
); }
72 const_iterator
end() const { return bimap_
.end(); }
73 /// \return value for field f
74 /// note that this will create an empty field if it does not exist
75 docstring
& operator[](docstring
const & f
)
77 /// \return value for field f
78 /// this one, since it is const, will simply return docstring() if
79 /// we don't have the field and will NOT create an empty field
80 docstring
const & operator[](docstring
const & field
) const;
82 docstring
const & operator[](std::string
const & field
) const;
84 docstring
const & allData() const { return all_data_
; }
86 void setAllData(docstring
const & d
) { all_data_
= d
; }
88 void label(docstring
const & d
) { label_
= d
; }
90 docstring
const & label() const { return label_
; }
92 docstring
const & key() const { return bib_key_
; }
94 docstring
entryType() const { return entry_type_
; }
96 /// like operator[], except, if the field is empty, it will attempt
97 /// to get the data from xref BibTeXInfo object, which would normally
98 /// be the one referenced in the crossref field.
99 docstring
getValueForKey(std::string
const & key
,
100 BibTeXInfo
const * const xref
= 0) const;
101 /// true if from BibTeX; false if from bibliography environment
103 /// the BibTeX key for this entry
105 /// the label that will appear in citations
106 /// this is easily set from bibliography environments, but has
107 /// to be calculated for entries we get from BibTeX
109 /// a single string containing all BibTeX data associated with this key
111 /// the BibTeX entry type (article, book, incollection, ...)
112 docstring entry_type_
;
113 /// a cache for getInfo()
114 mutable docstring info_
;
115 /// our map: <field, value>
116 std::map
<docstring
, docstring
> bimap_
;
120 /// Class to represent a collection of bibliographical data, whether
121 /// from BibTeX or from bibliography environments.
124 /// bibliography key --> data for that key
125 typedef std::map
<docstring
, BibTeXInfo
>::const_iterator const_iterator
;
126 /// \return a sorted vector of bibliography keys
127 std::vector
<docstring
> const getKeys() const;
128 /// \return a sorted vector of present BibTeX fields
129 std::vector
<docstring
> const getFields() const;
130 /// \return a sorted vector of BibTeX entry types in use
131 std::vector
<docstring
> const getEntries() const;
132 /// \return the short form of an authorlist
133 docstring
const getAbbreviatedAuthor(docstring
const & key
) const;
134 /// \return the year from the bibtex data record
135 /// Note that this will get the year from the crossref if it's
136 /// not present in the record itself
137 docstring
const getYear(docstring
const & key
) const;
138 /// \return formatted BibTeX data associated with a given key.
139 /// Empty if no info exists.
140 /// Note that this will retrieve data from the crossref as needed.
141 docstring
const getInfo(docstring
const & key
) const;
143 * "Translates" the available Citation Styles into strings for a given key,
144 * either numerical or author-year depending upon the active engine. (See
145 * below for those methods.)
147 std::vector
<docstring
> const
148 getCiteStrings(docstring
const & key
, Buffer
const & buf
) const;
150 * "Translates" the available Citation Styles into strings for a given key.
151 * The returned string is displayed by the GUI.
152 * [XX] is used in place of the actual reference
153 * Eg, the vector will contain: [XX], Jones et al. [XX], ...
158 std::vector
<docstring
> const
159 getNumericalStrings(docstring
const & key
, Buffer
const & buf
) const;
161 * "Translates" the available Citation Styles into strings for a given key.
162 * The returned string is displayed by the GUI.
163 * Eg, the vector will contain:
164 * Jones et al. (1990), (Jones et al. 1990), Jones et al. 1990, ...
169 std::vector
<docstring
> const
170 getAuthorYearStrings(docstring
const & key
, Buffer
const & buf
) const;
172 const_iterator
begin() const { return bimap_
.begin(); }
174 void clear() { bimap_
.clear(); }
176 bool empty() const { return bimap_
.empty(); }
178 const_iterator
end() const { return bimap_
.end(); }
180 const_iterator
find(docstring
const & f
) const { return bimap_
.find(f
); }
182 void mergeBiblioInfo(BiblioInfo
const & info
);
184 BibTeXInfo
& operator[](docstring
const & f
) { return bimap_
[f
]; }
186 void addFieldName(docstring
const & f
) { field_names_
.insert(f
); }
188 void addEntryType(docstring
const & f
) { entry_types_
.insert(f
); }
191 std::set
<docstring
> field_names_
;
193 std::set
<docstring
> entry_types_
;
194 /// our map: keys --> BibTeXInfo
195 std::map
<docstring
, BibTeXInfo
> bimap_
;
200 #endif // BIBLIOINFO_H