]> git.lyx.org Git - lyx.git/blob - src/BiblioInfo.cpp
Compute and output numbers for numerical citations.
[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 == "modifier" && modifier_ != 0)
684                         ret = modifier_;
685                 else if (key == "numericallabel")
686                         ret = cite_number_;
687                 else if (key == "abbrvauthor")
688                         // Special key to provide abbreviated author names.
689                         ret = getAbbreviatedAuthor(buf, false);
690                 else if (key == "shortauthor")
691                         // When shortauthor is not defined, jurabib automatically
692                         // provides jurabib-style abbreviated author names. We do
693                         // this as well.
694                         ret = getAbbreviatedAuthor(buf, true);
695                 else if (key == "shorttitle") {
696                         // When shorttitle is not defined, jurabib uses for `article'
697                         // and `periodical' entries the form `journal volume [year]'
698                         // and for other types of entries it uses the `title' field.
699                         if (entry_type_ == "article" || entry_type_ == "periodical")
700                                 ret = operator[]("journal") + " " + operator[]("volume")
701                                         + " [" + operator[]("year") + "]";
702                         else
703                                 ret = operator[]("title");
704                 } else if (key == "bibentry") {
705                         // Special key to provide the full bibliography entry: see getInfo()
706                         CiteEngineType const engine_type = buf.params().citeEngineType();
707                         DocumentClass const & dc = buf.params().documentClass();
708                         string const & format = dc.getCiteFormat(engine_type, to_utf8(entry_type_));
709                         int counter = 0;
710                         ret = expandFormat(format, xref, counter, buf,
711                                 docstring(), docstring(), docstring(), false);
712                 } else if (key == "textbefore")
713                         ret = before;
714                 else if (key == "textafter")
715                         ret = after;
716                 else if (key == "year")
717                         ret = getYear();
718         }
719         if (cleanit)
720                 return html::cleanAttr(ret);
721
722         return ret;
723 }
724
725
726 //////////////////////////////////////////////////////////////////////
727 //
728 // BiblioInfo
729 //
730 //////////////////////////////////////////////////////////////////////
731
732 namespace {
733
734 // A functor for use with sort, leading to case insensitive sorting
735 class compareNoCase: public binary_function<docstring, docstring, bool>
736 {
737 public:
738         bool operator()(docstring const & s1, docstring const & s2) const {
739                 return compare_no_case(s1, s2) < 0;
740         }
741 };
742
743 } // namespace anon
744
745
746 vector<docstring> const BiblioInfo::getKeys() const
747 {
748         vector<docstring> bibkeys;
749         BiblioInfo::const_iterator it  = begin();
750         for (; it != end(); ++it)
751                 bibkeys.push_back(it->first);
752         sort(bibkeys.begin(), bibkeys.end(), compareNoCase());
753         return bibkeys;
754 }
755
756
757 vector<docstring> const BiblioInfo::getFields() const
758 {
759         vector<docstring> bibfields;
760         set<docstring>::const_iterator it = field_names_.begin();
761         set<docstring>::const_iterator end = field_names_.end();
762         for (; it != end; ++it)
763                 bibfields.push_back(*it);
764         sort(bibfields.begin(), bibfields.end());
765         return bibfields;
766 }
767
768
769 vector<docstring> const BiblioInfo::getEntries() const
770 {
771         vector<docstring> bibentries;
772         set<docstring>::const_iterator it = entry_types_.begin();
773         set<docstring>::const_iterator end = entry_types_.end();
774         for (; it != end; ++it)
775                 bibentries.push_back(*it);
776         sort(bibentries.begin(), bibentries.end());
777         return bibentries;
778 }
779
780
781 docstring const BiblioInfo::getAbbreviatedAuthor(docstring const & key, Buffer const & buf) const
782 {
783         BiblioInfo::const_iterator it = find(key);
784         if (it == end())
785                 return docstring();
786         BibTeXInfo const & data = it->second;
787         return data.getAbbreviatedAuthor(buf, false);
788 }
789
790
791 docstring const BiblioInfo::getCiteNumber(docstring const & key) const
792 {
793         BiblioInfo::const_iterator it = find(key);
794         if (it == end())
795                 return docstring();
796         BibTeXInfo const & data = it->second;
797         return data.citeNumber();
798 }
799
800
801 docstring const BiblioInfo::getYear(docstring const & key, bool use_modifier) const
802 {
803         BiblioInfo::const_iterator it = find(key);
804         if (it == end())
805                 return docstring();
806         BibTeXInfo const & data = it->second;
807         docstring year = data.getYear();
808         if (year.empty()) {
809                 // let's try the crossref
810                 docstring const xref = data.getXRef();
811                 if (xref.empty())
812                         // no luck
813                         return docstring();
814                 BiblioInfo::const_iterator const xrefit = find(xref);
815                 if (xrefit == end())
816                         // no luck again
817                         return docstring();
818                 BibTeXInfo const & xref_data = xrefit->second;
819                 year = xref_data.getYear();
820         }
821         if (use_modifier && data.modifier() != 0)
822                 year += data.modifier();
823         return year;
824 }
825
826
827 docstring const BiblioInfo::getYear(docstring const & key, Buffer const & buf, bool use_modifier) const
828 {
829         docstring const year = getYear(key, use_modifier);
830         if (year.empty())
831                 return buf.B_("No year");
832         return year;
833 }
834
835
836 docstring const BiblioInfo::getInfo(docstring const & key,
837         Buffer const & buf, bool richtext) const
838 {
839         BiblioInfo::const_iterator it = find(key);
840         if (it == end())
841                 return docstring(_("Bibliography entry not found!"));
842         BibTeXInfo const & data = it->second;
843         BibTeXInfo const * xrefptr = 0;
844         docstring const xref = data.getXRef();
845         if (!xref.empty()) {
846                 BiblioInfo::const_iterator const xrefit = find(xref);
847                 if (xrefit != end())
848                         xrefptr = &(xrefit->second);
849         }
850         return data.getInfo(xrefptr, buf, richtext);
851 }
852
853
854 docstring const BiblioInfo::getLabel(vector<docstring> const & keys,
855         Buffer const & buf, string const & style, bool richtext,
856         docstring const & before, docstring const & after, docstring const & dialog) const
857 {
858         CiteEngineType const engine_type = buf.params().citeEngineType();
859         DocumentClass const & dc = buf.params().documentClass();
860         string const & format = dc.getCiteFormat(engine_type, style, "cite");
861         docstring ret = from_utf8(format);
862         vector<docstring>::const_iterator key = keys.begin();
863         vector<docstring>::const_iterator ken = keys.end();
864         for (; key != ken; ++key) {
865                 BiblioInfo::const_iterator it = find(*key);
866                 BibTeXInfo empty_data;
867                 empty_data.key(*key);
868                 BibTeXInfo & data = empty_data;
869                 BibTeXInfo const * xrefptr = 0;
870                 if (it != end()) {
871                         data = it->second;
872                         docstring const xref = data.getXRef();
873                         if (!xref.empty()) {
874                                 BiblioInfo::const_iterator const xrefit = find(xref);
875                                 if (xrefit != end())
876                                         xrefptr = &(xrefit->second);
877                         }
878                 }
879                 ret = data.getLabel(xrefptr, buf, to_utf8(ret), richtext,
880                         before, after, dialog, key+1 != ken);
881         }
882         return ret;
883 }
884
885
886 bool BiblioInfo::isBibtex(docstring const & key) const
887 {
888         BiblioInfo::const_iterator it = find(key);
889         if (it == end())
890                 return false;
891         return it->second.isBibTeX();
892 }
893
894
895 vector<docstring> const BiblioInfo::getCiteStrings(
896         vector<docstring> const & keys, vector<CitationStyle> const & styles,
897         Buffer const & buf, bool richtext, docstring const & before,
898         docstring const & after, docstring const & dialog) const
899 {
900         if (empty())
901                 return vector<docstring>();
902
903         string style;
904         vector<docstring> vec(styles.size());
905         for (size_t i = 0; i != vec.size(); ++i) {
906                 style = styles[i].cmd;
907                 vec[i] = getLabel(keys, buf, style, richtext, before, after, dialog);
908         }
909
910         return vec;
911 }
912
913
914 void BiblioInfo::mergeBiblioInfo(BiblioInfo const & info)
915 {
916         bimap_.insert(info.begin(), info.end());
917         field_names_.insert(info.field_names_.begin(), info.field_names_.end());
918         entry_types_.insert(info.entry_types_.begin(), info.entry_types_.end());
919 }
920
921
922 namespace {
923
924 // used in xhtml to sort a list of BibTeXInfo objects
925 bool lSorter(BibTeXInfo const * lhs, BibTeXInfo const * rhs)
926 {
927         docstring const lauth = lhs->getAbbreviatedAuthor();
928         docstring const rauth = rhs->getAbbreviatedAuthor();
929         docstring const lyear = lhs->getYear();
930         docstring const ryear = rhs->getYear();
931         docstring const ltitl = lhs->operator[]("title");
932         docstring const rtitl = rhs->operator[]("title");
933         return  (lauth < rauth)
934                 || (lauth == rauth && lyear < ryear)
935                 || (lauth == rauth && lyear == ryear && ltitl < rtitl);
936 }
937
938 }
939
940
941 void BiblioInfo::collectCitedEntries(Buffer const & buf)
942 {
943         cited_entries_.clear();
944         // We are going to collect all the citation keys used in the document,
945         // getting them from the TOC.
946         // FIXME We may want to collect these differently, in the first case,
947         // so that we might have them in order of appearance.
948         set<docstring> citekeys;
949         Toc const & toc = buf.tocBackend().toc("citation");
950         Toc::const_iterator it = toc.begin();
951         Toc::const_iterator const en = toc.end();
952         for (; it != en; ++it) {
953                 if (it->str().empty())
954                         continue;
955                 vector<docstring> const keys = getVectorFromString(it->str());
956                 citekeys.insert(keys.begin(), keys.end());
957         }
958         if (citekeys.empty())
959                 return;
960
961         // We have a set of the keys used in this document.
962         // We will now convert it to a list of the BibTeXInfo objects used in
963         // this document...
964         vector<BibTeXInfo const *> bi;
965         set<docstring>::const_iterator cit = citekeys.begin();
966         set<docstring>::const_iterator const cen = citekeys.end();
967         for (; cit != cen; ++cit) {
968                 BiblioInfo::const_iterator const bt = find(*cit);
969                 if (bt == end() || !bt->second.isBibTeX())
970                         continue;
971                 bi.push_back(&(bt->second));
972         }
973         // ...and sort it.
974         sort(bi.begin(), bi.end(), lSorter);
975
976         // Now we can write the sorted keys
977         vector<BibTeXInfo const *>::const_iterator bit = bi.begin();
978         vector<BibTeXInfo const *>::const_iterator ben = bi.end();
979         for (; bit != ben; ++bit)
980                 cited_entries_.push_back((*bit)->key());
981 }
982
983
984 void BiblioInfo::makeCitationLabels(Buffer const & buf)
985 {
986         collectCitedEntries(buf);
987         CiteEngineType const engine_type = buf.params().citeEngineType();
988         bool const numbers = (engine_type == ENGINE_TYPE_NUMERICAL);
989
990         int keynumber = 0;
991         char modifier = 0;
992         // used to remember the last one we saw
993         // we'll be comparing entries to see if we need to add
994         // modifiers, like "1984a"
995         map<docstring, BibTeXInfo>::iterator last;
996
997         vector<docstring>::const_iterator it = cited_entries_.begin();
998         vector<docstring>::const_iterator const en = cited_entries_.end();
999         for (; it != en; ++it) {
1000                 map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
1001                 // this shouldn't happen, but...
1002                 if (biit == bimap_.end())
1003                         // ...fail gracefully, anyway.
1004                         continue;
1005                 BibTeXInfo & entry = biit->second;
1006                 if (numbers) {
1007                         docstring const num = convert<docstring>(++keynumber);
1008                         entry.setCiteNumber(num);
1009                 } else {
1010                         if (it != cited_entries_.begin()
1011                             && entry.getAbbreviatedAuthor() == last->second.getAbbreviatedAuthor()
1012                             // we access the year via getYear() so as to get it from the xref,
1013                             // if we need to do so
1014                             && getYear(entry.key()) == getYear(last->second.key())) {
1015                                 if (modifier == 0) {
1016                                         // so the last one should have been 'a'
1017                                         last->second.setModifier('a');
1018                                         modifier = 'b';
1019                                 } else if (modifier == 'z')
1020                                         modifier = 'A';
1021                                 else
1022                                         modifier++;
1023                         } else {
1024                                 modifier = 0;
1025                         }
1026                         entry.setModifier(modifier);
1027                         // remember the last one
1028                         last = biit;
1029                 }
1030         }
1031         // Set the labels
1032         it = cited_entries_.begin();
1033         for (; it != en; ++it) {
1034                 map<docstring, BibTeXInfo>::iterator const biit = bimap_.find(*it);
1035                 // this shouldn't happen, but...
1036                 if (biit == bimap_.end())
1037                         // ...fail gracefully, anyway.
1038                         continue;
1039                 BibTeXInfo & entry = biit->second;
1040                 if (numbers) {
1041                         entry.label(entry.citeNumber());
1042                 } else {
1043                         docstring const auth = entry.getAbbreviatedAuthor(buf, false);
1044                         // we do it this way so as to access the xref, if necessary
1045                         // note that this also gives us the modifier
1046                         docstring const year = getYear(*it, buf, true);
1047                         if (!auth.empty() && !year.empty())
1048                                 entry.label(auth + ' ' + year);
1049                         else
1050                                 entry.label(entry.key());
1051                 }
1052         }
1053 }
1054
1055
1056 //////////////////////////////////////////////////////////////////////
1057 //
1058 // CitationStyle
1059 //
1060 //////////////////////////////////////////////////////////////////////
1061
1062
1063 CitationStyle citationStyleFromString(string const & command)
1064 {
1065         CitationStyle cs;
1066         if (command.empty())
1067                 return cs;
1068
1069         string cmd = command;
1070         if (cmd[0] == 'C') {
1071                 cs.forceUpperCase = true;
1072                 cmd[0] = 'c';
1073         }
1074
1075         size_t const n = cmd.size() - 1;
1076         if (cmd[n] == '*') {
1077                 cs.fullAuthorList = true;
1078                 cmd = cmd.substr(0, n);
1079         }
1080
1081         cs.cmd = cmd;
1082         return cs;
1083 }
1084
1085
1086 string citationStyleToString(const CitationStyle & cs)
1087 {
1088         string cmd = cs.cmd;
1089         if (cs.forceUpperCase)
1090                 cmd[0] = 'C';
1091         if (cs.fullAuthorList)
1092                 cmd += '*';
1093         return cmd;
1094 }
1095
1096 } // namespace lyx