]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/biblio.C
to much stuff for my liking...
[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         for (string::iterator it = data.begin(); it < data.end(); ++it) {
324                 if ((*it) == '\n' || (*it) == '\t')
325                         (*it)= ' ';
326         }
327         data = frontStrip(data);
328         
329         // now get only the important line of the bibtex entry.
330         // all entries are devided by ',' except the last one.  
331         data += ',';  // now we have same behaviour for all entries
332                       // because the last one is "blah ... }"
333         int Entries = 0;                        
334         string dummy = token(data, ',', Entries);
335         while (!contains(lowercase(dummy), findkey) && !dummy.empty())
336                 dummy = token(data, ',', ++Entries);
337         if (dummy.empty())
338                 return string();                        // no such keyword
339         // we are not sure, if we get all, because "key= "blah, blah" is allowed.
340         // therefore we read all until the next "=" character, which follows a
341         // new keyword
342         keyvalue = dummy;
343         dummy = token(data, ',', ++Entries);
344         while (!contains(dummy, '=') && !dummy.empty()) {
345                 keyvalue += (',' + dummy);
346                 dummy = token(data, ',', ++Entries);
347         }
348         data = keyvalue;                // now we have the important line       
349         data = strip(data, ' ');                // all spaces
350         if (!contains(data, '{'))       // no opening '{'
351                 data = strip(data, '}');// maybe there is a main closing '}'
352         // happens, when last keyword
353         string key = lowercase(data.substr(0, data.find('=')));
354         data = data.substr(data.find('='), data.length() - 1);
355         data = frontStrip(strip(data));
356         if (data.length() < 2 || data[0] != '=') {      // a valid entry?
357                 return string();
358         } else {
359                 data = frontStrip(data.substr(1, data.length() - 1));
360                 if (data.length() < 2) {
361                         return data;    // not long enough to find delimiters
362                 } else {
363                         string::size_type keypos = 1;
364                         char enclosing;
365                         if (data[0] == '{') {
366                                 enclosing = '}';
367                         } else if (data[0] == '"') {
368                                 enclosing = '"';
369                         } else {
370                                 return data;    // no {} and no "", pure data
371                         }
372                         string tmp = data.substr(keypos, data.length()-1);
373                         while (tmp.find('{') != string::npos &&
374                                tmp.find('}') != string::npos &&
375                                tmp.find('{') < tmp.find('}') &&
376                                tmp.find('{') < tmp.find(enclosing)) {
377                                 
378                                 keypos += tmp.find('{') + 1;
379                                 tmp = data.substr(keypos, data.length() - 1);
380                                 keypos += tmp.find('}') + 1;
381                                 tmp = data.substr(keypos, data.length() - 1);
382                         }
383                         if (tmp.find(enclosing) == string::npos)
384                                 return data;
385                         else {
386                                 keypos += tmp.find(enclosing);
387                                 return data.substr(1, keypos - 1);
388                         }
389                 }
390         }
391 }
392
393
394 CitationStyle const getCitationStyle(string const & command)
395 {
396         if (command.empty()) return CitationStyle();
397     
398         CitationStyle cs;
399         string cmd = command;
400
401         if (cmd[0] == 'C') {
402                 cs.forceUCase = true;
403                 cmd[0] = 'c';
404         }
405
406         size_t n = cmd.size()-1;
407         if (cmd[n] == '*') {
408                 cs.full = true;
409                 cmd = cmd.substr(0,n);
410         }
411
412         char const * const * const last = citeCommands + nCiteCommands;
413         char const * const * const ptr = std::find(citeCommands, last, cmd);
414
415         if (ptr != last) {
416                 size_t idx = ptr - citeCommands;
417                 cs.style = citeStyles[idx];
418         }
419
420         return cs;
421 }
422
423
424 string const getCiteCommand(CiteStyle command, bool full, bool forceUCase)
425 {
426         string cite = citeCommands[command];
427         if (full) {
428                 CiteStyle const * last = citeStylesFull + nCiteStylesFull;
429                 if (std::find(citeStylesFull, last, command) != last)
430                         cite += "*";
431         }
432
433         if (forceUCase) {
434                 CiteStyle const * last = citeStylesUCase + nCiteStylesUCase;
435                 if (std::find(citeStylesUCase, last, command) != last)
436                         cite[0] = 'C';
437         }
438
439         return cite;
440 }
441
442         
443 vector<CiteStyle> const getCiteStyles(bool usingNatbib)
444 {
445         unsigned int nStyles = 1;
446         unsigned int start = 0;
447         if (usingNatbib) {
448                 nStyles = nCiteStyles - 1;
449                 start = 1;
450         }
451
452         vector<CiteStyle> styles(nStyles);
453
454         vector<CiteStyle>::size_type i = 0;
455         int j = start;
456         for (; i != styles.size(); ++i, ++j) {
457                 styles[i] = citeStyles[j];
458         }
459
460         return styles;
461 }
462
463
464 vector<string> const
465 getNumericalStrings(string const & key,
466                     InfoMap const & map, vector<CiteStyle> const & styles)
467 {
468         if (map.empty()) {
469                 vector<string> vec(1);
470                 vec[0] = _("No database");
471                 return vec;
472         }
473         
474         vector<string> vec(styles.size());
475
476         string const author = getAbbreviatedAuthor(map, key);
477         string const year   = getYear(map, key);
478         
479         for (vector<string>::size_type i = 0; i != vec.size(); ++i) {
480                 string str;
481
482                 switch (styles[i]) {
483                 case CITE:
484                 case CITEP:
485                         str = "[#ID]";
486                         break;
487                         
488                 case CITET:
489                         str = author + " [#ID]";
490                         break;
491                         
492                 case CITEALT:
493                         str = author + " #ID";
494                         break;
495                         
496                 case CITEALP:
497                         str = "#ID";
498                         break;
499                         
500                 case CITEAUTHOR:
501                         str = author;
502                         break;
503                         
504                 case CITEYEAR:
505                         str = year;
506                         break;
507                         
508                 case CITEYEARPAR:
509                         str = "(" + year + ")";
510                         break;
511                 }
512
513                 vec[i] = str;
514         }
515         
516         return vec;
517 }
518
519
520 vector<string> const
521 getAuthorYearStrings(string const & key,
522                     InfoMap const & map, vector<CiteStyle> const & styles)
523 {
524         if (map.empty()) {
525                 vector<string> vec(1);
526                 vec[0] = _("No database");
527                 return vec;
528         }
529         
530         vector<string> vec(styles.size());
531
532         string const author = getAbbreviatedAuthor(map, key);
533         string const year   = getYear(map, key);
534         
535         for (vector<string>::size_type i = 0; i != vec.size(); ++i) {
536                 string str;
537
538                 switch (styles[i]) {
539                 case CITET:
540                         str = author + " (" + year + ")";
541                         break;
542                         
543                 case CITE:
544                 case CITEP:
545                         str = "(" + author + ", " + year + ")";
546                         break;
547                         
548                 case CITEALT:
549                         str = author + " " + year ;
550                         break;
551                         
552                 case CITEALP:
553                         str = author + ", " + year ;
554                         break;
555                         
556                 case CITEAUTHOR:
557                         str = author;
558                         break;
559                         
560                 case CITEYEAR:
561                         str = year;
562                         break;
563                         
564                 case CITEYEARPAR:
565                         str = "(" + year + ")";
566                         break;
567                 }
568
569                 vec[i] = str;
570         }
571         
572         return vec;
573 }
574
575 } // namespace biblio