]> git.lyx.org Git - lyx.git/blob - src/BiblioInfo.cpp
This is the result of an audit of all static variables, looking
[lyx.git] / src / BiblioInfo.cpp
1 /**
2  * \file BiblioInfo.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author Herbert Voß
8  * \author Richard Heck
9  * \author Julien Rioux
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "BiblioInfo.h"
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "buffer_funcs.h"
20 #include "Encoding.h"
21 #include "InsetIterator.h"
22 #include "Language.h"
23 #include "output_xhtml.h"
24 #include "Paragraph.h"
25 #include "TextClass.h"
26 #include "TocBackend.h"
27
28 #include "support/convert.h"
29 #include "support/debug.h"
30 #include "support/docstream.h"
31 #include "support/gettext.h"
32 #include "support/lassert.h"
33 #include "support/lstrings.h"
34 #include "support/regex.h"
35 #include "support/textutils.h"
36
37 #include <set>
38
39 using namespace std;
40 using namespace lyx::support;
41
42
43 namespace lyx {
44
45 namespace {
46
47 // gets the "family name" from an author-type string
48 docstring familyName(docstring const & name)
49 {
50         if (name.empty())
51                 return docstring();
52
53         // first we look for a comma, and take the last name to be everything
54         // preceding the right-most one, so that we also get the "jr" part.
55         docstring::size_type idx = name.rfind(',');
56         if (idx != docstring::npos)
57                 return ltrim(name.substr(0, idx));
58
59         // OK, so now we want to look for the last name. We're going to
60         // include the "von" part. This isn't perfect.
61         // Split on spaces, to get various tokens.
62         vector<docstring> pieces = getVectorFromString(name, from_ascii(" "));
63         // If we only get two, assume the last one is the last name
64         if (pieces.size() <= 2)
65                 return pieces.back();
66
67         // Now we look for the first token that begins with a lower case letter.
68         vector<docstring>::const_iterator it = pieces.begin();
69         vector<docstring>::const_iterator en = pieces.end();
70         for (; it != en; ++it) {
71                 if ((*it).empty())
72                         continue;
73                 char_type const c = (*it)[0];
74                 if (isLower(c))
75                         break;
76         }
77
78         if (it == en) // we never found a "von"
79                 return pieces.back();
80
81         // reconstruct what we need to return
82         docstring retval;
83         bool first = true;
84         for (; it != en; ++it) {
85                 if (!first)
86                         retval += " ";
87                 else
88                         first = false;
89                 retval += *it;
90         }
91         return retval;
92 }
93
94
95 // converts a string containing LaTeX commands into unicode
96 // for display.
97 docstring convertLaTeXCommands(docstring const & str)
98 {
99         docstring val = str;
100         docstring ret;
101
102         bool scanning_cmd = false;
103         bool scanning_math = false;
104         bool escaped = false; // used to catch \$, etc.
105         while (!val.empty()) {
106                 char_type const ch = val[0];
107
108                 // if we're scanning math, we output everything until we
109                 // find an unescaped $, at which point we break out.
110                 if (scanning_math) {
111                         if (escaped)
112                                 escaped = false;
113                         else if (ch == '\\')
114                                 escaped = true;
115                         else if (ch == '$')
116                                 scanning_math = false;
117                         ret += ch;
118                         val = val.substr(1);
119                         continue;
120                 }
121
122                 // if we're scanning a command name, then we just
123                 // discard characters until we hit something that
124                 // isn't alpha.
125                 if (scanning_cmd) {
126                         if (isAlphaASCII(ch)) {
127                                 val = val.substr(1);
128                                 escaped = false;
129                                 continue;
130                         }
131                         // so we're done with this command.
132                         // now we fall through and check this character.
133                         scanning_cmd = false;
134                 }
135
136                 // was the last character a \? If so, then this is something like:
137                 // \\ or \$, so we'll just output it. That's probably not always right...
138                 if (escaped) {
139                         // exception: output \, as THIN SPACE
140                         if (ch == ',')
141                                 ret.push_back(0x2009);
142                         else
143                                 ret += ch;
144                         val = val.substr(1);
145                         escaped = false;
146                         continue;
147                 }
148
149                 if (ch == '$') {
150                         ret += ch;
151                         val = val.substr(1);
152                         scanning_math = true;
153                         continue;
154                 }
155
156                 // we just ignore braces
157                 if (ch == '{' || ch == '}') {
158                         val = val.substr(1);
159                         continue;
160                 }
161
162                 // we're going to check things that look like commands, so if
163                 // this doesn't, just output it.
164                 if (ch != '\\') {
165                         ret += ch;
166                         val = val.substr(1);
167                         continue;
168                 }
169
170                 // ok, could be a command of some sort
171                 // let's see if it corresponds to some unicode
172                 // unicodesymbols has things in the form: \"{u},
173                 // whereas we may see things like: \"u. So we'll
174                 // look for that and change it, if necessary.
175                 // FIXME: This is a sort of mini-tex2lyx.
176                 //        Use the real tex2lyx instead!
177                 static lyx::regex const reg("^\\\\\\W\\w");
178                 if (lyx::regex_search(to_utf8(val), reg)) {
179                         val.insert(3, from_ascii("}"));
180                         val.insert(2, from_ascii("{"));
181                 }
182                 bool termination;
183                 docstring rem;
184                 docstring const cnvtd = Encodings::fromLaTeXCommand(val,
185                                 Encodings::TEXT_CMD, termination, rem);
186                 if (!cnvtd.empty()) {
187                         // it did, so we'll take that bit and proceed with what's left
188                         ret += cnvtd;
189                         val = rem;
190                         continue;
191                 }
192                 // it's a command of some sort
193                 scanning_cmd = true;
194                 escaped = true;
195                 val = val.substr(1);
196         }
197         return ret;
198 }
199
200
201 // Escape '<' and '>' and remove richtext markers (e.g. {!this is richtext!}) from a string.
202 docstring processRichtext(docstring const & str, bool richtext)
203 {
204         docstring val = str;
205         docstring ret;
206
207         bool scanning_rich = false;
208         while (!val.empty()) {
209                 char_type const ch = val[0];
210                 if (ch == '{' && val.size() > 1 && val[1] == '!') {
211                         // beginning of rich text
212                         scanning_rich = true;
213                         val = val.substr(2);
214                         continue;
215                 }
216                 if (scanning_rich && ch == '!' && val.size() > 1 && val[1] == '}') {
217                         // end of rich text
218                         scanning_rich = false;
219                         val = val.substr(2);
220                         continue;
221                 }
222                 if (richtext) {
223                         if (scanning_rich)
224                                 ret += ch;
225                         else {
226                                 // we need to escape '<' and '>'
227                                 if (ch == '<')
228                                         ret += "&lt;";
229                                 else if (ch == '>')
230                                         ret += "&gt;";
231                                 else
232                                         ret += ch;
233                         }
234                 } else if (!scanning_rich /* && !richtext */)
235                         ret += ch;
236                 // else the character is discarded, which will happen only if
237                 // richtext == false and we are scanning rich text
238                 val = val.substr(1);
239         }
240         return ret;
241 }
242
243 } // anon namespace
244
245
246 //////////////////////////////////////////////////////////////////////
247 //
248 // BibTeXInfo
249 //
250 //////////////////////////////////////////////////////////////////////
251
252 BibTeXInfo::BibTeXInfo(docstring const & key, docstring const & type)
253         : is_bibtex_(true), bib_key_(key), entry_type_(type), info_(),
254           modifier_(0)
255 {}
256
257
258 docstring const BibTeXInfo::getAbbreviatedAuthor(bool jurabib_style) const
259 {
260         if (!is_bibtex_) {
261                 docstring const opt = label();
262                 if (opt.empty())
263                         return docstring();
264
265                 docstring authors;
266                 docstring const remainder = trim(split(opt, authors, '('));
267                 if (remainder.empty())
268                         // in this case, we didn't find a "(",
269                         // so we don't have author (year)
270                         return docstring();
271                 return authors;
272         }
273
274         docstring author = operator[]("author");
275         if (author.empty()) {
276                 author = operator[]("editor");
277                 if (author.empty())
278                         return author;
279         }
280
281         // FIXME Move this to a separate routine that can
282         // be called from elsewhere.
283         //
284         // OK, we've got some names. Let's format them.
285         // Try to split the author list on " and "
286         vector<docstring> const authors =
287                 getVectorFromString(author, from_ascii(" and "));
288
289         if (jurabib_style && (authors.size() == 2 || authors.size() == 3)) {
290                 docstring shortauthor = familyName(authors[0])
291                         + "/" + familyName(authors[1]);
292                 if (authors.size() == 3)
293                         shortauthor += "/" + familyName(authors[2]);
294                 return convertLaTeXCommands(shortauthor);
295         }
296
297         docstring retval = familyName(authors[0]);
298
299         if (authors.size() == 2 && authors[1] != "others")
300                 retval = bformat(from_ascii("%1$s and %2$s"),
301                         familyName(authors[0]), familyName(authors[1]));
302
303         if (authors.size() >= 2)
304                 retval = bformat(from_ascii("%1$s et al."),
305                         familyName(authors[0]));
306
307         return convertLaTeXCommands(retval);
308 }
309
310
311 docstring const BibTeXInfo::getAbbreviatedAuthor(Buffer const & buf, bool jurabib_style) const
312 {
313         docstring const author = getAbbreviatedAuthor(jurabib_style);
314         if (!is_bibtex_)
315                 return author;
316         vector<docstring> const authors = getVectorFromString(author, from_ascii(" and "));
317         if (authors.size() == 2)
318                 return bformat(buf.B_("%1$s and %2$s"), authors[0], authors[1]);
319         docstring::size_type const idx = author.rfind(from_ascii(" et al."));
320         if (idx != docstring::npos)
321                 return bformat(buf.B_("%1$s et al."), author.substr(0, idx));
322         return author;
323 }
324
325
326 docstring const BibTeXInfo::getYear() const
327 {
328         if (is_bibtex_)
329                 return operator[]("year");
330
331         docstring const opt = label();
332         if (opt.empty())
333                 return docstring();
334
335         docstring authors;
336         docstring tmp = split(opt, authors, '(');
337         if (tmp.empty())
338                 // we don't have author (year)
339                 return docstring();
340         docstring year;
341         tmp = split(tmp, year, ')');
342         return year;
343 }
344
345
346 docstring const BibTeXInfo::getXRef() const
347 {
348         if (!is_bibtex_)
349                 return docstring();
350         return operator[]("crossref");
351 }
352
353
354 namespace {
355
356 docstring parseOptions(docstring const & format, string & optkey,
357                     docstring & ifpart, docstring & elsepart);
358
359 // Calls parseOptions to deal with an embedded option, such as:
360 //   {%number%[[, no.~%number%]]}
361 // which must appear at the start of format. ifelsepart gets the
362 // whole of the option, and we return what's left after the option.
363 // we return format if there is an error.
364 docstring parseEmbeddedOption(docstring const & format, docstring & ifelsepart)
365 {
366         LASSERT(format[0] == '{' && format[1] == '%', return format);
367         string optkey;
368         docstring ifpart;
369         docstring elsepart;
370         docstring const rest = parseOptions(format, optkey, ifpart, elsepart);
371         if (format == rest) { // parse error
372                 LYXERR0("ERROR! Couldn't parse `" << format <<"'.");
373                 return format;
374         }
375         LASSERT(rest.size() <= format.size(),
376                 { ifelsepart = docstring(); return format; });
377         ifelsepart = format.substr(0, format.size() - rest.size());
378         return rest;
379 }
380
381
382 // Gets a "clause" from a format string, where the clause is
383 // delimited by '[[' and ']]'. Returns what is left after the
384 // clause is removed, and returns format if there is an error.
385 docstring getClause(docstring const & format, docstring & clause)
386 {
387         docstring fmt = format;
388         // remove '[['
389         fmt = fmt.substr(2);
390         // we'll remove characters from the front of fmt as we
391         // deal with them
392         while (!fmt.empty()) {
393                 if (fmt[0] == ']' && fmt.size() > 1 && fmt[1] == ']') {
394                         // that's the end
395                         fmt = fmt.substr(2);
396                         break;
397                 }
398                 // check for an embedded option
399                 if (fmt[0] == '{' && fmt.size() > 1 && fmt[1] == '%') {
400                         docstring part;
401                         docstring const rest = parseEmbeddedOption(fmt, part);
402                         if (fmt == rest) {
403                                 LYXERR0("ERROR! Couldn't parse embedded option in `" << format <<"'.");
404                                 return format;
405                         }
406                         clause += part;
407                         fmt = rest;
408                 } else { // it's just a normal character
409                                 clause += fmt[0];
410                                 fmt = fmt.substr(1);
411                 }
412         }
413         return fmt;
414 }
415
416
417 // parse an options string, which must appear at the start of the
418 // format parameter. puts the parsed bits in optkey, ifpart, and
419 // elsepart and returns what's left after the option is removed.
420 // if there's an error, it returns format itself.
421 docstring parseOptions(docstring const & format, string & optkey,
422                     docstring & ifpart, docstring & elsepart)
423 {
424         LASSERT(format[0] == '{' && format[1] == '%', return format);
425         // strip '{%'
426         docstring fmt = format.substr(2);
427         size_t pos = fmt.find('%'); // end of key
428         if (pos == string::npos) {
429                 LYXERR0("Error parsing  `" << format <<"'. Can't find end of key.");
430                 return format;
431         }
432         optkey = to_utf8(fmt.substr(0, pos));
433         fmt = fmt.substr(pos + 1);
434         // [[format]] should be next
435         if (fmt[0] != '[' || fmt[1] != '[') {
436                 LYXERR0("Error parsing  `" << format <<"'. Can't find '[[' after key.");
437                 return format;
438         }
439
440         docstring curfmt = fmt;
441         fmt = getClause(curfmt, ifpart);
442         if (fmt == curfmt) {
443                 LYXERR0("Error parsing  `" << format <<"'. Couldn't get if clause.");
444                 return format;
445         }
446
447         if (fmt[0] == '}') // we're done, no else clause
448                 return fmt.substr(1);
449
450         // else part should follow
451         if (fmt[0] != '[' || fmt[1] != '[') {
452                 LYXERR0("Error parsing  `" << format <<"'. Can't find else clause.");
453                 return format;
454         }
455
456         curfmt = fmt;
457         fmt = getClause(curfmt, elsepart);
458         // we should be done
459         if (fmt == curfmt || fmt[0] != '}') {
460                 LYXERR0("Error parsing  `" << format <<"'. Can't find end of option.");
461                 return format;
462         }
463         return fmt.substr(1);
464 }
465
466
467 } // anon namespace
468
469
470 docstring BibTeXInfo::expandFormat(docstring const & format,
471                 BibTeXInfo const * const xref, int & counter, Buffer const & buf,
472                 docstring before, docstring after, docstring dialog, bool next) const
473 {
474         // incorrect use of macros could put us in an infinite loop
475         static int const max_passes = 5000;
476         // the use of overly large keys can lead to performance problems, due
477         // to eventual attempts to convert LaTeX macros to unicode. See bug
478         // #8944. This is perhaps not the best solution, but it will have to
479         // do for now.
480         static size_t const max_keysize = 128;
481         odocstringstream ret; // return value
482         string key;
483         bool scanning_key = false;
484         bool scanning_rich = false;
485
486         CiteEngineType const engine_type = buf.params().citeEngineType();
487         docstring fmt = format;
488         // we'll remove characters from the front of fmt as we
489         // deal with them
490         while (!fmt.empty()) {
491                 if (counter++ > max_passes) {
492                         LYXERR0("Recursion limit reached while parsing `"
493                                 << format << "'.");
494                         return _("ERROR!");
495                 }
496
497                 char_type thischar = fmt[0];
498                 if (thischar == '%') {
499                         // beginning or end of key
500                         if (scanning_key) {
501                                 // end of key
502                                 scanning_key = false;
503                                 // so we replace the key with its value, which may be empty
504                                 if (key[0] == '!') {
505                                         // macro
506                                         string const val =
507                                                 buf.params().documentClass().getCiteMacro(engine_type, key);
508                                         fmt = from_utf8(val) + fmt.substr(1);
509                                         continue;
510                                 } else if (key[0] == '_') {
511                                         // a translatable bit
512                                         string const val =
513                                                 buf.params().documentClass().getCiteMacro(engine_type, key);
514                                         docstring const trans =
515                                                 translateIfPossible(from_utf8(val), buf.params().language->code());
516                                         ret << trans;
517                                 } else {
518                                         docstring const val =
519                                                 getValueForKey(key, buf, before, after, dialog, xref, max_keysize);
520                                         if (!scanning_rich)
521                                                 ret << from_ascii("{!<span class=\"bib-" + key + "\">!}");
522                                         ret << val;
523                                         if (!scanning_rich)
524                                                 ret << from_ascii("{!</span>!}");
525                                 }
526                         } else {
527                                 // beginning of key
528                                 key.clear();
529                                 scanning_key = true;
530                         }
531                 }
532                 else if (thischar == '{') {
533                         // beginning of option?
534                         if (scanning_key) {
535                                 LYXERR0("ERROR: Found `{' when scanning key in `" << format << "'.");
536                                 return _("ERROR!");
537                         }
538                         if (fmt.size() > 1) {
539                                 if (fmt[1] == '%') {
540                                         // it is the beginning of an optional format
541                                         string optkey;
542                                         docstring ifpart;
543                                         docstring elsepart;
544                                         docstring const newfmt =
545                                                 parseOptions(fmt, optkey, ifpart, elsepart);
546                                         if (newfmt == fmt) // parse error
547                                                 return _("ERROR!");
548                                         fmt = newfmt;
549                                         docstring const val =
550                                                 getValueForKey(optkey, buf, before, after, dialog, xref);
551                                         if (optkey == "next" && next)
552                                                 ret << ifpart; // without expansion
553                                         else if (!val.empty())
554                                                 ret << expandFormat(ifpart, xref, counter, buf,
555                                                         before, after, dialog, next);
556                                         else if (!elsepart.empty())
557                                                 ret << expandFormat(elsepart, xref, counter, buf,
558                                                         before, after, dialog, next);
559                                         // fmt will have been shortened for us already
560                                         continue;
561                                 }
562                                 if (fmt[1] == '!') {
563                                         // beginning of rich text
564                                         scanning_rich = true;
565                                         fmt = fmt.substr(2);
566                                         ret << from_ascii("{!");
567                                         continue;
568                                 }
569                         }
570                         // we are here if '{' was not followed by % or !.
571                         // So it's just a character.
572                         ret << thischar;
573                 }
574                 else if (scanning_rich && thischar == '!'
575                          && fmt.size() > 1 && fmt[1] == '}') {
576                         // end of rich text
577                         scanning_rich = false;
578                         fmt = fmt.substr(2);
579                         ret << from_ascii("!}");
580                         continue;
581                 }
582                 else if (scanning_key)
583                         key += char(thischar);
584                 else {
585                         try {
586                                 ret.put(thischar);
587                         } catch (EncodingException & /* e */) {
588                                 LYXERR0("Uncodable character '" << docstring(1, thischar) << " in citation label!");
589                         }
590                 }
591                 fmt = fmt.substr(1);
592         } // for loop
593         if (scanning_key) {
594                 LYXERR0("Never found end of key in `" << format << "'!");
595                 return _("ERROR!");
596         }
597         if (scanning_rich) {
598                 LYXERR0("Never found end of rich text in `" << format << "'!");
599                 return _("ERROR!");
600         }
601         return ret.str();
602 }
603
604
605 docstring const & BibTeXInfo::getInfo(BibTeXInfo const * const xref,
606         Buffer const & buf, bool richtext) const
607 {
608         if (!richtext && !info_.empty())
609                 return info_;
610         if (richtext && !info_richtext_.empty())
611                 return info_richtext_;
612
613         if (!is_bibtex_) {
614                 BibTeXInfo::const_iterator it = find(from_ascii("ref"));
615                 info_ = it->second;
616                 return info_;
617         }
618
619         CiteEngineType const engine_type = buf.params().citeEngineType();
620         DocumentClass const & dc = buf.params().documentClass();
621         docstring const & format =
622                 from_utf8(dc.getCiteFormat(engine_type, to_utf8(entry_type_)));
623         int counter = 0;
624         info_ = expandFormat(format, xref, counter, buf,
625                 docstring(), docstring(), docstring(), false);
626
627         if (!info_.empty()) {
628                 info_richtext_ = convertLaTeXCommands(processRichtext(info_, true));
629                 info_ = convertLaTeXCommands(processRichtext(info_, false));
630                 if (richtext)
631                         return info_richtext_;
632         }
633         return info_;
634 }
635
636
637 docstring const BibTeXInfo::getLabel(BibTeXInfo const * const xref,
638         Buffer const & buf, docstring const & format, bool richtext,
639         docstring before, docstring after, docstring dialog, bool next) const
640 {
641         docstring loclabel;
642
643         int counter = 0;
644         loclabel = expandFormat(format, xref, counter, buf,
645                 before, after, dialog, next);
646
647         if (!loclabel.empty() && !next) {
648                 loclabel = processRichtext(loclabel, richtext);
649                 loclabel = convertLaTeXCommands(loclabel);
650         }
651
652         return loclabel;
653 }
654
655
656 docstring const & BibTeXInfo::operator[](docstring const & field) const
657 {
658         BibTeXInfo::const_iterator it = find(field);
659         if (it != end())
660                 return it->second;
661         static docstring const empty_value = docstring();
662         return empty_value;
663 }
664
665
666 docstring const & BibTeXInfo::operator[](string const & field) const
667 {
668         return operator[](from_ascii(field));
669 }
670
671
672 docstring BibTeXInfo::getValueForKey(string const & oldkey, Buffer const & buf,
673         docstring const & before, docstring const & after, docstring const & dialog,
674         BibTeXInfo const * const xref, size_t maxsize) const
675 {
676         // anything less is pointless
677         LASSERT(maxsize >= 16, maxsize = 16);
678         string key = oldkey;
679         bool cleanit = false;
680         if (prefixIs(oldkey, "clean:")) {
681                 key = oldkey.substr(6);
682                 cleanit = true;
683         }
684
685         docstring ret = operator[](key);
686         if (ret.empty() && xref)
687                 ret = (*xref)[key];
688         if (ret.empty()) {
689                 // some special keys
690                 // FIXME: dialog, textbefore and textafter have nothing to do with this
691                 if (key == "dialog")
692                         ret = dialog;
693                 else if (key == "entrytype")
694                         ret = entry_type_;
695                 else if (key == "key")
696                         ret = bib_key_;
697                 else if (key == "label")
698                         ret = label_;
699                 else if (key == "modifier" && modifier_ != 0)
700                         ret = modifier_;
701                 else if (key == "numericallabel")
702                         ret = cite_number_;
703                 else if (key == "abbrvauthor")
704                         // Special key to provide abbreviated author names.
705                         ret = getAbbreviatedAuthor(buf, false);
706                 else if (key == "shortauthor")
707                         // When shortauthor is not defined, jurabib automatically
708                         // provides jurabib-style abbreviated author names. We do
709                         // this as well.
710                         ret = getAbbreviatedAuthor(buf, true);
711                 else if (key == "shorttitle") {
712                         // When shorttitle is not defined, jurabib uses for `article'
713                         // and `periodical' entries the form `journal volume [year]'
714                         // and for other types of entries it uses the `title' field.
715                         if (entry_type_ == "article" || entry_type_ == "periodical")
716                                 ret = operator[]("journal") + " " + operator[]("volume")
717                                         + " [" + operator[]("year") + "]";
718                         else
719                                 ret = operator[]("title");
720                 } else if (key == "bibentry") {
721                         // Special key to provide the full bibliography entry: see getInfo()
722                         CiteEngineType const engine_type = buf.params().citeEngineType();
723                         DocumentClass const & dc = buf.params().documentClass();
724                         docstring const & format =
725                                 from_utf8(dc.getCiteFormat(engine_type, to_utf8(entry_type_)));
726                         int counter = 0;
727                         ret = expandFormat(format, xref, counter, buf,
728                                 docstring(), docstring(), docstring(), false);
729                 } else if (key == "textbefore")
730                         ret = before;
731                 else if (key == "textafter")
732                         ret = after;
733                 else if (key == "year")
734                         ret = getYear();
735         }
736
737         if (cleanit)
738                 ret = html::cleanAttr(ret);
739
740         // make sure it is not too big
741         if (ret.size() > maxsize)
742                 ret = ret.substr(0, maxsize - 3) + from_ascii("...");
743         return ret;
744 }
745
746
747 //////////////////////////////////////////////////////////////////////
748 //
749 // BiblioInfo
750 //
751 //////////////////////////////////////////////////////////////////////
752
753 namespace {
754
755 // A functor for use with sort, leading to case insensitive sorting
756 class compareNoCase: public binary_function<docstring, docstring, bool>
757 {
758 public:
759         bool operator()(docstring const & s1, docstring const & s2) const {
760                 return compare_no_case(s1, s2) < 0;
761         }
762 };
763
764 } // namespace anon
765
766
767 vector<docstring> const BiblioInfo::getKeys() const
768 {
769         vector<docstring> bibkeys;
770         BiblioInfo::const_iterator it  = begin();
771         for (; it != end(); ++it)
772                 bibkeys.push_back(it->first);
773         sort(bibkeys.begin(), bibkeys.end(), compareNoCase());
774         return bibkeys;
775 }
776
777
778 vector<docstring> const BiblioInfo::getFields() const
779 {
780         vector<docstring> bibfields;
781         set<docstring>::const_iterator it = field_names_.begin();
782         set<docstring>::const_iterator end = field_names_.end();
783         for (; it != end; ++it)
784                 bibfields.push_back(*it);
785         sort(bibfields.begin(), bibfields.end());
786         return bibfields;
787 }
788
789
790 vector<docstring> const BiblioInfo::getEntries() const
791 {
792         vector<docstring> bibentries;
793         set<docstring>::const_iterator it = entry_types_.begin();
794         set<docstring>::const_iterator end = entry_types_.end();
795         for (; it != end; ++it)
796                 bibentries.push_back(*it);
797         sort(bibentries.begin(), bibentries.end());
798         return bibentries;
799 }
800
801
802 docstring const BiblioInfo::getAbbreviatedAuthor(docstring const & key, Buffer const & buf) const
803 {
804         BiblioInfo::const_iterator it = find(key);
805         if (it == end())
806                 return docstring();
807         BibTeXInfo const & data = it->second;
808         return data.getAbbreviatedAuthor(buf, false);
809 }
810
811
812 docstring const BiblioInfo::getCiteNumber(docstring const & key) const
813 {
814         BiblioInfo::const_iterator it = find(key);
815         if (it == end())
816                 return docstring();
817         BibTeXInfo const & data = it->second;
818         return data.citeNumber();
819 }
820
821
822 docstring const BiblioInfo::getYear(docstring const & key, bool use_modifier) const
823 {
824         BiblioInfo::const_iterator it = find(key);
825         if (it == end())
826                 return docstring();
827         BibTeXInfo const & data = it->second;
828         docstring year = data.getYear();
829         if (year.empty()) {
830                 // let's try the crossref
831                 docstring const xref = data.getXRef();
832                 if (xref.empty())
833                         // no luck
834                         return docstring();
835                 BiblioInfo::const_iterator const xrefit = find(xref);
836                 if (xrefit == end())
837                         // no luck again
838                         return docstring();
839                 BibTeXInfo const & xref_data = xrefit->second;
840                 year = xref_data.getYear();
841         }
842         if (use_modifier && data.modifier() != 0)
843                 year += data.modifier();
844         return year;
845 }
846
847
848 docstring const BiblioInfo::getYear(docstring const & key, Buffer const & buf, bool use_modifier) const
849 {
850         docstring const year = getYear(key, use_modifier);
851         if (year.empty())
852                 return buf.B_("No year");
853         return year;
854 }
855
856
857 docstring const BiblioInfo::getInfo(docstring const & key,
858         Buffer const & buf, bool richtext) const
859 {
860         BiblioInfo::const_iterator it = find(key);
861         if (it == end())
862                 return docstring(_("Bibliography entry not found!"));
863         BibTeXInfo const & data = it->second;
864         BibTeXInfo const * xrefptr = 0;
865         docstring const xref = data.getXRef();
866         if (!xref.empty()) {
867                 BiblioInfo::const_iterator const xrefit = find(xref);
868                 if (xrefit != end())
869                         xrefptr = &(xrefit->second);
870         }
871         return data.getInfo(xrefptr, buf, richtext);
872 }
873
874
875 docstring const BiblioInfo::getLabel(vector<docstring> const & keys,
876         Buffer const & buf, string const & style, bool richtext,
877         docstring const & before, docstring const & after, docstring const & dialog) const
878 {
879         CiteEngineType const engine_type = buf.params().citeEngineType();
880         DocumentClass const & dc = buf.params().documentClass();
881         docstring const & format = from_utf8(dc.getCiteFormat(engine_type, style, "cite"));
882         docstring ret = format;
883         vector<docstring>::const_iterator key = keys.begin();
884         vector<docstring>::const_iterator ken = keys.end();
885         for (; key != ken; ++key) {
886                 BiblioInfo::const_iterator it = find(*key);
887                 BibTeXInfo empty_data;
888                 empty_data.key(*key);
889                 BibTeXInfo & data = empty_data;
890                 BibTeXInfo const * xrefptr = 0;
891                 if (it != end()) {
892                         data = it->second;
893                         docstring const xref = data.getXRef();
894                         if (!xref.empty()) {
895                                 BiblioInfo::const_iterator const xrefit = find(xref);
896                                 if (xrefit != end())
897                                         xrefptr = &(xrefit->second);
898                         }
899                 }
900                 ret = data.getLabel(xrefptr, buf, ret, richtext,
901                         before, after, dialog, key+1 != ken);
902         }
903         return ret;
904 }
905
906
907 bool BiblioInfo::isBibtex(docstring const & key) const
908 {
909         BiblioInfo::const_iterator it = find(key);
910         if (it == end())
911                 return false;
912         return it->second.isBibTeX();
913 }
914
915
916 vector<docstring> const BiblioInfo::getCiteStrings(
917         vector<docstring> const & keys, vector<CitationStyle> const & styles,
918         Buffer const & buf, bool richtext, docstring const & before,
919         docstring const & after, docstring const & dialog) const
920 {
921         if (empty())
922                 return vector<docstring>();
923
924         string style;
925         vector<docstring> vec(styles.size());
926         for (size_t i = 0; i != vec.size(); ++i) {
927                 style = styles[i].cmd;
928                 vec[i] = getLabel(keys, buf, style, richtext, before, after, dialog);
929         }
930
931         return vec;
932 }
933
934
935 void BiblioInfo::mergeBiblioInfo(BiblioInfo const & info)
936 {
937         bimap_.insert(info.begin(), info.end());
938         field_names_.insert(info.field_names_.begin(), info.field_names_.end());
939         entry_types_.insert(info.entry_types_.begin(), info.entry_types_.end());
940 }
941
942
943 namespace {
944
945 // used in xhtml to sort a list of BibTeXInfo objects
946 bool lSorter(BibTeXInfo const * lhs, BibTeXInfo const * rhs)
947 {
948         docstring const lauth = lhs->getAbbreviatedAuthor();
949         docstring const rauth = rhs->getAbbreviatedAuthor();
950         docstring const lyear = lhs->getYear();
951         docstring const ryear = rhs->getYear();
952         docstring const ltitl = lhs->operator[]("title");
953         docstring const rtitl = rhs->operator[]("title");
954         return  (lauth < rauth)
955                 || (lauth == rauth && lyear < ryear)
956                 || (lauth == rauth && lyear == ryear && ltitl < rtitl);
957 }
958
959 }
960
961
962 void BiblioInfo::collectCitedEntries(Buffer const & buf)
963 {
964         cited_entries_.clear();
965         // We are going to collect all the citation keys used in the document,
966         // getting them from the TOC.
967         // FIXME We may want to collect these differently, in the first case,
968         // so that we might have them in order of appearance.
969         set<docstring> citekeys;
970         Toc const & toc = buf.tocBackend().toc("citation");
971         Toc::const_iterator it = toc.begin();
972         Toc::const_iterator const en = toc.end();
973         for (; it != en; ++it) {
974                 if (it->str().empty())
975                         continue;
976                 vector<docstring> const keys = getVectorFromString(it->str());
977                 citekeys.insert(keys.begin(), keys.end());
978         }
979         if (citekeys.empty())
980                 return;
981
982         // We have a set of the keys used in this document.
983         // We will now convert it to a list of the BibTeXInfo objects used in
984         // this document...
985         vector<BibTeXInfo const *> bi;
986         set<docstring>::const_iterator cit = citekeys.begin();
987         set<docstring>::const_iterator const cen = citekeys.end();
988         for (; cit != cen; ++cit) {
989                 BiblioInfo::const_iterator const bt = find(*cit);
990                 if (bt == end() || !bt->second.isBibTeX())
991                         continue;
992                 bi.push_back(&(bt->second));
993         }
994         // ...and sort it.
995         sort(bi.begin(), bi.end(), lSorter);
996
997         // Now we can write the sorted keys
998         vector<BibTeXInfo const *>::const_iterator bit = bi.begin();
999         vector<BibTeXInfo const *>::const_iterator ben = bi.end();
1000         for (; bit != ben; ++bit)
1001                 cited_entries_.push_back((*bit)->key());
1002 }
1003
1004
1005 void BiblioInfo::makeCitationLabels(Buffer const & buf)
1006 {
1007         collectCitedEntries(buf);
1008         CiteEngineType const engine_type = buf.params().citeEngineType();
1009         bool const numbers = (engine_type & ENGINE_TYPE_NUMERICAL);
1010
1011         int keynumber = 0;
1012         char modifier = 0;
1013         // used to remember the last one we saw
1014         // we'll be comparing entries to see if we need to add
1015         // modifiers, like "1984a"
1016         map<docstring, BibTeXInfo>::iterator last;
1017
1018         vector<docstring>::const_iterator it = cited_entries_.begin();
1019         vector<docstring>::const_iterator const en = cited_entries_.end();
1020         for (; it != en; ++it) {
1021                 map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
1022                 // this shouldn't happen, but...
1023                 if (biit == bimap_.end())
1024                         // ...fail gracefully, anyway.
1025                         continue;
1026                 BibTeXInfo & entry = biit->second;
1027                 if (numbers) {
1028                         docstring const num = convert<docstring>(++keynumber);
1029                         entry.setCiteNumber(num);
1030                 } else {
1031                         if (it != cited_entries_.begin()
1032                             && entry.getAbbreviatedAuthor() == last->second.getAbbreviatedAuthor()
1033                             // we access the year via getYear() so as to get it from the xref,
1034                             // if we need to do so
1035                             && getYear(entry.key()) == getYear(last->second.key())) {
1036                                 if (modifier == 0) {
1037                                         // so the last one should have been 'a'
1038                                         last->second.setModifier('a');
1039                                         modifier = 'b';
1040                                 } else if (modifier == 'z')
1041                                         modifier = 'A';
1042                                 else
1043                                         modifier++;
1044                         } else {
1045                                 modifier = 0;
1046                         }
1047                         entry.setModifier(modifier);
1048                         // remember the last one
1049                         last = biit;
1050                 }
1051         }
1052         // Set the labels
1053         it = cited_entries_.begin();
1054         for (; it != en; ++it) {
1055                 map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
1056                 // this shouldn't happen, but...
1057                 if (biit == bimap_.end())
1058                         // ...fail gracefully, anyway.
1059                         continue;
1060                 BibTeXInfo & entry = biit->second;
1061                 if (numbers) {
1062                         entry.label(entry.citeNumber());
1063                 } else {
1064                         docstring const auth = entry.getAbbreviatedAuthor(buf, false);
1065                         // we do it this way so as to access the xref, if necessary
1066                         // note that this also gives us the modifier
1067                         docstring const year = getYear(*it, buf, true);
1068                         if (!auth.empty() && !year.empty())
1069                                 entry.label(auth + ' ' + year);
1070                         else
1071                                 entry.label(entry.key());
1072                 }
1073         }
1074 }
1075
1076
1077 //////////////////////////////////////////////////////////////////////
1078 //
1079 // CitationStyle
1080 //
1081 //////////////////////////////////////////////////////////////////////
1082
1083
1084 CitationStyle citationStyleFromString(string const & command)
1085 {
1086         CitationStyle cs;
1087         if (command.empty())
1088                 return cs;
1089
1090         string cmd = command;
1091         if (cmd[0] == 'C') {
1092                 cs.forceUpperCase = true;
1093                 cmd[0] = 'c';
1094         }
1095
1096         size_t const n = cmd.size() - 1;
1097         if (cmd[n] == '*') {
1098                 cs.fullAuthorList = true;
1099                 cmd = cmd.substr(0, n);
1100         }
1101
1102         cs.cmd = cmd;
1103         return cs;
1104 }
1105
1106
1107 string citationStyleToString(const CitationStyle & cs)
1108 {
1109         string cmd = cs.cmd;
1110         if (cs.forceUpperCase)
1111                 cmd[0] = 'C';
1112         if (cs.fullAuthorList)
1113                 cmd += '*';
1114         return cmd;
1115 }
1116
1117 } // namespace lyx