]> git.lyx.org Git - lyx.git/blob - src/insets/InsetBibtex.cpp
Remove the .aux and .bbl files when we switch the citation engine or style.
[lyx.git] / src / insets / InsetBibtex.cpp
1 /**
2  * \file InsetBibtex.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author Richard Heck (BibTeX parser improvements)
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetBibtex.h"
15
16 #include "BiblioInfo.h"
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "Cursor.h"
20 #include "DispatchResult.h"
21 #include "Encoding.h"
22 #include "Exporter.h"
23 #include "Format.h"
24 #include "FuncRequest.h"
25 #include "FuncStatus.h"
26 #include "Language.h"
27 #include "LaTeXFeatures.h"
28 #include "output_xhtml.h"
29 #include "OutputParams.h"
30 #include "PDFOptions.h"
31 #include "TextClass.h"
32
33 #include "frontends/alert.h"
34
35 #include "support/convert.h"
36 #include "support/debug.h"
37 #include "support/docstream.h"
38 #include "support/ExceptionMessage.h"
39 #include "support/FileNameList.h"
40 #include "support/filetools.h"
41 #include "support/gettext.h"
42 #include "support/lstrings.h"
43 #include "support/os.h"
44 #include "support/Path.h"
45 #include "support/textutils.h"
46
47 #include <limits>
48
49 using namespace std;
50 using namespace lyx::support;
51
52 namespace lyx {
53
54 namespace Alert = frontend::Alert;
55 namespace os = support::os;
56
57
58 InsetBibtex::InsetBibtex(Buffer * buf, InsetCommandParams const & p)
59         : InsetCommand(buf, p)
60 {
61         buffer().invalidateBibinfoCache();
62         buffer().removeBiblioTempFiles();
63 }
64
65
66 InsetBibtex::~InsetBibtex()
67 {
68         if (isBufferLoaded()) {
69                 buffer().invalidateBibfileCache();
70                 buffer().removeBiblioTempFiles();
71         }
72 }
73
74
75 ParamInfo const & InsetBibtex::findInfo(string const & /* cmdName */)
76 {
77         static ParamInfo param_info_;
78         if (param_info_.empty()) {
79                 param_info_.add("btprint", ParamInfo::LATEX_OPTIONAL);
80                 param_info_.add("bibfiles", ParamInfo::LATEX_REQUIRED);
81                 param_info_.add("options", ParamInfo::LYX_INTERNAL);
82         }
83         return param_info_;
84 }
85
86
87 void InsetBibtex::doDispatch(Cursor & cur, FuncRequest & cmd)
88 {
89         switch (cmd.action()) {
90
91         case LFUN_INSET_EDIT:
92                 editDatabases();
93                 break;
94
95         case LFUN_INSET_MODIFY: {
96                 InsetCommandParams p(BIBTEX_CODE);
97                 try {
98                         if (!InsetCommand::string2params(to_utf8(cmd.argument()), p)) {
99                                 cur.noScreenUpdate();
100                                 break;
101                         }
102                 } catch (ExceptionMessage const & message) {
103                         if (message.type_ == WarningException) {
104                                 Alert::warning(message.title_, message.details_);
105                                 cur.noScreenUpdate();
106                         } else
107                                 throw message;
108                         break;
109                 }
110
111                 cur.recordUndo();
112                 setParams(p);
113                 buffer().invalidateBibfileCache();
114                 buffer().removeBiblioTempFiles();
115                 cur.forceBufferUpdate();
116                 break;
117         }
118
119         default:
120                 InsetCommand::doDispatch(cur, cmd);
121                 break;
122         }
123 }
124
125
126 bool InsetBibtex::getStatus(Cursor & cur, FuncRequest const & cmd,
127                 FuncStatus & flag) const
128 {
129         switch (cmd.action()) {
130         case LFUN_INSET_EDIT:
131                 flag.setEnabled(true);
132                 return true;
133
134         default:
135                 return InsetCommand::getStatus(cur, cmd, flag);
136         }
137 }
138
139
140 void InsetBibtex::editDatabases() const
141 {
142         vector<docstring> bibfilelist = getVectorFromString(getParam("bibfiles"));
143
144         if (bibfilelist.empty())
145                 return;
146
147         int nr_databases = bibfilelist.size();
148         if (nr_databases > 1) {
149                         docstring message = bformat(_("The BibTeX inset includes %1$s databases.\n"
150                                                        "If you proceed, all of them will be opened."),
151                                                         convert<docstring>(nr_databases));
152                         int const ret = Alert::prompt(_("Open Databases?"),
153                                 message, 0, 1, _("&Cancel"), _("&Proceed"));
154
155                         if (ret == 0)
156                                 return;
157         }
158
159         vector<docstring>::const_iterator it = bibfilelist.begin();
160         vector<docstring>::const_iterator en = bibfilelist.end();
161         for (; it != en; ++it) {
162                 FileName const bibfile = getBibTeXPath(*it, buffer());
163                 formats.edit(buffer(), bibfile,
164                      formats.getFormatFromFile(bibfile));
165         }
166 }
167
168
169 docstring InsetBibtex::screenLabel() const
170 {
171         return _("BibTeX Generated Bibliography");
172 }
173
174
175 docstring InsetBibtex::toolTip(BufferView const & /*bv*/, int /*x*/, int /*y*/) const
176 {
177         docstring item = from_ascii("* ");
178         docstring tip = _("Databases:") + "\n";
179         vector<docstring> bibfilelist = getVectorFromString(getParam("bibfiles"));
180
181         if (bibfilelist.empty()) {
182                 tip += item;
183                 tip += _("none");
184         } else {
185                 vector<docstring>::const_iterator it = bibfilelist.begin();
186                 vector<docstring>::const_iterator en = bibfilelist.end();
187                 for (; it != en; ++it) {
188                         tip += item;
189                         tip += *it + "\n";
190                 }
191         }
192
193         // Style-Options
194         bool toc = false;
195         docstring style = getParam("options"); // maybe empty! and with bibtotoc
196         docstring bibtotoc = from_ascii("bibtotoc");
197         if (prefixIs(style, bibtotoc)) {
198                 toc = true;
199                 if (contains(style, char_type(',')))
200                         style = split(style, bibtotoc, char_type(','));
201         }
202
203         tip += _("Style File:") +"\n";
204         tip += item;
205         if (!style.empty())
206                 tip += style;
207         else
208                 tip += _("none");
209
210         tip += "\n" + _("Lists:") + " ";
211         docstring btprint = getParam("btprint");
212                 if (btprint == "btPrintAll")
213                         tip += _("all references");
214                 else if (btprint == "btPrintNotCited")
215                         tip += _("all uncited references");
216                 else
217                         tip += _("all cited references");
218
219         if (toc) {
220                 tip += ", ";
221                 tip += _("included in TOC");
222         }
223
224         return tip;
225 }
226
227
228 static string normalizeName(Buffer const & buffer,
229         OutputParams const & runparams, string const & name, string const & ext)
230 {
231         string const fname = makeAbsPath(name, buffer.filePath()).absFileName();
232         if (FileName::isAbsolute(name) || !FileName(fname + ext).isReadableFile())
233                 return name;
234         if (!runparams.nice)
235                 return fname;
236
237         // FIXME UNICODE
238         return to_utf8(makeRelPath(from_utf8(fname),
239                                          from_utf8(buffer.masterBuffer()->filePath())));
240 }
241
242
243 void InsetBibtex::latex(otexstream & os, OutputParams const & runparams) const
244 {
245         // the sequence of the commands:
246         // 1. \bibliographystyle{style}
247         // 2. \addcontentsline{...} - if option bibtotoc set
248         // 3. \bibliography{database}
249         // and with bibtopic:
250         // 1. \bibliographystyle{style}
251         // 2. \begin{btSect}{database}
252         // 3. \btPrint{Cited|NotCited|All}
253         // 4. \end{btSect}
254
255         // Database(s)
256         // If we are processing the LaTeX file in a temp directory then
257         // copy the .bib databases to this temp directory, mangling their
258         // names in the process. Store this mangled name in the list of
259         // all databases.
260         // (We need to do all this because BibTeX *really*, *really*
261         // can't handle "files with spaces" and Windows users tend to
262         // use such filenames.)
263         // Otherwise, store the (maybe absolute) path to the original,
264         // unmangled database name.
265         vector<docstring> bibfilelist = getVectorFromString(getParam("bibfiles"));
266         vector<docstring>::const_iterator it = bibfilelist.begin();
267         vector<docstring>::const_iterator en = bibfilelist.end();
268         odocstringstream dbs;
269         bool didone = false;
270
271         // determine the export format
272         string const tex_format = flavor2format(runparams.flavor);
273
274         for (; it != en; ++it) {
275                 string utf8input = to_utf8(*it);
276                 string database =
277                         normalizeName(buffer(), runparams, utf8input, ".bib");
278                 FileName const try_in_file =
279                         makeAbsPath(database + ".bib", buffer().filePath());
280                 bool const not_from_texmf = try_in_file.isReadableFile();
281
282                 if (!runparams.inComment && !runparams.dryrun && !runparams.nice &&
283                     not_from_texmf) {
284                         // mangledFileName() needs the extension
285                         DocFileName const in_file = DocFileName(try_in_file);
286                         database = removeExtension(in_file.mangledFileName());
287                         FileName const out_file = makeAbsPath(database + ".bib",
288                                         buffer().masterBuffer()->temppath());
289                         bool const success = in_file.copyTo(out_file);
290                         if (!success) {
291                                 lyxerr << "Failed to copy '" << in_file
292                                        << "' to '" << out_file << "'"
293                                        << endl;
294                         }
295                 } else if (!runparams.inComment && runparams.nice && not_from_texmf) {
296                         runparams.exportdata->addExternalFile(tex_format, try_in_file, database + ".bib");
297                         if (!isValidLaTeXFileName(database)) {
298                                 frontend::Alert::warning(_("Invalid filename"),
299                                          _("The following filename will cause troubles "
300                                                "when running the exported file through LaTeX: ") +
301                                              from_utf8(database));
302                         }
303                         if (!isValidDVIFileName(database)) {
304                                 frontend::Alert::warning(_("Problematic filename for DVI"),
305                                          _("The following filename can cause troubles "
306                                                "when running the exported file through LaTeX "
307                                                    "and opening the resulting DVI: ") +
308                                              from_utf8(database), true);
309                         }
310                 }
311
312                 if (didone)
313                         dbs << ',';
314                 else
315                         didone = true;
316                 // FIXME UNICODE
317                 dbs << from_utf8(latex_path(database));
318         }
319         docstring const db_out = dbs.str();
320
321         // Post this warning only once.
322         static bool warned_about_spaces = false;
323         if (!warned_about_spaces &&
324             runparams.nice && db_out.find(' ') != docstring::npos) {
325                 warned_about_spaces = true;
326                 Alert::warning(_("Export Warning!"),
327                                _("There are spaces in the paths to your BibTeX databases.\n"
328                                               "BibTeX will be unable to find them."));
329         }
330         // Style-Options
331         string style = to_utf8(getParam("options")); // maybe empty! and with bibtotoc
332         string bibtotoc;
333         if (prefixIs(style, "bibtotoc")) {
334                 bibtotoc = "bibtotoc";
335                 if (contains(style, ','))
336                         style = split(style, bibtotoc, ',');
337         }
338
339         if (!style.empty()) {
340                 string base = normalizeName(buffer(), runparams, style, ".bst");
341                 FileName const try_in_file =
342                         makeAbsPath(base + ".bst", buffer().filePath());
343                 bool const not_from_texmf = try_in_file.isReadableFile();
344                 // If this style does not come from texmf and we are not
345                 // exporting to .tex copy it to the tmp directory.
346                 // This prevents problems with spaces and 8bit charcaters
347                 // in the file name.
348                 if (!runparams.inComment && !runparams.dryrun && !runparams.nice &&
349                     not_from_texmf) {
350                         // use new style name
351                         DocFileName const in_file = DocFileName(try_in_file);
352                         base = removeExtension(in_file.mangledFileName());
353                         FileName const out_file = makeAbsPath(base + ".bst",
354                                         buffer().masterBuffer()->temppath());
355                         bool const success = in_file.copyTo(out_file);
356                         if (!success) {
357                                 lyxerr << "Failed to copy '" << in_file
358                                        << "' to '" << out_file << "'"
359                                        << endl;
360                         }
361                 }
362                 // FIXME UNICODE
363                 os << "\\bibliographystyle{"
364                    << from_utf8(latex_path(normalizeName(buffer(), runparams, base, ".bst")))
365                    << "}\n";
366         }
367
368         // Post this warning only once.
369         static bool warned_about_bst_spaces = false;
370         if (!warned_about_bst_spaces && runparams.nice && contains(style, ' ')) {
371                 warned_about_bst_spaces = true;
372                 Alert::warning(_("Export Warning!"),
373                                _("There are spaces in the path to your BibTeX style file.\n"
374                                               "BibTeX will be unable to find it."));
375         }
376
377         if (!db_out.empty() && buffer().params().use_bibtopic) {
378                 os << "\\begin{btSect}{" << db_out << "}\n";
379                 docstring btprint = getParam("btprint");
380                 if (btprint.empty())
381                         // default
382                         btprint = from_ascii("btPrintCited");
383                 os << "\\" << btprint << "\n"
384                    << "\\end{btSect}\n";
385         }
386
387         // bibtotoc-Option
388         if (!bibtotoc.empty() && !buffer().params().use_bibtopic) {
389                 // set label for hyperref, see http://www.lyx.org/trac/ticket/6470
390                 if (buffer().params().pdfoptions().use_hyperref)
391                                 os << "\\phantomsection";
392                 if (buffer().params().documentClass().hasLaTeXLayout("chapter"))
393                         os << "\\addcontentsline{toc}{chapter}{\\bibname}";
394                 else if (buffer().params().documentClass().hasLaTeXLayout("section"))
395                         os << "\\addcontentsline{toc}{section}{\\refname}";
396         }
397
398         if (!db_out.empty() && !buffer().params().use_bibtopic) {
399                 docstring btprint = getParam("btprint");
400                 if (btprint == "btPrintAll") {
401                         os << "\\nocite{*}\n";
402                 }
403                 os << "\\bibliography{" << db_out << "}\n";
404         }
405 }
406
407
408 support::FileNameList InsetBibtex::getBibFiles() const
409 {
410         FileName path(buffer().filePath());
411         support::PathChanger p(path);
412
413         support::FileNameList vec;
414
415         vector<docstring> bibfilelist = getVectorFromString(getParam("bibfiles"));
416         vector<docstring>::const_iterator it = bibfilelist.begin();
417         vector<docstring>::const_iterator en = bibfilelist.end();
418         for (; it != en; ++it) {
419                 FileName const file = getBibTeXPath(*it, buffer());
420
421                 if (!file.empty())
422                         vec.push_back(file);
423                 else
424                         LYXERR0("Couldn't find " + to_utf8(*it) + " in InsetBibtex::getBibFiles()!");
425         }
426
427         return vec;
428
429 }
430
431 namespace {
432
433         // methods for parsing bibtex files
434
435         typedef map<docstring, docstring> VarMap;
436
437         /// remove whitespace characters, optionally a single comma,
438         /// and further whitespace characters from the stream.
439         /// @return true if a comma was found, false otherwise
440         ///
441         bool removeWSAndComma(ifdocstream & ifs) {
442                 char_type ch;
443
444                 if (!ifs)
445                         return false;
446
447                 // skip whitespace
448                 do {
449                         ifs.get(ch);
450                 } while (ifs && isSpace(ch));
451
452                 if (!ifs)
453                         return false;
454
455                 if (ch != ',') {
456                         ifs.putback(ch);
457                         return false;
458                 }
459
460                 // skip whitespace
461                 do {
462                         ifs.get(ch);
463                 } while (ifs && isSpace(ch));
464
465                 if (ifs) {
466                         ifs.putback(ch);
467                 }
468
469                 return true;
470         }
471
472
473         enum charCase {
474                 makeLowerCase,
475                 keepCase
476         };
477
478         /// remove whitespace characters, read characer sequence
479         /// not containing whitespace characters or characters in
480         /// delimChars, and remove further whitespace characters.
481         ///
482         /// @return true if a string of length > 0 could be read.
483         ///
484         bool readTypeOrKey(docstring & val, ifdocstream & ifs,
485                 docstring const & delimChars, docstring const & illegalChars,
486                 charCase chCase) {
487
488                 char_type ch;
489
490                 val.clear();
491
492                 if (!ifs)
493                         return false;
494
495                 // skip whitespace
496                 do {
497                         ifs.get(ch);
498                 } while (ifs && isSpace(ch));
499
500                 if (!ifs)
501                         return false;
502
503                 // read value
504                 bool legalChar = true;
505                 while (ifs && !isSpace(ch) &&
506                                                  delimChars.find(ch) == docstring::npos &&
507                                                  (legalChar = (illegalChars.find(ch) == docstring::npos))
508                                         )
509                 {
510                         if (chCase == makeLowerCase)
511                                 val += lowercase(ch);
512                         else
513                                 val += ch;
514                         ifs.get(ch);
515                 }
516
517                 if (!legalChar) {
518                         ifs.putback(ch);
519                         return false;
520                 }
521
522                 // skip whitespace
523                 while (ifs && isSpace(ch)) {
524                         ifs.get(ch);
525                 }
526
527                 if (ifs) {
528                         ifs.putback(ch);
529                 }
530
531                 return val.length() > 0;
532         }
533
534         /// read subsequent bibtex values that are delimited with a #-character.
535         /// Concatenate all parts and replace names with the associated string in
536         /// the variable strings.
537         /// @return true if reading was successfull (all single parts were delimited
538         /// correctly)
539         bool readValue(docstring & val, ifdocstream & ifs, const VarMap & strings) {
540
541                 char_type ch;
542
543                 val.clear();
544
545                 if (!ifs)
546                         return false;
547
548                 do {
549                         // skip whitespace
550                         do {
551                                 ifs.get(ch);
552                         } while (ifs && isSpace(ch));
553
554                         if (!ifs)
555                                 return false;
556
557                         // check for field type
558                         if (isDigitASCII(ch)) {
559
560                                 // read integer value
561                                 do {
562                                         val += ch;
563                                         ifs.get(ch);
564                                 } while (ifs && isDigitASCII(ch));
565
566                                 if (!ifs)
567                                         return false;
568
569                         } else if (ch == '"' || ch == '{') {
570                                 // set end delimiter
571                                 char_type delim = ch == '"' ? '"': '}';
572
573                                 // Skip whitespace
574                                 do {
575                                         ifs.get(ch);
576                                 } while (ifs && isSpace(ch));
577
578                                 if (!ifs)
579                                         return false;
580
581                                 // We now have the first non-whitespace character
582                                 // We'll collapse adjacent whitespace.
583                                 bool lastWasWhiteSpace = false;
584
585                                 // inside this delimited text braces must match.
586                                 // Thus we can have a closing delimiter only
587                                 // when nestLevel == 0
588                                 int nestLevel = 0;
589
590                                 while (ifs && (nestLevel > 0 || ch != delim)) {
591                                         if (isSpace(ch)) {
592                                                 lastWasWhiteSpace = true;
593                                                 ifs.get(ch);
594                                                 continue;
595                                         }
596                                         // We output the space only after we stop getting
597                                         // whitespace so as not to output any whitespace
598                                         // at the end of the value.
599                                         if (lastWasWhiteSpace) {
600                                                 lastWasWhiteSpace = false;
601                                                 val += ' ';
602                                         }
603
604                                         val += ch;
605
606                                         // update nesting level
607                                         switch (ch) {
608                                                 case '{':
609                                                         ++nestLevel;
610                                                         break;
611                                                 case '}':
612                                                         --nestLevel;
613                                                         if (nestLevel < 0)
614                                                                 return false;
615                                                         break;
616                                         }
617
618                                         if (ifs)
619                                                 ifs.get(ch);
620                                 }
621
622                                 if (!ifs)
623                                         return false;
624
625                                 // FIXME Why is this here?
626                                 ifs.get(ch);
627
628                                 if (!ifs)
629                                         return false;
630
631                         } else {
632
633                                 // reading a string name
634                                 docstring strName;
635
636                                 while (ifs && !isSpace(ch) && ch != '#' && ch != ',' && ch != '}' && ch != ')') {
637                                         strName += lowercase(ch);
638                                         ifs.get(ch);
639                                 }
640
641                                 if (!ifs)
642                                         return false;
643
644                                 // replace the string with its assigned value or
645                                 // discard it if it's not assigned
646                                 if (strName.length()) {
647                                         VarMap::const_iterator pos = strings.find(strName);
648                                         if (pos != strings.end()) {
649                                                 val += pos->second;
650                                         }
651                                 }
652                         }
653
654                         // skip WS
655                         while (ifs && isSpace(ch)) {
656                                 ifs.get(ch);
657                         }
658
659                         if (!ifs)
660                                 return false;
661
662                         // continue reading next value on concatenate with '#'
663                 } while (ch == '#');
664
665                 ifs.putback(ch);
666
667                 return true;
668         }
669 }
670
671
672 void InsetBibtex::collectBibKeys(InsetIterator const & /*di*/) const
673 {
674         parseBibTeXFiles();
675 }
676
677
678 void InsetBibtex::parseBibTeXFiles() const
679 {
680         // This bibtex parser is a first step to parse bibtex files
681         // more precisely.
682         //
683         // - it reads the whole bibtex entry and does a syntax check
684         //   (matching delimiters, missing commas,...
685         // - it recovers from errors starting with the next @-character
686         // - it reads @string definitions and replaces them in the
687         //   field values.
688         // - it accepts more characters in keys or value names than
689         //   bibtex does.
690         //
691         // Officially bibtex does only support ASCII, but in practice
692         // you can use the encoding of the main document as long as
693         // some elements like keys and names are pure ASCII. Therefore
694         // we convert the file from the buffer encoding.
695         // We don't restrict keys to ASCII in LyX, since our own
696         // InsetBibitem can generate non-ASCII keys, and nonstandard
697         // 8bit clean bibtex forks exist.
698
699         BiblioInfo keylist;
700
701         support::FileNameList const files = getBibFiles();
702         support::FileNameList::const_iterator it = files.begin();
703         support::FileNameList::const_iterator en = files.end();
704         for (; it != en; ++ it) {
705                 ifdocstream ifs(it->toFilesystemEncoding().c_str(),
706                         ios_base::in, buffer().params().encoding().iconvName());
707
708                 char_type ch;
709                 VarMap strings;
710
711                 while (ifs) {
712
713                         ifs.get(ch);
714                         if (!ifs)
715                                 break;
716
717                         if (ch != '@')
718                                 continue;
719
720                         docstring entryType;
721
722                         if (!readTypeOrKey(entryType, ifs, from_ascii("{("), docstring(), makeLowerCase)) {
723                                 lyxerr << "BibTeX Parser: Error reading entry type." << std::endl;
724                                 continue;
725                         }
726
727                         if (!ifs) {
728                                 lyxerr << "BibTeX Parser: Unexpected end of file." << std::endl;
729                                 continue;
730                         }
731
732                         if (entryType == from_ascii("comment")) {
733                                 ifs.ignore(numeric_limits<int>::max(), '\n');
734                                 continue;
735                         }
736
737                         ifs.get(ch);
738                         if (!ifs) {
739                                 lyxerr << "BibTeX Parser: Unexpected end of file." << std::endl;
740                                 break;
741                         }
742
743                         if ((ch != '(') && (ch != '{')) {
744                                 lyxerr << "BibTeX Parser: Invalid entry delimiter." << std::endl;
745                                 ifs.putback(ch);
746                                 continue;
747                         }
748
749                         // process the entry
750                         if (entryType == from_ascii("string")) {
751
752                                 // read string and add it to the strings map
753                                 // (or replace it's old value)
754                                 docstring name;
755                                 docstring value;
756
757                                 if (!readTypeOrKey(name, ifs, from_ascii("="), from_ascii("#{}(),"), makeLowerCase)) {
758                                         lyxerr << "BibTeX Parser: Error reading string name." << std::endl;
759                                         continue;
760                                 }
761
762                                 if (!ifs) {
763                                         lyxerr << "BibTeX Parser: Unexpected end of file." << std::endl;
764                                         continue;
765                                 }
766
767                                 // next char must be an equal sign
768                                 ifs.get(ch);
769                                 if (!ifs || ch != '=') {
770                                         lyxerr << "BibTeX Parser: No `=' after string name: " <<
771                                                         name << "." << std::endl;
772                                         continue;
773                                 }
774
775                                 if (!readValue(value, ifs, strings)) {
776                                         lyxerr << "BibTeX Parser: Unable to read value for string: " <<
777                                                         name << "." << std::endl;
778                                         continue;
779                                 }
780
781                                 strings[name] = value;
782
783                         } else if (entryType == from_ascii("preamble")) {
784
785                                 // preamble definitions are discarded.
786                                 // can they be of any use in lyx?
787                                 docstring value;
788
789                                 if (!readValue(value, ifs, strings)) {
790                                         lyxerr << "BibTeX Parser: Unable to read preamble value." << std::endl;
791                                         continue;
792                                 }
793
794                         } else {
795
796                                 // Citation entry. Try to read the key.
797                                 docstring key;
798
799                                 if (!readTypeOrKey(key, ifs, from_ascii(","), from_ascii("}"), keepCase)) {
800                                         lyxerr << "BibTeX Parser: Unable to read key for entry type:" << 
801                                                         entryType << "." << std::endl;
802                                         continue;
803                                 }
804
805                                 if (!ifs) {
806                                         lyxerr << "BibTeX Parser: Unexpected end of file." << std::endl;
807                                         continue;
808                                 }
809
810                                 /////////////////////////////////////////////
811                                 // now we have a key, so we will add an entry
812                                 // (even if it's empty, as bibtex does)
813                                 //
814                                 // we now read the field = value pairs.
815                                 // all items must be separated by a comma. If
816                                 // it is missing the scanning of this entry is
817                                 // stopped and the next is searched.
818                                 docstring name;
819                                 docstring value;
820                                 docstring data;
821                                 BibTeXInfo keyvalmap(key, entryType);
822
823                                 bool readNext = removeWSAndComma(ifs);
824
825                                 while (ifs && readNext) {
826
827                                         // read field name
828                                         if (!readTypeOrKey(name, ifs, from_ascii("="),
829                                                            from_ascii("{}(),"), makeLowerCase) || !ifs)
830                                                 break;
831
832                                         // next char must be an equal sign
833                                         // FIXME Whitespace??
834                                         ifs.get(ch);
835                                         if (!ifs) {
836                                                 lyxerr << "BibTeX Parser: Unexpected end of file." << std::endl;
837                                                 break;
838                                         }
839                                         if (ch != '=') {
840                                                 lyxerr << "BibTeX Parser: Missing `=' after field name: " <<
841                                                                 name << ", for key: " << key << "." << std::endl;
842                                                 ifs.putback(ch);
843                                                 break;
844                                         }
845
846                                         // read field value
847                                         if (!readValue(value, ifs, strings)) {
848                                                 lyxerr << "BibTeX Parser: Unable to read value for field: " <<
849                                                                 name << ", for key: " << key << "." << std::endl;
850                                                 break;
851                                         }
852
853                                         keyvalmap[name] = value;
854                                         data += "\n\n" + value;
855                                         keylist.addFieldName(name);
856                                         readNext = removeWSAndComma(ifs);
857                                 }
858
859                                 // add the new entry
860                                 keylist.addEntryType(entryType);
861                                 keyvalmap.setAllData(data);
862                                 keylist[key] = keyvalmap;
863                         } //< else (citation entry)
864                 } //< searching '@'
865         } //< for loop over files
866
867         buffer().addBiblioInfo(keylist);
868 }
869
870
871 FileName InsetBibtex::getBibTeXPath(docstring const & filename, Buffer const & buf)
872 {
873         string texfile = changeExtension(to_utf8(filename), "bib");
874         // note that, if the filename can be found directly from the path,
875         // findtexfile will just return a FileName object for that path.
876         FileName file(findtexfile(texfile, "bib"));
877         if (file.empty())
878                 file = FileName(makeAbsPath(texfile, buf.filePath()));
879         return file;
880 }
881  
882
883 bool InsetBibtex::addDatabase(docstring const & db)
884 {
885         docstring bibfiles = getParam("bibfiles");
886         if (tokenPos(bibfiles, ',', db) != -1)
887                 return false;
888         if (!bibfiles.empty())
889                 bibfiles += ',';
890         setParam("bibfiles", bibfiles + db);
891         return true;
892 }
893
894
895 bool InsetBibtex::delDatabase(docstring const & db)
896 {
897         docstring bibfiles = getParam("bibfiles");
898         if (contains(bibfiles, db)) {
899                 int const n = tokenPos(bibfiles, ',', db);
900                 docstring bd = db;
901                 if (n > 0) {
902                         // this is not the first database
903                         docstring tmp = ',' + bd;
904                         setParam("bibfiles", subst(bibfiles, tmp, docstring()));
905                 } else if (n == 0)
906                         // this is the first (or only) database
907                         setParam("bibfiles", split(bibfiles, bd, ','));
908                 else
909                         return false;
910         }
911         return true;
912 }
913
914
915 void InsetBibtex::validate(LaTeXFeatures & features) const
916 {
917         if (features.bufferParams().use_bibtopic)
918                 features.require("bibtopic");
919         // FIXME XHTML
920         // It'd be better to be able to get this from an InsetLayout, but at present
921         // InsetLayouts do not seem really to work for things that aren't InsetTexts.
922         if (features.runparams().flavor == OutputParams::HTML)
923                 features.addPreambleSnippet("<style type=\"text/css\">\n"
924                         "div.bibtexentry { margin-left: 2em; text-indent: -2em; }\n"
925                         "span.bibtexlabel:before{ content: \"[\"; }\n"
926                         "span.bibtexlabel:after{ content: \"] \"; }\n"
927                         "</style>");
928 }
929
930
931 // FIXME
932 // docstring InsetBibtex::entriesAsXHTML(vector<docstring> const & entries)
933 // And then here just: entriesAsXHTML(buffer().masterBibInfo().citedEntries())
934 docstring InsetBibtex::xhtml(XHTMLStream & xs, OutputParams const &) const
935 {
936         BiblioInfo const & bibinfo = buffer().masterBibInfo();
937         vector<docstring> const & cites = bibinfo.citedEntries();
938         CiteEngine const engine = buffer().params().citeEngine();
939         bool const numbers =
940                 (engine == ENGINE_BASIC || engine == ENGINE_NATBIB_NUMERICAL);
941
942         docstring reflabel = from_ascii("References");
943         Language const * l = buffer().params().language;
944         if (l)
945                 reflabel = translateIfPossible(reflabel, l->code());
946
947         xs << html::StartTag("h2", "class='bibtex'")
948                 << reflabel
949                 << html::EndTag("h2")
950                 << html::StartTag("div", "class='bibtex'");
951
952         // Now we loop over the entries
953         vector<docstring>::const_iterator vit = cites.begin();
954         vector<docstring>::const_iterator const ven = cites.end();
955         for (; vit != ven; ++vit) {
956                 BiblioInfo::const_iterator const biit = bibinfo.find(*vit);
957                 if (biit == bibinfo.end())
958                         continue;
959                 BibTeXInfo const & entry = biit->second;
960                 xs << html::StartTag("div", "class='bibtexentry'");
961                 // FIXME XHTML
962                 // The same name/id problem we have elsewhere.
963                 string const attr = "id='" + to_utf8(entry.key()) + "'";
964                 xs << html::CompTag("a", attr);
965                 docstring citekey;
966                 if (numbers)
967                         citekey = entry.citeNumber();
968                 else {
969                         docstring const auth = entry.getAbbreviatedAuthor();
970                         // we do it this way so as to access the xref, if necessary
971                         // note that this also gives us the modifier
972                         docstring const year = bibinfo.getYear(*vit, true);
973                         if (!auth.empty() && !year.empty())
974                                 citekey = auth + ' ' + year;
975                 }
976                 if (citekey.empty()) {
977                         citekey = entry.label();
978                         if (citekey.empty())
979                                 citekey = entry.key();
980                 }
981                 xs << html::StartTag("span", "class='bibtexlabel'")
982                         << citekey
983                         << html::EndTag("span");
984                 // FIXME Right now, we are calling BibInfo::getInfo on the key,
985                 // which will give us all the cross-referenced info. But for every
986                 // entry, so there's a lot of repitition. This should be fixed.
987                 xs << html::StartTag("span", "class='bibtexinfo'")
988                    << XHTMLStream::ESCAPE_AND
989                    << bibinfo.getInfo(entry.key(), buffer(), true)
990                    << html::EndTag("span")
991                    << html::EndTag("div")
992                    << html::CR();
993         }
994         xs << html::EndTag("div");
995         return docstring();
996 }
997
998
999 string InsetBibtex::contextMenuName() const
1000 {
1001         return "context-bibtex";
1002 }
1003
1004
1005 } // namespace lyx