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