]> git.lyx.org Git - lyx.git/blob - src/BiblioInfo.cpp
db397a4f7df91c0a8ebf87f60de19591783f1ca5
[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 = convertLaTeXCommands(operator[]("author"));
275         if (author.empty()) {
276                 author = convertLaTeXCommands(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 shortauthor;
295         }
296
297         if (authors.size() == 2 && authors[1] != "others")
298                 return bformat(from_ascii("%1$s and %2$s"),
299                         familyName(authors[0]), familyName(authors[1]));
300
301         if (authors.size() >= 2)
302                 return bformat(from_ascii("%1$s et al."),
303                         familyName(authors[0]));
304
305         return familyName(authors[0]);
306 }
307
308
309 docstring const BibTeXInfo::getAbbreviatedAuthor(Buffer const & buf, bool jurabib_style) const
310 {
311         docstring const author = getAbbreviatedAuthor(jurabib_style);
312         if (!is_bibtex_)
313                 return author;
314         vector<docstring> const authors = getVectorFromString(author, from_ascii(" and "));
315         if (authors.size() == 2)
316                 return bformat(buf.B_("%1$s and %2$s"), authors[0], authors[1]);
317         docstring::size_type const idx = author.rfind(from_ascii(" et al."));
318         if (idx != docstring::npos)
319                 return bformat(buf.B_("%1$s et al."), author.substr(0, idx));
320         return author;
321 }
322
323
324 docstring const BibTeXInfo::getYear() const
325 {
326         if (is_bibtex_)
327                 return operator[]("year");
328
329         docstring const opt = label();
330         if (opt.empty())
331                 return docstring();
332
333         docstring authors;
334         docstring tmp = split(opt, authors, '(');
335         if (tmp.empty())
336                 // we don't have author (year)
337                 return docstring();
338         docstring year;
339         tmp = split(tmp, year, ')');
340         return year;
341 }
342
343
344 docstring const BibTeXInfo::getXRef() const
345 {
346         if (!is_bibtex_)
347                 return docstring();
348         return operator[]("crossref");
349 }
350
351
352 namespace {
353
354 string parseOptions(string const & format, string & optkey,
355                     string & ifpart, string & elsepart);
356
357 // Calls parseOptions to deal with an embedded option, such as:
358 //   {%number%[[, no.~%number%]]}
359 // which must appear at the start of format. ifelsepart gets the
360 // whole of the option, and we return what's left after the option.
361 // we return format if there is an error.
362 string parseEmbeddedOption(string const & format, string & ifelsepart)
363 {
364         LASSERT(format[0] == '{' && format[1] == '%', return format);
365         string optkey;
366         string ifpart;
367         string elsepart;
368         string const rest = parseOptions(format, optkey, ifpart, elsepart);
369         if (format == rest) { // parse error
370                 LYXERR0("ERROR! Couldn't parse `" << format <<"'.");
371                 return format;
372         }
373         LASSERT(rest.size() <= format.size(),
374                 { ifelsepart = ""; return format; });
375         ifelsepart = format.substr(0, format.size() - rest.size());
376         return rest;
377 }
378
379
380 // Gets a "clause" from a format string, where the clause is
381 // delimited by '[[' and ']]'. Returns what is left after the
382 // clause is removed, and returns format if there is an error.
383 string getClause(string const & format, string & clause)
384 {
385         string fmt = format;
386         // remove '[['
387         fmt = fmt.substr(2);
388         // we'll remove characters from the front of fmt as we
389         // deal with them
390         while (!fmt.empty()) {
391                 if (fmt[0] == ']' && fmt.size() > 1 && fmt[1] == ']') {
392                         // that's the end
393                         fmt = fmt.substr(2);
394                         break;
395                 }
396                 // check for an embedded option
397                 if (fmt[0] == '{' && fmt.size() > 1 && fmt[1] == '%') {
398                         string part;
399                         string const rest = parseEmbeddedOption(fmt, part);
400                         if (fmt == rest) {
401                                 LYXERR0("ERROR! Couldn't parse embedded option in `" << format <<"'.");
402                                 return format;
403                         }
404                         clause += part;
405                         fmt = rest;
406                 } else { // it's just a normal character
407                                 clause += fmt[0];
408                                 fmt = fmt.substr(1);
409                 }
410         }
411         return fmt;
412 }
413
414
415 // parse an options string, which must appear at the start of the
416 // format parameter. puts the parsed bits in optkey, ifpart, and
417 // elsepart and returns what's left after the option is removed.
418 // if there's an error, it returns format itself.
419 string parseOptions(string const & format, string & optkey,
420                     string & ifpart, string & elsepart)
421 {
422         LASSERT(format[0] == '{' && format[1] == '%', return format);
423         // strip '{%'
424         string fmt = format.substr(2);
425         size_t pos = fmt.find('%'); // end of key
426         if (pos == string::npos) {
427                 LYXERR0("Error parsing  `" << format <<"'. Can't find end of key.");
428                 return format;
429         }
430         optkey = fmt.substr(0,pos);
431         fmt = fmt.substr(pos + 1);
432         // [[format]] should be next
433         if (fmt[0] != '[' || fmt[1] != '[') {
434                 LYXERR0("Error parsing  `" << format <<"'. Can't find '[[' after key.");
435                 return format;
436         }
437
438         string curfmt = fmt;
439         fmt = getClause(curfmt, ifpart);
440         if (fmt == curfmt) {
441                 LYXERR0("Error parsing  `" << format <<"'. Couldn't get if clause.");
442                 return format;
443         }
444
445         if (fmt[0] == '}') // we're done, no else clause
446                 return fmt.substr(1);
447
448         // else part should follow
449         if (fmt[0] != '[' || fmt[1] != '[') {
450                 LYXERR0("Error parsing  `" << format <<"'. Can't find else clause.");
451                 return format;
452         }
453
454         curfmt = fmt;
455         fmt = getClause(curfmt, elsepart);
456         // we should be done
457         if (fmt == curfmt || fmt[0] != '}') {
458                 LYXERR0("Error parsing  `" << format <<"'. Can't find end of option.");
459                 return format;
460         }
461         return fmt.substr(1);
462 }
463
464
465 } // anon namespace
466
467
468 docstring BibTeXInfo::expandFormat(string const & format,
469                 BibTeXInfo const * const xref, int & counter, Buffer const & buf,
470                 docstring before, docstring after, docstring dialog, bool next) const
471 {
472         // incorrect use of macros could put us in an infinite loop
473         static int max_passes = 5000;
474         docstring ret; // return value
475         string key;
476         bool scanning_key = false;
477         bool scanning_rich = false;
478
479         CiteEngineType const engine_type = buf.params().citeEngineType();
480         string fmt = format;
481         // we'll remove characters from the front of fmt as we
482         // deal with them
483         while (!fmt.empty()) {
484                 if (counter++ > max_passes) {
485                         LYXERR0("Recursion limit reached while parsing `"
486                                 << format << "'.");
487                         return _("ERROR!");
488                 }
489
490                 char_type thischar = fmt[0];
491                 if (thischar == '%') {
492                         // beginning or end of key
493                         if (scanning_key) {
494                                 // end of key
495                                 scanning_key = false;
496                                 // so we replace the key with its value, which may be empty
497                                 if (key[0] == '!') {
498                                         // macro
499                                         string const val =
500                                                 buf.params().documentClass().getCiteMacro(engine_type, key);
501                                         fmt = val + fmt.substr(1);
502                                         continue;
503                                 } else if (key[0] == '_') {
504                                         // a translatable bit
505                                         string const val =
506                                                 buf.params().documentClass().getCiteMacro(engine_type, key);
507                                         docstring const trans =
508                                                 translateIfPossible(from_utf8(val), buf.params().language->code());
509                                         ret += trans;
510                                 } else {
511                                         docstring const val =
512                                                 getValueForKey(key, buf, before, after, dialog, xref);
513                                         if (!scanning_rich)
514                                                 ret += from_ascii("{!<span class=\"bib-" + key + "\">!}");
515                                         ret += val;
516                                         if (!scanning_rich)
517                                                 ret += from_ascii("{!</span>!}");
518                                 }
519                         } else {
520                                 // beginning of key
521                                 key.clear();
522                                 scanning_key = true;
523                         }
524                 }
525                 else if (thischar == '{') {
526                         // beginning of option?
527                         if (scanning_key) {
528                                 LYXERR0("ERROR: Found `{' when scanning key in `" << format << "'.");
529                                 return _("ERROR!");
530                         }
531                         if (fmt.size() > 1) {
532                                 if (fmt[1] == '%') {
533                                         // it is the beginning of an optional format
534                                         string optkey;
535                                         string ifpart;
536                                         string elsepart;
537                                         string const newfmt =
538                                                 parseOptions(fmt, optkey, ifpart, elsepart);
539                                         if (newfmt == fmt) // parse error
540                                                 return _("ERROR!");
541                                         fmt = newfmt;
542                                         docstring const val =
543                                                 getValueForKey(optkey, buf, before, after, dialog, xref);
544                                         if (optkey == "next" && next)
545                                                 ret += from_utf8(ifpart); // without expansion
546                                         else if (!val.empty())
547                                                 ret += expandFormat(ifpart, xref, counter, buf,
548                                                         before, after, dialog, next);
549                                         else if (!elsepart.empty())
550                                                 ret += expandFormat(elsepart, xref, counter, buf,
551                                                         before, after, dialog, next);
552                                         // fmt will have been shortened for us already
553                                         continue;
554                                 }
555                                 if (fmt[1] == '!') {
556                                         // beginning of rich text
557                                         scanning_rich = true;
558                                         fmt = fmt.substr(2);
559                                         ret += from_ascii("{!");
560                                         continue;
561                                 }
562                         }
563                         // we are here if '{' was not followed by % or !.
564                         // So it's just a character.
565                         ret += thischar;
566                 }
567                 else if (scanning_rich && thischar == '!'
568                          && fmt.size() > 1 && fmt[1] == '}') {
569                         // end of rich text
570                         scanning_rich = false;
571                         fmt = fmt.substr(2);
572                         ret += from_ascii("!}");
573                         continue;
574                 }
575                 else if (scanning_key)
576                         key += char(thischar);
577                 else
578                         ret += thischar;
579                 fmt = fmt.substr(1);
580         } // for loop
581         if (scanning_key) {
582                 LYXERR0("Never found end of key in `" << format << "'!");
583                 return _("ERROR!");
584         }
585         if (scanning_rich) {
586                 LYXERR0("Never found end of rich text in `" << format << "'!");
587                 return _("ERROR!");
588         }
589         return ret;
590 }
591
592
593 docstring const & BibTeXInfo::getInfo(BibTeXInfo const * const xref,
594         Buffer const & buf, bool richtext) const
595 {
596         if (!richtext && !info_.empty())
597                 return info_;
598         if (richtext && !info_richtext_.empty())
599                 return info_richtext_;
600
601         if (!is_bibtex_) {
602                 BibTeXInfo::const_iterator it = find(from_ascii("ref"));
603                 info_ = it->second;
604                 return info_;
605         }
606
607         CiteEngineType const engine_type = buf.params().citeEngineType();
608         DocumentClass const & dc = buf.params().documentClass();
609         string const & format = dc.getCiteFormat(engine_type, to_utf8(entry_type_));
610         int counter = 0;
611         info_ = expandFormat(format, xref, counter, buf,
612                 docstring(), docstring(), docstring(), false);
613
614         if (!info_.empty()) {
615                 info_richtext_ = convertLaTeXCommands(processRichtext(info_, true));
616                 info_ = convertLaTeXCommands(processRichtext(info_, false));
617                 if (richtext)
618                         return info_richtext_;
619         }
620         return info_;
621 }
622
623
624 docstring const BibTeXInfo::getLabel(BibTeXInfo const * const xref,
625         Buffer const & buf, string const & format, bool richtext,
626         docstring before, docstring after, docstring dialog, bool next) const
627 {
628         docstring loclabel;
629
630         int counter = 0;
631         loclabel = expandFormat(format, xref, counter, buf,
632                 before, after, dialog, next);
633
634         if (!loclabel.empty() && !next) {
635                 loclabel = processRichtext(loclabel, richtext);
636                 loclabel = convertLaTeXCommands(loclabel);
637         }
638         return loclabel;
639 }
640
641
642 docstring const & BibTeXInfo::operator[](docstring const & field) const
643 {
644         BibTeXInfo::const_iterator it = find(field);
645         if (it != end())
646                 return it->second;
647         static docstring const empty_value = docstring();
648         return empty_value;
649 }
650
651
652 docstring const & BibTeXInfo::operator[](string const & field) const
653 {
654         return operator[](from_ascii(field));
655 }
656
657
658 docstring BibTeXInfo::getValueForKey(string const & oldkey, Buffer const & buf,
659         docstring const & before, docstring const & after, docstring const & dialog,
660         BibTeXInfo const * const xref) const
661 {
662         string key = oldkey;
663         bool cleanit = false;
664         if (prefixIs(oldkey, "clean:")) {
665                 key = oldkey.substr(6);
666                 cleanit = true;
667         }
668                 
669         docstring ret = operator[](key);
670         if (ret.empty() && xref)
671                 ret = (*xref)[key];
672         if (ret.empty()) {
673                 // some special keys
674                 // FIXME: dialog, textbefore and textafter have nothing to do with this
675                 if (key == "dialog")
676                         ret = dialog;
677                 else if (key == "entrytype")
678                         ret = entry_type_;
679                 else if (key == "key")
680                         ret = bib_key_;
681                 else if (key == "label")
682                         ret = label_;
683                 else if (key == "abbrvauthor")
684                         // Special key to provide abbreviated author names.
685                         ret = getAbbreviatedAuthor(buf, false);
686                 else if (key == "shortauthor")
687                         // When shortauthor is not defined, jurabib automatically
688                         // provides jurabib-style abbreviated author names. We do
689                         // this as well.
690                         ret = getAbbreviatedAuthor(buf, true);
691                 else if (key == "shorttitle") {
692                         // When shorttitle is not defined, jurabib uses for `article'
693                         // and `periodical' entries the form `journal volume [year]'
694                         // and for other types of entries it uses the `title' field.
695                         if (entry_type_ == "article" || entry_type_ == "periodical")
696                                 ret = operator[]("journal") + " " + operator[]("volume")
697                                         + " [" + operator[]("year") + "]";
698                         else
699                                 ret = operator[]("title");
700                 } else if (key == "bibentry") {
701                         // Special key to provide the full bibliography entry: see getInfo()
702                         CiteEngineType const engine_type = buf.params().citeEngineType();
703                         DocumentClass const & dc = buf.params().documentClass();
704                         string const & format = dc.getCiteFormat(engine_type, to_utf8(entry_type_));
705                         int counter = 0;
706                         ret = expandFormat(format, xref, counter, buf,
707                                 docstring(), docstring(), docstring(), false);
708                 } else if (key == "textbefore")
709                         ret = before;
710                 else if (key == "textafter")
711                         ret = after;
712                 else if (key == "year")
713                         ret = getYear();
714         }
715         if (cleanit)
716                 return html::cleanAttr(ret);
717         
718         return ret;
719 }
720
721
722 //////////////////////////////////////////////////////////////////////
723 //
724 // BiblioInfo
725 //
726 //////////////////////////////////////////////////////////////////////
727
728 namespace {
729
730 // A functor for use with sort, leading to case insensitive sorting
731 class compareNoCase: public binary_function<docstring, docstring, bool>
732 {
733 public:
734         bool operator()(docstring const & s1, docstring const & s2) const {
735                 return compare_no_case(s1, s2) < 0;
736         }
737 };
738
739 } // namespace anon
740
741
742 vector<docstring> const BiblioInfo::getKeys() const
743 {
744         vector<docstring> bibkeys;
745         BiblioInfo::const_iterator it  = begin();
746         for (; it != end(); ++it)
747                 bibkeys.push_back(it->first);
748         sort(bibkeys.begin(), bibkeys.end(), compareNoCase());
749         return bibkeys;
750 }
751
752
753 vector<docstring> const BiblioInfo::getFields() const
754 {
755         vector<docstring> bibfields;
756         set<docstring>::const_iterator it = field_names_.begin();
757         set<docstring>::const_iterator end = field_names_.end();
758         for (; it != end; ++it)
759                 bibfields.push_back(*it);
760         sort(bibfields.begin(), bibfields.end());
761         return bibfields;
762 }
763
764
765 vector<docstring> const BiblioInfo::getEntries() const
766 {
767         vector<docstring> bibentries;
768         set<docstring>::const_iterator it = entry_types_.begin();
769         set<docstring>::const_iterator end = entry_types_.end();
770         for (; it != end; ++it)
771                 bibentries.push_back(*it);
772         sort(bibentries.begin(), bibentries.end());
773         return bibentries;
774 }
775
776
777 docstring const BiblioInfo::getAbbreviatedAuthor(docstring const & key, Buffer const & buf) const
778 {
779         BiblioInfo::const_iterator it = find(key);
780         if (it == end())
781                 return docstring();
782         BibTeXInfo const & data = it->second;
783         return data.getAbbreviatedAuthor(buf, false);
784 }
785
786
787 docstring const BiblioInfo::getCiteNumber(docstring const & key) const
788 {
789         BiblioInfo::const_iterator it = find(key);
790         if (it == end())
791                 return docstring();
792         BibTeXInfo const & data = it->second;
793         return data.citeNumber();
794 }
795
796
797 docstring const BiblioInfo::getYear(docstring const & key, bool use_modifier) const
798 {
799         BiblioInfo::const_iterator it = find(key);
800         if (it == end())
801                 return docstring();
802         BibTeXInfo const & data = it->second;
803         docstring year = data.getYear();
804         if (year.empty()) {
805                 // let's try the crossref
806                 docstring const xref = data.getXRef();
807                 if (xref.empty())
808                         // no luck
809                         return docstring();
810                 BiblioInfo::const_iterator const xrefit = find(xref);
811                 if (xrefit == end())
812                         // no luck again
813                         return docstring();
814                 BibTeXInfo const & xref_data = xrefit->second;
815                 year = xref_data.getYear();
816         }
817         if (use_modifier && data.modifier() != 0)
818                 year += data.modifier();
819         return year;
820 }
821
822
823 docstring const BiblioInfo::getYear(docstring const & key, Buffer const & buf, bool use_modifier) const
824 {
825         docstring const year = getYear(key, use_modifier);
826         if (year.empty())
827                 return buf.B_("No year");
828         return year;
829 }
830
831
832 docstring const BiblioInfo::getInfo(docstring const & key,
833         Buffer const & buf, bool richtext) const
834 {
835         BiblioInfo::const_iterator it = find(key);
836         if (it == end())
837                 return docstring(_("Bibliography entry not found!"));
838         BibTeXInfo const & data = it->second;
839         BibTeXInfo const * xrefptr = 0;
840         docstring const xref = data.getXRef();
841         if (!xref.empty()) {
842                 BiblioInfo::const_iterator const xrefit = find(xref);
843                 if (xrefit != end())
844                         xrefptr = &(xrefit->second);
845         }
846         return data.getInfo(xrefptr, buf, richtext);
847 }
848
849
850 docstring const BiblioInfo::getLabel(vector<docstring> const & keys,
851         Buffer const & buf, string const & style, bool richtext,
852         docstring const & before, docstring const & after, docstring const & dialog) const
853 {
854         CiteEngineType const engine_type = buf.params().citeEngineType();
855         DocumentClass const & dc = buf.params().documentClass();
856         string const & format = dc.getCiteFormat(engine_type, style, "cite");
857         docstring ret = from_utf8(format);
858         vector<docstring>::const_iterator key = keys.begin();
859         vector<docstring>::const_iterator ken = keys.end();
860         for (; key != ken; ++key) {
861                 BiblioInfo::const_iterator it = find(*key);
862                 BibTeXInfo empty_data;
863                 empty_data.key(*key);
864                 BibTeXInfo & data = empty_data;
865                 BibTeXInfo const * xrefptr = 0;
866                 if (it != end()) {
867                         data = it->second;
868                         docstring const xref = data.getXRef();
869                         if (!xref.empty()) {
870                                 BiblioInfo::const_iterator const xrefit = find(xref);
871                                 if (xrefit != end())
872                                         xrefptr = &(xrefit->second);
873                         }
874                 }
875                 ret = data.getLabel(xrefptr, buf, to_utf8(ret), richtext,
876                         before, after, dialog, key+1 != ken);
877         }
878         return ret;
879 }
880
881
882 bool BiblioInfo::isBibtex(docstring const & key) const
883 {
884         BiblioInfo::const_iterator it = find(key);
885         if (it == end())
886                 return false;
887         return it->second.isBibTeX();
888 }
889
890
891 vector<docstring> const BiblioInfo::getCiteStrings(
892         vector<docstring> const & keys, vector<CitationStyle> const & styles,
893         Buffer const & buf, bool richtext, docstring const & before,
894         docstring const & after, docstring const & dialog) const
895 {
896         if (empty())
897                 return vector<docstring>();
898
899         string style;
900         vector<docstring> vec(styles.size());
901         for (size_t i = 0; i != vec.size(); ++i) {
902                 style = styles[i].cmd;
903                 vec[i] = getLabel(keys, buf, style, richtext, before, after, dialog);
904         }
905
906         return vec;
907 }
908
909
910 void BiblioInfo::mergeBiblioInfo(BiblioInfo const & info)
911 {
912         bimap_.insert(info.begin(), info.end());
913         field_names_.insert(info.field_names_.begin(), info.field_names_.end());
914         entry_types_.insert(info.entry_types_.begin(), info.entry_types_.end());
915 }
916
917
918 namespace {
919
920 // used in xhtml to sort a list of BibTeXInfo objects
921 bool lSorter(BibTeXInfo const * lhs, BibTeXInfo const * rhs)
922 {
923         docstring const lauth = lhs->getAbbreviatedAuthor();
924         docstring const rauth = rhs->getAbbreviatedAuthor();
925         docstring const lyear = lhs->getYear();
926         docstring const ryear = rhs->getYear();
927         docstring const ltitl = lhs->operator[]("title");
928         docstring const rtitl = rhs->operator[]("title");
929         return  (lauth < rauth)
930                 || (lauth == rauth && lyear < ryear)
931                 || (lauth == rauth && lyear == ryear && ltitl < rtitl);
932 }
933
934 }
935
936
937 void BiblioInfo::collectCitedEntries(Buffer const & buf)
938 {
939         cited_entries_.clear();
940         // We are going to collect all the citation keys used in the document,
941         // getting them from the TOC.
942         // FIXME We may want to collect these differently, in the first case,
943         // so that we might have them in order of appearance.
944         set<docstring> citekeys;
945         Toc const & toc = buf.tocBackend().toc("citation");
946         Toc::const_iterator it = toc.begin();
947         Toc::const_iterator const en = toc.end();
948         for (; it != en; ++it) {
949                 if (it->str().empty())
950                         continue;
951                 vector<docstring> const keys = getVectorFromString(it->str());
952                 citekeys.insert(keys.begin(), keys.end());
953         }
954         if (citekeys.empty())
955                 return;
956
957         // We have a set of the keys used in this document.
958         // We will now convert it to a list of the BibTeXInfo objects used in
959         // this document...
960         vector<BibTeXInfo const *> bi;
961         set<docstring>::const_iterator cit = citekeys.begin();
962         set<docstring>::const_iterator const cen = citekeys.end();
963         for (; cit != cen; ++cit) {
964                 BiblioInfo::const_iterator const bt = find(*cit);
965                 if (bt == end() || !bt->second.isBibTeX())
966                         continue;
967                 bi.push_back(&(bt->second));
968         }
969         // ...and sort it.
970         sort(bi.begin(), bi.end(), lSorter);
971
972         // Now we can write the sorted keys
973         vector<BibTeXInfo const *>::const_iterator bit = bi.begin();
974         vector<BibTeXInfo const *>::const_iterator ben = bi.end();
975         for (; bit != ben; ++bit)
976                 cited_entries_.push_back((*bit)->key());
977 }
978
979
980 void BiblioInfo::makeCitationLabels(Buffer const & buf)
981 {
982         collectCitedEntries(buf);
983         CiteEngineType const engine_type = buf.params().citeEngineType();
984         bool const numbers = (engine_type == ENGINE_TYPE_NUMERICAL);
985
986         int keynumber = 0;
987         char modifier = 0;
988         // used to remember the last one we saw
989         // we'll be comparing entries to see if we need to add
990         // modifiers, like "1984a"
991         map<docstring, BibTeXInfo>::iterator last;
992
993         vector<docstring>::const_iterator it = cited_entries_.begin();
994         vector<docstring>::const_iterator const en = cited_entries_.end();
995         for (; it != en; ++it) {
996                 map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
997                 // this shouldn't happen, but...
998                 if (biit == bimap_.end())
999                         // ...fail gracefully, anyway.
1000                         continue;
1001                 BibTeXInfo & entry = biit->second;
1002                 if (numbers) {
1003                         docstring const num = convert<docstring>(++keynumber);
1004                         entry.setCiteNumber(num);
1005                 } else {
1006                         if (it != cited_entries_.begin()
1007                             && entry.getAbbreviatedAuthor() == last->second.getAbbreviatedAuthor()
1008                             // we access the year via getYear() so as to get it from the xref,
1009                             // if we need to do so
1010                             && getYear(entry.key()) == getYear(last->second.key())) {
1011                                 if (modifier == 0) {
1012                                         // so the last one should have been 'a'
1013                                         last->second.setModifier('a');
1014                                         modifier = 'b';
1015                                 } else if (modifier == 'z')
1016                                         modifier = 'A';
1017                                 else
1018                                         modifier++;
1019                         } else {
1020                                 modifier = 0;
1021                         }
1022                         entry.setModifier(modifier);
1023                         // remember the last one
1024                         last = biit;
1025                 }
1026         }
1027         // Set the labels
1028         it = cited_entries_.begin();
1029         for (; it != en; ++it) {
1030                 map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
1031                 // this shouldn't happen, but...
1032                 if (biit == bimap_.end())
1033                         // ...fail gracefully, anyway.
1034                         continue;
1035                 BibTeXInfo & entry = biit->second;
1036                 if (numbers) {
1037                         entry.label(entry.citeNumber());
1038                 } else {
1039                         docstring const auth = entry.getAbbreviatedAuthor(buf, false);
1040                         // we do it this way so as to access the xref, if necessary
1041                         // note that this also gives us the modifier
1042                         docstring const year = getYear(*it, buf, true);
1043                         if (!auth.empty() && !year.empty())
1044                                 entry.label(auth + ' ' + year);
1045                         else
1046                                 entry.label(entry.key());
1047                 }
1048         }
1049 }
1050
1051
1052 //////////////////////////////////////////////////////////////////////
1053 //
1054 // CitationStyle
1055 //
1056 //////////////////////////////////////////////////////////////////////
1057
1058
1059 CitationStyle citationStyleFromString(string const & command)
1060 {
1061         CitationStyle cs;
1062         if (command.empty())
1063                 return cs;
1064
1065         string cmd = command;
1066         if (cmd[0] == 'C') {
1067                 cs.forceUpperCase = true;
1068                 cmd[0] = 'c';
1069         }
1070
1071         size_t const n = cmd.size() - 1;
1072         if (cmd[n] == '*') {
1073                 cs.fullAuthorList = true;
1074                 cmd = cmd.substr(0, n);
1075         }
1076
1077         cs.cmd = cmd;
1078         return cs;
1079 }
1080
1081
1082 string citationStyleToString(const CitationStyle & cs)
1083 {
1084         string cmd = cs.cmd;
1085         if (cs.forceUpperCase)
1086                 cmd[0] = 'C';
1087         if (cs.fullAuthorList)
1088                 cmd += '*';
1089         return cmd;
1090 }
1091
1092 } // namespace lyx