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