2007-08-14 16:50:51 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-08-20 17:04:36 +00:00
|
|
|
* \file BiblioInfo.h
|
2007-08-14 16:50:51 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Herbert Voß
|
2007-08-20 16:30:02 +00:00
|
|
|
* \author Richard Heck
|
2007-08-14 16:50:51 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2008-04-20 15:00:11 +00:00
|
|
|
#ifndef BIBLIOINFO_H
|
|
|
|
#define BIBLIOINFO_H
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
#include "support/docstring.h"
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2008-04-20 15:00:11 +00:00
|
|
|
#include "Citation.h"
|
|
|
|
|
2007-08-14 16:50:51 +00:00
|
|
|
#include <vector>
|
2007-08-20 16:30:02 +00:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
2007-08-14 16:50:51 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
class Buffer;
|
2007-08-14 16:50:51 +00:00
|
|
|
|
2008-04-20 15:00:11 +00:00
|
|
|
/// FIXME: To Citation.cpp?
|
2007-08-14 16:50:51 +00:00
|
|
|
/// Returns a vector of available Citation styles.
|
2008-04-20 15:00:11 +00:00
|
|
|
std::vector<CiteStyle> citeStyles(CiteEngine);
|
|
|
|
/// \param latex_str a LaTeX command, "cite", "Citep*", etc
|
|
|
|
CitationStyle citationStyleFromString(std::string const & latex_str);
|
2008-11-19 03:58:20 +00:00
|
|
|
/// the other way round
|
2008-04-20 15:00:11 +00:00
|
|
|
std::string citationStyleToString(CitationStyle const &);
|
2007-08-14 16:50:51 +00:00
|
|
|
|
|
|
|
|
2007-08-20 16:30:02 +00:00
|
|
|
/// Class to represent information about a BibTeX or
|
|
|
|
/// bibliography entry.
|
2008-11-19 04:16:12 +00:00
|
|
|
/// This class basically wraps a std::map, and many of its
|
|
|
|
/// methods simply delegate to the corresponding methods of
|
|
|
|
/// std::map.
|
2008-02-14 05:00:54 +00:00
|
|
|
class BibTeXInfo {
|
2007-08-20 16:30:02 +00:00
|
|
|
public:
|
2008-11-19 03:58:20 +00:00
|
|
|
/// The keys are BibTeX fields (e.g., author, title, etc),
|
|
|
|
/// and the values are the associated field values.
|
2008-02-14 05:00:54 +00:00
|
|
|
typedef std::map<docstring, docstring>::const_iterator const_iterator;
|
2008-04-25 20:03:03 +00:00
|
|
|
///
|
|
|
|
BibTeXInfo() : is_bibtex_(true) {}
|
2008-02-14 05:00:54 +00:00
|
|
|
/// argument sets isBibTeX_, so should be false only if it's coming
|
|
|
|
/// from a bibliography environment
|
2008-04-25 20:03:03 +00:00
|
|
|
BibTeXInfo(bool ib) : is_bibtex_(ib) {}
|
2008-02-14 05:00:54 +00:00
|
|
|
/// constructor that sets the entryType
|
|
|
|
BibTeXInfo(docstring const & key, docstring const & type);
|
2007-08-20 16:30:02 +00:00
|
|
|
///
|
|
|
|
bool hasField(docstring const & field) const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return the short form of an authorlist
|
2007-08-20 16:30:02 +00:00
|
|
|
docstring const getAbbreviatedAuthor() const;
|
|
|
|
///
|
|
|
|
docstring const getYear() const;
|
2009-01-17 00:16:31 +00:00
|
|
|
///
|
|
|
|
docstring const getXRef() const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return formatted BibTeX data suitable for framing.
|
2009-01-17 00:16:31 +00:00
|
|
|
/// \param pointer to crossref information
|
2009-01-17 00:29:32 +00:00
|
|
|
docstring const & getInfo(BibTeXInfo const * const xref = 0) const;
|
2008-02-14 05:00:54 +00:00
|
|
|
///
|
|
|
|
int count(docstring const & f) const { return bimap_.count(f); }
|
|
|
|
///
|
|
|
|
const_iterator find(docstring const & f) const { return bimap_.find(f); }
|
|
|
|
///
|
|
|
|
const_iterator end() const { return bimap_.end(); }
|
2008-11-19 04:16:12 +00:00
|
|
|
/// \return value for field f
|
|
|
|
/// note that this will create an empty field if it does not exist
|
2008-02-14 05:00:54 +00:00
|
|
|
docstring & operator[](docstring const & f)
|
|
|
|
{ return bimap_[f]; }
|
2008-11-19 04:16:12 +00:00
|
|
|
/// \return value for field f
|
|
|
|
/// this one, since it is const, will simply return docstring() if
|
|
|
|
/// we don't have the field and will NOT create an empty field
|
|
|
|
docstring const & operator[](docstring const & field) const;
|
|
|
|
///
|
|
|
|
docstring const & operator[](std::string const & field) const;
|
2008-02-14 05:00:54 +00:00
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
docstring const & allData() const { return all_data_; }
|
2008-02-14 05:00:54 +00:00
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
void setAllData(docstring const & d) { all_data_ = d; }
|
2008-02-14 05:00:54 +00:00
|
|
|
///
|
2009-06-11 20:29:37 +00:00
|
|
|
void label(docstring const & d) { label_= d; }
|
|
|
|
///
|
|
|
|
docstring const & label() const { return label_; }
|
|
|
|
///
|
|
|
|
docstring const & key() const { return bib_key_; }
|
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
docstring entryType() const { return entry_type_; }
|
2009-12-03 19:54:12 +00:00
|
|
|
///
|
|
|
|
bool isBibTeX() const { return is_bibtex_; }
|
2008-02-14 05:00:54 +00:00
|
|
|
private:
|
2009-04-09 12:55:47 +00:00
|
|
|
/// like operator[], except, if the field is empty, it will attempt
|
|
|
|
/// to get the data from xref BibTeXInfo object, which would normally
|
|
|
|
/// be the one referenced in the crossref field.
|
2009-01-17 00:16:31 +00:00
|
|
|
docstring getValueForKey(std::string const & key,
|
|
|
|
BibTeXInfo const * const xref = 0) const;
|
2008-02-14 05:14:22 +00:00
|
|
|
/// true if from BibTeX; false if from bibliography environment
|
2008-02-14 17:00:40 +00:00
|
|
|
bool is_bibtex_;
|
2007-08-20 16:30:02 +00:00
|
|
|
/// the BibTeX key for this entry
|
2008-02-14 17:00:40 +00:00
|
|
|
docstring bib_key_;
|
2009-06-11 20:29:37 +00:00
|
|
|
/// the label that will appear in citations
|
|
|
|
/// this is easily set from bibliography environments, but has
|
|
|
|
/// to be calculated for entries we get from BibTeX
|
|
|
|
docstring label_;
|
2007-08-20 16:30:02 +00:00
|
|
|
/// a single string containing all BibTeX data associated with this key
|
2008-02-14 17:00:40 +00:00
|
|
|
docstring all_data_;
|
2007-08-20 16:30:02 +00:00
|
|
|
/// the BibTeX entry type (article, book, incollection, ...)
|
2008-02-14 17:00:40 +00:00
|
|
|
docstring entry_type_;
|
2009-01-16 23:40:37 +00:00
|
|
|
/// a cache for getInfo()
|
|
|
|
mutable docstring info_;
|
2008-02-14 05:00:54 +00:00
|
|
|
/// our map: <field, value>
|
|
|
|
std::map <docstring, docstring> bimap_;
|
2007-08-20 16:30:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// Class to represent a collection of bibliographical data, whether
|
|
|
|
/// from BibTeX or from bibliography environments.
|
2008-02-14 05:14:22 +00:00
|
|
|
class BiblioInfo {
|
2007-08-20 16:30:02 +00:00
|
|
|
public:
|
2008-11-19 03:52:22 +00:00
|
|
|
/// bibliography key --> data for that key
|
2008-02-14 05:14:22 +00:00
|
|
|
typedef std::map<docstring, BibTeXInfo>::const_iterator const_iterator;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return a sorted vector of bibliography keys
|
2007-08-20 16:30:02 +00:00
|
|
|
std::vector<docstring> const getKeys() const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return a sorted vector of present BibTeX fields
|
2007-08-20 16:30:02 +00:00
|
|
|
std::vector<docstring> const getFields() const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return a sorted vector of BibTeX entry types in use
|
2007-08-20 16:30:02 +00:00
|
|
|
std::vector<docstring> const getEntries() const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return the short form of an authorlist
|
2007-08-20 16:30:02 +00:00
|
|
|
docstring const getAbbreviatedAuthor(docstring const & key) const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return the year from the bibtex data record
|
2009-01-17 00:16:31 +00:00
|
|
|
/// Note that this will get the year from the crossref if it's
|
|
|
|
/// not present in the record itself
|
2007-08-20 16:30:02 +00:00
|
|
|
docstring const getYear(docstring const & key) const;
|
2008-11-19 03:58:20 +00:00
|
|
|
/// \return formatted BibTeX data associated with a given key.
|
2007-08-20 16:30:02 +00:00
|
|
|
/// Empty if no info exists.
|
2009-01-17 00:16:31 +00:00
|
|
|
/// Note that this will retrieve data from the crossref as needed.
|
2007-08-20 16:30:02 +00:00
|
|
|
docstring const getInfo(docstring const & key) const;
|
|
|
|
/**
|
2008-02-14 05:14:22 +00:00
|
|
|
* "Translates" the available Citation Styles into strings for a given key,
|
2007-08-20 16:30:02 +00:00
|
|
|
* either numerical or author-year depending upon the active engine. (See
|
|
|
|
* below for those methods.)
|
|
|
|
*/
|
2007-08-14 16:50:51 +00:00
|
|
|
std::vector<docstring> const
|
2007-08-20 16:30:02 +00:00
|
|
|
getCiteStrings(docstring const & key, Buffer const & buf) const;
|
|
|
|
/**
|
|
|
|
* "Translates" the available Citation Styles into strings for a given key.
|
|
|
|
* The returned string is displayed by the GUI.
|
|
|
|
* [XX] is used in place of the actual reference
|
|
|
|
* Eg, the vector will contain: [XX], Jones et al. [XX], ...
|
|
|
|
* User supplies :
|
|
|
|
* the key,
|
|
|
|
* the buffer
|
|
|
|
*/
|
|
|
|
std::vector<docstring> const
|
|
|
|
getNumericalStrings(docstring const & key, Buffer const & buf) const;
|
|
|
|
/**
|
|
|
|
* "Translates" the available Citation Styles into strings for a given key.
|
|
|
|
* The returned string is displayed by the GUI.
|
|
|
|
* Eg, the vector will contain:
|
|
|
|
* Jones et al. (1990), (Jones et al. 1990), Jones et al. 1990, ...
|
|
|
|
* User supplies :
|
|
|
|
* the key,
|
|
|
|
* the buffer
|
|
|
|
*/
|
2007-08-14 16:50:51 +00:00
|
|
|
std::vector<docstring> const
|
2007-08-20 16:30:02 +00:00
|
|
|
getAuthorYearStrings(docstring const & key, Buffer const & buf) const;
|
2008-02-14 05:14:22 +00:00
|
|
|
///
|
|
|
|
const_iterator begin() const { return bimap_.begin(); }
|
|
|
|
///
|
|
|
|
void clear() { bimap_.clear(); }
|
|
|
|
///
|
|
|
|
bool empty() const { return bimap_.empty(); }
|
|
|
|
///
|
|
|
|
const_iterator end() const { return bimap_.end(); }
|
|
|
|
///
|
|
|
|
const_iterator find(docstring const & f) const { return bimap_.find(f); }
|
|
|
|
///
|
2008-04-25 20:03:03 +00:00
|
|
|
void mergeBiblioInfo(BiblioInfo const & info);
|
|
|
|
///
|
2008-02-14 05:14:22 +00:00
|
|
|
BibTeXInfo & operator[](docstring const & f) { return bimap_[f]; }
|
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
void addFieldName(docstring const & f) { field_names_.insert(f); }
|
2008-02-14 05:14:22 +00:00
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
void addEntryType(docstring const & f) { entry_types_.insert(f); }
|
2008-02-14 05:14:22 +00:00
|
|
|
private:
|
2008-02-14 05:28:59 +00:00
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
std::set<docstring> field_names_;
|
2008-02-14 05:28:59 +00:00
|
|
|
///
|
2008-02-14 17:00:40 +00:00
|
|
|
std::set<docstring> entry_types_;
|
2008-02-14 05:28:59 +00:00
|
|
|
/// our map: keys --> BibTeXInfo
|
|
|
|
std::map<docstring, BibTeXInfo> bimap_;
|
2007-08-20 16:30:02 +00:00
|
|
|
};
|
2007-08-14 16:50:51 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
2008-04-20 15:00:11 +00:00
|
|
|
|
|
|
|
#endif // BIBLIOINFO_H
|