mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Cache the getInfo() return value. This will matter shortly.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28190 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7dcc99fb17
commit
d8bf83a85a
@ -175,9 +175,13 @@ docstring const BibTeXInfo::getYear() const
|
|||||||
|
|
||||||
docstring const BibTeXInfo::getInfo() const
|
docstring const BibTeXInfo::getInfo() const
|
||||||
{
|
{
|
||||||
|
if (!info_.empty())
|
||||||
|
return info_;
|
||||||
|
|
||||||
if (!is_bibtex_) {
|
if (!is_bibtex_) {
|
||||||
BibTeXInfo::const_iterator it = find(from_ascii("ref"));
|
BibTeXInfo::const_iterator it = find(from_ascii("ref"));
|
||||||
return it->second;
|
info_ = it->second;
|
||||||
|
return info_;
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME
|
// FIXME
|
||||||
@ -224,8 +228,10 @@ docstring const BibTeXInfo::getInfo() const
|
|||||||
result << ", " << docLoc;
|
result << ", " << docLoc;
|
||||||
|
|
||||||
docstring const result_str = rtrim(result.str());
|
docstring const result_str = rtrim(result.str());
|
||||||
if (!result_str.empty())
|
if (!result_str.empty()) {
|
||||||
return result_str;
|
info_ = result_str;
|
||||||
|
return info_;
|
||||||
|
}
|
||||||
|
|
||||||
// This should never happen (or at least be very unusual!)
|
// This should never happen (or at least be very unusual!)
|
||||||
return docstring();
|
return docstring();
|
||||||
|
@ -92,6 +92,8 @@ private:
|
|||||||
docstring all_data_;
|
docstring all_data_;
|
||||||
/// the BibTeX entry type (article, book, incollection, ...)
|
/// the BibTeX entry type (article, book, incollection, ...)
|
||||||
docstring entry_type_;
|
docstring entry_type_;
|
||||||
|
/// a cache for getInfo()
|
||||||
|
mutable docstring info_;
|
||||||
/// our map: <field, value>
|
/// our map: <field, value>
|
||||||
std::map <docstring, docstring> bimap_;
|
std::map <docstring, docstring> bimap_;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user