]> git.lyx.org Git - features.git/blob - src/frontends/controllers/biblio.C
Those parts of Herbert's natbib patch that either fix bugs or just move
[features.git] / src / frontends / controllers / biblio.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2001 The LyX Team.
7  *
8  * ======================================================
9  *
10  * \file biblio.C
11  * \author Angus Leeming <a.leeming@ic.ac.uk>
12  * \author Herbert Voss <voss@perce.de>
13  */
14
15 #include <config.h>
16
17 #include <vector>
18 #include <algorithm>
19
20 #ifdef __GNUG__
21 #pragma implementation
22 #endif
23
24 #include "LString.h"
25 #include "biblio.h"
26 #include "gettext.h" // for _()
27 #include "helper_funcs.h"
28 #include "support/lstrings.h"
29 #include "support/LAssert.h"
30 #include "support/LRegex.h"
31
32 using std::find;
33 using std::min;
34 using std::vector;
35 using std::sort;
36
37 namespace biblio
38 {
39
40 namespace {
41
42 using namespace biblio;
43
44 char const * const citeCommands[] = {
45         "cite", "citet", "citep", "citealt", "citealp", "citeauthor",
46         "citeyear", "citeyearpar" };
47
48 unsigned int const nCiteCommands =
49         sizeof(citeCommands) / sizeof(char *);
50
51 CiteStyle const citeStyles[] = {
52         CITE, CITET, CITEP, CITEALT, CITEALP,
53         CITEAUTHOR, CITEYEAR, CITEYEARPAR };
54
55 unsigned int const nCiteStyles =
56         sizeof(citeStyles) / sizeof(CiteStyle);
57
58 CiteStyle const citeStylesFull[] = {
59         CITET, CITEP, CITEALT, CITEALP, CITEAUTHOR };
60
61 unsigned int const nCiteStylesFull =
62         sizeof(citeStylesFull) / sizeof(CiteStyle);
63
64 CiteStyle const citeStylesUCase[] = {
65         CITET, CITEP, CITEALT, CITEALP, CITEAUTHOR };
66
67 unsigned int const nCiteStylesUCase =
68         sizeof(citeStylesUCase) / sizeof(CiteStyle);
69
70
71 // The functions doing the dirty work for the search.
72 vector<string>::const_iterator
73 simpleSearch(InfoMap const & theMap,
74              vector<string> const & keys,
75              string const & expr,
76              vector<string>::const_iterator start,
77              Direction dir,
78              bool caseSensitive)
79 {
80         string tmp = expr;
81         if (!caseSensitive)
82                 tmp = lowercase(tmp);
83
84         vector<string> searchwords = getVectorFromString(tmp, " ");
85
86         // Loop over all keys from start...
87         for (vector<string>::const_iterator it = start;
88              // End condition is direction-dependent.
89              (dir == FORWARD) ? (it<keys.end()) : (it>=keys.begin());
90              // increment is direction-dependent.
91              (dir == FORWARD) ? (++it) : (--it)) {
92
93                 string data = (*it);
94                 InfoMap::const_iterator info = theMap.find(*it);
95                 if (info != theMap.end())
96                         data += " " + info->second;
97                 if (!caseSensitive)
98                         data = lowercase(data);
99
100                 bool found = true;
101
102                 // Loop over all search words...
103                 for (vector<string>::const_iterator sit = searchwords.begin();
104                      sit != searchwords.end(); ++sit) {
105                         if (data.find(*sit) == string::npos) {
106                                 found = false;
107                                 break;
108                         }
109                 }
110
111                 if (found) return it;
112         }
113
114         return keys.end();
115 }
116
117
118 vector<string>::const_iterator
119 regexSearch(InfoMap const & theMap,
120             vector<string> const & keys,
121             string const & expr,
122             vector<string>::const_iterator start,
123             Direction dir)
124 {
125         LRegex reg(expr);
126
127         for (vector<string>::const_iterator it = start;
128              // End condition is direction-dependent.
129              (dir == FORWARD) ? (it<keys.end()) : (it>=keys.begin());
130              // increment is direction-dependent.
131              (dir == FORWARD) ? (++it) : (--it)) {
132
133                 string data = (*it);
134                 InfoMap::const_iterator info = theMap.find(*it);
135                 if (info != theMap.end())
136                         data += " " + info->second;
137
138                 if (reg.exec(data).size() > 0)
139                         return it;
140         }
141
142         return keys.end();
143 }
144
145
146 } // namespace anon
147
148
149 string const familyName(string const & name)
150 {
151         // Very simple parser
152         string fname = name;
153
154         // possible authorname combinations are:
155         // "Surname, FirstName"
156         // "Surname, F."
157         // "FirstName Surname"
158         // "F. Surname"
159         string::size_type idx = fname.find(",");
160         if (idx != string::npos)
161                 return frontStrip(fname.substr(0,idx));
162         idx = fname.rfind(".");
163         if (idx != string::npos)
164                 fname = frontStrip(fname.substr(idx+1));
165         // test if we have a LaTeX Space in front
166         if (fname[0] == '\\')
167                 return fname.substr(2);
168
169         return fname;
170 }
171
172
173 string const getAbbreviatedAuthor(InfoMap const & map, string const & key)
174 {
175         lyx::Assert(!map.empty());
176
177         InfoMap::const_iterator it = map.find(key);
178
179         string author;
180         if (it != map.end()) {
181                 author = parseBibTeX(it->second, "author");
182                 if (author.empty())
183                         author = parseBibTeX(it->second, "editor");
184
185                 vector<string> authors = getVectorFromString(author, "and");
186
187                 if (!authors.empty()) {
188                         author.erase();
189
190                         for (vector<string>::iterator it = authors.begin();
191                              it != authors.end(); ++it) {
192                                 *it = familyName(strip(*it));
193                         }
194
195                         author = authors[0];
196                         if (authors.size() == 2)
197                                 author += _(" and ") + authors[1];
198                         else if (authors.size() > 2)
199                                 author += _(" et al.");
200                 }
201         }
202
203         if (author.empty())
204                 author = _("Caesar et al.");
205
206         return author;
207 }
208
209
210 string const getYear(InfoMap const & map, string const & key)
211 {
212         lyx::Assert(!map.empty());
213
214         InfoMap::const_iterator it = map.find(key);
215
216         string year;
217
218         if (it != map.end())
219                 year = parseBibTeX(it->second, "year");
220
221         if (year.empty())
222                 year = "50BC";
223
224         return year;
225 }
226
227
228 // A functor for use with std::sort, leading to case insensitive sorting
229 struct compareNoCase: public std::binary_function<string, string, bool>
230 {
231         bool operator()(string const & s1, string const & s2) const {
232                 return compare_no_case(s1, s2) < 0;
233         }
234 };
235
236 vector<string> const getKeys(InfoMap const & map)
237 {
238         vector<string> bibkeys;
239
240         for (InfoMap::const_iterator it = map.begin(); it != map.end(); ++it) {
241                 bibkeys.push_back(it->first);
242         }
243
244         sort(bibkeys.begin(), bibkeys.end(), compareNoCase());
245         return bibkeys;
246 }
247
248
249 string const getInfo(InfoMap const & map, string const & key)
250 {
251         lyx::Assert(!map.empty());
252
253         InfoMap::const_iterator it = map.find(key);
254         if (it == map.end())
255                 return string();
256         // is the entry a BibTeX one or one from lyx-layout "bibliography"?
257         if (!contains(it->second,'='))
258                 return it->second.c_str();
259
260         // Search for all possible "required" keys
261         string author = parseBibTeX(it->second, "author");
262         if (author.empty())
263                 author = parseBibTeX(it->second, "editor");
264
265         string year       = parseBibTeX(it->second, "year");
266         string title      = parseBibTeX(it->second, "title");
267         string booktitle  = parseBibTeX(it->second, "booktitle");
268         string chapter    = parseBibTeX(it->second, "chapter");
269         string number     = parseBibTeX(it->second, "number");
270         string volume     = parseBibTeX(it->second, "volume");
271         string pages      = parseBibTeX(it->second, "pages");
272
273         string media      = parseBibTeX(it->second, "journal");
274         if (media.empty())
275                 media = parseBibTeX(it->second, "publisher");
276         if (media.empty())
277                 media = parseBibTeX(it->second, "school");
278         if (media.empty())
279                 media = parseBibTeX(it->second, "institution");
280
281         ostringstream result;
282         if (!author.empty())
283                 result << author << ", ";
284         if (!title.empty())
285                 result << title;
286         if (!booktitle.empty())
287                 result << ", in " << booktitle;
288         if (!chapter.empty())
289                 result << ", Ch. " << chapter;
290         if (!media.empty())
291                 result << ", " << media;
292         if (!volume.empty())
293                 result << ", vol. " << volume;
294         if (!number.empty())
295                 result << ", no. " << number;
296         if (!pages.empty())
297                 result << ", pp. " << pages;
298         if (!year.empty())
299                 result << ", " << year;
300
301         string const result_str = strip(result.str().c_str());
302         if (!result_str.empty())
303                 return result_str;
304
305         // This should never happen (or at least be very unusual!)
306         return it->second;
307 }
308
309
310 vector<string>::const_iterator
311 searchKeys(InfoMap const & theMap,
312            vector<string> const & keys,
313            string const & expr,
314            vector<string>::const_iterator start,
315            Search type,
316            Direction dir,
317            bool caseSensitive)
318 {
319         // Preliminary checks
320         if (start < keys.begin() || start >= keys.end())
321                 return keys.end();
322
323         string search_expr = frontStrip(strip(expr));
324         if (search_expr.empty())
325                 return keys.end();
326
327         if (type == SIMPLE)
328                 return simpleSearch(theMap, keys, search_expr, start, dir,
329                                     caseSensitive);
330
331         return regexSearch(theMap, keys, search_expr, start, dir);
332 }
333
334
335 string const parseBibTeX(string data, string const & findkey)
336 {
337         string keyvalue;
338         // at first we delete all characters right of '%' and
339         // replace tabs through a space and remove leading spaces
340         string data_;
341         int Entries = 0;
342         string dummy = token(data,'\n', Entries);
343         while (!dummy.empty()) {
344                 dummy = subst(dummy, '\t', ' ');        // no tabs
345                 dummy = frontStrip(dummy);      // no leading spaces
346                 string::size_type const idx =
347                         dummy.empty() ? string::npos : dummy.find('%');
348                 if (idx != string::npos) {
349                         // ignore lines with a beginning '%'
350                         if (idx > 0) {
351                                 data_ += dummy.substr(0,data.find('%'));
352                         }
353                 } else {
354                         data_ += dummy;
355                 }
356                 dummy = token(data, '\n', ++Entries);
357         }
358         data = data_;
359
360         // unlikely!
361         if (data.empty())
362                 return string();
363
364         // now get only the important line of the bibtex entry.
365         // all entries are devided by ',' except the last one.
366         data += ',';  // now we have same behaviour for all entries
367                       // because the last one is "blah ... }"
368         Entries = 0;
369         dummy = token(data, ',', Entries);
370         while (!contains(lowercase(dummy), findkey) && !dummy.empty())
371                 dummy = token(data, ',', ++Entries);
372         if (dummy.empty())
373                 return string();                        // no such keyword
374         // we are not sure, if we get all, because "key= "blah, blah" is allowed.
375         // therefore we read all until the next "=" character, which follows a
376         // new keyword
377         keyvalue = dummy;
378         dummy = token(data, ',', ++Entries);
379         while (!contains(dummy, '=') && !dummy.empty()) {
380                 keyvalue += (',' + dummy);
381                 dummy = token(data, ',', ++Entries);
382         }
383         data = keyvalue;                // now we have the important line
384         data = strip(data, ' ');                // all spaces
385         if (!contains(data, '{'))       // no opening '{'
386                 data = strip(data, '}');// maybe there is a main closing '}'
387         // happens, when last keyword
388         string::size_type const idx =
389                 !data.empty() ? data.find('=') : string::npos;
390
391         if (idx == string::npos)
392                 return string();
393
394         data = data.substr(idx);
395         data = frontStrip(strip(data));
396
397         if (data.length() < 2 || data[0] != '=') {      // a valid entry?
398                 return string();
399         } else {
400                 // delete '=' and the following spaces
401                 data = frontStrip(frontStrip(data,'='));
402                 if (data.length() < 2) {
403                         return data;    // not long enough to find delimiters
404                 } else {
405                         string::size_type keypos = 1;
406                         char enclosing;
407                         if (data[0] == '{') {
408                                 enclosing = '}';
409                         } else if (data[0] == '"') {
410                                 enclosing = '"';
411                         } else {
412                                 // no {} and no "", pure data but with a
413                                 // possible ',' at the end
414                                 return strip(data,',');
415                         }
416                         string tmp = data.substr(keypos);
417                         while (tmp.find('{') != string::npos &&
418                                tmp.find('}') != string::npos &&
419                                tmp.find('{') < tmp.find('}') &&
420                                tmp.find('{') < tmp.find(enclosing)) {
421
422                                 keypos += tmp.find('{') + 1;
423                                 tmp = data.substr(keypos);
424                                 keypos += tmp.find('}') + 1;
425                                 tmp = data.substr(keypos);
426                         }
427                         if (tmp.find(enclosing) == string::npos)
428                                 return data;
429                         else {
430                                 keypos += tmp.find(enclosing);
431                                 return data.substr(1, keypos - 1);
432                         }
433                 }
434         }
435 }
436
437
438 CitationStyle const getCitationStyle(string const & command)
439 {
440         if (command.empty()) return CitationStyle();
441
442         CitationStyle cs;
443         string cmd = command;
444
445         if (cmd[0] == 'C') {
446                 cs.forceUCase = true;
447                 cmd[0] = 'c';
448         }
449
450         size_t n = cmd.size()-1;
451         if (cmd[n] == '*') {
452                 cs.full = true;
453                 cmd = cmd.substr(0,n);
454         }
455
456         char const * const * const last = citeCommands + nCiteCommands;
457         char const * const * const ptr = std::find(citeCommands, last, cmd);
458
459         if (ptr != last) {
460                 size_t idx = ptr - citeCommands;
461                 cs.style = citeStyles[idx];
462         }
463
464         return cs;
465 }
466
467
468 string const getCiteCommand(CiteStyle command, bool full, bool forceUCase)
469 {
470         string cite = citeCommands[command];
471         if (full) {
472                 CiteStyle const * last = citeStylesFull + nCiteStylesFull;
473                 if (std::find(citeStylesFull, last, command) != last)
474                         cite += "*";
475         }
476
477         if (forceUCase) {
478                 CiteStyle const * last = citeStylesUCase + nCiteStylesUCase;
479                 if (std::find(citeStylesUCase, last, command) != last)
480                         cite[0] = 'C';
481         }
482
483         return cite;
484 }
485
486
487 vector<CiteStyle> const getCiteStyles(bool usingNatbib)
488 {
489         unsigned int nStyles = 1;
490         unsigned int start = 0;
491         if (usingNatbib) {
492                 nStyles = nCiteStyles - 1;
493                 start = 1;
494         }
495
496         vector<CiteStyle> styles(nStyles);
497
498         vector<CiteStyle>::size_type i = 0;
499         int j = start;
500         for (; i != styles.size(); ++i, ++j) {
501                 styles[i] = citeStyles[j];
502         }
503
504         return styles;
505 }
506
507
508 vector<string> const
509 getNumericalStrings(string const & key,
510                     InfoMap const & map, vector<CiteStyle> const & styles)
511 {
512         if (map.empty()) {
513                 vector<string> vec(1);
514                 vec[0] = _("No database");
515                 return vec;
516         }
517
518         vector<string> vec(styles.size());
519
520         string const author = getAbbreviatedAuthor(map, key);
521         string const year   = getYear(map, key);
522
523         for (vector<string>::size_type i = 0; i != vec.size(); ++i) {
524                 string str;
525
526                 switch (styles[i]) {
527                 case CITE:
528                 case CITEP:
529                         str = "[#ID]";
530                         break;
531
532                 case CITET:
533                         str = author + " [#ID]";
534                         break;
535
536                 case CITEALT:
537                         str = author + " #ID";
538                         break;
539
540                 case CITEALP:
541                         str = "#ID";
542                         break;
543
544                 case CITEAUTHOR:
545                         str = author;
546                         break;
547
548                 case CITEYEAR:
549                         str = year;
550                         break;
551
552                 case CITEYEARPAR:
553                         str = "(" + year + ")";
554                         break;
555                 }
556
557                 vec[i] = str;
558         }
559
560         return vec;
561 }
562
563
564 vector<string> const
565 getAuthorYearStrings(string const & key,
566                     InfoMap const & map, vector<CiteStyle> const & styles)
567 {
568         if (map.empty()) {
569                 vector<string> vec(1);
570                 vec[0] = _("No database");
571                 return vec;
572         }
573
574         vector<string> vec(styles.size());
575
576         string const author = getAbbreviatedAuthor(map, key);
577         string const year   = getYear(map, key);
578
579         for (vector<string>::size_type i = 0; i != vec.size(); ++i) {
580                 string str;
581
582                 switch (styles[i]) {
583                 case CITET:
584                         str = author + " (" + year + ")";
585                         break;
586
587                 case CITE:
588                 case CITEP:
589                         str = "(" + author + ", " + year + ")";
590                         break;
591
592                 case CITEALT:
593                         str = author + " " + year ;
594                         break;
595
596                 case CITEALP:
597                         str = author + ", " + year ;
598                         break;
599
600                 case CITEAUTHOR:
601                         str = author;
602                         break;
603
604                 case CITEYEAR:
605                         str = year;
606                         break;
607
608                 case CITEYEARPAR:
609                         str = "(" + year + ")";
610                         break;
611                 }
612
613                 vec[i] = str;
614         }
615
616         return vec;
617 }
618
619 } // namespace biblio