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