X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBiblioInfo.cpp;h=c5548af832caff6aa641cf2f6892589d04f40bb8;hb=dae70977a00c23657659682f3b593f04e618e5fd;hp=d98fbf666e3e46b3d7e5504260e93daeaa5cbe8e;hpb=f7164212b1d609cc2a120612e82f5fc3023499d7;p=lyx.git diff --git a/src/BiblioInfo.cpp b/src/BiblioInfo.cpp index d98fbf666e..c5548af832 100644 --- a/src/BiblioInfo.cpp +++ b/src/BiblioInfo.cpp @@ -39,49 +39,9 @@ using namespace lyx::support; namespace lyx { -////////////////////////////////////////////////////////////////////// -// -// BibTeXInfo -// -////////////////////////////////////////////////////////////////////// - -BibTeXInfo::BibTeXInfo(docstring const & key, docstring const & type) - : is_bibtex_(true), bib_key_(key), entry_type_(type), info_() -{} - - -bool BibTeXInfo::hasField(docstring const & field) const -{ - return count(field) == 1; -} - - -docstring const & BibTeXInfo::operator[](docstring const & field) const -{ - BibTeXInfo::const_iterator it = find(field); - if (it != end()) - return it->second; - static docstring const empty_value = docstring(); - return empty_value; -} - - -docstring const & BibTeXInfo::operator[](string const & field) const -{ - return operator[](from_ascii(field)); -} - - -docstring BibTeXInfo::getValueForKey(string const & key, - BibTeXInfo const * const xref) const -{ - docstring const ret = operator[](key); - if (!ret.empty() || !xref) - return ret; - return (*xref)[key]; -} - +namespace { +// gets the "family name" from an author-type string docstring familyName(docstring const & name) { if (name.empty()) @@ -128,10 +88,128 @@ docstring familyName(docstring const & name) return retval; } +// converts a string containing LaTeX commands into unicode +// for display. +docstring convertLaTeXCommands(docstring const & str) +{ + docstring val = str; + docstring ret; + + bool scanning_cmd = false; + bool scanning_math = false; + bool escaped = false; // used to catch \$, etc. + while (val.size()) { + char_type const ch = val[0]; + + // if we're scanning math, we output everything until we + // find an unescaped $, at which point we break out. + if (scanning_math) { + if (escaped) + escaped = false; + else if (ch == '\\') + escaped = true; + else if (ch == '$') + scanning_math = false; + ret += ch; + val = val.substr(1); + continue; + } + + // if we're scanning a command name, then we just + // discard characters until we hit something that + // isn't alpha. + if (scanning_cmd) { + if (isAlphaASCII(ch)) { + val = val.substr(1); + escaped = false; + continue; + } + // so we're done with this command. + // now we fall through and check this character. + scanning_cmd = false; + } + + // was the last character a \? If so, then this is something like: \\, + // or \$, so we'll just output it. That's probably not always right... + if (escaped) { + ret += ch; + val = val.substr(1); + escaped = false; + continue; + } + + if (ch == '$') { + ret += ch; + val = val.substr(1); + scanning_math = true; + continue; + } + + // we just ignore braces + if (ch == '{' || ch == '}') { + val = val.substr(1); + continue; + } + + // we're going to check things that look like commands, so if + // this doesn't, just output it. + if (ch != '\\') { + ret += ch; + val = val.substr(1); + continue; + } + + // ok, could be a command of some sort + // let's see if it corresponds to some unicode + // unicodesymbols has things in the form: \"{u}, + // whereas we may see things like: \"u. So we'll + // look for that and change it, if necessary. + static boost::regex const reg("^\\\\\\W\\w"); + if (boost::regex_search(to_utf8(val), reg)) { + val.insert(3, from_ascii("}")); + val.insert(2, from_ascii("{")); + } + docstring rem; + docstring const cnvtd = Encodings::fromLaTeXCommand(val, rem, + Encodings::TEXT_CMD); + if (!cnvtd.empty()) { + // it did, so we'll take that bit and proceed with what's left + ret += cnvtd; + val = rem; + continue; + } + // it's a command of some sort + scanning_cmd = true; + escaped = true; + val = val.substr(1); + } + return ret; +} + +} // anon namespace + + +////////////////////////////////////////////////////////////////////// +// +// BibTeXInfo +// +////////////////////////////////////////////////////////////////////// + +BibTeXInfo::BibTeXInfo(docstring const & key, docstring const & type) + : is_bibtex_(true), bib_key_(key), entry_type_(type), info_() +{} + + +bool BibTeXInfo::hasField(docstring const & field) const +{ + return count(field) == 1; +} + + docstring const BibTeXInfo::getAbbreviatedAuthor() const { if (!is_bibtex_) { - docstring const opt = trim(operator[]("label")); + docstring const opt = label(); if (opt.empty()) return docstring(); @@ -140,9 +218,9 @@ docstring const BibTeXInfo::getAbbreviatedAuthor() const return authors; } - docstring author = operator[]("author"); + docstring author = convertLaTeXCommands(operator[]("author")); if (author.empty()) { - author = operator[]("editor"); + author = convertLaTeXCommands(operator[]("editor")); if (author.empty()) return bib_key_; } @@ -168,7 +246,7 @@ docstring const BibTeXInfo::getYear() const if (is_bibtex_) return operator[]("year"); - docstring const opt = trim(operator[]("label")); + docstring const opt = label(); if (opt.empty()) return docstring(); @@ -188,106 +266,6 @@ docstring const BibTeXInfo::getXRef() const } -namespace { - - docstring convertLaTeXCommands(docstring const & str) - { - docstring val = str; - docstring ret; - - bool scanning_cmd = false; - bool scanning_math = false; - bool escaped = false; // used to catch \$, etc. - while (val.size()) { - char_type const ch = val[0]; - - // if we're scanning math, we output everything until we - // find an unescaped $, at which point we break out. - if (scanning_math) { - if (escaped) - escaped = false; - else if (ch == '\\') - escaped = true; - else if (ch == '$') - scanning_math = false; - ret += ch; - val = val.substr(1); - continue; - } - - // if we're scanning a command name, then we just - // discard characters until we hit something that - // isn't alpha. - if (scanning_cmd) { - if (isAlphaASCII(ch)) { - val = val.substr(1); - escaped = false; - continue; - } - // so we're done with this command. - // now we fall through and check this character. - scanning_cmd = false; - } - - // was the last character a \? If so, then this is something like: \\, - // or \$, so we'll just output it. That's probably not always right... - if (escaped) { - ret += ch; - val = val.substr(1); - escaped = false; - continue; - } - - if (ch == '$') { - ret += ch; - val = val.substr(1); - scanning_math = true; - continue; - } - - // we just ignore braces - if (ch == '{' || ch == '}') { - val = val.substr(1); - continue; - } - - // we're going to check things that look like commands, so if - // this doesn't, just output it. - if (ch != '\\') { - ret += ch; - val = val.substr(1); - continue; - } - - // ok, could be a command of some sort - // let's see if it corresponds to some unicode - // unicodesymbols has things in the form: \"{u}, - // whereas we may see things like: \"u. So we'll - // look for that and change it, if necessary. - static boost::regex const reg("^\\\\\\W\\w"); - if (boost::regex_search(to_utf8(val), reg)) { - val.insert(3, from_ascii("}")); - val.insert(2, from_ascii("{")); - } - docstring rem; - docstring const cnvtd = Encodings::fromLaTeXCommand(val, rem); - if (!cnvtd.empty()) { - // it did, so we'll take that bit and proceed with what's left - ret += cnvtd; - val = rem; - continue; - } - // it's a command of some sort - scanning_cmd = true; - escaped = true; - val = val.substr(1); - } - return ret; - } - -} // anon namespace - - docstring const & BibTeXInfo::getInfo(BibTeXInfo const * const xref) const { if (!info_.empty()) @@ -354,6 +332,32 @@ docstring const & BibTeXInfo::getInfo(BibTeXInfo const * const xref) const } +docstring const & BibTeXInfo::operator[](docstring const & field) const +{ + BibTeXInfo::const_iterator it = find(field); + if (it != end()) + return it->second; + static docstring const empty_value = docstring(); + return empty_value; +} + + +docstring const & BibTeXInfo::operator[](string const & field) const +{ + return operator[](from_ascii(field)); +} + + +docstring BibTeXInfo::getValueForKey(string const & key, + BibTeXInfo const * const xref) const +{ + docstring const ret = operator[](key); + if (!ret.empty() || !xref) + return ret; + return (*xref)[key]; +} + + ////////////////////////////////////////////////////////////////////// // // BiblioInfo @@ -429,10 +433,10 @@ docstring const BiblioInfo::getYear(docstring const & key) const // let's try the crossref docstring const xref = data.getXRef(); if (xref.empty()) - return year; // no luck + return _("No year"); // no luck BiblioInfo::const_iterator const xrefit = find(xref); if (xrefit == end()) - return year; // no luck again + return _("No year"); // no luck again BibTeXInfo const & xref_data = xrefit->second; return xref_data.getYear(); return data.getYear();