]> git.lyx.org Git - features.git/blob - src/Buffer.cpp
32cfcf296db18b59c98d6956fd956c041440c512
[features.git] / src / Buffer.cpp
1 /**
2  * \file Buffer.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Stefan Schimanski
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "Buffer.h"
15
16 #include "Author.h"
17 #include "LayoutFile.h"
18 #include "BiblioInfo.h"
19 #include "BranchList.h"
20 #include "buffer_funcs.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "Bullet.h"
24 #include "Chktex.h"
25 #include "Converter.h"
26 #include "Counters.h"
27 #include "DispatchResult.h"
28 #include "DocIterator.h"
29 #include "Encoding.h"
30 #include "ErrorList.h"
31 #include "Exporter.h"
32 #include "Format.h"
33 #include "FuncRequest.h"
34 #include "FuncStatus.h"
35 #include "IndicesList.h"
36 #include "InsetIterator.h"
37 #include "InsetList.h"
38 #include "Language.h"
39 #include "LaTeXFeatures.h"
40 #include "LaTeX.h"
41 #include "Layout.h"
42 #include "Lexer.h"
43 #include "LyXAction.h"
44 #include "LyX.h"
45 #include "LyXRC.h"
46 #include "LyXVC.h"
47 #include "output_docbook.h"
48 #include "output.h"
49 #include "output_latex.h"
50 #include "output_xhtml.h"
51 #include "output_plaintext.h"
52 #include "paragraph_funcs.h"
53 #include "Paragraph.h"
54 #include "ParagraphParameters.h"
55 #include "ParIterator.h"
56 #include "PDFOptions.h"
57 #include "SpellChecker.h"
58 #include "sgml.h"
59 #include "TexRow.h"
60 #include "TexStream.h"
61 #include "Text.h"
62 #include "TextClass.h"
63 #include "TocBackend.h"
64 #include "Undo.h"
65 #include "VCBackend.h"
66 #include "version.h"
67 #include "WordLangTuple.h"
68 #include "WordList.h"
69
70 #include "insets/InsetBibitem.h"
71 #include "insets/InsetBibtex.h"
72 #include "insets/InsetBranch.h"
73 #include "insets/InsetInclude.h"
74 #include "insets/InsetText.h"
75
76 #include "mathed/MacroTable.h"
77 #include "mathed/MathMacroTemplate.h"
78 #include "mathed/MathSupport.h"
79
80 #include "frontends/alert.h"
81 #include "frontends/Delegates.h"
82 #include "frontends/WorkAreaManager.h"
83
84 #include "graphics/Previews.h"
85
86 #include "support/lassert.h"
87 #include "support/convert.h"
88 #include "support/debug.h"
89 #include "support/docstring_list.h"
90 #include "support/ExceptionMessage.h"
91 #include "support/FileName.h"
92 #include "support/FileNameList.h"
93 #include "support/filetools.h"
94 #include "support/ForkedCalls.h"
95 #include "support/gettext.h"
96 #include "support/gzstream.h"
97 #include "support/lstrings.h"
98 #include "support/lyxalgo.h"
99 #include "support/os.h"
100 #include "support/Package.h"
101 #include "support/Path.h"
102 #include "support/Systemcall.h"
103 #include "support/textutils.h"
104 #include "support/types.h"
105
106 #include <boost/bind.hpp>
107 #include <boost/shared_ptr.hpp>
108
109 #include <algorithm>
110 #include <fstream>
111 #include <iomanip>
112 #include <map>
113 #include <set>
114 #include <sstream>
115 #include <stack>
116 #include <vector>
117
118 using namespace std;
119 using namespace lyx::support;
120
121 namespace lyx {
122
123 namespace Alert = frontend::Alert;
124 namespace os = support::os;
125
126 namespace {
127
128 // Do not remove the comment below, so we get merge conflict in
129 // independent branches. Instead add your own.
130 int const LYX_FORMAT = 362;  // jspitzm: support applemac encoding
131
132 typedef map<string, bool> DepClean;
133 typedef map<docstring, pair<InsetLabel const *, Buffer::References> > RefCache;
134
135 void showPrintError(string const & name)
136 {
137         docstring str = bformat(_("Could not print the document %1$s.\n"
138                                             "Check that your printer is set up correctly."),
139                              makeDisplayPath(name, 50));
140         Alert::error(_("Print document failed"), str);
141 }
142
143 } // namespace anon
144
145 class BufferSet : public std::set<Buffer const *> {};
146
147 class Buffer::Impl
148 {
149 public:
150         Impl(Buffer & parent, FileName const & file, bool readonly);
151
152         ~Impl()
153         {
154                 if (wa_) {
155                         wa_->closeAll();
156                         delete wa_;
157                 }
158                 delete inset;
159         }
160
161         BufferParams params;
162         LyXVC lyxvc;
163         FileName temppath;
164         mutable TexRow texrow;
165
166         /// need to regenerate .tex?
167         DepClean dep_clean;
168
169         /// is save needed?
170         mutable bool lyx_clean;
171
172         /// is autosave needed?
173         mutable bool bak_clean;
174
175         /// is this a unnamed file (New...)?
176         bool unnamed;
177
178         /// buffer is r/o
179         bool read_only;
180
181         /// name of the file the buffer is associated with.
182         FileName filename;
183
184         /** Set to true only when the file is fully loaded.
185          *  Used to prevent the premature generation of previews
186          *  and by the citation inset.
187          */
188         bool file_fully_loaded;
189
190         ///
191         mutable TocBackend toc_backend;
192
193         /// macro tables
194         typedef pair<DocIterator, MacroData> ScopeMacro;
195         typedef map<DocIterator, ScopeMacro> PositionScopeMacroMap;
196         typedef map<docstring, PositionScopeMacroMap> NamePositionScopeMacroMap;
197         /// map from the macro name to the position map,
198         /// which maps the macro definition position to the scope and the MacroData.
199         NamePositionScopeMacroMap macros;
200         bool macro_lock;
201
202         /// positions of child buffers in the buffer
203         typedef map<Buffer const * const, DocIterator> BufferPositionMap;
204         typedef pair<DocIterator, Buffer const *> ScopeBuffer;
205         typedef map<DocIterator, ScopeBuffer> PositionScopeBufferMap;
206         /// position of children buffers in this buffer
207         BufferPositionMap children_positions;
208         /// map from children inclusion positions to their scope and their buffer
209         PositionScopeBufferMap position_to_children;
210
211         /// Container for all sort of Buffer dependant errors.
212         map<string, ErrorList> errorLists;
213
214         /// timestamp and checksum used to test if the file has been externally
215         /// modified. (Used to properly enable 'File->Revert to saved', bug 4114).
216         time_t timestamp_;
217         unsigned long checksum_;
218
219         ///
220         frontend::WorkAreaManager * wa_;
221
222         ///
223         Undo undo_;
224
225         /// A cache for the bibfiles (including bibfiles of loaded child
226         /// documents), needed for appropriate update of natbib labels.
227         mutable support::FileNameList bibfilesCache_;
228
229         // FIXME The caching mechanism could be improved. At present, we have a
230         // cache for each Buffer, that caches all the bibliography info for that
231         // Buffer. A more efficient solution would be to have a global cache per
232         // file, and then to construct the Buffer's bibinfo from that.
233         /// A cache for bibliography info
234         mutable BiblioInfo bibinfo_;
235         /// whether the bibinfo cache is valid
236         bool bibinfoCacheValid_;
237         /// Cache of timestamps of .bib files
238         map<FileName, time_t> bibfileStatus_;
239
240         mutable RefCache ref_cache_;
241
242         /// our Text that should be wrapped in an InsetText
243         InsetText * inset;
244
245         /// This is here to force the test to be done whenever parent_buffer
246         /// is accessed.
247         Buffer const * parent() const { 
248                 // if parent_buffer is not loaded, then it has been unloaded,
249                 // which means that parent_buffer is an invalid pointer. So we
250                 // set it to null in that case.
251                 if (!theBufferList().isLoaded(parent_buffer))
252                         parent_buffer = 0;
253                 return parent_buffer; 
254         }
255         ///
256         void setParent(Buffer const * pb) { parent_buffer = pb; }
257 private:
258         /// So we can force access via the accessors.
259         mutable Buffer const * parent_buffer;
260 };
261
262
263 /// Creates the per buffer temporary directory
264 static FileName createBufferTmpDir()
265 {
266         static int count;
267         // We are in our own directory.  Why bother to mangle name?
268         // In fact I wrote this code to circumvent a problematic behaviour
269         // (bug?) of EMX mkstemp().
270         FileName tmpfl(package().temp_dir().absFilename() + "/lyx_tmpbuf" +
271                 convert<string>(count++));
272
273         if (!tmpfl.createDirectory(0777)) {
274                 throw ExceptionMessage(WarningException, _("Disk Error: "), bformat(
275                         _("LyX could not create the temporary directory '%1$s' (Disk is full maybe?)"),
276                         from_utf8(tmpfl.absFilename())));
277         }
278         return tmpfl;
279 }
280
281
282 Buffer::Impl::Impl(Buffer & parent, FileName const & file, bool readonly_)
283         : lyx_clean(true), bak_clean(true), unnamed(false),
284           read_only(readonly_), filename(file), file_fully_loaded(false),
285           toc_backend(&parent), macro_lock(false), timestamp_(0),
286           checksum_(0), wa_(0), undo_(parent), bibinfoCacheValid_(false),
287           parent_buffer(0)
288 {
289         temppath = createBufferTmpDir();
290         lyxvc.setBuffer(&parent);
291         if (use_gui)
292                 wa_ = new frontend::WorkAreaManager;
293 }
294
295
296 Buffer::Buffer(string const & file, bool readonly)
297         : d(new Impl(*this, FileName(file), readonly)), gui_(0)
298 {
299         LYXERR(Debug::INFO, "Buffer::Buffer()");
300
301         d->inset = new InsetText(*this);
302         d->inset->setAutoBreakRows(true);
303         d->inset->getText(0)->setMacrocontextPosition(par_iterator_begin());
304 }
305
306
307 Buffer::~Buffer()
308 {
309         LYXERR(Debug::INFO, "Buffer::~Buffer()");
310         // here the buffer should take care that it is
311         // saved properly, before it goes into the void.
312
313         // GuiView already destroyed
314         gui_ = 0;
315
316         if (d->unnamed && d->filename.extension() == "internal") {
317                 // No need to do additional cleanups for internal buffer.
318                 delete d;
319                 return;
320         }
321
322         // loop over children
323         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
324         Impl::BufferPositionMap::iterator end = d->children_positions.end();
325         for (; it != end; ++it) {
326                 Buffer * child = const_cast<Buffer *>(it->first);
327                 // The child buffer might have been closed already.
328                 if (theBufferList().isLoaded(child))
329                         theBufferList().releaseChild(this, child);
330         }
331
332         // clear references to children in macro tables
333         d->children_positions.clear();
334         d->position_to_children.clear();
335
336         if (!d->temppath.destroyDirectory()) {
337                 Alert::warning(_("Could not remove temporary directory"),
338                         bformat(_("Could not remove the temporary directory %1$s"),
339                         from_utf8(d->temppath.absFilename())));
340         }
341
342         // Remove any previewed LaTeX snippets associated with this buffer.
343         thePreviews().removeLoader(*this);
344
345         delete d;
346 }
347
348
349 void Buffer::changed() const
350 {
351         if (d->wa_)
352                 d->wa_->redrawAll();
353 }
354
355
356 frontend::WorkAreaManager & Buffer::workAreaManager() const
357 {
358         LASSERT(d->wa_, /**/);
359         return *d->wa_;
360 }
361
362
363 Text & Buffer::text() const
364 {
365         return d->inset->text();
366 }
367
368
369 Inset & Buffer::inset() const
370 {
371         return *d->inset;
372 }
373
374
375 BufferParams & Buffer::params()
376 {
377         return d->params;
378 }
379
380
381 BufferParams const & Buffer::params() const
382 {
383         return d->params;
384 }
385
386
387 ParagraphList & Buffer::paragraphs()
388 {
389         return text().paragraphs();
390 }
391
392
393 ParagraphList const & Buffer::paragraphs() const
394 {
395         return text().paragraphs();
396 }
397
398
399 LyXVC & Buffer::lyxvc()
400 {
401         return d->lyxvc;
402 }
403
404
405 LyXVC const & Buffer::lyxvc() const
406 {
407         return d->lyxvc;
408 }
409
410
411 string const Buffer::temppath() const
412 {
413         return d->temppath.absFilename();
414 }
415
416
417 TexRow & Buffer::texrow()
418 {
419         return d->texrow;
420 }
421
422
423 TexRow const & Buffer::texrow() const
424 {
425         return d->texrow;
426 }
427
428
429 TocBackend & Buffer::tocBackend() const
430 {
431         return d->toc_backend;
432 }
433
434
435 Undo & Buffer::undo()
436 {
437         return d->undo_;
438 }
439
440
441 string Buffer::latexName(bool const no_path) const
442 {
443         FileName latex_name = makeLatexName(d->filename);
444         return no_path ? latex_name.onlyFileName()
445                 : latex_name.absFilename();
446 }
447
448
449 string Buffer::logName(LogType * type) const
450 {
451         string const filename = latexName(false);
452
453         if (filename.empty()) {
454                 if (type)
455                         *type = latexlog;
456                 return string();
457         }
458
459         string const path = temppath();
460
461         FileName const fname(addName(temppath(),
462                                      onlyFilename(changeExtension(filename,
463                                                                   ".log"))));
464
465         // FIXME: how do we know this is the name of the build log?
466         FileName const bname(
467                 addName(path, onlyFilename(
468                         changeExtension(filename,
469                                         formats.extension(bufferFormat()) + ".out"))));
470
471         // Also consider the master buffer log file
472         FileName masterfname = fname;
473         LogType mtype;
474         if (masterBuffer() != this) {
475                 string const mlogfile = masterBuffer()->logName(&mtype);
476                 masterfname = FileName(mlogfile);
477         }
478
479         // If no Latex log or Build log is newer, show Build log
480         if (bname.exists() &&
481             ((!fname.exists() && !masterfname.exists())
482              || (fname.lastModified() < bname.lastModified()
483                  && masterfname.lastModified() < bname.lastModified()))) {
484                 LYXERR(Debug::FILES, "Log name calculated as: " << bname);
485                 if (type)
486                         *type = buildlog;
487                 return bname.absFilename();
488         // If we have a newer master file log or only a master log, show this
489         } else if (fname != masterfname
490                    && (!fname.exists() && (masterfname.exists()
491                    || fname.lastModified() < masterfname.lastModified()))) {
492                 LYXERR(Debug::FILES, "Log name calculated as: " << masterfname);
493                 if (type)
494                         *type = mtype;
495                 return masterfname.absFilename();
496         }
497         LYXERR(Debug::FILES, "Log name calculated as: " << fname);
498         if (type)
499                         *type = latexlog;
500         return fname.absFilename();
501 }
502
503
504 void Buffer::setReadonly(bool const flag)
505 {
506         if (d->read_only != flag) {
507                 d->read_only = flag;
508                 setReadOnly(flag);
509         }
510 }
511
512
513 void Buffer::setFileName(string const & newfile)
514 {
515         d->filename = makeAbsPath(newfile);
516         setReadonly(d->filename.isReadOnly());
517         updateTitles();
518 }
519
520
521 int Buffer::readHeader(Lexer & lex)
522 {
523         int unknown_tokens = 0;
524         int line = -1;
525         int begin_header_line = -1;
526
527         // Initialize parameters that may be/go lacking in header:
528         params().branchlist().clear();
529         params().preamble.erase();
530         params().options.erase();
531         params().master.erase();
532         params().float_placement.erase();
533         params().paperwidth.erase();
534         params().paperheight.erase();
535         params().leftmargin.erase();
536         params().rightmargin.erase();
537         params().topmargin.erase();
538         params().bottommargin.erase();
539         params().headheight.erase();
540         params().headsep.erase();
541         params().footskip.erase();
542         params().columnsep.erase();
543         params().fontsCJK.erase();
544         params().listings_params.clear();
545         params().clearLayoutModules();
546         params().clearRemovedModules();
547         params().pdfoptions().clear();
548         params().indiceslist().clear();
549         params().backgroundcolor = lyx::rgbFromHexName("#ffffff");
550
551         for (int i = 0; i < 4; ++i) {
552                 params().user_defined_bullet(i) = ITEMIZE_DEFAULTS[i];
553                 params().temp_bullet(i) = ITEMIZE_DEFAULTS[i];
554         }
555
556         ErrorList & errorList = d->errorLists["Parse"];
557
558         while (lex.isOK()) {
559                 string token;
560                 lex >> token;
561
562                 if (token.empty())
563                         continue;
564
565                 if (token == "\\end_header")
566                         break;
567
568                 ++line;
569                 if (token == "\\begin_header") {
570                         begin_header_line = line;
571                         continue;
572                 }
573
574                 LYXERR(Debug::PARSER, "Handling document header token: `"
575                                       << token << '\'');
576
577                 string unknown = params().readToken(lex, token, d->filename.onlyPath());
578                 if (!unknown.empty()) {
579                         if (unknown[0] != '\\' && token == "\\textclass") {
580                                 Alert::warning(_("Unknown document class"),
581                        bformat(_("Using the default document class, because the "
582                                               "class %1$s is unknown."), from_utf8(unknown)));
583                         } else {
584                                 ++unknown_tokens;
585                                 docstring const s = bformat(_("Unknown token: "
586                                                                         "%1$s %2$s\n"),
587                                                          from_utf8(token),
588                                                          lex.getDocString());
589                                 errorList.push_back(ErrorItem(_("Document header error"),
590                                         s, -1, 0, 0));
591                         }
592                 }
593         }
594         if (begin_header_line) {
595                 docstring const s = _("\\begin_header is missing");
596                 errorList.push_back(ErrorItem(_("Document header error"),
597                         s, -1, 0, 0));
598         }
599
600         params().makeDocumentClass();
601
602         return unknown_tokens;
603 }
604
605
606 // Uwe C. Schroeder
607 // changed to be public and have one parameter
608 // Returns true if "\end_document" is not read (Asger)
609 bool Buffer::readDocument(Lexer & lex)
610 {
611         ErrorList & errorList = d->errorLists["Parse"];
612         errorList.clear();
613
614         if (!lex.checkFor("\\begin_document")) {
615                 docstring const s = _("\\begin_document is missing");
616                 errorList.push_back(ErrorItem(_("Document header error"),
617                         s, -1, 0, 0));
618         }
619
620         // we are reading in a brand new document
621         LASSERT(paragraphs().empty(), /**/);
622
623         readHeader(lex);
624
625         if (params().outputChanges) {
626                 bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
627                 bool xcolorulem = LaTeXFeatures::isAvailable("ulem") &&
628                                   LaTeXFeatures::isAvailable("xcolor");
629
630                 if (!dvipost && !xcolorulem) {
631                         Alert::warning(_("Changes not shown in LaTeX output"),
632                                        _("Changes will not be highlighted in LaTeX output, "
633                                          "because neither dvipost nor xcolor/ulem are installed.\n"
634                                          "Please install these packages or redefine "
635                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
636                 } else if (!xcolorulem) {
637                         Alert::warning(_("Changes not shown in LaTeX output"),
638                                        _("Changes will not be highlighted in LaTeX output "
639                                          "when using pdflatex, because xcolor and ulem are not installed.\n"
640                                          "Please install both packages or redefine "
641                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
642                 }
643         }
644
645         if (!params().master.empty()) {
646                 FileName const master_file = makeAbsPath(params().master,
647                            onlyPath(absFileName()));
648                 if (isLyXFilename(master_file.absFilename())) {
649                         Buffer * master = 
650                                 checkAndLoadLyXFile(master_file, true);
651                         if (master) {
652                                 // necessary e.g. after a reload
653                                 // to re-register the child (bug 5873)
654                                 // FIXME: clean up updateMacros (here, only
655                                 // child registering is needed).
656                                 master->updateMacros();
657                                 // set master as master buffer, but only
658                                 // if we are a real child
659                                 if (master->isChild(this))
660                                         setParent(master);
661                                 // if the master is not fully loaded
662                                 // it is probably just loading this
663                                 // child. No warning needed then.
664                                 else if (master->isFullyLoaded())
665                                         LYXERR0("The master '"
666                                                 << params().master
667                                                 << "' assigned to this document ("
668                                                 << absFileName()
669                                                 << ") does not include "
670                                                 "this document. Ignoring the master assignment.");
671                         }
672                 }
673         }
674
675         // read main text
676         bool const res = text().read(*this, lex, errorList, d->inset);
677
678         updateMacros();
679         updateMacroInstances();
680         return res;
681 }
682
683
684 // needed to insert the selection
685 void Buffer::insertStringAsLines(ParagraphList & pars,
686         pit_type & pit, pos_type & pos,
687         Font const & fn, docstring const & str, bool autobreakrows)
688 {
689         Font font = fn;
690
691         // insert the string, don't insert doublespace
692         bool space_inserted = true;
693         for (docstring::const_iterator cit = str.begin();
694             cit != str.end(); ++cit) {
695                 Paragraph & par = pars[pit];
696                 if (*cit == '\n') {
697                         if (autobreakrows && (!par.empty() || par.allowEmpty())) {
698                                 breakParagraph(params(), pars, pit, pos,
699                                                par.layout().isEnvironment());
700                                 ++pit;
701                                 pos = 0;
702                                 space_inserted = true;
703                         } else {
704                                 continue;
705                         }
706                         // do not insert consecutive spaces if !free_spacing
707                 } else if ((*cit == ' ' || *cit == '\t') &&
708                            space_inserted && !par.isFreeSpacing()) {
709                         continue;
710                 } else if (*cit == '\t') {
711                         if (!par.isFreeSpacing()) {
712                                 // tabs are like spaces here
713                                 par.insertChar(pos, ' ', font, params().trackChanges);
714                                 ++pos;
715                                 space_inserted = true;
716                         } else {
717                                 par.insertChar(pos, *cit, font, params().trackChanges);
718                                 ++pos;
719                                 space_inserted = true;
720                         }
721                 } else if (!isPrintable(*cit)) {
722                         // Ignore unprintables
723                         continue;
724                 } else {
725                         // just insert the character
726                         par.insertChar(pos, *cit, font, params().trackChanges);
727                         ++pos;
728                         space_inserted = (*cit == ' ');
729                 }
730
731         }
732 }
733
734
735 bool Buffer::readString(string const & s)
736 {
737         params().compressed = false;
738
739         // remove dummy empty par
740         paragraphs().clear();
741         Lexer lex;
742         istringstream is(s);
743         lex.setStream(is);
744         FileName const name = FileName::tempName("Buffer_readString");
745         switch (readFile(lex, name, true)) {
746         case failure:
747                 return false;
748         case wrongversion: {
749                 // We need to call lyx2lyx, so write the input to a file
750                 ofstream os(name.toFilesystemEncoding().c_str());
751                 os << s;
752                 os.close();
753                 return readFile(name);
754         }
755         case success:
756                 break;
757         }
758
759         return true;
760 }
761
762
763 bool Buffer::readFile(FileName const & filename)
764 {
765         FileName fname(filename);
766
767         params().compressed = fname.isZippedFile();
768
769         // remove dummy empty par
770         paragraphs().clear();
771         Lexer lex;
772         lex.setFile(fname);
773         if (readFile(lex, fname) != success)
774                 return false;
775
776         return true;
777 }
778
779
780 bool Buffer::isFullyLoaded() const
781 {
782         return d->file_fully_loaded;
783 }
784
785
786 void Buffer::setFullyLoaded(bool value)
787 {
788         d->file_fully_loaded = value;
789 }
790
791
792 Buffer::ReadStatus Buffer::readFile(Lexer & lex, FileName const & filename,
793                 bool fromstring)
794 {
795         LASSERT(!filename.empty(), /**/);
796
797         // the first (non-comment) token _must_ be...
798         if (!lex.checkFor("\\lyxformat")) {
799                 Alert::error(_("Document format failure"),
800                              bformat(_("%1$s is not a readable LyX document."),
801                                        from_utf8(filename.absFilename())));
802                 return failure;
803         }
804
805         string tmp_format;
806         lex >> tmp_format;
807         //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
808         // if present remove ".," from string.
809         size_t dot = tmp_format.find_first_of(".,");
810         //lyxerr << "           dot found at " << dot << endl;
811         if (dot != string::npos)
812                         tmp_format.erase(dot, 1);
813         int const file_format = convert<int>(tmp_format);
814         //lyxerr << "format: " << file_format << endl;
815
816         // save timestamp and checksum of the original disk file, making sure
817         // to not overwrite them with those of the file created in the tempdir
818         // when it has to be converted to the current format.
819         if (!d->checksum_) {
820                 // Save the timestamp and checksum of disk file. If filename is an
821                 // emergency file, save the timestamp and checksum of the original lyx file
822                 // because isExternallyModified will check for this file. (BUG4193)
823                 string diskfile = filename.absFilename();
824                 if (suffixIs(diskfile, ".emergency"))
825                         diskfile = diskfile.substr(0, diskfile.size() - 10);
826                 saveCheckSum(FileName(diskfile));
827         }
828
829         if (file_format != LYX_FORMAT) {
830
831                 if (fromstring)
832                         // lyx2lyx would fail
833                         return wrongversion;
834
835                 FileName const tmpfile = FileName::tempName("Buffer_readFile");
836                 if (tmpfile.empty()) {
837                         Alert::error(_("Conversion failed"),
838                                      bformat(_("%1$s is from a different"
839                                               " version of LyX, but a temporary"
840                                               " file for converting it could"
841                                               " not be created."),
842                                               from_utf8(filename.absFilename())));
843                         return failure;
844                 }
845                 FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
846                 if (lyx2lyx.empty()) {
847                         Alert::error(_("Conversion script not found"),
848                                      bformat(_("%1$s is from a different"
849                                                " version of LyX, but the"
850                                                " conversion script lyx2lyx"
851                                                " could not be found."),
852                                                from_utf8(filename.absFilename())));
853                         return failure;
854                 }
855                 ostringstream command;
856                 command << os::python()
857                         << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
858                         << " -t " << convert<string>(LYX_FORMAT)
859                         << " -o " << quoteName(tmpfile.toFilesystemEncoding())
860                         << ' ' << quoteName(filename.toFilesystemEncoding());
861                 string const command_str = command.str();
862
863                 LYXERR(Debug::INFO, "Running '" << command_str << '\'');
864
865                 cmd_ret const ret = runCommand(command_str);
866                 if (ret.first != 0) {
867                         Alert::error(_("Conversion script failed"),
868                                      bformat(_("%1$s is from a different version"
869                                               " of LyX, but the lyx2lyx script"
870                                               " failed to convert it."),
871                                               from_utf8(filename.absFilename())));
872                         return failure;
873                 } else {
874                         bool const ret = readFile(tmpfile);
875                         // Do stuff with tmpfile name and buffer name here.
876                         return ret ? success : failure;
877                 }
878
879         }
880
881         if (readDocument(lex)) {
882                 Alert::error(_("Document format failure"),
883                              bformat(_("%1$s ended unexpectedly, which means"
884                                                     " that it is probably corrupted."),
885                                        from_utf8(filename.absFilename())));
886         }
887
888         d->file_fully_loaded = true;
889         return success;
890 }
891
892
893 // Should probably be moved to somewhere else: BufferView? LyXView?
894 bool Buffer::save() const
895 {
896         // We don't need autosaves in the immediate future. (Asger)
897         resetAutosaveTimers();
898
899         string const encodedFilename = d->filename.toFilesystemEncoding();
900
901         FileName backupName;
902         bool madeBackup = false;
903
904         // make a backup if the file already exists
905         if (lyxrc.make_backup && fileName().exists()) {
906                 backupName = FileName(absFileName() + '~');
907                 if (!lyxrc.backupdir_path.empty()) {
908                         string const mangledName =
909                                 subst(subst(backupName.absFilename(), '/', '!'), ':', '!');
910                         backupName = FileName(addName(lyxrc.backupdir_path,
911                                                       mangledName));
912                 }
913                 if (fileName().copyTo(backupName)) {
914                         madeBackup = true;
915                 } else {
916                         Alert::error(_("Backup failure"),
917                                      bformat(_("Cannot create backup file %1$s.\n"
918                                                "Please check whether the directory exists and is writeable."),
919                                              from_utf8(backupName.absFilename())));
920                         //LYXERR(Debug::DEBUG, "Fs error: " << fe.what());
921                 }
922         }
923
924         // ask if the disk file has been externally modified (use checksum method)
925         if (fileName().exists() && isExternallyModified(checksum_method)) {
926                 docstring const file = makeDisplayPath(absFileName(), 20);
927                 docstring text = bformat(_("Document %1$s has been externally modified. Are you sure "
928                                                              "you want to overwrite this file?"), file);
929                 int const ret = Alert::prompt(_("Overwrite modified file?"),
930                         text, 1, 1, _("&Overwrite"), _("&Cancel"));
931                 if (ret == 1)
932                         return false;
933         }
934
935         if (writeFile(d->filename)) {
936                 markClean();
937                 return true;
938         } else {
939                 // Saving failed, so backup is not backup
940                 if (madeBackup)
941                         backupName.moveTo(d->filename);
942                 return false;
943         }
944 }
945
946
947 bool Buffer::writeFile(FileName const & fname) const
948 {
949         if (d->read_only && fname == d->filename)
950                 return false;
951
952         bool retval = false;
953
954         docstring const str = bformat(_("Saving document %1$s..."),
955                 makeDisplayPath(fname.absFilename()));
956         message(str);
957
958         if (params().compressed) {
959                 gz::ogzstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
960                 retval = ofs && write(ofs);
961         } else {
962                 ofstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
963                 retval = ofs && write(ofs);
964         }
965
966         if (!retval) {
967                 message(str + _(" could not write file!"));
968                 return false;
969         }
970
971         removeAutosaveFile();
972
973         saveCheckSum(d->filename);
974         message(str + _(" done."));
975
976         return true;
977 }
978
979
980 bool Buffer::write(ostream & ofs) const
981 {
982 #ifdef HAVE_LOCALE
983         // Use the standard "C" locale for file output.
984         ofs.imbue(locale::classic());
985 #endif
986
987         // The top of the file should not be written by params().
988
989         // write out a comment in the top of the file
990         ofs << "#LyX " << lyx_version
991             << " created this file. For more info see http://www.lyx.org/\n"
992             << "\\lyxformat " << LYX_FORMAT << "\n"
993             << "\\begin_document\n";
994
995         /// For each author, set 'used' to true if there is a change
996         /// by this author in the document; otherwise set it to 'false'.
997         AuthorList::Authors::const_iterator a_it = params().authors().begin();
998         AuthorList::Authors::const_iterator a_end = params().authors().end();
999         for (; a_it != a_end; ++a_it)
1000                 a_it->second.setUsed(false);
1001
1002         ParIterator const end = const_cast<Buffer *>(this)->par_iterator_end();
1003         ParIterator it = const_cast<Buffer *>(this)->par_iterator_begin();
1004         for ( ; it != end; ++it)
1005                 it->checkAuthors(params().authors());
1006
1007         // now write out the buffer parameters.
1008         ofs << "\\begin_header\n";
1009         params().writeFile(ofs);
1010         ofs << "\\end_header\n";
1011
1012         // write the text
1013         ofs << "\n\\begin_body\n";
1014         text().write(*this, ofs);
1015         ofs << "\n\\end_body\n";
1016
1017         // Write marker that shows file is complete
1018         ofs << "\\end_document" << endl;
1019
1020         // Shouldn't really be needed....
1021         //ofs.close();
1022
1023         // how to check if close went ok?
1024         // Following is an attempt... (BE 20001011)
1025
1026         // good() returns false if any error occured, including some
1027         //        formatting error.
1028         // bad()  returns true if something bad happened in the buffer,
1029         //        which should include file system full errors.
1030
1031         bool status = true;
1032         if (!ofs) {
1033                 status = false;
1034                 lyxerr << "File was not closed properly." << endl;
1035         }
1036
1037         return status;
1038 }
1039
1040
1041 bool Buffer::makeLaTeXFile(FileName const & fname,
1042                            string const & original_path,
1043                            OutputParams const & runparams_in,
1044                            bool output_preamble, bool output_body) const
1045 {
1046         OutputParams runparams = runparams_in;
1047         if (params().useXetex)
1048                 runparams.flavor = OutputParams::XETEX;
1049
1050         string const encoding = runparams.encoding->iconvName();
1051         LYXERR(Debug::LATEX, "makeLaTeXFile encoding: " << encoding << "...");
1052
1053         ofdocstream ofs;
1054         try { ofs.reset(encoding); }
1055         catch (iconv_codecvt_facet_exception & e) {
1056                 lyxerr << "Caught iconv exception: " << e.what() << endl;
1057                 Alert::error(_("Iconv software exception Detected"), bformat(_("Please "
1058                         "verify that the support software for your encoding (%1$s) is "
1059                         "properly installed"), from_ascii(encoding)));
1060                 return false;
1061         }
1062         if (!openFileWrite(ofs, fname))
1063                 return false;
1064
1065         //TexStream ts(ofs.rdbuf(), &texrow());
1066         ErrorList & errorList = d->errorLists["Export"];
1067         errorList.clear();
1068         bool failed_export = false;
1069         try {
1070                 d->texrow.reset();
1071                 writeLaTeXSource(ofs, original_path,
1072                       runparams, output_preamble, output_body);
1073         }
1074         catch (EncodingException & e) {
1075                 odocstringstream ods;
1076                 ods.put(e.failed_char);
1077                 ostringstream oss;
1078                 oss << "0x" << hex << e.failed_char << dec;
1079                 docstring msg = bformat(_("Could not find LaTeX command for character '%1$s'"
1080                                           " (code point %2$s)"),
1081                                           ods.str(), from_utf8(oss.str()));
1082                 errorList.push_back(ErrorItem(msg, _("Some characters of your document are probably not "
1083                                 "representable in the chosen encoding.\n"
1084                                 "Changing the document encoding to utf8 could help."),
1085                                 e.par_id, e.pos, e.pos + 1));
1086                 failed_export = true;
1087         }
1088         catch (iconv_codecvt_facet_exception & e) {
1089                 errorList.push_back(ErrorItem(_("iconv conversion failed"),
1090                         _(e.what()), -1, 0, 0));
1091                 failed_export = true;
1092         }
1093         catch (exception const & e) {
1094                 errorList.push_back(ErrorItem(_("conversion failed"),
1095                         _(e.what()), -1, 0, 0));
1096                 failed_export = true;
1097         }
1098         catch (...) {
1099                 lyxerr << "Caught some really weird exception..." << endl;
1100                 lyx_exit(1);
1101         }
1102
1103         ofs.close();
1104         if (ofs.fail()) {
1105                 failed_export = true;
1106                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1107         }
1108
1109         errors("Export");
1110         return !failed_export;
1111 }
1112
1113
1114 void Buffer::writeLaTeXSource(odocstream & os,
1115                            string const & original_path,
1116                            OutputParams const & runparams_in,
1117                            bool const output_preamble, bool const output_body) const
1118 {
1119         // The child documents, if any, shall be already loaded at this point.
1120
1121         OutputParams runparams = runparams_in;
1122
1123         // Classify the unicode characters appearing in math insets
1124         Encodings::initUnicodeMath(*this);
1125
1126         // validate the buffer.
1127         LYXERR(Debug::LATEX, "  Validating buffer...");
1128         LaTeXFeatures features(*this, params(), runparams);
1129         validate(features);
1130         LYXERR(Debug::LATEX, "  Buffer validation done.");
1131
1132         // The starting paragraph of the coming rows is the
1133         // first paragraph of the document. (Asger)
1134         if (output_preamble && runparams.nice) {
1135                 os << "%% LyX " << lyx_version << " created this file.  "
1136                         "For more info, see http://www.lyx.org/.\n"
1137                         "%% Do not edit unless you really know what "
1138                         "you are doing.\n";
1139                 d->texrow.newline();
1140                 d->texrow.newline();
1141         }
1142         LYXERR(Debug::INFO, "lyx document header finished");
1143
1144         // Don't move this behind the parent_buffer=0 code below,
1145         // because then the macros will not get the right "redefinition"
1146         // flag as they don't see the parent macros which are output before.
1147         updateMacros();
1148
1149         // fold macros if possible, still with parent buffer as the
1150         // macros will be put in the prefix anyway.
1151         updateMacroInstances();
1152
1153         // There are a few differences between nice LaTeX and usual files:
1154         // usual is \batchmode and has a
1155         // special input@path to allow the including of figures
1156         // with either \input or \includegraphics (what figinsets do).
1157         // input@path is set when the actual parameter
1158         // original_path is set. This is done for usual tex-file, but not
1159         // for nice-latex-file. (Matthias 250696)
1160         // Note that input@path is only needed for something the user does
1161         // in the preamble, included .tex files or ERT, files included by
1162         // LyX work without it.
1163         if (output_preamble) {
1164                 if (!runparams.nice) {
1165                         // code for usual, NOT nice-latex-file
1166                         os << "\\batchmode\n"; // changed
1167                         // from \nonstopmode
1168                         d->texrow.newline();
1169                 }
1170                 if (!original_path.empty()) {
1171                         // FIXME UNICODE
1172                         // We don't know the encoding of inputpath
1173                         docstring const inputpath = from_utf8(latex_path(original_path));
1174                         os << "\\makeatletter\n"
1175                            << "\\def\\input@path{{"
1176                            << inputpath << "/}}\n"
1177                            << "\\makeatother\n";
1178                         d->texrow.newline();
1179                         d->texrow.newline();
1180                         d->texrow.newline();
1181                 }
1182
1183                 // get parent macros (if this buffer has a parent) which will be
1184                 // written at the document begin further down.
1185                 MacroSet parentMacros;
1186                 listParentMacros(parentMacros, features);
1187
1188                 // Write the preamble
1189                 runparams.use_babel = params().writeLaTeX(os, features, d->texrow);
1190
1191                 runparams.use_japanese = features.isRequired("japanese");
1192
1193                 if (!output_body)
1194                         return;
1195
1196                 // make the body.
1197                 os << "\\begin{document}\n";
1198                 d->texrow.newline();
1199
1200                 // output the parent macros
1201                 MacroSet::iterator it = parentMacros.begin();
1202                 MacroSet::iterator end = parentMacros.end();
1203                 for (; it != end; ++it)
1204                         (*it)->write(os, true);
1205         } // output_preamble
1206
1207         d->texrow.start(paragraphs().begin()->id(), 0);
1208
1209         LYXERR(Debug::INFO, "preamble finished, now the body.");
1210
1211         // if we are doing a real file with body, even if this is the
1212         // child of some other buffer, let's cut the link here.
1213         // This happens for example if only a child document is printed.
1214         Buffer const * save_parent = 0;
1215         if (output_preamble) {
1216                 save_parent = d->parent();
1217                 d->setParent(0);
1218         }
1219
1220         // the real stuff
1221         latexParagraphs(*this, text(), os, d->texrow, runparams);
1222
1223         // Restore the parenthood if needed
1224         if (output_preamble)
1225                 d->setParent(save_parent);
1226
1227         // add this just in case after all the paragraphs
1228         os << endl;
1229         d->texrow.newline();
1230
1231         if (output_preamble) {
1232                 os << "\\end{document}\n";
1233                 d->texrow.newline();
1234                 LYXERR(Debug::LATEX, "makeLaTeXFile...done");
1235         } else {
1236                 LYXERR(Debug::LATEX, "LaTeXFile for inclusion made.");
1237         }
1238         runparams_in.encoding = runparams.encoding;
1239
1240         // Just to be sure. (Asger)
1241         d->texrow.newline();
1242
1243         LYXERR(Debug::INFO, "Finished making LaTeX file.");
1244         LYXERR(Debug::INFO, "Row count was " << d->texrow.rows() - 1 << '.');
1245 }
1246
1247
1248 bool Buffer::isLatex() const
1249 {
1250         return params().documentClass().outputType() == LATEX;
1251 }
1252
1253
1254 bool Buffer::isLiterate() const
1255 {
1256         return params().documentClass().outputType() == LITERATE;
1257 }
1258
1259
1260 bool Buffer::isDocBook() const
1261 {
1262         return params().documentClass().outputType() == DOCBOOK;
1263 }
1264
1265
1266 void Buffer::makeDocBookFile(FileName const & fname,
1267                               OutputParams const & runparams,
1268                               bool const body_only) const
1269 {
1270         LYXERR(Debug::LATEX, "makeDocBookFile...");
1271
1272         ofdocstream ofs;
1273         if (!openFileWrite(ofs, fname))
1274                 return;
1275
1276         writeDocBookSource(ofs, fname.absFilename(), runparams, body_only);
1277
1278         ofs.close();
1279         if (ofs.fail())
1280                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1281 }
1282
1283
1284 void Buffer::writeDocBookSource(odocstream & os, string const & fname,
1285                              OutputParams const & runparams,
1286                              bool const only_body) const
1287 {
1288         LaTeXFeatures features(*this, params(), runparams);
1289         validate(features);
1290
1291         d->texrow.reset();
1292
1293         DocumentClass const & tclass = params().documentClass();
1294         string const top_element = tclass.latexname();
1295
1296         if (!only_body) {
1297                 if (runparams.flavor == OutputParams::XML)
1298                         os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
1299
1300                 // FIXME UNICODE
1301                 os << "<!DOCTYPE " << from_ascii(top_element) << ' ';
1302
1303                 // FIXME UNICODE
1304                 if (! tclass.class_header().empty())
1305                         os << from_ascii(tclass.class_header());
1306                 else if (runparams.flavor == OutputParams::XML)
1307                         os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
1308                             << "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
1309                 else
1310                         os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
1311
1312                 docstring preamble = from_utf8(params().preamble);
1313                 if (runparams.flavor != OutputParams::XML ) {
1314                         preamble += "<!ENTITY % output.print.png \"IGNORE\">\n";
1315                         preamble += "<!ENTITY % output.print.pdf \"IGNORE\">\n";
1316                         preamble += "<!ENTITY % output.print.eps \"IGNORE\">\n";
1317                         preamble += "<!ENTITY % output.print.bmp \"IGNORE\">\n";
1318                 }
1319
1320                 string const name = runparams.nice
1321                         ? changeExtension(absFileName(), ".sgml") : fname;
1322                 preamble += features.getIncludedFiles(name);
1323                 preamble += features.getLyXSGMLEntities();
1324
1325                 if (!preamble.empty()) {
1326                         os << "\n [ " << preamble << " ]";
1327                 }
1328                 os << ">\n\n";
1329         }
1330
1331         string top = top_element;
1332         top += " lang=\"";
1333         if (runparams.flavor == OutputParams::XML)
1334                 top += params().language->code();
1335         else
1336                 top += params().language->code().substr(0, 2);
1337         top += '"';
1338
1339         if (!params().options.empty()) {
1340                 top += ' ';
1341                 top += params().options;
1342         }
1343
1344         os << "<!-- " << ((runparams.flavor == OutputParams::XML)? "XML" : "SGML")
1345             << " file was created by LyX " << lyx_version
1346             << "\n  See http://www.lyx.org/ for more information -->\n";
1347
1348         params().documentClass().counters().reset();
1349
1350         updateMacros();
1351
1352         sgml::openTag(os, top);
1353         os << '\n';
1354         docbookParagraphs(paragraphs(), *this, os, runparams);
1355         sgml::closeTag(os, top_element);
1356 }
1357
1358
1359 void Buffer::makeLyXHTMLFile(FileName const & fname,
1360                               OutputParams const & runparams,
1361                               bool const body_only) const
1362 {
1363         LYXERR(Debug::LATEX, "makeLYXHTMLFile...");
1364
1365         ofdocstream ofs;
1366         if (!openFileWrite(ofs, fname))
1367                 return;
1368
1369         writeLyXHTMLSource(ofs, runparams, body_only);
1370
1371         ofs.close();
1372         if (ofs.fail())
1373                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1374 }
1375
1376
1377 void Buffer::writeLyXHTMLSource(odocstream & os,
1378                              OutputParams const & runparams,
1379                              bool const only_body) const
1380 {
1381         LaTeXFeatures features(*this, params(), runparams);
1382         validate(features);
1383
1384         d->texrow.reset();
1385
1386         if (!only_body) {
1387                 os << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"" <<
1388                         " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
1389                 // FIXME Language should be set properly.
1390                 os << "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n";
1391                 // FIXME Header
1392                 os << "<head>\n";
1393                 // FIXME Presumably need to set this right
1394                 os << "<meta http-equiv=\"Content-type\" content=\"text/html;charset=UTF-8\" />\n";
1395                 // FIXME Get this during validation? What about other meta-data?
1396                 os << "<title>TBA</title>\n";
1397
1398                 os << features.getTClassHTMLPreamble();
1399
1400                 os << '\n';
1401
1402                 docstring const styleinfo = features.getTClassHTMLStyles();
1403                 if (!styleinfo.empty()) {
1404                         os << "<style type='text/css'>\n";
1405                         os << styleinfo;
1406                         os << "</style>\n";
1407                 }
1408                 os << "</head>\n<body>\n";
1409         }
1410
1411         params().documentClass().counters().reset();
1412         xhtmlParagraphs(paragraphs(), *this, os, runparams);
1413         if (!only_body)
1414                 os << "</body>\n</html>\n";
1415 }
1416
1417
1418 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1419 // Other flags: -wall -v0 -x
1420 int Buffer::runChktex()
1421 {
1422         setBusy(true);
1423
1424         // get LaTeX-Filename
1425         FileName const path(temppath());
1426         string const name = addName(path.absFilename(), latexName());
1427         string const org_path = filePath();
1428
1429         PathChanger p(path); // path to LaTeX file
1430         message(_("Running chktex..."));
1431
1432         // Generate the LaTeX file if neccessary
1433         OutputParams runparams(&params().encoding());
1434         runparams.flavor = OutputParams::LATEX;
1435         runparams.nice = false;
1436         makeLaTeXFile(FileName(name), org_path, runparams);
1437
1438         TeXErrors terr;
1439         Chktex chktex(lyxrc.chktex_command, onlyFilename(name), filePath());
1440         int const res = chktex.run(terr); // run chktex
1441
1442         if (res == -1) {
1443                 Alert::error(_("chktex failure"),
1444                              _("Could not run chktex successfully."));
1445         } else if (res > 0) {
1446                 ErrorList & errlist = d->errorLists["ChkTeX"];
1447                 errlist.clear();
1448                 bufferErrors(terr, errlist);
1449         }
1450
1451         setBusy(false);
1452
1453         errors("ChkTeX");
1454
1455         return res;
1456 }
1457
1458
1459 void Buffer::validate(LaTeXFeatures & features) const
1460 {
1461         params().validate(features);
1462
1463         updateMacros();
1464
1465         for_each(paragraphs().begin(), paragraphs().end(),
1466                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
1467
1468         if (lyxerr.debugging(Debug::LATEX)) {
1469                 features.showStruct();
1470         }
1471 }
1472
1473
1474 void Buffer::getLabelList(vector<docstring> & list) const
1475 {
1476         // If this is a child document, use the parent's list instead.
1477         Buffer const * const pbuf = d->parent();
1478         if (pbuf) {
1479                 pbuf->getLabelList(list);
1480                 return;
1481         }
1482
1483         list.clear();
1484         Toc & toc = d->toc_backend.toc("label");
1485         TocIterator toc_it = toc.begin();
1486         TocIterator end = toc.end();
1487         for (; toc_it != end; ++toc_it) {
1488                 if (toc_it->depth() == 0)
1489                         list.push_back(toc_it->str());
1490         }
1491 }
1492
1493
1494 void Buffer::updateBibfilesCache(UpdateScope scope) const
1495 {
1496         // If this is a child document, use the parent's cache instead.
1497         Buffer const * const pbuf = d->parent();
1498         if (pbuf && scope != UpdateChildOnly) {
1499                 pbuf->updateBibfilesCache();
1500                 return;
1501         }
1502
1503         d->bibfilesCache_.clear();
1504         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1505                 if (it->lyxCode() == BIBTEX_CODE) {
1506                         InsetBibtex const & inset =
1507                                 static_cast<InsetBibtex const &>(*it);
1508                         support::FileNameList const bibfiles = inset.getBibFiles();
1509                         d->bibfilesCache_.insert(d->bibfilesCache_.end(),
1510                                 bibfiles.begin(),
1511                                 bibfiles.end());
1512                 } else if (it->lyxCode() == INCLUDE_CODE) {
1513                         InsetInclude & inset =
1514                                 static_cast<InsetInclude &>(*it);
1515                         inset.updateBibfilesCache();
1516                         support::FileNameList const & bibfiles =
1517                                         inset.getBibfilesCache();
1518                         d->bibfilesCache_.insert(d->bibfilesCache_.end(),
1519                                 bibfiles.begin(),
1520                                 bibfiles.end());
1521                 }
1522         }
1523         // the bibinfo cache is now invalid
1524         d->bibinfoCacheValid_ = false;
1525 }
1526
1527
1528 void Buffer::invalidateBibinfoCache()
1529 {
1530         d->bibinfoCacheValid_ = false;
1531 }
1532
1533
1534 support::FileNameList const & Buffer::getBibfilesCache(UpdateScope scope) const
1535 {
1536         // If this is a child document, use the parent's cache instead.
1537         Buffer const * const pbuf = d->parent();
1538         if (pbuf && scope != UpdateChildOnly)
1539                 return pbuf->getBibfilesCache();
1540
1541         // We update the cache when first used instead of at loading time.
1542         if (d->bibfilesCache_.empty())
1543                 const_cast<Buffer *>(this)->updateBibfilesCache(scope);
1544
1545         return d->bibfilesCache_;
1546 }
1547
1548
1549 BiblioInfo const & Buffer::masterBibInfo() const
1550 {
1551         // if this is a child document and the parent is already loaded
1552         // use the parent's list instead  [ale990412]
1553         Buffer const * const tmp = masterBuffer();
1554         LASSERT(tmp, /**/);
1555         if (tmp != this)
1556                 return tmp->masterBibInfo();
1557         return localBibInfo();
1558 }
1559
1560
1561 BiblioInfo const & Buffer::localBibInfo() const
1562 {
1563         if (d->bibinfoCacheValid_) {
1564                 support::FileNameList const & bibfilesCache = getBibfilesCache();
1565                 // compare the cached timestamps with the actual ones.
1566                 support::FileNameList::const_iterator ei = bibfilesCache.begin();
1567                 support::FileNameList::const_iterator en = bibfilesCache.end();
1568                 for (; ei != en; ++ ei) {
1569                         time_t lastw = ei->lastModified();
1570                         if (lastw != d->bibfileStatus_[*ei]) {
1571                                 d->bibinfoCacheValid_ = false;
1572                                 d->bibfileStatus_[*ei] = lastw;
1573                                 break;
1574                         }
1575                 }
1576         }
1577
1578         if (!d->bibinfoCacheValid_) {
1579                 d->bibinfo_.clear();
1580                 for (InsetIterator it = inset_iterator_begin(inset()); it; ++it)
1581                         it->fillWithBibKeys(d->bibinfo_, it);
1582                 d->bibinfoCacheValid_ = true;
1583         }
1584         return d->bibinfo_;
1585 }
1586
1587
1588 bool Buffer::isDepClean(string const & name) const
1589 {
1590         DepClean::const_iterator const it = d->dep_clean.find(name);
1591         if (it == d->dep_clean.end())
1592                 return true;
1593         return it->second;
1594 }
1595
1596
1597 void Buffer::markDepClean(string const & name)
1598 {
1599         d->dep_clean[name] = true;
1600 }
1601
1602
1603 bool Buffer::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1604 {
1605         switch (cmd.action) {
1606                 case LFUN_BUFFER_EXPORT: {
1607                         docstring const arg = cmd.argument();
1608                         bool enable = arg == "custom" || isExportable(to_utf8(arg));
1609                         if (!enable)
1610                                 flag.message(bformat(
1611                                         _("Don't know how to export to format: %1$s"), arg));
1612                         flag.setEnabled(enable);
1613                         break;
1614                 }
1615
1616                 case LFUN_BRANCH_ACTIVATE: 
1617                 case LFUN_BRANCH_DEACTIVATE: {
1618                 BranchList const & branchList = params().branchlist();
1619                 docstring const branchName = cmd.argument();
1620                 flag.setEnabled(!branchName.empty()
1621                                 && branchList.find(branchName));
1622                         break;
1623                 }
1624
1625                 case LFUN_BRANCH_ADD:
1626                 case LFUN_BRANCHES_RENAME:
1627                 case LFUN_BUFFER_PRINT:
1628                         // if no Buffer is present, then of course we won't be called!
1629                         flag.setEnabled(true);
1630                         break;
1631
1632                 default:
1633                         return false;
1634         }
1635         return true;
1636 }
1637
1638
1639 void Buffer::dispatch(string const & command, DispatchResult & result)
1640 {
1641         return dispatch(lyxaction.lookupFunc(command), result);
1642 }
1643
1644
1645 // NOTE We can end up here even if we have no GUI, because we are called
1646 // by LyX::exec to handled command-line requests. So we may need to check 
1647 // whether we have a GUI or not. The boolean use_gui holds this information.
1648 void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
1649 {
1650         // We'll set this back to false if need be.
1651         bool dispatched = true;
1652
1653         switch (func.action) {
1654         case LFUN_BUFFER_EXPORT: {
1655                 bool success = doExport(to_utf8(func.argument()), false);
1656                 dr.setError(success);
1657                 if (!success)
1658                         dr.setMessage(bformat(_("Error exporting to format: %1$s."), 
1659                                               func.argument()));
1660                 break;
1661         }
1662
1663         case LFUN_BRANCH_ADD: {
1664                 BranchList & branchList = params().branchlist();
1665                 docstring const branchName = func.argument();
1666                 if (branchName.empty()) {
1667                         dispatched = false;
1668                         break;
1669                 }
1670                 Branch * branch = branchList.find(branchName);
1671                 if (branch) {
1672                         LYXERR0("Branch " << branchName << " does already exist.");
1673                         dr.setError(true);
1674                         docstring const msg = 
1675                                 bformat(_("Branch \"%1$s\" does already exist."), branchName);
1676                         dr.setMessage(msg);
1677                 } else {
1678                         branchList.add(branchName);
1679                         dr.setError(false);
1680                         dr.update(Update::Force);
1681                 }
1682                 break;
1683         }
1684
1685         case LFUN_BRANCH_ACTIVATE:
1686         case LFUN_BRANCH_DEACTIVATE: {
1687                 BranchList & branchList = params().branchlist();
1688                 docstring const branchName = func.argument();
1689                 // the case without a branch name is handled elsewhere
1690                 if (branchName.empty()) {
1691                         dispatched = false;
1692                         break;
1693                 }
1694                 Branch * branch = branchList.find(branchName);
1695                 if (!branch) {
1696                         LYXERR0("Branch " << branchName << " does not exist.");
1697                         dr.setError(true);
1698                         docstring const msg = 
1699                                 bformat(_("Branch \"%1$s\" does not exist."), branchName);
1700                         dr.setMessage(msg);
1701                 } else {
1702                         branch->setSelected(func.action == LFUN_BRANCH_ACTIVATE);
1703                         dr.setError(false);
1704                         dr.update(Update::Force);
1705                 }
1706                 break;
1707         }
1708
1709         case LFUN_BRANCHES_RENAME: {
1710                 if (func.argument().empty())
1711                         break;
1712
1713                 docstring const oldname = from_utf8(func.getArg(0));
1714                 docstring const newname = from_utf8(func.getArg(1));
1715                 InsetIterator it  = inset_iterator_begin(inset());
1716                 InsetIterator const end = inset_iterator_end(inset());
1717                 bool success = false;
1718                 for (; it != end; ++it) {
1719                         if (it->lyxCode() == BRANCH_CODE) {
1720                                 InsetBranch & ins = static_cast<InsetBranch &>(*it);
1721                                 if (ins.branch() == oldname) {
1722                                         undo().recordUndo(it);
1723                                         ins.rename(newname);
1724                                         success = true;
1725                                         continue;
1726                                 }
1727                         }
1728                         if (it->lyxCode() == INCLUDE_CODE) {
1729                                 // get buffer of external file
1730                                 InsetInclude const & ins =
1731                                         static_cast<InsetInclude const &>(*it);
1732                                 Buffer * child = ins.getChildBuffer();
1733                                 if (!child)
1734                                         continue;
1735                                 child->dispatch(func, dr);
1736                         }
1737                 }
1738
1739                 if (success)
1740                         dr.update(Update::Force);
1741                 break;
1742         }
1743
1744         case LFUN_BUFFER_PRINT: {
1745                 // we'll assume there's a problem until we succeed
1746                 dr.setError(true); 
1747                 string target = func.getArg(0);
1748                 string target_name = func.getArg(1);
1749                 string command = func.getArg(2);
1750
1751                 if (target.empty()
1752                     || target_name.empty()
1753                     || command.empty()) {
1754                         LYXERR0("Unable to parse " << func.argument());
1755                         docstring const msg = 
1756                                 bformat(_("Unable to parse \"%1$s\""), func.argument());
1757                         dr.setMessage(msg);
1758                         break;
1759                 }
1760                 if (target != "printer" && target != "file") {
1761                         LYXERR0("Unrecognized target \"" << target << '"');
1762                         docstring const msg = 
1763                                 bformat(_("Unrecognized target \"%1$s\""), from_utf8(target));
1764                         dr.setMessage(msg);
1765                         break;
1766                 }
1767
1768                 if (!doExport("dvi", true)) {
1769                         showPrintError(absFileName());
1770                         dr.setMessage(_("Error exporting to DVI."));
1771                         break;
1772                 }
1773
1774                 // Push directory path.
1775                 string const path = temppath();
1776                 // Prevent the compiler from optimizing away p
1777                 FileName pp(path);
1778                 PathChanger p(pp);
1779
1780                 // there are three cases here:
1781                 // 1. we print to a file
1782                 // 2. we print directly to a printer
1783                 // 3. we print using a spool command (print to file first)
1784                 Systemcall one;
1785                 int res = 0;
1786                 string const dviname = changeExtension(latexName(true), "dvi");
1787
1788                 if (target == "printer") {
1789                         if (!lyxrc.print_spool_command.empty()) {
1790                                 // case 3: print using a spool
1791                                 string const psname = changeExtension(dviname,".ps");
1792                                 command += ' ' + lyxrc.print_to_file
1793                                         + quoteName(psname)
1794                                         + ' '
1795                                         + quoteName(dviname);
1796
1797                                 string command2 = lyxrc.print_spool_command + ' ';
1798                                 if (target_name != "default") {
1799                                         command2 += lyxrc.print_spool_printerprefix
1800                                                 + target_name
1801                                                 + ' ';
1802                                 }
1803                                 command2 += quoteName(psname);
1804                                 // First run dvips.
1805                                 // If successful, then spool command
1806                                 res = one.startscript(Systemcall::Wait, command);
1807
1808                                 if (res == 0) {
1809                                         // If there's no GUI, we have to wait on this command. Otherwise,
1810                                         // LyX deletes the temporary directory, and with it the spooled
1811                                         // file, before it can be printed!!
1812                                         Systemcall::Starttype stype = use_gui ?
1813                                                 Systemcall::DontWait : Systemcall::Wait;
1814                                         res = one.startscript(stype, command2);
1815                                 }
1816                         } else {
1817                                 // case 2: print directly to a printer
1818                                 if (target_name != "default")
1819                                         command += ' ' + lyxrc.print_to_printer + target_name + ' ';
1820                                 // as above....
1821                                 Systemcall::Starttype stype = use_gui ?
1822                                         Systemcall::DontWait : Systemcall::Wait;
1823                                 res = one.startscript(stype, command + quoteName(dviname));
1824                         }
1825
1826                 } else {
1827                         // case 1: print to a file
1828                         FileName const filename(makeAbsPath(target_name, filePath()));
1829                         FileName const dvifile(makeAbsPath(dviname, path));
1830                         if (filename.exists()) {
1831                                 docstring text = bformat(
1832                                         _("The file %1$s already exists.\n\n"
1833                                           "Do you want to overwrite that file?"),
1834                                         makeDisplayPath(filename.absFilename()));
1835                                 if (Alert::prompt(_("Overwrite file?"),
1836                                                   text, 0, 1, _("&Overwrite"), _("&Cancel")) != 0)
1837                                         break;
1838                         }
1839                         command += ' ' + lyxrc.print_to_file
1840                                 + quoteName(filename.toFilesystemEncoding())
1841                                 + ' '
1842                                 + quoteName(dvifile.toFilesystemEncoding());
1843                         // as above....
1844                         Systemcall::Starttype stype = use_gui ?
1845                                 Systemcall::DontWait : Systemcall::Wait;
1846                         res = one.startscript(stype, command);
1847                 }
1848
1849                 if (res == 0) 
1850                         dr.setError(false);
1851                 else {
1852                         dr.setMessage(_("Error running external commands."));
1853                         showPrintError(absFileName());
1854                 }
1855                 break;
1856         }
1857
1858         default:
1859                 dispatched = false;
1860                 break;
1861         }
1862         dr.dispatched(dispatched);
1863 }
1864
1865
1866 void Buffer::changeLanguage(Language const * from, Language const * to)
1867 {
1868         LASSERT(from, /**/);
1869         LASSERT(to, /**/);
1870
1871         for_each(par_iterator_begin(),
1872                  par_iterator_end(),
1873                  bind(&Paragraph::changeLanguage, _1, params(), from, to));
1874 }
1875
1876
1877 bool Buffer::isMultiLingual() const
1878 {
1879         ParConstIterator end = par_iterator_end();
1880         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
1881                 if (it->isMultiLingual(params()))
1882                         return true;
1883
1884         return false;
1885 }
1886
1887
1888 DocIterator Buffer::getParFromID(int const id) const
1889 {
1890         Buffer * buf = const_cast<Buffer *>(this);
1891         if (id < 0) {
1892                 // John says this is called with id == -1 from undo
1893                 lyxerr << "getParFromID(), id: " << id << endl;
1894                 return doc_iterator_end(buf);
1895         }
1896
1897         for (DocIterator it = doc_iterator_begin(buf); !it.atEnd(); it.forwardPar())
1898                 if (it.paragraph().id() == id)
1899                         return it;
1900
1901         return doc_iterator_end(buf);
1902 }
1903
1904
1905 bool Buffer::hasParWithID(int const id) const
1906 {
1907         return !getParFromID(id).atEnd();
1908 }
1909
1910
1911 ParIterator Buffer::par_iterator_begin()
1912 {
1913         return ParIterator(doc_iterator_begin(this));
1914 }
1915
1916
1917 ParIterator Buffer::par_iterator_end()
1918 {
1919         return ParIterator(doc_iterator_end(this));
1920 }
1921
1922
1923 ParConstIterator Buffer::par_iterator_begin() const
1924 {
1925         return ParConstIterator(doc_iterator_begin(this));
1926 }
1927
1928
1929 ParConstIterator Buffer::par_iterator_end() const
1930 {
1931         return ParConstIterator(doc_iterator_end(this));
1932 }
1933
1934
1935 Language const * Buffer::language() const
1936 {
1937         return params().language;
1938 }
1939
1940
1941 docstring const Buffer::B_(string const & l10n) const
1942 {
1943         return params().B_(l10n);
1944 }
1945
1946
1947 bool Buffer::isClean() const
1948 {
1949         return d->lyx_clean;
1950 }
1951
1952
1953 bool Buffer::isBakClean() const
1954 {
1955         return d->bak_clean;
1956 }
1957
1958
1959 bool Buffer::isExternallyModified(CheckMethod method) const
1960 {
1961         LASSERT(d->filename.exists(), /**/);
1962         // if method == timestamp, check timestamp before checksum
1963         return (method == checksum_method
1964                 || d->timestamp_ != d->filename.lastModified())
1965                 && d->checksum_ != d->filename.checksum();
1966 }
1967
1968
1969 void Buffer::saveCheckSum(FileName const & file) const
1970 {
1971         if (file.exists()) {
1972                 d->timestamp_ = file.lastModified();
1973                 d->checksum_ = file.checksum();
1974         } else {
1975                 // in the case of save to a new file.
1976                 d->timestamp_ = 0;
1977                 d->checksum_ = 0;
1978         }
1979 }
1980
1981
1982 void Buffer::markClean() const
1983 {
1984         if (!d->lyx_clean) {
1985                 d->lyx_clean = true;
1986                 updateTitles();
1987         }
1988         // if the .lyx file has been saved, we don't need an
1989         // autosave
1990         d->bak_clean = true;
1991 }
1992
1993
1994 void Buffer::markBakClean() const
1995 {
1996         d->bak_clean = true;
1997 }
1998
1999
2000 void Buffer::setUnnamed(bool flag)
2001 {
2002         d->unnamed = flag;
2003 }
2004
2005
2006 bool Buffer::isUnnamed() const
2007 {
2008         return d->unnamed;
2009 }
2010
2011
2012 // FIXME: this function should be moved to buffer_pimpl.C
2013 void Buffer::markDirty()
2014 {
2015         if (d->lyx_clean) {
2016                 d->lyx_clean = false;
2017                 updateTitles();
2018         }
2019         d->bak_clean = false;
2020
2021         DepClean::iterator it = d->dep_clean.begin();
2022         DepClean::const_iterator const end = d->dep_clean.end();
2023
2024         for (; it != end; ++it)
2025                 it->second = false;
2026 }
2027
2028
2029 FileName Buffer::fileName() const
2030 {
2031         return d->filename;
2032 }
2033
2034
2035 string Buffer::absFileName() const
2036 {
2037         return d->filename.absFilename();
2038 }
2039
2040
2041 string Buffer::filePath() const
2042 {
2043         return d->filename.onlyPath().absFilename() + "/";
2044 }
2045
2046
2047 bool Buffer::isReadonly() const
2048 {
2049         return d->read_only;
2050 }
2051
2052
2053 void Buffer::setParent(Buffer const * buffer)
2054 {
2055         // Avoids recursive include.
2056         d->setParent(buffer == this ? 0 : buffer);
2057         updateMacros();
2058 }
2059
2060
2061 Buffer const * Buffer::parent() const
2062 {
2063         return d->parent();
2064 }
2065
2066
2067 void Buffer::collectRelatives(BufferSet & bufs) const
2068 {
2069         bufs.insert(this);
2070         if (parent())
2071                 parent()->collectRelatives(bufs);
2072
2073         // loop over children
2074         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2075         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2076         for (; it != end; ++it)
2077                 bufs.insert(const_cast<Buffer *>(it->first));
2078 }
2079
2080
2081 std::vector<Buffer const *> Buffer::allRelatives() const
2082 {
2083         BufferSet bufs;
2084         collectRelatives(bufs);
2085         BufferSet::iterator it = bufs.begin();
2086         std::vector<Buffer const *> ret;
2087         for (; it != bufs.end(); ++it)
2088                 ret.push_back(*it);
2089         return ret;
2090 }
2091
2092
2093 Buffer const * Buffer::masterBuffer() const
2094 {
2095         Buffer const * const pbuf = d->parent();
2096         if (!pbuf)
2097                 return this;
2098
2099         return pbuf->masterBuffer();
2100 }
2101
2102
2103 bool Buffer::isChild(Buffer * child) const
2104 {
2105         return d->children_positions.find(child) != d->children_positions.end();
2106 }
2107
2108
2109 DocIterator Buffer::firstChildPosition(Buffer const * child)
2110 {
2111         Impl::BufferPositionMap::iterator it;
2112         it = d->children_positions.find(child);
2113         if (it == d->children_positions.end())
2114                 return DocIterator(this);
2115         return it->second;
2116 }
2117
2118
2119 std::vector<Buffer *> Buffer::getChildren() const
2120 {
2121         std::vector<Buffer *> clist;
2122         // loop over children
2123         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2124         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2125         for (; it != end; ++it) {
2126                 Buffer * child = const_cast<Buffer *>(it->first);
2127                 clist.push_back(child);
2128                 // there might be grandchildren
2129                 std::vector<Buffer *> glist = child->getChildren();
2130                 for (vector<Buffer *>::const_iterator git = glist.begin();
2131                      git != glist.end(); ++git)
2132                         clist.push_back(*git);
2133         }
2134         return clist;
2135 }
2136
2137
2138 template<typename M>
2139 typename M::iterator greatest_below(M & m, typename M::key_type const & x)
2140 {
2141         if (m.empty())
2142                 return m.end();
2143
2144         typename M::iterator it = m.lower_bound(x);
2145         if (it == m.begin())
2146                 return m.end();
2147
2148         it--;
2149         return it;
2150 }
2151
2152
2153 MacroData const * Buffer::getBufferMacro(docstring const & name,
2154                                          DocIterator const & pos) const
2155 {
2156         LYXERR(Debug::MACROS, "Searching for " << to_ascii(name) << " at " << pos);
2157
2158         // if paragraphs have no macro context set, pos will be empty
2159         if (pos.empty())
2160                 return 0;
2161
2162         // we haven't found anything yet
2163         DocIterator bestPos = par_iterator_begin();
2164         MacroData const * bestData = 0;
2165
2166         // find macro definitions for name
2167         Impl::NamePositionScopeMacroMap::iterator nameIt
2168                 = d->macros.find(name);
2169         if (nameIt != d->macros.end()) {
2170                 // find last definition in front of pos or at pos itself
2171                 Impl::PositionScopeMacroMap::const_iterator it
2172                         = greatest_below(nameIt->second, pos);
2173                 if (it != nameIt->second.end()) {
2174                         while (true) {
2175                                 // scope ends behind pos?
2176                                 if (pos < it->second.first) {
2177                                         // Looks good, remember this. If there
2178                                         // is no external macro behind this,
2179                                         // we found the right one already.
2180                                         bestPos = it->first;
2181                                         bestData = &it->second.second;
2182                                         break;
2183                                 }
2184
2185                                 // try previous macro if there is one
2186                                 if (it == nameIt->second.begin())
2187                                         break;
2188                                 it--;
2189                         }
2190                 }
2191         }
2192
2193         // find macros in included files
2194         Impl::PositionScopeBufferMap::const_iterator it
2195                 = greatest_below(d->position_to_children, pos);
2196         if (it == d->position_to_children.end())
2197                 // no children before
2198                 return bestData;
2199
2200         while (true) {
2201                 // do we know something better (i.e. later) already?
2202                 if (it->first < bestPos )
2203                         break;
2204
2205                 // scope ends behind pos?
2206                 if (pos < it->second.first) {
2207                         // look for macro in external file
2208                         d->macro_lock = true;
2209                         MacroData const * data
2210                         = it->second.second->getMacro(name, false);
2211                         d->macro_lock = false;
2212                         if (data) {
2213                                 bestPos = it->first;
2214                                 bestData = data;
2215                                 break;
2216                         }
2217                 }
2218
2219                 // try previous file if there is one
2220                 if (it == d->position_to_children.begin())
2221                         break;
2222                 --it;
2223         }
2224
2225         // return the best macro we have found
2226         return bestData;
2227 }
2228
2229
2230 MacroData const * Buffer::getMacro(docstring const & name,
2231         DocIterator const & pos, bool global) const
2232 {
2233         if (d->macro_lock)
2234                 return 0;
2235
2236         // query buffer macros
2237         MacroData const * data = getBufferMacro(name, pos);
2238         if (data != 0)
2239                 return data;
2240
2241         // If there is a master buffer, query that
2242         Buffer const * const pbuf = d->parent();
2243         if (pbuf) {
2244                 d->macro_lock = true;
2245                 MacroData const * macro = pbuf->getMacro(
2246                         name, *this, false);
2247                 d->macro_lock = false;
2248                 if (macro)
2249                         return macro;
2250         }
2251
2252         if (global) {
2253                 data = MacroTable::globalMacros().get(name);
2254                 if (data != 0)
2255                         return data;
2256         }
2257
2258         return 0;
2259 }
2260
2261
2262 MacroData const * Buffer::getMacro(docstring const & name, bool global) const
2263 {
2264         // set scope end behind the last paragraph
2265         DocIterator scope = par_iterator_begin();
2266         scope.pit() = scope.lastpit() + 1;
2267
2268         return getMacro(name, scope, global);
2269 }
2270
2271
2272 MacroData const * Buffer::getMacro(docstring const & name,
2273         Buffer const & child, bool global) const
2274 {
2275         // look where the child buffer is included first
2276         Impl::BufferPositionMap::iterator it = d->children_positions.find(&child);
2277         if (it == d->children_positions.end())
2278                 return 0;
2279
2280         // check for macros at the inclusion position
2281         return getMacro(name, it->second, global);
2282 }
2283
2284
2285 void Buffer::updateMacros(DocIterator & it, DocIterator & scope) const
2286 {
2287         pit_type lastpit = it.lastpit();
2288
2289         // look for macros in each paragraph
2290         while (it.pit() <= lastpit) {
2291                 Paragraph & par = it.paragraph();
2292
2293                 // iterate over the insets of the current paragraph
2294                 InsetList const & insets = par.insetList();
2295                 InsetList::const_iterator iit = insets.begin();
2296                 InsetList::const_iterator end = insets.end();
2297                 for (; iit != end; ++iit) {
2298                         it.pos() = iit->pos;
2299
2300                         // is it a nested text inset?
2301                         if (iit->inset->asInsetText()) {
2302                                 // Inset needs its own scope?
2303                                 InsetText const * itext = iit->inset->asInsetText();
2304                                 bool newScope = itext->isMacroScope();
2305
2306                                 // scope which ends just behind the inset
2307                                 DocIterator insetScope = it;
2308                                 ++insetScope.pos();
2309
2310                                 // collect macros in inset
2311                                 it.push_back(CursorSlice(*iit->inset));
2312                                 updateMacros(it, newScope ? insetScope : scope);
2313                                 it.pop_back();
2314                                 continue;
2315                         }
2316
2317                         // is it an external file?
2318                         if (iit->inset->lyxCode() == INCLUDE_CODE) {
2319                                 // get buffer of external file
2320                                 InsetInclude const & inset =
2321                                         static_cast<InsetInclude const &>(*iit->inset);
2322                                 d->macro_lock = true;
2323                                 Buffer * child = inset.getChildBuffer();
2324                                 d->macro_lock = false;
2325                                 if (!child)
2326                                         continue;
2327
2328                                 // register its position, but only when it is
2329                                 // included first in the buffer
2330                                 if (d->children_positions.find(child) ==
2331                                         d->children_positions.end())
2332                                                 d->children_positions[child] = it;
2333
2334                                 // register child with its scope
2335                                 d->position_to_children[it] = Impl::ScopeBuffer(scope, child);
2336                                 continue;
2337                         }
2338
2339                         if (iit->inset->lyxCode() != MATHMACRO_CODE)
2340                                 continue;
2341
2342                         // get macro data
2343                         MathMacroTemplate & macroTemplate =
2344                                 static_cast<MathMacroTemplate &>(*iit->inset);
2345                         MacroContext mc(*this, it);
2346                         macroTemplate.updateToContext(mc);
2347
2348                         // valid?
2349                         bool valid = macroTemplate.validMacro();
2350                         // FIXME: Should be fixNameAndCheckIfValid() in fact,
2351                         // then the BufferView's cursor will be invalid in
2352                         // some cases which leads to crashes.
2353                         if (!valid)
2354                                 continue;
2355
2356                         // register macro
2357                         d->macros[macroTemplate.name()][it] =
2358                                 Impl::ScopeMacro(scope, MacroData(*this, it));
2359                 }
2360
2361                 // next paragraph
2362                 it.pit()++;
2363                 it.pos() = 0;
2364         }
2365 }
2366
2367
2368 void Buffer::updateMacros() const
2369 {
2370         if (d->macro_lock)
2371                 return;
2372
2373         LYXERR(Debug::MACROS, "updateMacro of " << d->filename.onlyFileName());
2374
2375         // start with empty table
2376         d->macros.clear();
2377         d->children_positions.clear();
2378         d->position_to_children.clear();
2379
2380         // Iterate over buffer, starting with first paragraph
2381         // The scope must be bigger than any lookup DocIterator
2382         // later. For the global lookup, lastpit+1 is used, hence
2383         // we use lastpit+2 here.
2384         DocIterator it = par_iterator_begin();
2385         DocIterator outerScope = it;
2386         outerScope.pit() = outerScope.lastpit() + 2;
2387         updateMacros(it, outerScope);
2388 }
2389
2390
2391 void Buffer::getUsedBranches(std::list<docstring> & result, bool const from_master) const
2392 {
2393         // Iterate over buffer, starting with first paragraph
2394         // The scope must be bigger than any lookup DocIterator
2395         // later. For the global lookup, lastpit+1 is used, hence
2396         // we use lastpit+2 here.
2397         DocIterator it = par_iterator_begin();
2398         DocIterator scope = it;
2399         scope.pit() = scope.lastpit() + 2;
2400         pit_type lastpit = it.lastpit();
2401
2402         while (it.pit() <= lastpit) {
2403                 Paragraph & par = it.paragraph();
2404
2405                 // iterate over the insets of the current paragraph
2406                 InsetList const & insets = par.insetList();
2407                 InsetList::const_iterator iit = insets.begin();
2408                 InsetList::const_iterator end = insets.end();
2409                 for (; iit != end; ++iit) {
2410                         it.pos() = iit->pos;
2411
2412                         if (iit->inset->lyxCode() == BRANCH_CODE) {
2413                                 // get buffer of external file
2414                                 InsetBranch const & br =
2415                                         static_cast<InsetBranch const &>(*iit->inset);
2416                                 docstring const name = br.branch();
2417                                 if (!from_master && !params().branchlist().find(name))
2418                                         result.push_back(name);
2419                                 else if (from_master && !masterBuffer()->params().branchlist().find(name))
2420                                         result.push_back(name);
2421                                 continue;
2422                         }
2423
2424                         // is it an external file?
2425                         if (iit->inset->lyxCode() == INCLUDE_CODE) {
2426                                 // get buffer of external file
2427                                 InsetInclude const & inset =
2428                                         static_cast<InsetInclude const &>(*iit->inset);
2429                                 Buffer * child = inset.getChildBuffer();
2430                                 if (!child)
2431                                         continue;
2432                                 child->getUsedBranches(result, true);
2433                         }
2434                 }
2435                 // next paragraph
2436                 it.pit()++;
2437                 it.pos() = 0;
2438         }
2439         // remove duplicates
2440         result.unique();
2441 }
2442
2443
2444 void Buffer::updateMacroInstances() const
2445 {
2446         LYXERR(Debug::MACROS, "updateMacroInstances for "
2447                 << d->filename.onlyFileName());
2448         DocIterator it = doc_iterator_begin(this);
2449         DocIterator end = doc_iterator_end(this);
2450         for (; it != end; it.forwardPos()) {
2451                 // look for MathData cells in InsetMathNest insets
2452                 Inset * inset = it.nextInset();
2453                 if (!inset)
2454                         continue;
2455
2456                 InsetMath * minset = inset->asInsetMath();
2457                 if (!minset)
2458                         continue;
2459
2460                 // update macro in all cells of the InsetMathNest
2461                 DocIterator::idx_type n = minset->nargs();
2462                 MacroContext mc = MacroContext(*this, it);
2463                 for (DocIterator::idx_type i = 0; i < n; ++i) {
2464                         MathData & data = minset->cell(i);
2465                         data.updateMacros(0, mc);
2466                 }
2467         }
2468 }
2469
2470
2471 void Buffer::listMacroNames(MacroNameSet & macros) const
2472 {
2473         if (d->macro_lock)
2474                 return;
2475
2476         d->macro_lock = true;
2477
2478         // loop over macro names
2479         Impl::NamePositionScopeMacroMap::iterator nameIt = d->macros.begin();
2480         Impl::NamePositionScopeMacroMap::iterator nameEnd = d->macros.end();
2481         for (; nameIt != nameEnd; ++nameIt)
2482                 macros.insert(nameIt->first);
2483
2484         // loop over children
2485         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2486         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2487         for (; it != end; ++it)
2488                 it->first->listMacroNames(macros);
2489
2490         // call parent
2491         Buffer const * const pbuf = d->parent();
2492         if (pbuf)
2493                 pbuf->listMacroNames(macros);
2494
2495         d->macro_lock = false;
2496 }
2497
2498
2499 void Buffer::listParentMacros(MacroSet & macros, LaTeXFeatures & features) const
2500 {
2501         Buffer const * const pbuf = d->parent();
2502         if (!pbuf)
2503                 return;
2504
2505         MacroNameSet names;
2506         pbuf->listMacroNames(names);
2507
2508         // resolve macros
2509         MacroNameSet::iterator it = names.begin();
2510         MacroNameSet::iterator end = names.end();
2511         for (; it != end; ++it) {
2512                 // defined?
2513                 MacroData const * data =
2514                 pbuf->getMacro(*it, *this, false);
2515                 if (data) {
2516                         macros.insert(data);
2517
2518                         // we cannot access the original MathMacroTemplate anymore
2519                         // here to calls validate method. So we do its work here manually.
2520                         // FIXME: somehow make the template accessible here.
2521                         if (data->optionals() > 0)
2522                                 features.require("xargs");
2523                 }
2524         }
2525 }
2526
2527
2528 Buffer::References & Buffer::references(docstring const & label)
2529 {
2530         if (d->parent())
2531                 return const_cast<Buffer *>(masterBuffer())->references(label);
2532
2533         RefCache::iterator it = d->ref_cache_.find(label);
2534         if (it != d->ref_cache_.end())
2535                 return it->second.second;
2536
2537         static InsetLabel const * dummy_il = 0;
2538         static References const dummy_refs;
2539         it = d->ref_cache_.insert(
2540                 make_pair(label, make_pair(dummy_il, dummy_refs))).first;
2541         return it->second.second;
2542 }
2543
2544
2545 Buffer::References const & Buffer::references(docstring const & label) const
2546 {
2547         return const_cast<Buffer *>(this)->references(label);
2548 }
2549
2550
2551 void Buffer::setInsetLabel(docstring const & label, InsetLabel const * il)
2552 {
2553         masterBuffer()->d->ref_cache_[label].first = il;
2554 }
2555
2556
2557 InsetLabel const * Buffer::insetLabel(docstring const & label) const
2558 {
2559         return masterBuffer()->d->ref_cache_[label].first;
2560 }
2561
2562
2563 void Buffer::clearReferenceCache() const
2564 {
2565         if (!d->parent())
2566                 d->ref_cache_.clear();
2567 }
2568
2569
2570 void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
2571         InsetCode code)
2572 {
2573         //FIXME: This does not work for child documents yet.
2574         LASSERT(code == CITE_CODE, /**/);
2575         // Check if the label 'from' appears more than once
2576         vector<docstring> labels;
2577         string paramName;
2578         BiblioInfo const & keys = masterBibInfo();
2579         BiblioInfo::const_iterator bit  = keys.begin();
2580         BiblioInfo::const_iterator bend = keys.end();
2581
2582         for (; bit != bend; ++bit)
2583                 // FIXME UNICODE
2584                 labels.push_back(bit->first);
2585         paramName = "key";
2586
2587         if (count(labels.begin(), labels.end(), from) > 1)
2588                 return;
2589
2590         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
2591                 if (it->lyxCode() == code) {
2592                         InsetCommand & inset = static_cast<InsetCommand &>(*it);
2593                         docstring const oldValue = inset.getParam(paramName);
2594                         if (oldValue == from)
2595                                 inset.setParam(paramName, to);
2596                 }
2597         }
2598 }
2599
2600
2601 void Buffer::getSourceCode(odocstream & os, pit_type par_begin,
2602         pit_type par_end, bool full_source) const
2603 {
2604         OutputParams runparams(&params().encoding());
2605         runparams.nice = true;
2606         runparams.flavor = params().useXetex ? 
2607                 OutputParams::XETEX : OutputParams::LATEX;
2608         runparams.linelen = lyxrc.plaintext_linelen;
2609         // No side effect of file copying and image conversion
2610         runparams.dryrun = true;
2611
2612         if (full_source) {
2613                 os << "% " << _("Preview source code") << "\n\n";
2614                 d->texrow.reset();
2615                 d->texrow.newline();
2616                 d->texrow.newline();
2617                 if (isDocBook())
2618                         writeDocBookSource(os, absFileName(), runparams, false);
2619                 else
2620                         // latex or literate
2621                         writeLaTeXSource(os, string(), runparams, true, true);
2622         } else {
2623                 runparams.par_begin = par_begin;
2624                 runparams.par_end = par_end;
2625                 if (par_begin + 1 == par_end) {
2626                         os << "% "
2627                            << bformat(_("Preview source code for paragraph %1$d"), par_begin)
2628                            << "\n\n";
2629                 } else {
2630                         os << "% "
2631                            << bformat(_("Preview source code from paragraph %1$s to %2$s"),
2632                                         convert<docstring>(par_begin),
2633                                         convert<docstring>(par_end - 1))
2634                            << "\n\n";
2635                 }
2636                 TexRow texrow;
2637                 texrow.reset();
2638                 texrow.newline();
2639                 texrow.newline();
2640                 // output paragraphs
2641                 if (isDocBook())
2642                         docbookParagraphs(paragraphs(), *this, os, runparams);
2643                 else 
2644                         // latex or literate
2645                         latexParagraphs(*this, text(), os, texrow, runparams);
2646         }
2647 }
2648
2649
2650 ErrorList & Buffer::errorList(string const & type) const
2651 {
2652         static ErrorList emptyErrorList;
2653         map<string, ErrorList>::iterator I = d->errorLists.find(type);
2654         if (I == d->errorLists.end())
2655                 return emptyErrorList;
2656
2657         return I->second;
2658 }
2659
2660
2661 void Buffer::updateTocItem(std::string const & type,
2662         DocIterator const & dit) const
2663 {
2664         if (gui_)
2665                 gui_->updateTocItem(type, dit);
2666 }
2667
2668
2669 void Buffer::structureChanged() const
2670 {
2671         if (gui_)
2672                 gui_->structureChanged();
2673 }
2674
2675
2676 void Buffer::errors(string const & err, bool from_master) const
2677 {
2678         if (gui_)
2679                 gui_->errors(err, from_master);
2680 }
2681
2682
2683 void Buffer::message(docstring const & msg) const
2684 {
2685         if (gui_)
2686                 gui_->message(msg);
2687 }
2688
2689
2690 void Buffer::setBusy(bool on) const
2691 {
2692         if (gui_)
2693                 gui_->setBusy(on);
2694 }
2695
2696
2697 void Buffer::setReadOnly(bool on) const
2698 {
2699         if (d->wa_)
2700                 d->wa_->setReadOnly(on);
2701 }
2702
2703
2704 void Buffer::updateTitles() const
2705 {
2706         if (d->wa_)
2707                 d->wa_->updateTitles();
2708 }
2709
2710
2711 void Buffer::resetAutosaveTimers() const
2712 {
2713         if (gui_)
2714                 gui_->resetAutosaveTimers();
2715 }
2716
2717
2718 bool Buffer::hasGuiDelegate() const
2719 {
2720         return gui_;
2721 }
2722
2723
2724 void Buffer::setGuiDelegate(frontend::GuiBufferDelegate * gui)
2725 {
2726         gui_ = gui;
2727 }
2728
2729
2730
2731 namespace {
2732
2733 class AutoSaveBuffer : public ForkedProcess {
2734 public:
2735         ///
2736         AutoSaveBuffer(Buffer const & buffer, FileName const & fname)
2737                 : buffer_(buffer), fname_(fname) {}
2738         ///
2739         virtual boost::shared_ptr<ForkedProcess> clone() const
2740         {
2741                 return boost::shared_ptr<ForkedProcess>(new AutoSaveBuffer(*this));
2742         }
2743         ///
2744         int start()
2745         {
2746                 command_ = to_utf8(bformat(_("Auto-saving %1$s"),
2747                                                  from_utf8(fname_.absFilename())));
2748                 return run(DontWait);
2749         }
2750 private:
2751         ///
2752         virtual int generateChild();
2753         ///
2754         Buffer const & buffer_;
2755         FileName fname_;
2756 };
2757
2758
2759 int AutoSaveBuffer::generateChild()
2760 {
2761         // tmp_ret will be located (usually) in /tmp
2762         // will that be a problem?
2763         // Note that this calls ForkedCalls::fork(), so it's
2764         // ok cross-platform.
2765         pid_t const pid = fork();
2766         // If you want to debug the autosave
2767         // you should set pid to -1, and comment out the fork.
2768         if (pid != 0 && pid != -1)
2769                 return pid;
2770
2771         // pid = -1 signifies that lyx was unable
2772         // to fork. But we will do the save
2773         // anyway.
2774         bool failed = false;
2775         FileName const tmp_ret = FileName::tempName("lyxauto");
2776         if (!tmp_ret.empty()) {
2777                 buffer_.writeFile(tmp_ret);
2778                 // assume successful write of tmp_ret
2779                 if (!tmp_ret.moveTo(fname_))
2780                         failed = true;
2781         } else
2782                 failed = true;
2783
2784         if (failed) {
2785                 // failed to write/rename tmp_ret so try writing direct
2786                 if (!buffer_.writeFile(fname_)) {
2787                         // It is dangerous to do this in the child,
2788                         // but safe in the parent, so...
2789                         if (pid == -1) // emit message signal.
2790                                 buffer_.message(_("Autosave failed!"));
2791                 }
2792         }
2793
2794         if (pid == 0) // we are the child so...
2795                 _exit(0);
2796
2797         return pid;
2798 }
2799
2800 } // namespace anon
2801
2802
2803 FileName Buffer::getAutosaveFilename() const
2804 {
2805         // if the document is unnamed try to save in the backup dir, else
2806         // in the default document path, and as a last try in the filePath, 
2807         // which will most often be the temporary directory
2808         string fpath;
2809         if (isUnnamed())
2810                 fpath = lyxrc.backupdir_path.empty() ? lyxrc.document_path
2811                         : lyxrc.backupdir_path;
2812         if (!isUnnamed() || fpath.empty() || !FileName(fpath).exists())
2813                 fpath = filePath();
2814
2815         string const fname = "#" + d->filename.onlyFileName() + "#";
2816         return makeAbsPath(fname, fpath);
2817 }
2818
2819
2820 void Buffer::removeAutosaveFile() const
2821 {
2822         FileName const f = getAutosaveFilename();
2823         if (f.exists())
2824                 f.removeFile();
2825 }
2826
2827
2828 void Buffer::moveAutosaveFile(support::FileName const & oldauto) const
2829 {
2830         FileName const newauto = getAutosaveFilename();
2831         if (!(oldauto == newauto || oldauto.moveTo(newauto)))
2832                 LYXERR0("Unable to remove autosave file `" << oldauto << "'!");
2833 }
2834
2835
2836 // Perfect target for a thread...
2837 void Buffer::autoSave() const
2838 {
2839         if (isBakClean() || isReadonly()) {
2840                 // We don't save now, but we'll try again later
2841                 resetAutosaveTimers();
2842                 return;
2843         }
2844
2845         // emit message signal.
2846         message(_("Autosaving current document..."));
2847         AutoSaveBuffer autosave(*this, getAutosaveFilename());
2848         autosave.start();
2849
2850         markBakClean();
2851         resetAutosaveTimers();
2852 }
2853
2854
2855 string Buffer::bufferFormat() const
2856 {
2857         string format = params().documentClass().outputFormat();
2858         if (format == "latex") {
2859                 if (params().useXetex)
2860                         return "xetex";
2861                 if (params().encoding().package() == Encoding::japanese)
2862                         return "platex";
2863         }
2864         return format;
2865 }
2866
2867
2868 string Buffer::getDefaultOutputFormat() const
2869 {
2870         if (!params().defaultOutputFormat.empty()
2871             && params().defaultOutputFormat != "default")
2872                 return params().defaultOutputFormat;
2873         typedef vector<Format const *> Formats;
2874         Formats formats = exportableFormats(true);
2875         if (isDocBook()
2876             || isLiterate()
2877             || params().useXetex
2878             || params().encoding().package() == Encoding::japanese) {
2879                 if (formats.empty())
2880                         return string();
2881                 // return the first we find
2882                 return formats.front()->name();
2883         }
2884         return lyxrc.default_view_format;
2885 }
2886
2887
2888
2889 bool Buffer::doExport(string const & format, bool put_in_tempdir,
2890         string & result_file) const
2891 {
2892         string backend_format;
2893         OutputParams runparams(&params().encoding());
2894         runparams.flavor = OutputParams::LATEX;
2895         runparams.linelen = lyxrc.plaintext_linelen;
2896         vector<string> backs = backends();
2897         if (find(backs.begin(), backs.end(), format) == backs.end()) {
2898                 // Get shortest path to format
2899                 Graph::EdgePath path;
2900                 for (vector<string>::const_iterator it = backs.begin();
2901                      it != backs.end(); ++it) {
2902                         Graph::EdgePath p = theConverters().getPath(*it, format);
2903                         if (!p.empty() && (path.empty() || p.size() < path.size())) {
2904                                 backend_format = *it;
2905                                 path = p;
2906                         }
2907                 }
2908                 if (!path.empty())
2909                         runparams.flavor = theConverters().getFlavor(path);
2910                 else {
2911                         Alert::error(_("Couldn't export file"),
2912                                 bformat(_("No information for exporting the format %1$s."),
2913                                    formats.prettyName(format)));
2914                         return false;
2915                 }
2916         } else {
2917                 backend_format = format;
2918                 // FIXME: Don't hardcode format names here, but use a flag
2919                 if (backend_format == "pdflatex")
2920                         runparams.flavor = OutputParams::PDFLATEX;
2921         }
2922
2923         string filename = latexName(false);
2924         filename = addName(temppath(), filename);
2925         filename = changeExtension(filename,
2926                                    formats.extension(backend_format));
2927
2928         // fix macros
2929         updateMacroInstances();
2930
2931         // Plain text backend
2932         if (backend_format == "text")
2933                 writePlaintextFile(*this, FileName(filename), runparams);
2934         // no backend
2935         else if (backend_format == "xhtml")
2936                 makeLyXHTMLFile(FileName(filename), runparams);
2937         else if (backend_format == "lyx")
2938                 writeFile(FileName(filename));
2939         // Docbook backend
2940         else if (isDocBook()) {
2941                 runparams.nice = !put_in_tempdir;
2942                 makeDocBookFile(FileName(filename), runparams);
2943         }
2944         // LaTeX backend
2945         else if (backend_format == format) {
2946                 runparams.nice = true;
2947                 if (!makeLaTeXFile(FileName(filename), string(), runparams))
2948                         return false;
2949         } else if (!lyxrc.tex_allows_spaces
2950                    && contains(filePath(), ' ')) {
2951                 Alert::error(_("File name error"),
2952                            _("The directory path to the document cannot contain spaces."));
2953                 return false;
2954         } else {
2955                 runparams.nice = false;
2956                 if (!makeLaTeXFile(FileName(filename), filePath(), runparams))
2957                         return false;
2958         }
2959
2960         string const error_type = (format == "program")
2961                 ? "Build" : bufferFormat();
2962         ErrorList & error_list = d->errorLists[error_type];
2963         string const ext = formats.extension(format);
2964         FileName const tmp_result_file(changeExtension(filename, ext));
2965         bool const success = theConverters().convert(this, FileName(filename),
2966                 tmp_result_file, FileName(absFileName()), backend_format, format,
2967                 error_list);
2968         // Emit the signal to show the error list.
2969         if (format != backend_format) {
2970                 errors(error_type);
2971                 // also to the children, in case of master-buffer-view
2972                 std::vector<Buffer *> clist = getChildren();
2973                 for (vector<Buffer *>::const_iterator cit = clist.begin();
2974                      cit != clist.end(); ++cit)
2975                         (*cit)->errors(error_type, true);
2976         }
2977         if (!success)
2978                 return false;
2979
2980         if (put_in_tempdir) {
2981                 result_file = tmp_result_file.absFilename();
2982                 return true;
2983         }
2984
2985         result_file = changeExtension(absFileName(), ext);
2986         // We need to copy referenced files (e. g. included graphics
2987         // if format == "dvi") to the result dir.
2988         vector<ExportedFile> const files =
2989                 runparams.exportdata->externalFiles(format);
2990         string const dest = onlyPath(result_file);
2991         CopyStatus status = SUCCESS;
2992         for (vector<ExportedFile>::const_iterator it = files.begin();
2993                 it != files.end() && status != CANCEL; ++it) {
2994                 string const fmt = formats.getFormatFromFile(it->sourceName);
2995                 status = copyFile(fmt, it->sourceName,
2996                         makeAbsPath(it->exportName, dest),
2997                         it->exportName, status == FORCE);
2998         }
2999         if (status == CANCEL) {
3000                 message(_("Document export cancelled."));
3001         } else if (tmp_result_file.exists()) {
3002                 // Finally copy the main file
3003                 status = copyFile(format, tmp_result_file,
3004                         FileName(result_file), result_file,
3005                         status == FORCE);
3006                 message(bformat(_("Document exported as %1$s "
3007                         "to file `%2$s'"),
3008                         formats.prettyName(format),
3009                         makeDisplayPath(result_file)));
3010         } else {
3011                 // This must be a dummy converter like fax (bug 1888)
3012                 message(bformat(_("Document exported as %1$s"),
3013                         formats.prettyName(format)));
3014         }
3015
3016         return true;
3017 }
3018
3019
3020 bool Buffer::doExport(string const & format, bool put_in_tempdir) const
3021 {
3022         string result_file;
3023         return doExport(format, put_in_tempdir, result_file);
3024 }
3025
3026
3027 bool Buffer::preview(string const & format) const
3028 {
3029         string result_file;
3030         if (!doExport(format, true, result_file))
3031                 return false;
3032         return formats.view(*this, FileName(result_file), format);
3033 }
3034
3035
3036 bool Buffer::isExportable(string const & format) const
3037 {
3038         vector<string> backs = backends();
3039         for (vector<string>::const_iterator it = backs.begin();
3040              it != backs.end(); ++it)
3041                 if (theConverters().isReachable(*it, format))
3042                         return true;
3043         return false;
3044 }
3045
3046
3047 vector<Format const *> Buffer::exportableFormats(bool only_viewable) const
3048 {
3049         vector<string> backs = backends();
3050         vector<Format const *> result =
3051                 theConverters().getReachable(backs[0], only_viewable, true);
3052         for (vector<string>::const_iterator it = backs.begin() + 1;
3053              it != backs.end(); ++it) {
3054                 vector<Format const *>  r =
3055                         theConverters().getReachable(*it, only_viewable, false);
3056                 result.insert(result.end(), r.begin(), r.end());
3057         }
3058         return result;
3059 }
3060
3061
3062 vector<string> Buffer::backends() const
3063 {
3064         vector<string> v;
3065         if (params().baseClass()->isTeXClassAvailable()) {
3066                 v.push_back(bufferFormat());
3067                 // FIXME: Don't hardcode format names here, but use a flag
3068                 if (v.back() == "latex")
3069                         v.push_back("pdflatex");
3070         }
3071         v.push_back("text");
3072         v.push_back("xhtml");
3073         v.push_back("lyx");
3074         return v;
3075 }
3076
3077
3078 bool Buffer::readFileHelper(FileName const & s)
3079 {
3080         // File information about normal file
3081         if (!s.exists()) {
3082                 docstring const file = makeDisplayPath(s.absFilename(), 50);
3083                 docstring text = bformat(_("The specified document\n%1$s"
3084                                                      "\ncould not be read."), file);
3085                 Alert::error(_("Could not read document"), text);
3086                 return false;
3087         }
3088
3089         // Check if emergency save file exists and is newer.
3090         FileName const e(s.absFilename() + ".emergency");
3091
3092         if (e.exists() && s.exists() && e.lastModified() > s.lastModified()) {
3093                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3094                 docstring const text =
3095                         bformat(_("An emergency save of the document "
3096                                   "%1$s exists.\n\n"
3097                                                "Recover emergency save?"), file);
3098                 switch (Alert::prompt(_("Load emergency save?"), text, 0, 2,
3099                                       _("&Recover"),  _("&Load Original"),
3100                                       _("&Cancel")))
3101                 {
3102                 case 0:
3103                         // the file is not saved if we load the emergency file.
3104                         markDirty();
3105                         return readFile(e);
3106                 case 1:
3107                         break;
3108                 default:
3109                         return false;
3110                 }
3111         }
3112
3113         // Now check if autosave file is newer.
3114         FileName const a(onlyPath(s.absFilename()) + '#' + onlyFilename(s.absFilename()) + '#');
3115
3116         if (a.exists() && s.exists() && a.lastModified() > s.lastModified()) {
3117                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3118                 docstring const text =
3119                         bformat(_("The backup of the document "
3120                                   "%1$s is newer.\n\nLoad the "
3121                                                "backup instead?"), file);
3122                 switch (Alert::prompt(_("Load backup?"), text, 0, 2,
3123                                       _("&Load backup"), _("Load &original"),
3124                                       _("&Cancel") ))
3125                 {
3126                 case 0:
3127                         // the file is not saved if we load the autosave file.
3128                         markDirty();
3129                         return readFile(a);
3130                 case 1:
3131                         // Here we delete the autosave
3132                         a.removeFile();
3133                         break;
3134                 default:
3135                         return false;
3136                 }
3137         }
3138         return readFile(s);
3139 }
3140
3141
3142 bool Buffer::loadLyXFile(FileName const & s)
3143 {
3144         if (s.isReadableFile()) {
3145                 if (readFileHelper(s)) {
3146                         lyxvc().file_found_hook(s);
3147                         if (!s.isWritable())
3148                                 setReadonly(true);
3149                         return true;
3150                 }
3151         } else {
3152                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3153                 // Here we probably should run
3154                 if (LyXVC::file_not_found_hook(s)) {
3155                         docstring const text =
3156                                 bformat(_("Do you want to retrieve the document"
3157                                                        " %1$s from version control?"), file);
3158                         int const ret = Alert::prompt(_("Retrieve from version control?"),
3159                                 text, 0, 1, _("&Retrieve"), _("&Cancel"));
3160
3161                         if (ret == 0) {
3162                                 // How can we know _how_ to do the checkout?
3163                                 // With the current VC support it has to be,
3164                                 // a RCS file since CVS do not have special ,v files.
3165                                 RCS::retrieve(s);
3166                                 return loadLyXFile(s);
3167                         }
3168                 }
3169         }
3170         return false;
3171 }
3172
3173
3174 void Buffer::bufferErrors(TeXErrors const & terr, ErrorList & errorList) const
3175 {
3176         TeXErrors::Errors::const_iterator cit = terr.begin();
3177         TeXErrors::Errors::const_iterator end = terr.end();
3178
3179         for (; cit != end; ++cit) {
3180                 int id_start = -1;
3181                 int pos_start = -1;
3182                 int errorRow = cit->error_in_line;
3183                 bool found = d->texrow.getIdFromRow(errorRow, id_start,
3184                                                        pos_start);
3185                 int id_end = -1;
3186                 int pos_end = -1;
3187                 do {
3188                         ++errorRow;
3189                         found = d->texrow.getIdFromRow(errorRow, id_end, pos_end);
3190                 } while (found && id_start == id_end && pos_start == pos_end);
3191
3192                 errorList.push_back(ErrorItem(cit->error_desc,
3193                         cit->error_text, id_start, pos_start, pos_end));
3194         }
3195 }
3196
3197
3198 void Buffer::setBuffersForInsets() const
3199 {
3200         inset().setBuffer(const_cast<Buffer &>(*this)); 
3201 }
3202
3203
3204 void Buffer::updateLabels(UpdateScope scope) const
3205 {
3206         // Use the master text class also for child documents
3207         Buffer const * const master = masterBuffer();
3208         DocumentClass const & textclass = master->params().documentClass();
3209
3210         // keep the buffers to be children in this set. If the call from the
3211         // master comes back we can see which of them were actually seen (i.e.
3212         // via an InsetInclude). The remaining ones in the set need still be updated.
3213         static std::set<Buffer const *> bufToUpdate;
3214         if (scope == UpdateMaster) {
3215                 // If this is a child document start with the master
3216                 if (master != this) {
3217                         bufToUpdate.insert(this);
3218                         master->updateLabels();
3219                         // Do this here in case the master has no gui associated with it. Then, 
3220                         // the TocModel is not updated and TocModel::toc_ is invalid (bug 5699).
3221                         if (!master->gui_)
3222                                 structureChanged();
3223
3224                         // was buf referenced from the master (i.e. not in bufToUpdate anymore)?
3225                         if (bufToUpdate.find(this) == bufToUpdate.end())
3226                                 return;
3227                 }
3228
3229                 // start over the counters in the master
3230                 textclass.counters().reset();
3231         }
3232
3233         // update will be done below for this buffer
3234         bufToUpdate.erase(this);
3235
3236         // update all caches
3237         clearReferenceCache();
3238         updateMacros();
3239
3240         Buffer & cbuf = const_cast<Buffer &>(*this);
3241
3242         LASSERT(!text().paragraphs().empty(), /**/);
3243
3244         // do the real work
3245         ParIterator parit = cbuf.par_iterator_begin();
3246         updateLabels(parit);
3247
3248         if (master != this)
3249                 // TocBackend update will be done later.
3250                 return;
3251
3252         cbuf.tocBackend().update();
3253         if (scope == UpdateMaster)
3254                 cbuf.structureChanged();
3255 }
3256
3257
3258 static depth_type getDepth(DocIterator const & it)
3259 {
3260         depth_type depth = 0;
3261         for (size_t i = 0 ; i < it.depth() ; ++i)
3262                 if (!it[i].inset().inMathed())
3263                         depth += it[i].paragraph().getDepth() + 1;
3264         // remove 1 since the outer inset does not count
3265         return depth - 1;
3266 }
3267
3268 static depth_type getItemDepth(ParIterator const & it)
3269 {
3270         Paragraph const & par = *it;
3271         LabelType const labeltype = par.layout().labeltype;
3272
3273         if (labeltype != LABEL_ENUMERATE && labeltype != LABEL_ITEMIZE)
3274                 return 0;
3275
3276         // this will hold the lowest depth encountered up to now.
3277         depth_type min_depth = getDepth(it);
3278         ParIterator prev_it = it;
3279         while (true) {
3280                 if (prev_it.pit())
3281                         --prev_it.top().pit();
3282                 else {
3283                         // start of nested inset: go to outer par
3284                         prev_it.pop_back();
3285                         if (prev_it.empty()) {
3286                                 // start of document: nothing to do
3287                                 return 0;
3288                         }
3289                 }
3290
3291                 // We search for the first paragraph with same label
3292                 // that is not more deeply nested.
3293                 Paragraph & prev_par = *prev_it;
3294                 depth_type const prev_depth = getDepth(prev_it);
3295                 if (labeltype == prev_par.layout().labeltype) {
3296                         if (prev_depth < min_depth)
3297                                 return prev_par.itemdepth + 1;
3298                         if (prev_depth == min_depth)
3299                                 return prev_par.itemdepth;
3300                 }
3301                 min_depth = min(min_depth, prev_depth);
3302                 // small optimization: if we are at depth 0, we won't
3303                 // find anything else
3304                 if (prev_depth == 0)
3305                         return 0;
3306         }
3307 }
3308
3309
3310 static bool needEnumCounterReset(ParIterator const & it)
3311 {
3312         Paragraph const & par = *it;
3313         LASSERT(par.layout().labeltype == LABEL_ENUMERATE, /**/);
3314         depth_type const cur_depth = par.getDepth();
3315         ParIterator prev_it = it;
3316         while (prev_it.pit()) {
3317                 --prev_it.top().pit();
3318                 Paragraph const & prev_par = *prev_it;
3319                 if (prev_par.getDepth() <= cur_depth)
3320                         return  prev_par.layout().labeltype != LABEL_ENUMERATE;
3321         }
3322         // start of nested inset: reset
3323         return true;
3324 }
3325
3326
3327 // set the label of a paragraph. This includes the counters.
3328 static void setLabel(Buffer const & buf, ParIterator & it)
3329 {
3330         BufferParams const & bp = buf.masterBuffer()->params();
3331         DocumentClass const & textclass = bp.documentClass();
3332         Paragraph & par = it.paragraph();
3333         Layout const & layout = par.layout();
3334         Counters & counters = textclass.counters();
3335
3336         if (par.params().startOfAppendix()) {
3337                 // FIXME: only the counter corresponding to toplevel
3338                 // sectionning should be reset
3339                 counters.reset();
3340                 counters.appendix(true);
3341         }
3342         par.params().appendix(counters.appendix());
3343
3344         // Compute the item depth of the paragraph
3345         par.itemdepth = getItemDepth(it);
3346
3347         if (layout.margintype == MARGIN_MANUAL
3348             || layout.latextype == LATEX_BIB_ENVIRONMENT) {
3349                 if (par.params().labelWidthString().empty())
3350                         par.params().labelWidthString(par.translateIfPossible(layout.labelstring(), bp));
3351         } else {
3352                 par.params().labelWidthString(docstring());
3353         }
3354
3355         switch(layout.labeltype) {
3356         case LABEL_COUNTER:
3357                 if (layout.toclevel <= bp.secnumdepth
3358                     && (layout.latextype != LATEX_ENVIRONMENT
3359                         || isFirstInSequence(it.pit(), it.plist()))) {
3360                         counters.step(layout.counter);
3361                         par.params().labelString(
3362                                 par.expandLabel(layout, bp));
3363                 } else
3364                         par.params().labelString(docstring());
3365                 break;
3366
3367         case LABEL_ITEMIZE: {
3368                 // At some point of time we should do something more
3369                 // clever here, like:
3370                 //   par.params().labelString(
3371                 //    bp.user_defined_bullet(par.itemdepth).getText());
3372                 // for now, use a simple hardcoded label
3373                 docstring itemlabel;
3374                 switch (par.itemdepth) {
3375                 case 0:
3376                         itemlabel = char_type(0x2022);
3377                         break;
3378                 case 1:
3379                         itemlabel = char_type(0x2013);
3380                         break;
3381                 case 2:
3382                         itemlabel = char_type(0x2217);
3383                         break;
3384                 case 3:
3385                         itemlabel = char_type(0x2219); // or 0x00b7
3386                         break;
3387                 }
3388                 par.params().labelString(itemlabel);
3389                 break;
3390         }
3391
3392         case LABEL_ENUMERATE: {
3393                 docstring enumcounter = layout.counter.empty() ? from_ascii("enum") : layout.counter;
3394
3395                 switch (par.itemdepth) {
3396                 case 2:
3397                         enumcounter += 'i';
3398                 case 1:
3399                         enumcounter += 'i';
3400                 case 0:
3401                         enumcounter += 'i';
3402                         break;
3403                 case 3:
3404                         enumcounter += "iv";
3405                         break;
3406                 default:
3407                         // not a valid enumdepth...
3408                         break;
3409                 }
3410
3411                 // Maybe we have to reset the enumeration counter.
3412                 if (needEnumCounterReset(it))
3413                         counters.reset(enumcounter);
3414                 counters.step(enumcounter);
3415
3416                 par.params().labelString(counters.theCounter(enumcounter));
3417
3418                 break;
3419         }
3420
3421         case LABEL_SENSITIVE: {
3422                 string const & type = counters.current_float();
3423                 docstring full_label;
3424                 if (type.empty())
3425                         full_label = buf.B_("Senseless!!! ");
3426                 else {
3427                         docstring name = buf.B_(textclass.floats().getType(type).name());
3428                         if (counters.hasCounter(from_utf8(type))) {
3429                                 counters.step(from_utf8(type));
3430                                 full_label = bformat(from_ascii("%1$s %2$s:"), 
3431                                                      name, 
3432                                                      counters.theCounter(from_utf8(type)));
3433                         } else
3434                                 full_label = bformat(from_ascii("%1$s #:"), name);      
3435                 }
3436                 par.params().labelString(full_label);   
3437                 break;
3438         }
3439
3440         case LABEL_NO_LABEL:
3441                 par.params().labelString(docstring());
3442                 break;
3443
3444         case LABEL_MANUAL:
3445         case LABEL_TOP_ENVIRONMENT:
3446         case LABEL_CENTERED_TOP_ENVIRONMENT:
3447         case LABEL_STATIC:      
3448         case LABEL_BIBLIO:
3449                 par.params().labelString(
3450                         par.translateIfPossible(layout.labelstring(), bp));
3451                 break;
3452         }
3453 }
3454
3455
3456 void Buffer::updateLabels(ParIterator & parit) const
3457 {
3458         LASSERT(parit.pit() == 0, /**/);
3459
3460         // set the position of the text in the buffer to be able
3461         // to resolve macros in it. This has nothing to do with
3462         // labels, but by putting it here we avoid implementing
3463         // a whole bunch of traversal routines just for this call.
3464         parit.text()->setMacrocontextPosition(parit);
3465
3466         depth_type maxdepth = 0;
3467         pit_type const lastpit = parit.lastpit();
3468         for ( ; parit.pit() <= lastpit ; ++parit.pit()) {
3469                 // reduce depth if necessary
3470                 parit->params().depth(min(parit->params().depth(), maxdepth));
3471                 maxdepth = parit->getMaxDepthAfter();
3472
3473                 // set the counter for this paragraph
3474                 setLabel(*this, parit);
3475
3476                 // Now the insets
3477                 InsetList::const_iterator iit = parit->insetList().begin();
3478                 InsetList::const_iterator end = parit->insetList().end();
3479                 for (; iit != end; ++iit) {
3480                         parit.pos() = iit->pos;
3481                         iit->inset->updateLabels(parit);
3482                 }
3483         }
3484 }
3485
3486
3487 int Buffer::spellCheck(DocIterator & from, DocIterator & to,
3488         WordLangTuple & word_lang, docstring_list & suggestions) const
3489 {
3490         int progress = 0;
3491         WordLangTuple wl;
3492         suggestions.clear();
3493         word_lang = WordLangTuple();
3494         // OK, we start from here.
3495         DocIterator const end = doc_iterator_end(this);
3496         for (; from != end; from.forwardPos()) {
3497                 // We are only interested in text so remove the math CursorSlice.
3498                 while (from.inMathed())
3499                         from.forwardInset();
3500                 to = from;
3501                 if (from.paragraph().spellCheck(from.pos(), to.pos(), wl, suggestions)) {
3502                         word_lang = wl;
3503                         break;
3504                 }
3505                 from = to;
3506                 ++progress;
3507         }
3508         return progress;
3509 }
3510
3511 } // namespace lyx