]> git.lyx.org Git - lyx.git/blob - src/Buffer.cpp
#7407, home_dir could be a static function and also be called by the
[lyx.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.h"
53 #include "ParagraphParameters.h"
54 #include "ParIterator.h"
55 #include "PDFOptions.h"
56 #include "SpellChecker.h"
57 #include "sgml.h"
58 #include "TexRow.h"
59 #include "TexStream.h"
60 #include "Text.h"
61 #include "TextClass.h"
62 #include "TocBackend.h"
63 #include "Undo.h"
64 #include "VCBackend.h"
65 #include "version.h"
66 #include "WordLangTuple.h"
67 #include "WordList.h"
68
69 #include "insets/InsetBibtex.h"
70 #include "insets/InsetBranch.h"
71 #include "insets/InsetInclude.h"
72 #include "insets/InsetTabular.h"
73 #include "insets/InsetText.h"
74
75 #include "mathed/InsetMathHull.h"
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 "support/bind.h"
107 #include "support/shared_ptr.h"
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 = 413; // rgh: html_css_as_file
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
146 class Buffer::Impl
147 {
148 public:
149         Impl(Buffer * owner, FileName const & file, bool readonly, Buffer const * cloned_buffer);
150
151         ~Impl()
152         {
153                 if (wa_) {
154                         wa_->closeAll();
155                         delete wa_;
156                 }
157                 delete inset;
158         }
159         
160         /// search for macro in local (buffer) table or in children
161         MacroData const * getBufferMacro(docstring const & name,
162                 DocIterator const & pos) const;
163
164         /// Update macro table starting with position of it \param it in some
165         /// text inset.
166         void updateMacros(DocIterator & it, DocIterator & scope);
167         ///
168         void setLabel(ParIterator & it, UpdateType utype) const;
169
170         /** If we have branches that use the file suffix
171             feature, return the file name with suffix appended.
172         */
173         support::FileName exportFileName() const;
174
175         Buffer * owner_;
176
177         BufferParams params;
178         LyXVC lyxvc;
179         FileName temppath;
180         mutable TexRow texrow;
181
182         /// need to regenerate .tex?
183         DepClean dep_clean;
184
185         /// is save needed?
186         mutable bool lyx_clean;
187
188         /// is autosave needed?
189         mutable bool bak_clean;
190
191         /// is this an unnamed file (New...)?
192         bool unnamed;
193
194         /// buffer is r/o
195         bool read_only;
196
197         /// name of the file the buffer is associated with.
198         FileName filename;
199
200         /** Set to true only when the file is fully loaded.
201          *  Used to prevent the premature generation of previews
202          *  and by the citation inset.
203          */
204         bool file_fully_loaded;
205
206         ///
207         mutable TocBackend toc_backend;
208
209         /// macro tables
210         typedef pair<DocIterator, MacroData> ScopeMacro;
211         typedef map<DocIterator, ScopeMacro> PositionScopeMacroMap;
212         typedef map<docstring, PositionScopeMacroMap> NamePositionScopeMacroMap;
213         /// map from the macro name to the position map,
214         /// which maps the macro definition position to the scope and the MacroData.
215         NamePositionScopeMacroMap macros;
216         /// This seem to change the way Buffer::getMacro() works
217         mutable bool macro_lock;
218
219         /// positions of child buffers in the buffer
220         typedef map<Buffer const * const, DocIterator> BufferPositionMap;
221         typedef pair<DocIterator, Buffer const *> ScopeBuffer;
222         typedef map<DocIterator, ScopeBuffer> PositionScopeBufferMap;
223         /// position of children buffers in this buffer
224         BufferPositionMap children_positions;
225         /// map from children inclusion positions to their scope and their buffer
226         PositionScopeBufferMap position_to_children;
227
228         /// Container for all sort of Buffer dependant errors.
229         map<string, ErrorList> errorLists;
230
231         /// timestamp and checksum used to test if the file has been externally
232         /// modified. (Used to properly enable 'File->Revert to saved', bug 4114).
233         time_t timestamp_;
234         unsigned long checksum_;
235
236         ///
237         frontend::WorkAreaManager * wa_;
238         ///
239         frontend::GuiBufferDelegate * gui_;
240
241         ///
242         Undo undo_;
243
244         /// A cache for the bibfiles (including bibfiles of loaded child
245         /// documents), needed for appropriate update of natbib labels.
246         mutable support::FileNameList bibfiles_cache_;
247
248         // FIXME The caching mechanism could be improved. At present, we have a
249         // cache for each Buffer, that caches all the bibliography info for that
250         // Buffer. A more efficient solution would be to have a global cache per
251         // file, and then to construct the Buffer's bibinfo from that.
252         /// A cache for bibliography info
253         mutable BiblioInfo bibinfo_;
254         /// whether the bibinfo cache is valid
255         mutable bool bibinfo_cache_valid_;
256         /// whether the bibfile cache is valid
257         mutable bool bibfile_cache_valid_;
258         /// Cache of timestamps of .bib files
259         map<FileName, time_t> bibfile_status_;
260
261         mutable RefCache ref_cache_;
262
263         /// our Text that should be wrapped in an InsetText
264         InsetText * inset;
265
266         /// This is here to force the test to be done whenever parent_buffer
267         /// is accessed.
268         Buffer const * parent() const { 
269                 // if parent_buffer is not loaded, then it has been unloaded,
270                 // which means that parent_buffer is an invalid pointer. So we
271                 // set it to null in that case.
272                 // however, the BufferList doesn't know about cloned buffers, so
273                 // they will always be regarded as unloaded. in that case, we hope
274                 // for the best.
275                 if (!cloned_buffer_ && !theBufferList().isLoaded(parent_buffer))
276                         parent_buffer = 0;
277                 return parent_buffer; 
278         }
279         
280         ///
281         void setParent(Buffer const * pb) {
282                 if (parent_buffer == pb)
283                         // nothing to do
284                         return;
285                 if (!cloned_buffer_ && parent_buffer && pb)
286                         LYXERR0("Warning: a buffer should not have two parents!");
287                 parent_buffer = pb;
288                 if (!cloned_buffer_ && parent_buffer) {
289                         parent_buffer->invalidateBibfileCache();
290                         parent_buffer->invalidateBibinfoCache();
291                 }
292         }
293
294         /// If non zero, this buffer is a clone of existing buffer \p cloned_buffer_
295         /// This one is useful for preview detached in a thread.
296         Buffer const * cloned_buffer_;
297         /// are we in the process of exporting this buffer?
298         mutable bool doing_export;
299         
300 private:
301         /// So we can force access via the accessors.
302         mutable Buffer const * parent_buffer;
303
304 };
305
306
307 /// Creates the per buffer temporary directory
308 static FileName createBufferTmpDir()
309 {
310         static int count;
311         // We are in our own directory.  Why bother to mangle name?
312         // In fact I wrote this code to circumvent a problematic behaviour
313         // (bug?) of EMX mkstemp().
314         FileName tmpfl(package().temp_dir().absFileName() + "/lyx_tmpbuf" +
315                 convert<string>(count++));
316
317         if (!tmpfl.createDirectory(0777)) {
318                 throw ExceptionMessage(WarningException, _("Disk Error: "), bformat(
319                         _("LyX could not create the temporary directory '%1$s' (Disk is full maybe?)"),
320                         from_utf8(tmpfl.absFileName())));
321         }
322         return tmpfl;
323 }
324
325
326 Buffer::Impl::Impl(Buffer * owner, FileName const & file, bool readonly_,
327         Buffer const * cloned_buffer)
328         : owner_(owner), lyx_clean(true), bak_clean(true), unnamed(false),
329           read_only(readonly_), filename(file), file_fully_loaded(false),
330           toc_backend(owner), macro_lock(false), timestamp_(0),
331           checksum_(0), wa_(0), gui_(0), undo_(*owner), bibinfo_cache_valid_(false),
332                 bibfile_cache_valid_(false), cloned_buffer_(cloned_buffer), 
333                 doing_export(false), parent_buffer(0)
334 {
335         if (!cloned_buffer_) {
336                 temppath = createBufferTmpDir();
337                 lyxvc.setBuffer(owner_);
338                 if (use_gui)
339                         wa_ = new frontend::WorkAreaManager;
340                 return;
341         }
342         temppath = cloned_buffer_->d->temppath;
343         file_fully_loaded = true;
344         params = cloned_buffer_->d->params;
345         bibfiles_cache_ = cloned_buffer_->d->bibfiles_cache_;
346         bibinfo_ = cloned_buffer_->d->bibinfo_;
347         bibinfo_cache_valid_ = cloned_buffer_->d->bibinfo_cache_valid_;
348         bibfile_cache_valid_ = cloned_buffer_->d->bibfile_cache_valid_;
349         bibfile_status_ = cloned_buffer_->d->bibfile_status_;
350 }
351
352
353 Buffer::Buffer(string const & file, bool readonly, Buffer const * cloned_buffer)
354         : d(new Impl(this, FileName(file), readonly, cloned_buffer))
355 {
356         LYXERR(Debug::INFO, "Buffer::Buffer()");
357         if (cloned_buffer) {
358                 d->inset = new InsetText(*cloned_buffer->d->inset);
359                 d->inset->setBuffer(*this);
360                 // FIXME: optimize this loop somewhat, maybe by creating a new
361                 // general recursive Inset::setId().
362                 DocIterator it = doc_iterator_begin(this);
363                 DocIterator cloned_it = doc_iterator_begin(cloned_buffer);
364                 for (; !it.atEnd(); it.forwardPar(), cloned_it.forwardPar())
365                         it.paragraph().setId(cloned_it.paragraph().id());
366         } else
367                 d->inset = new InsetText(this);
368         d->inset->setAutoBreakRows(true);
369         d->inset->getText(0)->setMacrocontextPosition(par_iterator_begin());
370 }
371
372
373 Buffer::~Buffer()
374 {
375         LYXERR(Debug::INFO, "Buffer::~Buffer()");
376         // here the buffer should take care that it is
377         // saved properly, before it goes into the void.
378
379         // GuiView already destroyed
380         d->gui_ = 0;
381
382         if (isInternal()) {
383                 // No need to do additional cleanups for internal buffer.
384                 delete d;
385                 return;
386         }
387
388         // loop over children
389         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
390         Impl::BufferPositionMap::iterator end = d->children_positions.end();
391         for (; it != end; ++it) {
392                 Buffer * child = const_cast<Buffer *>(it->first);
393                 if (d->cloned_buffer_)
394                         delete child;
395                 // The child buffer might have been closed already.
396                 else if (theBufferList().isLoaded(child))
397                         theBufferList().releaseChild(this, child);
398         }
399
400         if (!isClean()) {
401                 docstring msg = _("LyX attempted to close a document that had unsaved changes!\n");
402                 msg += emergencyWrite();
403                 Alert::warning(_("Attempting to close changed document!"), msg);
404         }
405                 
406         // clear references to children in macro tables
407         d->children_positions.clear();
408         d->position_to_children.clear();
409
410         if (!d->cloned_buffer_ && !d->temppath.destroyDirectory()) {
411                 Alert::warning(_("Could not remove temporary directory"),
412                         bformat(_("Could not remove the temporary directory %1$s"),
413                         from_utf8(d->temppath.absFileName())));
414         }
415
416         if (!isClone())
417                 removePreviews();
418
419         delete d;
420 }
421
422
423 Buffer * Buffer::clone() const
424 {
425         Buffer * buffer_clone = new Buffer(fileName().absFileName(), false, this);
426         buffer_clone->d->macro_lock = true;
427         buffer_clone->d->children_positions.clear();
428         // FIXME (Abdel 09/01/2010): this is too complicated. The whole children_positions and
429         // math macro caches need to be rethought and simplified.
430         // I am not sure wether we should handle Buffer cloning here or in BufferList.
431         // Right now BufferList knows nothing about buffer clones.
432         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
433         Impl::BufferPositionMap::iterator end = d->children_positions.end();
434         for (; it != end; ++it) {
435                 DocIterator dit = it->second.clone(buffer_clone);
436                 dit.setBuffer(buffer_clone);
437                 Buffer * child = const_cast<Buffer *>(it->first);
438                 Buffer * child_clone = child->clone();
439                 Inset * inset = dit.nextInset();
440                 LASSERT(inset && inset->lyxCode() == INCLUDE_CODE, continue);
441                 InsetInclude * inset_inc = static_cast<InsetInclude *>(inset);
442                 inset_inc->setChildBuffer(child_clone);
443                 child_clone->d->setParent(buffer_clone);
444                 buffer_clone->setChild(dit, child_clone);
445         }
446         buffer_clone->d->macro_lock = false;
447         return buffer_clone;
448 }
449
450
451 bool Buffer::isClone() const
452 {
453         return d->cloned_buffer_;
454 }
455
456
457 void Buffer::changed(bool update_metrics) const
458 {
459         if (d->wa_)
460                 d->wa_->redrawAll(update_metrics);
461 }
462
463
464 frontend::WorkAreaManager & Buffer::workAreaManager() const
465 {
466         LASSERT(d->wa_, /**/);
467         return *d->wa_;
468 }
469
470
471 Text & Buffer::text() const
472 {
473         return d->inset->text();
474 }
475
476
477 Inset & Buffer::inset() const
478 {
479         return *d->inset;
480 }
481
482
483 BufferParams & Buffer::params()
484 {
485         return d->params;
486 }
487
488
489 BufferParams const & Buffer::params() const
490 {
491         return d->params;
492 }
493
494
495 ParagraphList & Buffer::paragraphs()
496 {
497         return text().paragraphs();
498 }
499
500
501 ParagraphList const & Buffer::paragraphs() const
502 {
503         return text().paragraphs();
504 }
505
506
507 LyXVC & Buffer::lyxvc()
508 {
509         return d->lyxvc;
510 }
511
512
513 LyXVC const & Buffer::lyxvc() const
514 {
515         return d->lyxvc;
516 }
517
518
519 string const Buffer::temppath() const
520 {
521         return d->temppath.absFileName();
522 }
523
524
525 TexRow & Buffer::texrow()
526 {
527         return d->texrow;
528 }
529
530
531 TexRow const & Buffer::texrow() const
532 {
533         return d->texrow;
534 }
535
536
537 TocBackend & Buffer::tocBackend() const
538 {
539         return d->toc_backend;
540 }
541
542
543 Undo & Buffer::undo()
544 {
545         return d->undo_;
546 }
547
548
549 void Buffer::setChild(DocIterator const & dit, Buffer * child)
550 {
551         d->children_positions[child] = dit;
552 }
553
554
555 string Buffer::latexName(bool const no_path) const
556 {
557         FileName latex_name =
558                 makeLatexName(d->exportFileName());
559         return no_path ? latex_name.onlyFileName()
560                 : latex_name.absFileName();
561 }
562
563
564 FileName Buffer::Impl::exportFileName() const
565 {
566         docstring const branch_suffix =
567                 params.branchlist().getFileNameSuffix();
568         if (branch_suffix.empty())
569                 return filename;
570
571         string const name = filename.onlyFileNameWithoutExt()
572                 + to_utf8(branch_suffix);
573         FileName res(filename.onlyPath().absFileName() + "/" + name);
574         res.changeExtension(filename.extension());
575
576         return res;
577 }
578
579
580 string Buffer::logName(LogType * type) const
581 {
582         string const filename = latexName(false);
583
584         if (filename.empty()) {
585                 if (type)
586                         *type = latexlog;
587                 return string();
588         }
589
590         string const path = temppath();
591
592         FileName const fname(addName(temppath(),
593                                      onlyFileName(changeExtension(filename,
594                                                                   ".log"))));
595
596         // FIXME: how do we know this is the name of the build log?
597         FileName const bname(
598                 addName(path, onlyFileName(
599                         changeExtension(filename,
600                                         formats.extension(bufferFormat()) + ".out"))));
601
602         // Also consider the master buffer log file
603         FileName masterfname = fname;
604         LogType mtype;
605         if (masterBuffer() != this) {
606                 string const mlogfile = masterBuffer()->logName(&mtype);
607                 masterfname = FileName(mlogfile);
608         }
609
610         // If no Latex log or Build log is newer, show Build log
611         if (bname.exists() &&
612             ((!fname.exists() && !masterfname.exists())
613              || (fname.lastModified() < bname.lastModified()
614                  && masterfname.lastModified() < bname.lastModified()))) {
615                 LYXERR(Debug::FILES, "Log name calculated as: " << bname);
616                 if (type)
617                         *type = buildlog;
618                 return bname.absFileName();
619         // If we have a newer master file log or only a master log, show this
620         } else if (fname != masterfname
621                    && (!fname.exists() && (masterfname.exists()
622                    || fname.lastModified() < masterfname.lastModified()))) {
623                 LYXERR(Debug::FILES, "Log name calculated as: " << masterfname);
624                 if (type)
625                         *type = mtype;
626                 return masterfname.absFileName();
627         }
628         LYXERR(Debug::FILES, "Log name calculated as: " << fname);
629         if (type)
630                         *type = latexlog;
631         return fname.absFileName();
632 }
633
634
635 void Buffer::setReadonly(bool const flag)
636 {
637         if (d->read_only != flag) {
638                 d->read_only = flag;
639                 changed(false);
640         }
641 }
642
643
644 void Buffer::setFileName(FileName const & fname)
645 {
646         d->filename = fname;
647         setReadonly(d->filename.isReadOnly());
648         saveCheckSum();
649         updateTitles();
650 }
651
652
653 int Buffer::readHeader(Lexer & lex)
654 {
655         int unknown_tokens = 0;
656         int line = -1;
657         int begin_header_line = -1;
658
659         // Initialize parameters that may be/go lacking in header:
660         params().branchlist().clear();
661         params().preamble.erase();
662         params().options.erase();
663         params().master.erase();
664         params().float_placement.erase();
665         params().paperwidth.erase();
666         params().paperheight.erase();
667         params().leftmargin.erase();
668         params().rightmargin.erase();
669         params().topmargin.erase();
670         params().bottommargin.erase();
671         params().headheight.erase();
672         params().headsep.erase();
673         params().footskip.erase();
674         params().columnsep.erase();
675         params().fonts_cjk.erase();
676         params().listings_params.clear();
677         params().clearLayoutModules();
678         params().clearRemovedModules();
679         params().clearIncludedChildren();
680         params().pdfoptions().clear();
681         params().indiceslist().clear();
682         params().backgroundcolor = lyx::rgbFromHexName("#ffffff");
683         params().isbackgroundcolor = false;
684         params().fontcolor = lyx::rgbFromHexName("#000000");
685         params().isfontcolor = false;
686         params().notefontcolor = lyx::rgbFromHexName("#cccccc");
687         params().boxbgcolor = lyx::rgbFromHexName("#ff0000");
688         params().html_latex_start.clear();
689         params().html_latex_end.clear();
690         params().html_math_img_scale = 1.0;
691         params().output_sync_macro.erase();
692
693         for (int i = 0; i < 4; ++i) {
694                 params().user_defined_bullet(i) = ITEMIZE_DEFAULTS[i];
695                 params().temp_bullet(i) = ITEMIZE_DEFAULTS[i];
696         }
697
698         ErrorList & errorList = d->errorLists["Parse"];
699
700         while (lex.isOK()) {
701                 string token;
702                 lex >> token;
703
704                 if (token.empty())
705                         continue;
706
707                 if (token == "\\end_header")
708                         break;
709
710                 ++line;
711                 if (token == "\\begin_header") {
712                         begin_header_line = line;
713                         continue;
714                 }
715
716                 LYXERR(Debug::PARSER, "Handling document header token: `"
717                                       << token << '\'');
718
719                 string unknown = params().readToken(lex, token, d->filename.onlyPath());
720                 if (!unknown.empty()) {
721                         if (unknown[0] != '\\' && token == "\\textclass") {
722                                 Alert::warning(_("Unknown document class"),
723                        bformat(_("Using the default document class, because the "
724                                               "class %1$s is unknown."), from_utf8(unknown)));
725                         } else {
726                                 ++unknown_tokens;
727                                 docstring const s = bformat(_("Unknown token: "
728                                                                         "%1$s %2$s\n"),
729                                                          from_utf8(token),
730                                                          lex.getDocString());
731                                 errorList.push_back(ErrorItem(_("Document header error"),
732                                         s, -1, 0, 0));
733                         }
734                 }
735         }
736         if (begin_header_line) {
737                 docstring const s = _("\\begin_header is missing");
738                 errorList.push_back(ErrorItem(_("Document header error"),
739                         s, -1, 0, 0));
740         }
741
742         params().makeDocumentClass();
743
744         return unknown_tokens;
745 }
746
747
748 // Uwe C. Schroeder
749 // changed to be public and have one parameter
750 // Returns true if "\end_document" is not read (Asger)
751 bool Buffer::readDocument(Lexer & lex)
752 {
753         ErrorList & errorList = d->errorLists["Parse"];
754         errorList.clear();
755
756         // remove dummy empty par
757         paragraphs().clear();
758
759         if (!lex.checkFor("\\begin_document")) {
760                 docstring const s = _("\\begin_document is missing");
761                 errorList.push_back(ErrorItem(_("Document header error"),
762                         s, -1, 0, 0));
763         }
764
765         readHeader(lex);
766
767         if (params().outputChanges) {
768                 bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
769                 bool xcolorulem = LaTeXFeatures::isAvailable("ulem") &&
770                                   LaTeXFeatures::isAvailable("xcolor");
771
772                 if (!dvipost && !xcolorulem) {
773                         Alert::warning(_("Changes not shown in LaTeX output"),
774                                        _("Changes will not be highlighted in LaTeX output, "
775                                          "because neither dvipost nor xcolor/ulem are installed.\n"
776                                          "Please install these packages or redefine "
777                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
778                 } else if (!xcolorulem) {
779                         Alert::warning(_("Changes not shown in LaTeX output"),
780                                        _("Changes will not be highlighted in LaTeX output "
781                                          "when using pdflatex, because xcolor and ulem are not installed.\n"
782                                          "Please install both packages or redefine "
783                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
784                 }
785         }
786
787         if (!params().master.empty()) {
788                 FileName const master_file = makeAbsPath(params().master,
789                            onlyPath(absFileName()));
790                 if (isLyXFileName(master_file.absFileName())) {
791                         Buffer * master = 
792                                 checkAndLoadLyXFile(master_file, true);
793                         if (master) {
794                                 // necessary e.g. after a reload
795                                 // to re-register the child (bug 5873)
796                                 // FIXME: clean up updateMacros (here, only
797                                 // child registering is needed).
798                                 master->updateMacros();
799                                 // set master as master buffer, but only
800                                 // if we are a real child
801                                 if (master->isChild(this))
802                                         setParent(master);
803                                 // if the master is not fully loaded
804                                 // it is probably just loading this
805                                 // child. No warning needed then.
806                                 else if (master->isFullyLoaded())
807                                         LYXERR0("The master '"
808                                                 << params().master
809                                                 << "' assigned to this document ("
810                                                 << absFileName()
811                                                 << ") does not include "
812                                                 "this document. Ignoring the master assignment.");
813                         }
814                 }
815         }
816         
817         // assure we have a default index
818         params().indiceslist().addDefault(B_("Index"));
819
820         // read main text
821         bool const res = text().read(lex, errorList, d->inset);
822
823         // inform parent buffer about local macros
824         if (parent()) {
825                 Buffer const * pbuf = parent();
826                 UserMacroSet::const_iterator cit = usermacros.begin();
827                 UserMacroSet::const_iterator end = usermacros.end();
828                 for (; cit != end; ++cit)
829                         pbuf->usermacros.insert(*cit);
830         }
831         usermacros.clear();
832         updateMacros();
833         updateMacroInstances();
834         return res;
835 }
836
837
838 bool Buffer::readString(string const & s)
839 {
840         params().compressed = false;
841
842         Lexer lex;
843         istringstream is(s);
844         lex.setStream(is);
845         FileName const fn = FileName::tempName("Buffer_readString");
846
847         int file_format;
848         ReadStatus const ret_plf = parseLyXFormat(lex, fn, file_format);
849         if (ret_plf != ReadSuccess)
850                 return ret_plf;
851
852         if (file_format != LYX_FORMAT) {
853                 // We need to call lyx2lyx, so write the input to a file
854                 ofstream os(fn.toFilesystemEncoding().c_str());
855                 os << s;
856                 os.close();
857                 // lyxvc in readFile
858                 return readFile(fn) == ReadSuccess;
859         }
860
861         if (readDocument(lex))
862                 return false;
863         return true;
864 }
865
866
867 Buffer::ReadStatus Buffer::readFile(FileName const & fn)
868 {
869         FileName fname(fn);
870         Lexer lex;
871         lex.setFile(fname);
872
873         int file_format;
874         ReadStatus const ret_plf = parseLyXFormat(lex, fn, file_format);
875         if (ret_plf != ReadSuccess)
876                 return ret_plf;
877
878         if (file_format != LYX_FORMAT) {
879                 FileName tmpFile;
880                 ReadStatus const ret_clf = convertLyXFormat(fn, tmpFile, file_format);
881                 if (ret_clf != ReadSuccess)
882                         return ret_clf;
883                 return readFile(tmpFile);
884         }
885
886         // FIXME: InsetInfo needs to know whether the file is under VCS 
887         // during the parse process, so this has to be done before.
888         lyxvc().file_found_hook(d->filename);
889
890         if (readDocument(lex)) {
891                 Alert::error(_("Document format failure"),
892                         bformat(_("%1$s ended unexpectedly, which means"
893                                 " that it is probably corrupted."),
894                                         from_utf8(fn.absFileName())));
895                 return ReadDocumentFailure;
896         }
897
898         d->file_fully_loaded = true;
899         d->read_only = !d->filename.isWritable();
900         params().compressed = d->filename.isZippedFile();
901         saveCheckSum();
902         return ReadSuccess;
903 }
904
905
906 bool Buffer::isFullyLoaded() const
907 {
908         return d->file_fully_loaded;
909 }
910
911
912 void Buffer::setFullyLoaded(bool value)
913 {
914         d->file_fully_loaded = value;
915 }
916
917
918 void Buffer::updatePreviews() const
919 {
920         if (graphics::Previews::status() != LyXRC::PREVIEW_OFF)
921                 thePreviews().generateBufferPreviews(*this);
922 }
923
924
925 void Buffer::removePreviews() const
926 {
927         thePreviews().removeLoader(*this);
928 }
929
930
931 Buffer::ReadStatus Buffer::parseLyXFormat(Lexer & lex,
932         FileName const & fn, int & file_format) const
933 {
934         if(!lex.checkFor("\\lyxformat")) {
935                 Alert::error(_("Document format failure"),
936                         bformat(_("%1$s is not a readable LyX document."),
937                                 from_utf8(fn.absFileName())));
938                 return ReadNoLyXFormat;
939         }       
940
941         string tmp_format;
942         lex >> tmp_format;
943
944         // LyX formats 217 and earlier were written as 2.17. This corresponds
945         // to files from LyX versions < 1.1.6.3. We just remove the dot in
946         // these cases. See also: www.lyx.org/trac/changeset/1313.
947         size_t dot = tmp_format.find_first_of(".,");
948         if (dot != string::npos)
949                 tmp_format.erase(dot, 1);
950
951         file_format = convert<int>(tmp_format);
952         return ReadSuccess;
953 }
954
955
956 Buffer::ReadStatus Buffer::convertLyXFormat(FileName const & fn, 
957         FileName & tmpfile, int from_format)
958 {
959         tmpfile = FileName::tempName("Buffer_convertLyXFormat");
960         if(tmpfile.empty()) {
961                 Alert::error(_("Conversion failed"),
962                         bformat(_("%1$s is from a different"
963                                 " version of LyX, but a temporary"
964                                 " file for converting it could"
965                                 " not be created."),
966                                 from_utf8(fn.absFileName())));
967                 return LyX2LyXNoTempFile;
968         }
969
970         FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
971         if (lyx2lyx.empty()) {
972                 Alert::error(_("Conversion script not found"),
973                      bformat(_("%1$s is from a different"
974                                " version of LyX, but the"
975                                " conversion script lyx2lyx"
976                                " could not be found."),
977                                from_utf8(fn.absFileName())));
978                 return LyX2LyXNotFound;
979         }
980
981         // Run lyx2lyx:
982         //   $python$ "$lyx2lyx$" -t $LYX_FORMAT$ -o "$tempfile$" "$filetoread$"
983         ostringstream command;
984         command << os::python()
985                 << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
986                 << " -t " << convert<string>(LYX_FORMAT)
987                 << " -o " << quoteName(tmpfile.toFilesystemEncoding())
988                 << ' ' << quoteName(fn.toSafeFilesystemEncoding());
989         string const command_str = command.str();
990
991         LYXERR(Debug::INFO, "Running '" << command_str << '\'');
992
993         cmd_ret const ret = runCommand(command_str);
994         if (ret.first != 0) {
995                 if (from_format < LYX_FORMAT) {
996                         Alert::error(_("Conversion script failed"),
997                                 bformat(_("%1$s is from an older version"
998                                         " of LyX and the lyx2lyx script"
999                                         " failed to convert it."),
1000                                         from_utf8(fn.absFileName())));
1001                         return LyX2LyXOlderFormat;
1002                 } else {
1003                         Alert::error(_("Conversion script failed"),
1004                                 bformat(_("%1$s is from a newer version"
1005                                         " of LyX and the lyx2lyx script"
1006                                         " failed to convert it."),
1007                                         from_utf8(fn.absFileName())));
1008                         return LyX2LyXNewerFormat;
1009                 }
1010         }
1011         return ReadSuccess;
1012 }
1013
1014
1015 // Should probably be moved to somewhere else: BufferView? GuiView?
1016 bool Buffer::save() const
1017 {
1018         docstring const file = makeDisplayPath(absFileName(), 20);
1019         d->filename.refresh();
1020
1021         // check the read-only status before moving the file as a backup
1022         if (d->filename.exists()) {
1023                 bool const read_only = !d->filename.isWritable();
1024                 if (read_only) {
1025                         Alert::warning(_("File is read-only"),
1026                                 bformat(_("The file %1$s cannot be written because it "
1027                                 "is marked as read-only."), file));
1028                         return false;
1029                 }
1030         }
1031
1032         // ask if the disk file has been externally modified (use checksum method)
1033         if (fileName().exists() && isExternallyModified(checksum_method)) {
1034                 docstring text = 
1035                         bformat(_("Document %1$s has been externally modified. "
1036                                 "Are you sure you want to overwrite this file?"), file);
1037                 int const ret = Alert::prompt(_("Overwrite modified file?"),
1038                         text, 1, 1, _("&Overwrite"), _("&Cancel"));
1039                 if (ret == 1)
1040                         return false;
1041         }
1042
1043         // We don't need autosaves in the immediate future. (Asger)
1044         resetAutosaveTimers();
1045
1046         FileName backupName;
1047         bool madeBackup = false;
1048
1049         // make a backup if the file already exists
1050         if (lyxrc.make_backup && fileName().exists()) {
1051                 backupName = FileName(absFileName() + '~');
1052                 if (!lyxrc.backupdir_path.empty()) {
1053                         string const mangledName =
1054                                 subst(subst(backupName.absFileName(), '/', '!'), ':', '!');
1055                         backupName = FileName(addName(lyxrc.backupdir_path,
1056                                                       mangledName));
1057                 }
1058
1059                 // Except file is symlink do not copy because of #6587.
1060                 // Hard links have bad luck.
1061                 if (fileName().isSymLink())
1062                         madeBackup = fileName().copyTo(backupName);
1063                 else
1064                         madeBackup = fileName().moveTo(backupName);
1065
1066                 if (!madeBackup) {
1067                         Alert::error(_("Backup failure"),
1068                                      bformat(_("Cannot create backup file %1$s.\n"
1069                                                "Please check whether the directory exists and is writable."),
1070                                              from_utf8(backupName.absFileName())));
1071                         //LYXERR(Debug::DEBUG, "Fs error: " << fe.what());
1072                 }
1073         }
1074
1075         if (writeFile(d->filename)) {
1076                 markClean();
1077                 return true;
1078         } else {
1079                 // Saving failed, so backup is not backup
1080                 if (madeBackup)
1081                         backupName.moveTo(d->filename);
1082                 return false;
1083         }
1084 }
1085
1086
1087 bool Buffer::writeFile(FileName const & fname) const
1088 {
1089         if (d->read_only && fname == d->filename)
1090                 return false;
1091
1092         bool retval = false;
1093
1094         docstring const str = bformat(_("Saving document %1$s..."),
1095                 makeDisplayPath(fname.absFileName()));
1096         message(str);
1097
1098         string const encoded_fname = fname.toSafeFilesystemEncoding(os::CREATE);
1099
1100         if (params().compressed) {
1101                 gz::ogzstream ofs(encoded_fname.c_str(), ios::out|ios::trunc);
1102                 retval = ofs && write(ofs);
1103         } else {
1104                 ofstream ofs(encoded_fname.c_str(), ios::out|ios::trunc);
1105                 retval = ofs && write(ofs);
1106         }
1107
1108         if (!retval) {
1109                 message(str + _(" could not write file!"));
1110                 return false;
1111         }
1112
1113         // see bug 6587
1114         // removeAutosaveFile();
1115
1116         saveCheckSum();
1117         message(str + _(" done."));
1118
1119         return true;
1120 }
1121
1122
1123 docstring Buffer::emergencyWrite()
1124 {
1125         // No need to save if the buffer has not changed.
1126         if (isClean())
1127                 return docstring();
1128
1129         string const doc = isUnnamed() ? onlyFileName(absFileName()) : absFileName();
1130
1131         docstring user_message = bformat(
1132                 _("LyX: Attempting to save document %1$s\n"), from_utf8(doc));
1133
1134         // We try to save three places:
1135         // 1) Same place as document. Unless it is an unnamed doc.
1136         if (!isUnnamed()) {
1137                 string s = absFileName();
1138                 s += ".emergency";
1139                 LYXERR0("  " << s);
1140                 if (writeFile(FileName(s))) {
1141                         markClean();
1142                         user_message += "  " + bformat(_("Saved to %1$s. Phew.\n"), from_utf8(s));
1143                         return user_message;
1144                 } else {
1145                         user_message += "  " + _("Save failed! Trying again...\n");
1146                 }
1147         }
1148
1149         // 2) In HOME directory.
1150         string s = addName(Package::get_home_dir().absFileName(), absFileName());
1151         s += ".emergency";
1152         lyxerr << ' ' << s << endl;
1153         if (writeFile(FileName(s))) {
1154                 markClean();
1155                 user_message += "  " + bformat(_("Saved to %1$s. Phew.\n"), from_utf8(s));
1156                 return user_message;
1157         }
1158
1159         user_message += "  " + _("Save failed! Trying yet again...\n");
1160
1161         // 3) In "/tmp" directory.
1162         // MakeAbsPath to prepend the current
1163         // drive letter on OS/2
1164         s = addName(package().temp_dir().absFileName(), absFileName());
1165         s += ".emergency";
1166         lyxerr << ' ' << s << endl;
1167         if (writeFile(FileName(s))) {
1168                 markClean();
1169                 user_message += "  " + bformat(_("Saved to %1$s. Phew.\n"), from_utf8(s));
1170                 return user_message;
1171         }
1172
1173         user_message += "  " + _("Save failed! Bummer. Document is lost.");
1174         // Don't try again.
1175         markClean();
1176         return user_message;
1177 }
1178
1179
1180 bool Buffer::write(ostream & ofs) const
1181 {
1182 #ifdef HAVE_LOCALE
1183         // Use the standard "C" locale for file output.
1184         ofs.imbue(locale::classic());
1185 #endif
1186
1187         // The top of the file should not be written by params().
1188
1189         // write out a comment in the top of the file
1190         ofs << "#LyX " << lyx_version_major << "." << lyx_version_minor
1191             << " created this file. For more info see http://www.lyx.org/\n"
1192             << "\\lyxformat " << LYX_FORMAT << "\n"
1193             << "\\begin_document\n";
1194
1195         /// For each author, set 'used' to true if there is a change
1196         /// by this author in the document; otherwise set it to 'false'.
1197         AuthorList::Authors::const_iterator a_it = params().authors().begin();
1198         AuthorList::Authors::const_iterator a_end = params().authors().end();
1199         for (; a_it != a_end; ++a_it)
1200                 a_it->setUsed(false);
1201
1202         ParIterator const end = const_cast<Buffer *>(this)->par_iterator_end();
1203         ParIterator it = const_cast<Buffer *>(this)->par_iterator_begin();
1204         for ( ; it != end; ++it)
1205                 it->checkAuthors(params().authors());
1206
1207         // now write out the buffer parameters.
1208         ofs << "\\begin_header\n";
1209         params().writeFile(ofs);
1210         ofs << "\\end_header\n";
1211
1212         // write the text
1213         ofs << "\n\\begin_body\n";
1214         text().write(ofs);
1215         ofs << "\n\\end_body\n";
1216
1217         // Write marker that shows file is complete
1218         ofs << "\\end_document" << endl;
1219
1220         // Shouldn't really be needed....
1221         //ofs.close();
1222
1223         // how to check if close went ok?
1224         // Following is an attempt... (BE 20001011)
1225
1226         // good() returns false if any error occured, including some
1227         //        formatting error.
1228         // bad()  returns true if something bad happened in the buffer,
1229         //        which should include file system full errors.
1230
1231         bool status = true;
1232         if (!ofs) {
1233                 status = false;
1234                 lyxerr << "File was not closed properly." << endl;
1235         }
1236
1237         return status;
1238 }
1239
1240
1241 bool Buffer::makeLaTeXFile(FileName const & fname,
1242                            string const & original_path,
1243                            OutputParams const & runparams_in,
1244                            bool output_preamble, bool output_body) const
1245 {
1246         OutputParams runparams = runparams_in;
1247
1248         // This is necessary for LuaTeX/XeTeX with tex fonts.
1249         // See FIXME in BufferParams::encoding()
1250         if (runparams.isFullUnicode())
1251                 runparams.encoding = encodings.fromLyXName("utf8-plain");
1252
1253         string const encoding = runparams.encoding->iconvName();
1254         LYXERR(Debug::LATEX, "makeLaTeXFile encoding: " << encoding << "...");
1255
1256         ofdocstream ofs;
1257         try { ofs.reset(encoding); }
1258         catch (iconv_codecvt_facet_exception & e) {
1259                 lyxerr << "Caught iconv exception: " << e.what() << endl;
1260                 Alert::error(_("Iconv software exception Detected"), bformat(_("Please "
1261                         "verify that the support software for your encoding (%1$s) is "
1262                         "properly installed"), from_ascii(encoding)));
1263                 return false;
1264         }
1265         if (!openFileWrite(ofs, fname))
1266                 return false;
1267
1268         //TexStream ts(ofs.rdbuf(), &texrow());
1269         ErrorList & errorList = d->errorLists["Export"];
1270         errorList.clear();
1271         bool failed_export = false;
1272         otexstream os(ofs, d->texrow);
1273         try {
1274                 os.texrow().reset();
1275                 writeLaTeXSource(os, original_path,
1276                       runparams, output_preamble, output_body);
1277         }
1278         catch (EncodingException & e) {
1279                 odocstringstream ods;
1280                 ods.put(e.failed_char);
1281                 ostringstream oss;
1282                 oss << "0x" << hex << e.failed_char << dec;
1283                 docstring msg = bformat(_("Could not find LaTeX command for character '%1$s'"
1284                                           " (code point %2$s)"),
1285                                           ods.str(), from_utf8(oss.str()));
1286                 errorList.push_back(ErrorItem(msg, _("Some characters of your document are probably not "
1287                                 "representable in the chosen encoding.\n"
1288                                 "Changing the document encoding to utf8 could help."),
1289                                 e.par_id, e.pos, e.pos + 1));
1290                 failed_export = true;
1291         }
1292         catch (iconv_codecvt_facet_exception & e) {
1293                 errorList.push_back(ErrorItem(_("iconv conversion failed"),
1294                         _(e.what()), -1, 0, 0));
1295                 failed_export = true;
1296         }
1297         catch (exception const & e) {
1298                 errorList.push_back(ErrorItem(_("conversion failed"),
1299                         _(e.what()), -1, 0, 0));
1300                 failed_export = true;
1301         }
1302         catch (...) {
1303                 lyxerr << "Caught some really weird exception..." << endl;
1304                 lyx_exit(1);
1305         }
1306
1307         ofs.close();
1308         if (ofs.fail()) {
1309                 failed_export = true;
1310                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1311         }
1312
1313         errors("Export");
1314         return !failed_export;
1315 }
1316
1317
1318 void Buffer::writeLaTeXSource(otexstream & os,
1319                            string const & original_path,
1320                            OutputParams const & runparams_in,
1321                            bool const output_preamble, bool const output_body) const
1322 {
1323         // The child documents, if any, shall be already loaded at this point.
1324
1325         OutputParams runparams = runparams_in;
1326
1327         // Classify the unicode characters appearing in math insets
1328         Encodings::initUnicodeMath(*this);
1329
1330         // validate the buffer.
1331         LYXERR(Debug::LATEX, "  Validating buffer...");
1332         LaTeXFeatures features(*this, params(), runparams);
1333         validate(features);
1334         LYXERR(Debug::LATEX, "  Buffer validation done.");
1335
1336         // The starting paragraph of the coming rows is the
1337         // first paragraph of the document. (Asger)
1338         if (output_preamble && runparams.nice) {
1339                 os << "%% LyX " << lyx_version << " created this file.  "
1340                         "For more info, see http://www.lyx.org/.\n"
1341                         "%% Do not edit unless you really know what "
1342                         "you are doing.\n";
1343         }
1344         LYXERR(Debug::INFO, "lyx document header finished");
1345
1346         // Don't move this behind the parent_buffer=0 code below,
1347         // because then the macros will not get the right "redefinition"
1348         // flag as they don't see the parent macros which are output before.
1349         updateMacros();
1350
1351         // fold macros if possible, still with parent buffer as the
1352         // macros will be put in the prefix anyway.
1353         updateMacroInstances();
1354
1355         // There are a few differences between nice LaTeX and usual files:
1356         // usual is \batchmode and has a
1357         // special input@path to allow the including of figures
1358         // with either \input or \includegraphics (what figinsets do).
1359         // input@path is set when the actual parameter
1360         // original_path is set. This is done for usual tex-file, but not
1361         // for nice-latex-file. (Matthias 250696)
1362         // Note that input@path is only needed for something the user does
1363         // in the preamble, included .tex files or ERT, files included by
1364         // LyX work without it.
1365         if (output_preamble) {
1366                 if (!runparams.nice) {
1367                         // code for usual, NOT nice-latex-file
1368                         os << "\\batchmode\n"; // changed from \nonstopmode
1369                 }
1370                 if (!original_path.empty()) {
1371                         // FIXME UNICODE
1372                         // We don't know the encoding of inputpath
1373                         docstring const inputpath = from_utf8(support::latex_path(original_path));
1374                         docstring uncodable_glyphs;
1375                         Encoding const * const enc = runparams.encoding;
1376                         if (enc) {
1377                                 for (size_t n = 0; n < inputpath.size(); ++n) {
1378                                         docstring const glyph =
1379                                                 docstring(1, inputpath[n]);
1380                                         if (enc->latexChar(inputpath[n], true) != glyph) {
1381                                                 LYXERR0("Uncodable character '"
1382                                                         << glyph
1383                                                         << "' in input path!");
1384                                                 uncodable_glyphs += glyph;
1385                                         }
1386                                 }
1387                         }
1388
1389                         // warn user if we found uncodable glyphs.
1390                         if (!uncodable_glyphs.empty()) {
1391                                 frontend::Alert::warning(_("Uncodable character in file path"),
1392                                                 support::bformat(_("The path of your document\n"
1393                                                   "(%1$s)\n"
1394                                                   "contains glyphs that are unknown in the\n"
1395                                                   "current document encoding (namely %2$s).\n"
1396                                                   "This will likely result in incomplete output.\n\n"
1397                                                   "Choose an appropriate document encoding (such as utf8)\n"
1398                                                   "or change the file path name."), inputpath, uncodable_glyphs));
1399                         } else {
1400                                 os << "\\makeatletter\n"
1401                                    << "\\def\\input@path{{"
1402                                    << inputpath << "/}}\n"
1403                                    << "\\makeatother\n";
1404                         }
1405                 }
1406
1407                 // get parent macros (if this buffer has a parent) which will be
1408                 // written at the document begin further down.
1409                 MacroSet parentMacros;
1410                 listParentMacros(parentMacros, features);
1411
1412                 runparams.use_polyglossia = features.usePolyglossia();
1413                 // Write the preamble
1414                 runparams.use_babel = params().writeLaTeX(os, features,
1415                                                           d->filename.onlyPath());
1416
1417                 runparams.use_japanese = features.isRequired("japanese");
1418
1419                 if (!output_body)
1420                         return;
1421
1422                 // make the body.
1423                 os << "\\begin{document}\n";
1424
1425                 // output the parent macros
1426                 MacroSet::iterator it = parentMacros.begin();
1427                 MacroSet::iterator end = parentMacros.end();
1428                 for (; it != end; ++it) {
1429                         int num_lines = (*it)->write(os.os(), true);
1430                         os.texrow().newlines(num_lines);
1431                 }
1432                 
1433         } // output_preamble
1434
1435         os.texrow().start(paragraphs().begin()->id(), 0);
1436
1437         LYXERR(Debug::INFO, "preamble finished, now the body.");
1438
1439         // if we are doing a real file with body, even if this is the
1440         // child of some other buffer, let's cut the link here.
1441         // This happens for example if only a child document is printed.
1442         Buffer const * save_parent = 0;
1443         if (output_preamble) {
1444                 save_parent = d->parent();
1445                 d->setParent(0);
1446         }
1447
1448         // the real stuff
1449         latexParagraphs(*this, text(), os, runparams);
1450
1451         // Restore the parenthood if needed
1452         if (output_preamble)
1453                 d->setParent(save_parent);
1454
1455         // add this just in case after all the paragraphs
1456         os << endl;
1457
1458         if (output_preamble) {
1459                 os << "\\end{document}\n";
1460                 LYXERR(Debug::LATEX, "makeLaTeXFile...done");
1461         } else {
1462                 LYXERR(Debug::LATEX, "LaTeXFile for inclusion made.");
1463         }
1464         runparams_in.encoding = runparams.encoding;
1465
1466         // Just to be sure. (Asger)
1467         os.texrow().newline();
1468
1469         //for (int i = 0; i<d->texrow.rows(); i++) {
1470         // int id,pos;
1471         // if (d->texrow.getIdFromRow(i+1,id,pos) && id>0)
1472         //      lyxerr << i+1 << ":" << id << ":" << getParFromID(id).paragraph().asString()<<"\n";
1473         //}
1474
1475         LYXERR(Debug::INFO, "Finished making LaTeX file.");
1476         LYXERR(Debug::INFO, "Row count was " << os.texrow().rows() - 1 << '.');
1477 }
1478
1479
1480 bool Buffer::isLatex() const
1481 {
1482         return params().documentClass().outputType() == LATEX;
1483 }
1484
1485
1486 bool Buffer::isLiterate() const
1487 {
1488         return params().documentClass().outputType() == LITERATE;
1489 }
1490
1491
1492 bool Buffer::isDocBook() const
1493 {
1494         return params().documentClass().outputType() == DOCBOOK;
1495 }
1496
1497
1498 void Buffer::makeDocBookFile(FileName const & fname,
1499                               OutputParams const & runparams,
1500                               bool const body_only) const
1501 {
1502         LYXERR(Debug::LATEX, "makeDocBookFile...");
1503
1504         ofdocstream ofs;
1505         if (!openFileWrite(ofs, fname))
1506                 return;
1507
1508         writeDocBookSource(ofs, fname.absFileName(), runparams, body_only);
1509
1510         ofs.close();
1511         if (ofs.fail())
1512                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1513 }
1514
1515
1516 void Buffer::writeDocBookSource(odocstream & os, string const & fname,
1517                              OutputParams const & runparams,
1518                              bool const only_body) const
1519 {
1520         LaTeXFeatures features(*this, params(), runparams);
1521         validate(features);
1522
1523         d->texrow.reset();
1524
1525         DocumentClass const & tclass = params().documentClass();
1526         string const top_element = tclass.latexname();
1527
1528         if (!only_body) {
1529                 if (runparams.flavor == OutputParams::XML)
1530                         os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
1531
1532                 // FIXME UNICODE
1533                 os << "<!DOCTYPE " << from_ascii(top_element) << ' ';
1534
1535                 // FIXME UNICODE
1536                 if (! tclass.class_header().empty())
1537                         os << from_ascii(tclass.class_header());
1538                 else if (runparams.flavor == OutputParams::XML)
1539                         os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
1540                             << "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
1541                 else
1542                         os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
1543
1544                 docstring preamble = from_utf8(params().preamble);
1545                 if (runparams.flavor != OutputParams::XML ) {
1546                         preamble += "<!ENTITY % output.print.png \"IGNORE\">\n";
1547                         preamble += "<!ENTITY % output.print.pdf \"IGNORE\">\n";
1548                         preamble += "<!ENTITY % output.print.eps \"IGNORE\">\n";
1549                         preamble += "<!ENTITY % output.print.bmp \"IGNORE\">\n";
1550                 }
1551
1552                 string const name = runparams.nice
1553                         ? changeExtension(absFileName(), ".sgml") : fname;
1554                 preamble += features.getIncludedFiles(name);
1555                 preamble += features.getLyXSGMLEntities();
1556
1557                 if (!preamble.empty()) {
1558                         os << "\n [ " << preamble << " ]";
1559                 }
1560                 os << ">\n\n";
1561         }
1562
1563         string top = top_element;
1564         top += " lang=\"";
1565         if (runparams.flavor == OutputParams::XML)
1566                 top += params().language->code();
1567         else
1568                 top += params().language->code().substr(0, 2);
1569         top += '"';
1570
1571         if (!params().options.empty()) {
1572                 top += ' ';
1573                 top += params().options;
1574         }
1575
1576         os << "<!-- " << ((runparams.flavor == OutputParams::XML)? "XML" : "SGML")
1577             << " file was created by LyX " << lyx_version
1578             << "\n  See http://www.lyx.org/ for more information -->\n";
1579
1580         params().documentClass().counters().reset();
1581
1582         updateMacros();
1583
1584         sgml::openTag(os, top);
1585         os << '\n';
1586         docbookParagraphs(text(), *this, os, runparams);
1587         sgml::closeTag(os, top_element);
1588 }
1589
1590
1591 void Buffer::makeLyXHTMLFile(FileName const & fname,
1592                               OutputParams const & runparams,
1593                               bool const body_only) const
1594 {
1595         LYXERR(Debug::LATEX, "makeLyXHTMLFile...");
1596
1597         ofdocstream ofs;
1598         if (!openFileWrite(ofs, fname))
1599                 return;
1600
1601         writeLyXHTMLSource(ofs, runparams, body_only);
1602
1603         ofs.close();
1604         if (ofs.fail())
1605                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1606 }
1607
1608
1609 void Buffer::writeLyXHTMLSource(odocstream & os,
1610                              OutputParams const & runparams,
1611                              bool const only_body) const
1612 {
1613         LaTeXFeatures features(*this, params(), runparams);
1614         validate(features);
1615         updateBuffer(UpdateMaster, OutputUpdate);
1616         d->bibinfo_.makeCitationLabels(*this);
1617         updateMacros();
1618         updateMacroInstances();
1619
1620         if (!only_body) {
1621                 os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1622                    << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN\" \"http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd\">\n"
1623                    // FIXME Language should be set properly.
1624                    << "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n"
1625                    << "<head>\n"
1626                    << "<meta name=\"GENERATOR\" content=\"" << PACKAGE_STRING << "\" />\n"
1627                    // FIXME Presumably need to set this right
1628                    << "<meta http-equiv=\"Content-type\" content=\"text/html;charset=UTF-8\" />\n";
1629
1630                 docstring const & doctitle = features.htmlTitle();
1631                 os << "<title>"
1632                    << (doctitle.empty() ? from_ascii("LyX Document") : doctitle)
1633                    << "</title>\n";
1634
1635                 os << "\n<!-- Text Class Preamble -->\n"
1636                    << features.getTClassHTMLPreamble()
1637                    << "\n<!-- Preamble Snippets -->\n"
1638                    << from_utf8(features.getPreambleSnippets());
1639
1640                 os << "\n<!-- Layout-provided Styles -->\n";
1641                 docstring const styleinfo = features.getTClassHTMLStyles();
1642                 if (!styleinfo.empty()) {
1643                         os << "<style type='text/css'>\n"
1644                                 << styleinfo
1645                                 << "</style>\n";
1646                 }
1647                 os << "</head>\n<body>\n";
1648         }
1649
1650         XHTMLStream xs(os);
1651         params().documentClass().counters().reset();
1652         xhtmlParagraphs(text(), *this, xs, runparams);
1653         if (!only_body)
1654                 os << "</body>\n</html>\n";
1655 }
1656
1657
1658 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1659 // Other flags: -wall -v0 -x
1660 int Buffer::runChktex()
1661 {
1662         setBusy(true);
1663
1664         // get LaTeX-Filename
1665         FileName const path(temppath());
1666         string const name = addName(path.absFileName(), latexName());
1667         string const org_path = filePath();
1668
1669         PathChanger p(path); // path to LaTeX file
1670         message(_("Running chktex..."));
1671
1672         // Generate the LaTeX file if neccessary
1673         OutputParams runparams(&params().encoding());
1674         runparams.flavor = OutputParams::LATEX;
1675         runparams.nice = false;
1676         runparams.linelen = lyxrc.plaintext_linelen;
1677         makeLaTeXFile(FileName(name), org_path, runparams);
1678
1679         TeXErrors terr;
1680         Chktex chktex(lyxrc.chktex_command, onlyFileName(name), filePath());
1681         int const res = chktex.run(terr); // run chktex
1682
1683         if (res == -1) {
1684                 Alert::error(_("chktex failure"),
1685                              _("Could not run chktex successfully."));
1686         } else if (res > 0) {
1687                 ErrorList & errlist = d->errorLists["ChkTeX"];
1688                 errlist.clear();
1689                 bufferErrors(terr, errlist);
1690         }
1691
1692         setBusy(false);
1693
1694         errors("ChkTeX");
1695
1696         return res;
1697 }
1698
1699
1700 void Buffer::validate(LaTeXFeatures & features) const
1701 {
1702         params().validate(features);
1703
1704         updateMacros();
1705
1706         for_each(paragraphs().begin(), paragraphs().end(),
1707                  bind(&Paragraph::validate, _1, ref(features)));
1708
1709         if (lyxerr.debugging(Debug::LATEX)) {
1710                 features.showStruct();
1711         }
1712 }
1713
1714
1715 void Buffer::getLabelList(vector<docstring> & list) const
1716 {
1717         // If this is a child document, use the master's list instead.
1718         if (parent()) {
1719                 masterBuffer()->getLabelList(list);
1720                 return;
1721         }
1722
1723         list.clear();
1724         Toc & toc = d->toc_backend.toc("label");
1725         TocIterator toc_it = toc.begin();
1726         TocIterator end = toc.end();
1727         for (; toc_it != end; ++toc_it) {
1728                 if (toc_it->depth() == 0)
1729                         list.push_back(toc_it->str());
1730         }
1731 }
1732
1733
1734 void Buffer::updateBibfilesCache(UpdateScope scope) const
1735 {
1736         // FIXME This is probably unnecssary, given where we call this.
1737         // If this is a child document, use the parent's cache instead.
1738         if (parent() && scope != UpdateChildOnly) {
1739                 masterBuffer()->updateBibfilesCache();
1740                 return;
1741         }
1742
1743         d->bibfiles_cache_.clear();
1744         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1745                 if (it->lyxCode() == BIBTEX_CODE) {
1746                         InsetBibtex const & inset = static_cast<InsetBibtex const &>(*it);
1747                         support::FileNameList const bibfiles = inset.getBibFiles();
1748                         d->bibfiles_cache_.insert(d->bibfiles_cache_.end(),
1749                                 bibfiles.begin(),
1750                                 bibfiles.end());
1751                 } else if (it->lyxCode() == INCLUDE_CODE) {
1752                         InsetInclude & inset = static_cast<InsetInclude &>(*it);
1753                         Buffer const * const incbuf = inset.getChildBuffer();
1754                         if (!incbuf)
1755                                 continue;
1756                         support::FileNameList const & bibfiles =
1757                                         incbuf->getBibfilesCache(UpdateChildOnly);
1758                         if (!bibfiles.empty()) {
1759                                 d->bibfiles_cache_.insert(d->bibfiles_cache_.end(),
1760                                         bibfiles.begin(),
1761                                         bibfiles.end());
1762                         }
1763                 }
1764         }
1765         d->bibfile_cache_valid_ = true;
1766         d->bibinfo_cache_valid_ = false;
1767 }
1768
1769
1770 void Buffer::invalidateBibinfoCache() const
1771 {
1772         d->bibinfo_cache_valid_ = false;
1773         // also invalidate the cache for the parent buffer
1774         Buffer const * const pbuf = d->parent();
1775         if (pbuf)
1776                 pbuf->invalidateBibinfoCache();
1777 }
1778
1779
1780 void Buffer::invalidateBibfileCache() const
1781 {
1782         d->bibfile_cache_valid_ = false;
1783         d->bibinfo_cache_valid_ = false;
1784         // also invalidate the cache for the parent buffer
1785         Buffer const * const pbuf = d->parent();
1786         if (pbuf)
1787                 pbuf->invalidateBibfileCache();
1788 }
1789
1790
1791 support::FileNameList const & Buffer::getBibfilesCache(UpdateScope scope) const
1792 {
1793         // FIXME This is probably unnecessary, given where we call this.
1794         // If this is a child document, use the master's cache instead.
1795         Buffer const * const pbuf = masterBuffer();
1796         if (pbuf != this && scope != UpdateChildOnly)
1797                 return pbuf->getBibfilesCache();
1798
1799         if (!d->bibfile_cache_valid_)
1800                 this->updateBibfilesCache(scope);
1801
1802         return d->bibfiles_cache_;
1803 }
1804
1805
1806 BiblioInfo const & Buffer::masterBibInfo() const
1807 {
1808         Buffer const * const tmp = masterBuffer();
1809         if (tmp != this)
1810                 return tmp->masterBibInfo();
1811         return d->bibinfo_;
1812 }
1813
1814
1815 void Buffer::checkIfBibInfoCacheIsValid() const
1816 {
1817         // use the master's cache
1818         Buffer const * const tmp = masterBuffer();
1819         if (tmp != this) {
1820                 tmp->checkIfBibInfoCacheIsValid();
1821                 return;
1822         }
1823
1824         // compare the cached timestamps with the actual ones.
1825         FileNameList const & bibfiles_cache = getBibfilesCache();
1826         FileNameList::const_iterator ei = bibfiles_cache.begin();
1827         FileNameList::const_iterator en = bibfiles_cache.end();
1828         for (; ei != en; ++ ei) {
1829                 time_t lastw = ei->lastModified();
1830                 time_t prevw = d->bibfile_status_[*ei];
1831                 if (lastw != prevw) {
1832                         d->bibinfo_cache_valid_ = false;
1833                         d->bibfile_status_[*ei] = lastw;
1834                 }
1835         }
1836 }
1837
1838
1839 void Buffer::reloadBibInfoCache() const
1840 {
1841         // use the master's cache
1842         Buffer const * const tmp = masterBuffer();
1843         if (tmp != this) {
1844                 tmp->reloadBibInfoCache();
1845                 return;
1846         }
1847
1848         checkIfBibInfoCacheIsValid();
1849         if (d->bibinfo_cache_valid_)
1850                 return;
1851
1852         d->bibinfo_.clear();
1853         collectBibKeys();
1854         d->bibinfo_cache_valid_ = true;
1855 }
1856
1857
1858 void Buffer::collectBibKeys() const
1859 {
1860         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it)
1861                 it->collectBibKeys(it);
1862 }
1863
1864
1865 void Buffer::addBiblioInfo(BiblioInfo const & bi) const
1866 {
1867         Buffer const * tmp = masterBuffer();
1868         BiblioInfo & masterbi = (tmp == this) ?
1869                 d->bibinfo_ : tmp->d->bibinfo_;
1870         masterbi.mergeBiblioInfo(bi);
1871 }
1872
1873
1874 void Buffer::addBibTeXInfo(docstring const & key, BibTeXInfo const & bi) const
1875 {
1876         Buffer const * tmp = masterBuffer();
1877         BiblioInfo & masterbi = (tmp == this) ?
1878                 d->bibinfo_ : tmp->d->bibinfo_;
1879         masterbi[key] = bi;
1880 }
1881
1882
1883 bool Buffer::isDepClean(string const & name) const
1884 {
1885         DepClean::const_iterator const it = d->dep_clean.find(name);
1886         if (it == d->dep_clean.end())
1887                 return true;
1888         return it->second;
1889 }
1890
1891
1892 void Buffer::markDepClean(string const & name)
1893 {
1894         d->dep_clean[name] = true;
1895 }
1896
1897
1898 bool Buffer::isExportableFormat(string const & format) const
1899 {
1900                 typedef vector<Format const *> Formats;
1901                 Formats formats;
1902                 formats = exportableFormats(true);
1903                 Formats::const_iterator fit = formats.begin();
1904                 Formats::const_iterator end = formats.end();
1905                 for (; fit != end ; ++fit) {
1906                         if ((*fit)->name() == format)
1907                                 return true;
1908                 }
1909                 return false;
1910 }
1911
1912
1913 bool Buffer::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1914 {
1915         if (isInternal()) {
1916                 // FIXME? if there is an Buffer LFUN that can be dispatched even
1917                 // if internal, put a switch '(cmd.action)' here.
1918                 return false;
1919         }
1920
1921         bool enable = true;
1922
1923         switch (cmd.action()) {
1924
1925                 case LFUN_BUFFER_TOGGLE_READ_ONLY:
1926                         flag.setOnOff(isReadonly());
1927                         break;
1928
1929                 // FIXME: There is need for a command-line import.
1930                 //case LFUN_BUFFER_IMPORT:
1931
1932                 case LFUN_BUFFER_AUTO_SAVE:
1933                         break;
1934
1935                 case LFUN_BUFFER_EXPORT_CUSTOM:
1936                         // FIXME: Nothing to check here?
1937                         break;
1938
1939                 case LFUN_BUFFER_EXPORT: {
1940                         docstring const arg = cmd.argument();
1941                         enable = arg == "custom" || isExportable(to_utf8(arg));
1942                         if (!enable)
1943                                 flag.message(bformat(
1944                                         _("Don't know how to export to format: %1$s"), arg));
1945                         break;
1946                 }
1947
1948                 case LFUN_BUFFER_CHKTEX:
1949                         enable = isLatex() && !lyxrc.chktex_command.empty();
1950                         break;
1951
1952                 case LFUN_BUILD_PROGRAM:
1953                         enable = isExportable("program");
1954                         break;
1955
1956                 case LFUN_BRANCH_ACTIVATE: 
1957                 case LFUN_BRANCH_DEACTIVATE: {
1958                         BranchList const & branchList = params().branchlist();
1959                         docstring const branchName = cmd.argument();
1960                         enable = !branchName.empty() && branchList.find(branchName);
1961                         break;
1962                 }
1963
1964                 case LFUN_BRANCH_ADD:
1965                 case LFUN_BRANCHES_RENAME:
1966                 case LFUN_BUFFER_PRINT:
1967                         // if no Buffer is present, then of course we won't be called!
1968                         break;
1969
1970                 case LFUN_BUFFER_LANGUAGE:
1971                         enable = !isReadonly();
1972                         break;
1973
1974                 default:
1975                         return false;
1976         }
1977         flag.setEnabled(enable);
1978         return true;
1979 }
1980
1981
1982 void Buffer::dispatch(string const & command, DispatchResult & result)
1983 {
1984         return dispatch(lyxaction.lookupFunc(command), result);
1985 }
1986
1987
1988 // NOTE We can end up here even if we have no GUI, because we are called
1989 // by LyX::exec to handled command-line requests. So we may need to check 
1990 // whether we have a GUI or not. The boolean use_gui holds this information.
1991 void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
1992 {
1993         if (isInternal()) {
1994                 // FIXME? if there is an Buffer LFUN that can be dispatched even
1995                 // if internal, put a switch '(cmd.action())' here.
1996                 dr.dispatched(false);
1997                 return;
1998         }
1999         string const argument = to_utf8(func.argument());
2000         // We'll set this back to false if need be.
2001         bool dispatched = true;
2002         undo().beginUndoGroup();
2003
2004         switch (func.action()) {
2005         case LFUN_BUFFER_TOGGLE_READ_ONLY:
2006                 if (lyxvc().inUse())
2007                         lyxvc().toggleReadOnly();
2008                 else
2009                         setReadonly(!isReadonly());
2010                 break;
2011
2012         case LFUN_BUFFER_EXPORT: {
2013                 bool success = doExport(argument, false, false);
2014                 dr.setError(!success);
2015                 if (!success)
2016                         dr.setMessage(bformat(_("Error exporting to format: %1$s."), 
2017                                               func.argument()));
2018                 break;
2019         }
2020
2021         case LFUN_BUILD_PROGRAM:
2022                 doExport("program", true, false);
2023                 break;
2024
2025         case LFUN_BUFFER_CHKTEX:
2026                 runChktex();
2027                 break;
2028
2029         case LFUN_BUFFER_EXPORT_CUSTOM: {
2030                 string format_name;
2031                 string command = split(argument, format_name, ' ');
2032                 Format const * format = formats.getFormat(format_name);
2033                 if (!format) {
2034                         lyxerr << "Format \"" << format_name
2035                                 << "\" not recognized!"
2036                                 << endl;
2037                         break;
2038                 }
2039
2040                 // The name of the file created by the conversion process
2041                 string filename;
2042
2043                 // Output to filename
2044                 if (format->name() == "lyx") {
2045                         string const latexname = latexName(false);
2046                         filename = changeExtension(latexname,
2047                                 format->extension());
2048                         filename = addName(temppath(), filename);
2049
2050                         if (!writeFile(FileName(filename)))
2051                                 break;
2052
2053                 } else {
2054                         doExport(format_name, true, false, filename);
2055                 }
2056
2057                 // Substitute $$FName for filename
2058                 if (!contains(command, "$$FName"))
2059                         command = "( " + command + " ) < $$FName";
2060                 command = subst(command, "$$FName", filename);
2061
2062                 // Execute the command in the background
2063                 Systemcall call;
2064                 call.startscript(Systemcall::DontWait, command);
2065                 break;
2066         }
2067
2068         // FIXME: There is need for a command-line import.
2069         /*
2070         case LFUN_BUFFER_IMPORT:
2071                 doImport(argument);
2072                 break;
2073         */
2074
2075         case LFUN_BUFFER_AUTO_SAVE:
2076                 autoSave();
2077                 resetAutosaveTimers();
2078                 break;
2079
2080         case LFUN_BRANCH_ADD: {
2081                 docstring branch_name = func.argument();
2082                 if (branch_name.empty()) {
2083                         dispatched = false;
2084                         break;
2085                 }
2086                 BranchList & branch_list = params().branchlist();
2087                 vector<docstring> const branches =
2088                         getVectorFromString(branch_name, branch_list.separator());
2089                 docstring msg;
2090                 for (vector<docstring>::const_iterator it = branches.begin();
2091                      it != branches.end(); ++it) {
2092                         branch_name = *it;
2093                         Branch * branch = branch_list.find(branch_name);
2094                         if (branch) {
2095                                 LYXERR0("Branch " << branch_name << " already exists.");
2096                                 dr.setError(true);
2097                                 if (!msg.empty())
2098                                         msg += ("\n");
2099                                 msg += bformat(_("Branch \"%1$s\" already exists."), branch_name);
2100                         } else {
2101                                 branch_list.add(branch_name);
2102                                 branch = branch_list.find(branch_name);
2103                                 string const x11hexname = X11hexname(branch->color());
2104                                 docstring const str = branch_name + ' ' + from_ascii(x11hexname);
2105                                 lyx::dispatch(FuncRequest(LFUN_SET_COLOR, str));
2106                                 dr.setError(false);
2107                                 dr.screenUpdate(Update::Force);
2108                         }
2109                 }
2110                 if (!msg.empty())
2111                         dr.setMessage(msg);
2112                 break;
2113         }
2114
2115         case LFUN_BRANCH_ACTIVATE:
2116         case LFUN_BRANCH_DEACTIVATE: {
2117                 BranchList & branchList = params().branchlist();
2118                 docstring const branchName = func.argument();
2119                 // the case without a branch name is handled elsewhere
2120                 if (branchName.empty()) {
2121                         dispatched = false;
2122                         break;
2123                 }
2124                 Branch * branch = branchList.find(branchName);
2125                 if (!branch) {
2126                         LYXERR0("Branch " << branchName << " does not exist.");
2127                         dr.setError(true);
2128                         docstring const msg = 
2129                                 bformat(_("Branch \"%1$s\" does not exist."), branchName);
2130                         dr.setMessage(msg);
2131                 } else {
2132                         branch->setSelected(func.action() == LFUN_BRANCH_ACTIVATE);
2133                         dr.setError(false);
2134                         dr.screenUpdate(Update::Force);
2135                         dr.forceBufferUpdate();
2136                 }
2137                 break;
2138         }
2139
2140         case LFUN_BRANCHES_RENAME: {
2141                 if (func.argument().empty())
2142                         break;
2143
2144                 docstring const oldname = from_utf8(func.getArg(0));
2145                 docstring const newname = from_utf8(func.getArg(1));
2146                 InsetIterator it  = inset_iterator_begin(inset());
2147                 InsetIterator const end = inset_iterator_end(inset());
2148                 bool success = false;
2149                 for (; it != end; ++it) {
2150                         if (it->lyxCode() == BRANCH_CODE) {
2151                                 InsetBranch & ins = static_cast<InsetBranch &>(*it);
2152                                 if (ins.branch() == oldname) {
2153                                         undo().recordUndo(it);
2154                                         ins.rename(newname);
2155                                         success = true;
2156                                         continue;
2157                                 }
2158                         }
2159                         if (it->lyxCode() == INCLUDE_CODE) {
2160                                 // get buffer of external file
2161                                 InsetInclude const & ins =
2162                                         static_cast<InsetInclude const &>(*it);
2163                                 Buffer * child = ins.getChildBuffer();
2164                                 if (!child)
2165                                         continue;
2166                                 child->dispatch(func, dr);
2167                         }
2168                 }
2169
2170                 if (success) {
2171                         dr.screenUpdate(Update::Force);
2172                         dr.forceBufferUpdate();
2173                 }
2174                 break;
2175         }
2176
2177         case LFUN_BUFFER_PRINT: {
2178                 // we'll assume there's a problem until we succeed
2179                 dr.setError(true); 
2180                 string target = func.getArg(0);
2181                 string target_name = func.getArg(1);
2182                 string command = func.getArg(2);
2183
2184                 if (target.empty()
2185                     || target_name.empty()
2186                     || command.empty()) {
2187                         LYXERR0("Unable to parse " << func.argument());
2188                         docstring const msg = 
2189                                 bformat(_("Unable to parse \"%1$s\""), func.argument());
2190                         dr.setMessage(msg);
2191                         break;
2192                 }
2193                 if (target != "printer" && target != "file") {
2194                         LYXERR0("Unrecognized target \"" << target << '"');
2195                         docstring const msg = 
2196                                 bformat(_("Unrecognized target \"%1$s\""), from_utf8(target));
2197                         dr.setMessage(msg);
2198                         break;
2199                 }
2200
2201                 bool const update_unincluded =
2202                                 params().maintain_unincluded_children
2203                                 && !params().getIncludedChildren().empty();
2204                 if (!doExport("dvi", true, update_unincluded)) {
2205                         showPrintError(absFileName());
2206                         dr.setMessage(_("Error exporting to DVI."));
2207                         break;
2208                 }
2209
2210                 // Push directory path.
2211                 string const path = temppath();
2212                 // Prevent the compiler from optimizing away p
2213                 FileName pp(path);
2214                 PathChanger p(pp);
2215
2216                 // there are three cases here:
2217                 // 1. we print to a file
2218                 // 2. we print directly to a printer
2219                 // 3. we print using a spool command (print to file first)
2220                 Systemcall one;
2221                 int res = 0;
2222                 string const dviname = changeExtension(latexName(true), "dvi");
2223
2224                 if (target == "printer") {
2225                         if (!lyxrc.print_spool_command.empty()) {
2226                                 // case 3: print using a spool
2227                                 string const psname = changeExtension(dviname,".ps");
2228                                 command += ' ' + lyxrc.print_to_file
2229                                         + quoteName(psname)
2230                                         + ' '
2231                                         + quoteName(dviname);
2232
2233                                 string command2 = lyxrc.print_spool_command + ' ';
2234                                 if (target_name != "default") {
2235                                         command2 += lyxrc.print_spool_printerprefix
2236                                                 + target_name
2237                                                 + ' ';
2238                                 }
2239                                 command2 += quoteName(psname);
2240                                 // First run dvips.
2241                                 // If successful, then spool command
2242                                 res = one.startscript(Systemcall::Wait, command);
2243
2244                                 if (res == 0) {
2245                                         // If there's no GUI, we have to wait on this command. Otherwise,
2246                                         // LyX deletes the temporary directory, and with it the spooled
2247                                         // file, before it can be printed!!
2248                                         Systemcall::Starttype stype = use_gui ?
2249                                                 Systemcall::DontWait : Systemcall::Wait;
2250                                         res = one.startscript(stype, command2);
2251                                 }
2252                         } else {
2253                                 // case 2: print directly to a printer
2254                                 if (target_name != "default")
2255                                         command += ' ' + lyxrc.print_to_printer + target_name + ' ';
2256                                 // as above....
2257                                 Systemcall::Starttype stype = use_gui ?
2258                                         Systemcall::DontWait : Systemcall::Wait;
2259                                 res = one.startscript(stype, command + quoteName(dviname));
2260                         }
2261
2262                 } else {
2263                         // case 1: print to a file
2264                         FileName const filename(makeAbsPath(target_name, filePath()));
2265                         FileName const dvifile(makeAbsPath(dviname, path));
2266                         if (filename.exists()) {
2267                                 docstring text = bformat(
2268                                         _("The file %1$s already exists.\n\n"
2269                                           "Do you want to overwrite that file?"),
2270                                         makeDisplayPath(filename.absFileName()));
2271                                 if (Alert::prompt(_("Overwrite file?"),
2272                                                   text, 0, 1, _("&Overwrite"), _("&Cancel")) != 0)
2273                                         break;
2274                         }
2275                         command += ' ' + lyxrc.print_to_file
2276                                 + quoteName(filename.toFilesystemEncoding())
2277                                 + ' '
2278                                 + quoteName(dvifile.toFilesystemEncoding());
2279                         // as above....
2280                         Systemcall::Starttype stype = use_gui ?
2281                                 Systemcall::DontWait : Systemcall::Wait;
2282                         res = one.startscript(stype, command);
2283                 }
2284
2285                 if (res == 0) 
2286                         dr.setError(false);
2287                 else {
2288                         dr.setMessage(_("Error running external commands."));
2289                         showPrintError(absFileName());
2290                 }
2291                 break;
2292         }
2293
2294         case LFUN_BUFFER_LANGUAGE: {
2295                 Language const * oldL = params().language;
2296                 Language const * newL = languages.getLanguage(argument);
2297                 if (!newL || oldL == newL)
2298                         break;
2299                 if (oldL->rightToLeft() == newL->rightToLeft() && !isMultiLingual()) {
2300                         changeLanguage(oldL, newL);
2301                         dr.forceBufferUpdate();
2302                 }
2303                 break;
2304         }
2305
2306         default:
2307                 dispatched = false;
2308                 break;
2309         }
2310         dr.dispatched(dispatched);
2311         undo().endUndoGroup();
2312 }
2313
2314
2315 void Buffer::changeLanguage(Language const * from, Language const * to)
2316 {
2317         LASSERT(from, /**/);
2318         LASSERT(to, /**/);
2319
2320         for_each(par_iterator_begin(),
2321                  par_iterator_end(),
2322                  bind(&Paragraph::changeLanguage, _1, params(), from, to));
2323 }
2324
2325
2326 bool Buffer::isMultiLingual() const
2327 {
2328         ParConstIterator end = par_iterator_end();
2329         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
2330                 if (it->isMultiLingual(params()))
2331                         return true;
2332
2333         return false;
2334 }
2335
2336
2337 std::set<Language const *> Buffer::getLanguages() const
2338 {
2339         std::set<Language const *> languages;
2340         getLanguages(languages);
2341         return languages;
2342 }
2343
2344
2345 void Buffer::getLanguages(std::set<Language const *> & languages) const
2346 {
2347         ParConstIterator end = par_iterator_end();
2348         // add the buffer language, even if it's not actively used
2349         languages.insert(language());
2350         // iterate over the paragraphs
2351         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
2352                 it->getLanguages(languages);
2353         // also children
2354         ListOfBuffers clist = getDescendents();
2355         ListOfBuffers::const_iterator cit = clist.begin();
2356         ListOfBuffers::const_iterator const cen = clist.end();
2357         for (; cit != cen; ++cit)
2358                 (*cit)->getLanguages(languages);
2359 }
2360
2361
2362 DocIterator Buffer::getParFromID(int const id) const
2363 {
2364         Buffer * buf = const_cast<Buffer *>(this);
2365         if (id < 0) {
2366                 // John says this is called with id == -1 from undo
2367                 lyxerr << "getParFromID(), id: " << id << endl;
2368                 return doc_iterator_end(buf);
2369         }
2370
2371         for (DocIterator it = doc_iterator_begin(buf); !it.atEnd(); it.forwardPar())
2372                 if (it.paragraph().id() == id)
2373                         return it;
2374
2375         return doc_iterator_end(buf);
2376 }
2377
2378
2379 bool Buffer::hasParWithID(int const id) const
2380 {
2381         return !getParFromID(id).atEnd();
2382 }
2383
2384
2385 ParIterator Buffer::par_iterator_begin()
2386 {
2387         return ParIterator(doc_iterator_begin(this));
2388 }
2389
2390
2391 ParIterator Buffer::par_iterator_end()
2392 {
2393         return ParIterator(doc_iterator_end(this));
2394 }
2395
2396
2397 ParConstIterator Buffer::par_iterator_begin() const
2398 {
2399         return ParConstIterator(doc_iterator_begin(this));
2400 }
2401
2402
2403 ParConstIterator Buffer::par_iterator_end() const
2404 {
2405         return ParConstIterator(doc_iterator_end(this));
2406 }
2407
2408
2409 Language const * Buffer::language() const
2410 {
2411         return params().language;
2412 }
2413
2414
2415 docstring const Buffer::B_(string const & l10n) const
2416 {
2417         return params().B_(l10n);
2418 }
2419
2420
2421 bool Buffer::isClean() const
2422 {
2423         return d->lyx_clean;
2424 }
2425
2426
2427 bool Buffer::isExternallyModified(CheckMethod method) const
2428 {
2429         LASSERT(d->filename.exists(), /**/);
2430         // if method == timestamp, check timestamp before checksum
2431         return (method == checksum_method
2432                 || d->timestamp_ != d->filename.lastModified())
2433                 && d->checksum_ != d->filename.checksum();
2434 }
2435
2436
2437 void Buffer::saveCheckSum() const
2438 {
2439         FileName const & file = d->filename;
2440
2441         file.refresh();
2442         if (file.exists()) {
2443                 d->timestamp_ = file.lastModified();
2444                 d->checksum_ = file.checksum();
2445         } else {
2446                 // in the case of save to a new file.
2447                 d->timestamp_ = 0;
2448                 d->checksum_ = 0;
2449         }
2450 }
2451
2452
2453 void Buffer::markClean() const
2454 {
2455         if (!d->lyx_clean) {
2456                 d->lyx_clean = true;
2457                 updateTitles();
2458         }
2459         // if the .lyx file has been saved, we don't need an
2460         // autosave
2461         d->bak_clean = true;
2462         d->undo_.markDirty();
2463 }
2464
2465
2466 void Buffer::setUnnamed(bool flag)
2467 {
2468         d->unnamed = flag;
2469 }
2470
2471
2472 bool Buffer::isUnnamed() const
2473 {
2474         return d->unnamed;
2475 }
2476
2477
2478 /// \note
2479 /// Don't check unnamed, here: isInternal() is used in
2480 /// newBuffer(), where the unnamed flag has not been set by anyone
2481 /// yet. Also, for an internal buffer, there should be no need for
2482 /// retrieving fileName() nor for checking if it is unnamed or not.
2483 bool Buffer::isInternal() const
2484 {
2485         return fileName().extension() == "internal";
2486 }
2487
2488
2489 void Buffer::markDirty()
2490 {
2491         if (d->lyx_clean) {
2492                 d->lyx_clean = false;
2493                 updateTitles();
2494         }
2495         d->bak_clean = false;
2496
2497         DepClean::iterator it = d->dep_clean.begin();
2498         DepClean::const_iterator const end = d->dep_clean.end();
2499
2500         for (; it != end; ++it)
2501                 it->second = false;
2502 }
2503
2504
2505 FileName Buffer::fileName() const
2506 {
2507         return d->filename;
2508 }
2509
2510
2511 string Buffer::absFileName() const
2512 {
2513         return d->filename.absFileName();
2514 }
2515
2516
2517 string Buffer::filePath() const
2518 {
2519         return d->filename.onlyPath().absFileName() + "/";
2520 }
2521
2522
2523 bool Buffer::isReadonly() const
2524 {
2525         return d->read_only;
2526 }
2527
2528
2529 void Buffer::setParent(Buffer const * buffer)
2530 {
2531         // Avoids recursive include.
2532         d->setParent(buffer == this ? 0 : buffer);
2533         updateMacros();
2534 }
2535
2536
2537 Buffer const * Buffer::parent() const
2538 {
2539         return d->parent();
2540 }
2541
2542
2543 ListOfBuffers Buffer::allRelatives() const
2544 {
2545         ListOfBuffers lb = masterBuffer()->getDescendents();
2546         lb.push_front(const_cast<Buffer *>(masterBuffer()));
2547         return lb;
2548 }
2549
2550
2551 Buffer const * Buffer::masterBuffer() const
2552 {
2553         // FIXME Should be make sure we are not in some kind
2554         // of recursive include? A -> B -> A will crash this.
2555         Buffer const * const pbuf = d->parent();
2556         if (!pbuf)
2557                 return this;
2558
2559         return pbuf->masterBuffer();
2560 }
2561
2562
2563 bool Buffer::isChild(Buffer * child) const
2564 {
2565         return d->children_positions.find(child) != d->children_positions.end();
2566 }
2567
2568
2569 DocIterator Buffer::firstChildPosition(Buffer const * child)
2570 {
2571         Impl::BufferPositionMap::iterator it;
2572         it = d->children_positions.find(child);
2573         if (it == d->children_positions.end())
2574                 return DocIterator(this);
2575         return it->second;
2576 }
2577
2578
2579 bool Buffer::hasChildren() const
2580 {
2581         return !d->children_positions.empty();  
2582 }
2583
2584
2585 void Buffer::collectChildren(ListOfBuffers & clist, bool grand_children) const
2586 {
2587         // loop over children
2588         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2589         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2590         for (; it != end; ++it) {
2591                 Buffer * child = const_cast<Buffer *>(it->first);
2592                 // No duplicates
2593                 ListOfBuffers::const_iterator bit = find(clist.begin(), clist.end(), child);
2594                 if (bit != clist.end())
2595                         continue;
2596                 clist.push_back(child);
2597                 if (grand_children) 
2598                         // there might be grandchildren
2599                         child->collectChildren(clist, true);
2600         }
2601 }
2602
2603
2604 ListOfBuffers Buffer::getChildren() const
2605 {
2606         ListOfBuffers v;
2607         collectChildren(v, false);
2608         return v;
2609 }
2610
2611
2612 ListOfBuffers Buffer::getDescendents() const
2613 {
2614         ListOfBuffers v;
2615         collectChildren(v, true);
2616         return v;
2617 }
2618
2619
2620 template<typename M>
2621 typename M::const_iterator greatest_below(M & m, typename M::key_type const & x)
2622 {
2623         if (m.empty())
2624                 return m.end();
2625
2626         typename M::const_iterator it = m.lower_bound(x);
2627         if (it == m.begin())
2628                 return m.end();
2629
2630         it--;
2631         return it;
2632 }
2633
2634
2635 MacroData const * Buffer::Impl::getBufferMacro(docstring const & name,
2636                                          DocIterator const & pos) const
2637 {
2638         LYXERR(Debug::MACROS, "Searching for " << to_ascii(name) << " at " << pos);
2639
2640         // if paragraphs have no macro context set, pos will be empty
2641         if (pos.empty())
2642                 return 0;
2643
2644         // we haven't found anything yet
2645         DocIterator bestPos = owner_->par_iterator_begin();
2646         MacroData const * bestData = 0;
2647
2648         // find macro definitions for name
2649         NamePositionScopeMacroMap::const_iterator nameIt = macros.find(name);
2650         if (nameIt != macros.end()) {
2651                 // find last definition in front of pos or at pos itself
2652                 PositionScopeMacroMap::const_iterator it
2653                         = greatest_below(nameIt->second, pos);
2654                 if (it != nameIt->second.end()) {
2655                         while (true) {
2656                                 // scope ends behind pos?
2657                                 if (pos < it->second.first) {
2658                                         // Looks good, remember this. If there
2659                                         // is no external macro behind this,
2660                                         // we found the right one already.
2661                                         bestPos = it->first;
2662                                         bestData = &it->second.second;
2663                                         break;
2664                                 }
2665
2666                                 // try previous macro if there is one
2667                                 if (it == nameIt->second.begin())
2668                                         break;
2669                                 it--;
2670                         }
2671                 }
2672         }
2673
2674         // find macros in included files
2675         PositionScopeBufferMap::const_iterator it
2676                 = greatest_below(position_to_children, pos);
2677         if (it == position_to_children.end())
2678                 // no children before
2679                 return bestData;
2680
2681         while (true) {
2682                 // do we know something better (i.e. later) already?
2683                 if (it->first < bestPos )
2684                         break;
2685
2686                 // scope ends behind pos?
2687                 if (pos < it->second.first
2688                         && (cloned_buffer_ ||
2689                             theBufferList().isLoaded(it->second.second))) {
2690                         // look for macro in external file
2691                         macro_lock = true;
2692                         MacroData const * data
2693                                 = it->second.second->getMacro(name, false);
2694                         macro_lock = false;
2695                         if (data) {
2696                                 bestPos = it->first;
2697                                 bestData = data;
2698                                 break;
2699                         }
2700                 }
2701
2702                 // try previous file if there is one
2703                 if (it == position_to_children.begin())
2704                         break;
2705                 --it;
2706         }
2707
2708         // return the best macro we have found
2709         return bestData;
2710 }
2711
2712
2713 MacroData const * Buffer::getMacro(docstring const & name,
2714         DocIterator const & pos, bool global) const
2715 {
2716         if (d->macro_lock)
2717                 return 0;
2718
2719         // query buffer macros
2720         MacroData const * data = d->getBufferMacro(name, pos);
2721         if (data != 0)
2722                 return data;
2723
2724         // If there is a master buffer, query that
2725         Buffer const * const pbuf = d->parent();
2726         if (pbuf) {
2727                 d->macro_lock = true;
2728                 MacroData const * macro = pbuf->getMacro(
2729                         name, *this, false);
2730                 d->macro_lock = false;
2731                 if (macro)
2732                         return macro;
2733         }
2734
2735         if (global) {
2736                 data = MacroTable::globalMacros().get(name);
2737                 if (data != 0)
2738                         return data;
2739         }
2740
2741         return 0;
2742 }
2743
2744
2745 MacroData const * Buffer::getMacro(docstring const & name, bool global) const
2746 {
2747         // set scope end behind the last paragraph
2748         DocIterator scope = par_iterator_begin();
2749         scope.pit() = scope.lastpit() + 1;
2750
2751         return getMacro(name, scope, global);
2752 }
2753
2754
2755 MacroData const * Buffer::getMacro(docstring const & name,
2756         Buffer const & child, bool global) const
2757 {
2758         // look where the child buffer is included first
2759         Impl::BufferPositionMap::iterator it = d->children_positions.find(&child);
2760         if (it == d->children_positions.end())
2761                 return 0;
2762
2763         // check for macros at the inclusion position
2764         return getMacro(name, it->second, global);
2765 }
2766
2767
2768 void Buffer::Impl::updateMacros(DocIterator & it, DocIterator & scope)
2769 {
2770         pit_type const lastpit = it.lastpit();
2771
2772         // look for macros in each paragraph
2773         while (it.pit() <= lastpit) {
2774                 Paragraph & par = it.paragraph();
2775
2776                 // iterate over the insets of the current paragraph
2777                 InsetList const & insets = par.insetList();
2778                 InsetList::const_iterator iit = insets.begin();
2779                 InsetList::const_iterator end = insets.end();
2780                 for (; iit != end; ++iit) {
2781                         it.pos() = iit->pos;
2782
2783                         // is it a nested text inset?
2784                         if (iit->inset->asInsetText()) {
2785                                 // Inset needs its own scope?
2786                                 InsetText const * itext = iit->inset->asInsetText();
2787                                 bool newScope = itext->isMacroScope();
2788
2789                                 // scope which ends just behind the inset
2790                                 DocIterator insetScope = it;
2791                                 ++insetScope.pos();
2792
2793                                 // collect macros in inset
2794                                 it.push_back(CursorSlice(*iit->inset));
2795                                 updateMacros(it, newScope ? insetScope : scope);
2796                                 it.pop_back();
2797                                 continue;
2798                         }
2799                         
2800                         if (iit->inset->asInsetTabular()) {
2801                                 CursorSlice slice(*iit->inset);
2802                                 size_t const numcells = slice.nargs();
2803                                 for (; slice.idx() < numcells; slice.forwardIdx()) {
2804                                         it.push_back(slice);
2805                                         updateMacros(it, scope);
2806                                         it.pop_back();
2807                                 }
2808                                 continue;
2809                         }
2810
2811                         // is it an external file?
2812                         if (iit->inset->lyxCode() == INCLUDE_CODE) {
2813                                 // get buffer of external file
2814                                 InsetInclude const & inset =
2815                                         static_cast<InsetInclude const &>(*iit->inset);
2816                                 macro_lock = true;
2817                                 Buffer * child = inset.getChildBuffer();
2818                                 macro_lock = false;
2819                                 if (!child)
2820                                         continue;
2821
2822                                 // register its position, but only when it is
2823                                 // included first in the buffer
2824                                 if (children_positions.find(child) ==
2825                                         children_positions.end())
2826                                                 children_positions[child] = it;
2827
2828                                 // register child with its scope
2829                                 position_to_children[it] = Impl::ScopeBuffer(scope, child);
2830                                 continue;
2831                         }
2832
2833                         InsetMath * im = iit->inset->asInsetMath();
2834                         if (doing_export && im)  {
2835                                 InsetMathHull * hull = im->asHullInset();
2836                                 if (hull)
2837                                         hull->recordLocation(it);
2838                         }
2839
2840                         if (iit->inset->lyxCode() != MATHMACRO_CODE)
2841                                 continue;
2842
2843                         // get macro data
2844                         MathMacroTemplate & macroTemplate =
2845                                 *iit->inset->asInsetMath()->asMacroTemplate();
2846                         MacroContext mc(owner_, it);
2847                         macroTemplate.updateToContext(mc);
2848
2849                         // valid?
2850                         bool valid = macroTemplate.validMacro();
2851                         // FIXME: Should be fixNameAndCheckIfValid() in fact,
2852                         // then the BufferView's cursor will be invalid in
2853                         // some cases which leads to crashes.
2854                         if (!valid)
2855                                 continue;
2856
2857                         // register macro
2858                         // FIXME (Abdel), I don't understandt why we pass 'it' here
2859                         // instead of 'macroTemplate' defined above... is this correct?
2860                         macros[macroTemplate.name()][it] =
2861                                 Impl::ScopeMacro(scope, MacroData(const_cast<Buffer *>(owner_), it));
2862                 }
2863
2864                 // next paragraph
2865                 it.pit()++;
2866                 it.pos() = 0;
2867         }
2868 }
2869
2870
2871 void Buffer::updateMacros() const
2872 {
2873         if (d->macro_lock)
2874                 return;
2875
2876         LYXERR(Debug::MACROS, "updateMacro of " << d->filename.onlyFileName());
2877
2878         // start with empty table
2879         d->macros.clear();
2880         d->children_positions.clear();
2881         d->position_to_children.clear();
2882
2883         // Iterate over buffer, starting with first paragraph
2884         // The scope must be bigger than any lookup DocIterator
2885         // later. For the global lookup, lastpit+1 is used, hence
2886         // we use lastpit+2 here.
2887         DocIterator it = par_iterator_begin();
2888         DocIterator outerScope = it;
2889         outerScope.pit() = outerScope.lastpit() + 2;
2890         d->updateMacros(it, outerScope);
2891 }
2892
2893
2894 void Buffer::getUsedBranches(std::list<docstring> & result, bool const from_master) const
2895 {
2896         InsetIterator it  = inset_iterator_begin(inset());
2897         InsetIterator const end = inset_iterator_end(inset());
2898         for (; it != end; ++it) {
2899                 if (it->lyxCode() == BRANCH_CODE) {
2900                         InsetBranch & br = static_cast<InsetBranch &>(*it);
2901                         docstring const name = br.branch();
2902                         if (!from_master && !params().branchlist().find(name))
2903                                 result.push_back(name);
2904                         else if (from_master && !masterBuffer()->params().branchlist().find(name))
2905                                 result.push_back(name);
2906                         continue;
2907                 }
2908                 if (it->lyxCode() == INCLUDE_CODE) {
2909                         // get buffer of external file
2910                         InsetInclude const & ins =
2911                                 static_cast<InsetInclude const &>(*it);
2912                         Buffer * child = ins.getChildBuffer();
2913                         if (!child)
2914                                 continue;
2915                         child->getUsedBranches(result, true);
2916                 }
2917         }
2918         // remove duplicates
2919         result.unique();
2920 }
2921
2922
2923 void Buffer::updateMacroInstances() const
2924 {
2925         LYXERR(Debug::MACROS, "updateMacroInstances for "
2926                 << d->filename.onlyFileName());
2927         DocIterator it = doc_iterator_begin(this);
2928         it.forwardInset();
2929         DocIterator const end = doc_iterator_end(this);
2930         for (; it != end; it.forwardInset()) {
2931                 // look for MathData cells in InsetMathNest insets
2932                 InsetMath * minset = it.nextInset()->asInsetMath();
2933                 if (!minset)
2934                         continue;
2935
2936                 // update macro in all cells of the InsetMathNest
2937                 DocIterator::idx_type n = minset->nargs();
2938                 MacroContext mc = MacroContext(this, it);
2939                 for (DocIterator::idx_type i = 0; i < n; ++i) {
2940                         MathData & data = minset->cell(i);
2941                         data.updateMacros(0, mc);
2942                 }
2943         }
2944 }
2945
2946
2947 void Buffer::listMacroNames(MacroNameSet & macros) const
2948 {
2949         if (d->macro_lock)
2950                 return;
2951
2952         d->macro_lock = true;
2953
2954         // loop over macro names
2955         Impl::NamePositionScopeMacroMap::iterator nameIt = d->macros.begin();
2956         Impl::NamePositionScopeMacroMap::iterator nameEnd = d->macros.end();
2957         for (; nameIt != nameEnd; ++nameIt)
2958                 macros.insert(nameIt->first);
2959
2960         // loop over children
2961         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2962         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2963         for (; it != end; ++it)
2964                 it->first->listMacroNames(macros);
2965
2966         // call parent
2967         Buffer const * const pbuf = d->parent();
2968         if (pbuf)
2969                 pbuf->listMacroNames(macros);
2970
2971         d->macro_lock = false;
2972 }
2973
2974
2975 void Buffer::listParentMacros(MacroSet & macros, LaTeXFeatures & features) const
2976 {
2977         Buffer const * const pbuf = d->parent();
2978         if (!pbuf)
2979                 return;
2980
2981         MacroNameSet names;
2982         pbuf->listMacroNames(names);
2983
2984         // resolve macros
2985         MacroNameSet::iterator it = names.begin();
2986         MacroNameSet::iterator end = names.end();
2987         for (; it != end; ++it) {
2988                 // defined?
2989                 MacroData const * data =
2990                 pbuf->getMacro(*it, *this, false);
2991                 if (data) {
2992                         macros.insert(data);
2993
2994                         // we cannot access the original MathMacroTemplate anymore
2995                         // here to calls validate method. So we do its work here manually.
2996                         // FIXME: somehow make the template accessible here.
2997                         if (data->optionals() > 0)
2998                                 features.require("xargs");
2999                 }
3000         }
3001 }
3002
3003
3004 Buffer::References & Buffer::references(docstring const & label)
3005 {
3006         if (d->parent())
3007                 return const_cast<Buffer *>(masterBuffer())->references(label);
3008
3009         RefCache::iterator it = d->ref_cache_.find(label);
3010         if (it != d->ref_cache_.end())
3011                 return it->second.second;
3012
3013         static InsetLabel const * dummy_il = 0;
3014         static References const dummy_refs;
3015         it = d->ref_cache_.insert(
3016                 make_pair(label, make_pair(dummy_il, dummy_refs))).first;
3017         return it->second.second;
3018 }
3019
3020
3021 Buffer::References const & Buffer::references(docstring const & label) const
3022 {
3023         return const_cast<Buffer *>(this)->references(label);
3024 }
3025
3026
3027 void Buffer::setInsetLabel(docstring const & label, InsetLabel const * il)
3028 {
3029         masterBuffer()->d->ref_cache_[label].first = il;
3030 }
3031
3032
3033 InsetLabel const * Buffer::insetLabel(docstring const & label) const
3034 {
3035         return masterBuffer()->d->ref_cache_[label].first;
3036 }
3037
3038
3039 void Buffer::clearReferenceCache() const
3040 {
3041         if (!d->parent())
3042                 d->ref_cache_.clear();
3043 }
3044
3045
3046 void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
3047         InsetCode code)
3048 {
3049         //FIXME: This does not work for child documents yet.
3050         LASSERT(code == CITE_CODE, /**/);
3051
3052         reloadBibInfoCache();
3053
3054         // Check if the label 'from' appears more than once
3055         BiblioInfo const & keys = masterBibInfo();
3056         BiblioInfo::const_iterator bit  = keys.begin();
3057         BiblioInfo::const_iterator bend = keys.end();
3058         vector<docstring> labels;
3059
3060         for (; bit != bend; ++bit)
3061                 // FIXME UNICODE
3062                 labels.push_back(bit->first);
3063
3064         if (count(labels.begin(), labels.end(), from) > 1)
3065                 return;
3066
3067         string const paramName = "key";
3068         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
3069                 if (it->lyxCode() == code) {
3070                         InsetCommand * inset = it->asInsetCommand();
3071                         if (!inset)
3072                                 continue;
3073                         docstring const oldValue = inset->getParam(paramName);
3074                         if (oldValue == from)
3075                                 inset->setParam(paramName, to);
3076                 }
3077         }
3078 }
3079
3080
3081 void Buffer::getSourceCode(odocstream & os, string const format,
3082                            pit_type par_begin, pit_type par_end,
3083                            bool full_source) const
3084 {
3085         OutputParams runparams(&params().encoding());
3086         runparams.nice = true;
3087         runparams.flavor = getOutputFlavor(format);
3088         runparams.linelen = lyxrc.plaintext_linelen;
3089         // No side effect of file copying and image conversion
3090         runparams.dryrun = true;
3091
3092         if (full_source) {
3093                 os << "% " << _("Preview source code") << "\n\n";
3094                 d->texrow.reset();
3095                 d->texrow.newline();
3096                 d->texrow.newline();
3097                 if (isDocBook())
3098                         writeDocBookSource(os, absFileName(), runparams, false);
3099                 else if (runparams.flavor == OutputParams::HTML)
3100                         writeLyXHTMLSource(os, runparams, false);
3101                 else {
3102                         // latex or literate
3103                         otexstream ots(os, d->texrow);
3104                         writeLaTeXSource(ots, string(), runparams, true, true);
3105                 }
3106         } else {
3107                 runparams.par_begin = par_begin;
3108                 runparams.par_end = par_end;
3109                 if (par_begin + 1 == par_end) {
3110                         os << "% "
3111                            << bformat(_("Preview source code for paragraph %1$d"), par_begin)
3112                            << "\n\n";
3113                 } else {
3114                         os << "% "
3115                            << bformat(_("Preview source code from paragraph %1$s to %2$s"),
3116                                         convert<docstring>(par_begin),
3117                                         convert<docstring>(par_end - 1))
3118                            << "\n\n";
3119                 }
3120                 TexRow texrow;
3121                 texrow.reset();
3122                 texrow.newline();
3123                 texrow.newline();
3124                 // output paragraphs
3125                 if (isDocBook())
3126                         docbookParagraphs(text(), *this, os, runparams);
3127                 else if (runparams.flavor == OutputParams::HTML) {
3128                         XHTMLStream xs(os);
3129                         xhtmlParagraphs(text(), *this, xs, runparams);
3130                 } else {
3131                         // latex or literate
3132                         otexstream ots(os, texrow);
3133                         latexParagraphs(*this, text(), ots, runparams);
3134                 }
3135         }
3136 }
3137
3138
3139 ErrorList & Buffer::errorList(string const & type) const
3140 {
3141         static ErrorList emptyErrorList;
3142         map<string, ErrorList>::iterator it = d->errorLists.find(type);
3143         if (it == d->errorLists.end())
3144                 return emptyErrorList;
3145
3146         return it->second;
3147 }
3148
3149
3150 void Buffer::updateTocItem(std::string const & type,
3151         DocIterator const & dit) const
3152 {
3153         if (d->gui_)
3154                 d->gui_->updateTocItem(type, dit);
3155 }
3156
3157
3158 void Buffer::structureChanged() const
3159 {
3160         if (d->gui_)
3161                 d->gui_->structureChanged();
3162 }
3163
3164
3165 void Buffer::errors(string const & err, bool from_master) const
3166 {
3167         if (d->gui_)
3168                 d->gui_->errors(err, from_master);
3169 }
3170
3171
3172 void Buffer::message(docstring const & msg) const
3173 {
3174         if (d->gui_)
3175                 d->gui_->message(msg);
3176 }
3177
3178
3179 void Buffer::setBusy(bool on) const
3180 {
3181         if (d->gui_)
3182                 d->gui_->setBusy(on);
3183 }
3184
3185
3186 void Buffer::updateTitles() const
3187 {
3188         if (d->wa_)
3189                 d->wa_->updateTitles();
3190 }
3191
3192
3193 void Buffer::resetAutosaveTimers() const
3194 {
3195         if (d->gui_)
3196                 d->gui_->resetAutosaveTimers();
3197 }
3198
3199
3200 bool Buffer::hasGuiDelegate() const
3201 {
3202         return d->gui_;
3203 }
3204
3205
3206 void Buffer::setGuiDelegate(frontend::GuiBufferDelegate * gui)
3207 {
3208         d->gui_ = gui;
3209 }
3210
3211
3212
3213 namespace {
3214
3215 class AutoSaveBuffer : public ForkedProcess {
3216 public:
3217         ///
3218         AutoSaveBuffer(Buffer const & buffer, FileName const & fname)
3219                 : buffer_(buffer), fname_(fname) {}
3220         ///
3221         virtual shared_ptr<ForkedProcess> clone() const
3222         {
3223                 return shared_ptr<ForkedProcess>(new AutoSaveBuffer(*this));
3224         }
3225         ///
3226         int start()
3227         {
3228                 command_ = to_utf8(bformat(_("Auto-saving %1$s"),
3229                                                  from_utf8(fname_.absFileName())));
3230                 return run(DontWait);
3231         }
3232 private:
3233         ///
3234         virtual int generateChild();
3235         ///
3236         Buffer const & buffer_;
3237         FileName fname_;
3238 };
3239
3240
3241 int AutoSaveBuffer::generateChild()
3242 {
3243 #if defined(__APPLE__)
3244         /* FIXME fork() is not usable for autosave on Mac OS X 10.6 (snow leopard) 
3245          *   We should use something else like threads.
3246          *
3247          * Since I do not know how to determine at run time what is the OS X
3248          * version, I just disable forking altogether for now (JMarc)
3249          */
3250         pid_t const pid = -1;
3251 #else
3252         // tmp_ret will be located (usually) in /tmp
3253         // will that be a problem?
3254         // Note that this calls ForkedCalls::fork(), so it's
3255         // ok cross-platform.
3256         pid_t const pid = fork();
3257         // If you want to debug the autosave
3258         // you should set pid to -1, and comment out the fork.
3259         if (pid != 0 && pid != -1)
3260                 return pid;
3261 #endif
3262
3263         // pid = -1 signifies that lyx was unable
3264         // to fork. But we will do the save
3265         // anyway.
3266         bool failed = false;
3267         FileName const tmp_ret = FileName::tempName("lyxauto");
3268         if (!tmp_ret.empty()) {
3269                 buffer_.writeFile(tmp_ret);
3270                 // assume successful write of tmp_ret
3271                 if (!tmp_ret.moveTo(fname_))
3272                         failed = true;
3273         } else
3274                 failed = true;
3275
3276         if (failed) {
3277                 // failed to write/rename tmp_ret so try writing direct
3278                 if (!buffer_.writeFile(fname_)) {
3279                         // It is dangerous to do this in the child,
3280                         // but safe in the parent, so...
3281                         if (pid == -1) // emit message signal.
3282                                 buffer_.message(_("Autosave failed!"));
3283                 }
3284         }
3285
3286         if (pid == 0) // we are the child so...
3287                 _exit(0);
3288
3289         return pid;
3290 }
3291
3292 } // namespace anon
3293
3294
3295 FileName Buffer::getEmergencyFileName() const
3296 {
3297         return FileName(d->filename.absFileName() + ".emergency");
3298 }
3299
3300
3301 FileName Buffer::getAutosaveFileName() const
3302 {
3303         // if the document is unnamed try to save in the backup dir, else
3304         // in the default document path, and as a last try in the filePath, 
3305         // which will most often be the temporary directory
3306         string fpath;
3307         if (isUnnamed())
3308                 fpath = lyxrc.backupdir_path.empty() ? lyxrc.document_path
3309                         : lyxrc.backupdir_path;
3310         if (!isUnnamed() || fpath.empty() || !FileName(fpath).exists())
3311                 fpath = filePath();
3312
3313         string const fname = "#" + d->filename.onlyFileName() + "#";
3314
3315         return makeAbsPath(fname, fpath);
3316 }
3317
3318
3319 void Buffer::removeAutosaveFile() const
3320 {
3321         FileName const f = getAutosaveFileName();
3322         if (f.exists())
3323                 f.removeFile();
3324 }
3325
3326
3327 void Buffer::moveAutosaveFile(support::FileName const & oldauto) const
3328 {
3329         FileName const newauto = getAutosaveFileName();
3330         oldauto.refresh();
3331         if (newauto != oldauto && oldauto.exists())
3332                 if (!oldauto.moveTo(newauto))
3333                         LYXERR0("Unable to move autosave file `" << oldauto << "'!");
3334 }
3335
3336
3337 bool Buffer::autoSave() const 
3338 {
3339         Buffer const * buf = d->cloned_buffer_ ? d->cloned_buffer_ : this;
3340         if (buf->d->bak_clean || isReadonly())
3341                 return true;
3342
3343         message(_("Autosaving current document..."));
3344         buf->d->bak_clean = true;
3345         
3346         FileName const fname = getAutosaveFileName();
3347         if (d->cloned_buffer_) {
3348                 // If this buffer is cloned, we assume that
3349                 // we are running in a separate thread already.
3350                 FileName const tmp_ret = FileName::tempName("lyxauto");
3351                 if (!tmp_ret.empty()) {
3352                         writeFile(tmp_ret);
3353                         // assume successful write of tmp_ret
3354                         if (tmp_ret.moveTo(fname))
3355                                 return true;
3356                 }
3357                 // failed to write/rename tmp_ret so try writing direct
3358                 return writeFile(fname);
3359         } else {        
3360                 /// This function is deprecated as the frontend needs to take care
3361                 /// of cloning the buffer and autosaving it in another thread. It
3362                 /// is still here to allow (QT_VERSION < 0x040400).
3363                 AutoSaveBuffer autosave(*this, fname);
3364                 autosave.start();
3365                 return true;
3366         }
3367 }
3368
3369
3370 string Buffer::bufferFormat() const
3371 {
3372         string format = params().documentClass().outputFormat();
3373         if (format == "latex") {
3374                 if (params().useNonTeXFonts)
3375                         return "xetex";
3376                 if (params().encoding().package() == Encoding::japanese)
3377                         return "platex";
3378         }
3379         return format;
3380 }
3381
3382
3383 string Buffer::getDefaultOutputFormat() const
3384 {
3385         if (!params().default_output_format.empty()
3386             && params().default_output_format != "default")
3387                 return params().default_output_format;
3388         if (isDocBook()
3389             || params().useNonTeXFonts
3390             || params().encoding().package() == Encoding::japanese) {
3391                 vector<Format const *> const formats = exportableFormats(true);
3392                 if (formats.empty())
3393                         return string();
3394                 // return the first we find
3395                 return formats.front()->name();
3396         }
3397         return lyxrc.default_view_format;
3398 }
3399
3400
3401 OutputParams::FLAVOR Buffer::getOutputFlavor(string const format) const
3402 {
3403         string const dformat = (format.empty() || format == "default") ?
3404                 getDefaultOutputFormat() : format;
3405         DefaultFlavorCache::const_iterator it =
3406                 default_flavors_.find(dformat);
3407
3408         if (it != default_flavors_.end())
3409                 return it->second;
3410
3411         OutputParams::FLAVOR result = OutputParams::LATEX;
3412         
3413         if (dformat == "xhtml")
3414                 result = OutputParams::HTML;
3415         else {
3416                 // Try to determine flavor of default output format
3417                 vector<string> backs = backends();
3418                 if (find(backs.begin(), backs.end(), dformat) == backs.end()) {
3419                         // Get shortest path to format
3420                         Graph::EdgePath path;
3421                         for (vector<string>::const_iterator it = backs.begin();
3422                             it != backs.end(); ++it) {
3423                                 Graph::EdgePath p = theConverters().getPath(*it, dformat);
3424                                 if (!p.empty() && (path.empty() || p.size() < path.size())) {
3425                                         path = p;
3426                                 }
3427                         }
3428                         if (!path.empty())
3429                                 result = theConverters().getFlavor(path);
3430                 }
3431         }
3432         // cache this flavor
3433         default_flavors_[dformat] = result;
3434         return result;
3435 }
3436
3437
3438 namespace {
3439         // helper class, to guarantee this gets reset properly
3440         class MarkAsExporting   {
3441         public:
3442                 MarkAsExporting(Buffer const * buf) : buf_(buf) 
3443                 {
3444                         LASSERT(buf_, /* */);
3445                         buf_->setExportStatus(true);
3446                 }
3447                 ~MarkAsExporting() 
3448                 {
3449                         buf_->setExportStatus(false);
3450                 }
3451         private:
3452                 Buffer const * const buf_;
3453         };
3454 }
3455
3456
3457 void Buffer::setExportStatus(bool e) const
3458 {
3459         d->doing_export = e;    
3460         ListOfBuffers clist = getDescendents();
3461         ListOfBuffers::const_iterator cit = clist.begin();
3462         ListOfBuffers::const_iterator const cen = clist.end();
3463         for (; cit != cen; ++cit)
3464                 (*cit)->d->doing_export = e;
3465 }
3466
3467
3468 bool Buffer::isExporting() const
3469 {
3470         return d->doing_export;
3471 }
3472
3473
3474 bool Buffer::doExport(string const & format, bool put_in_tempdir,
3475         bool includeall, string & result_file) const
3476 {
3477         MarkAsExporting exporting(this);
3478         string backend_format;
3479         OutputParams runparams(&params().encoding());
3480         runparams.flavor = OutputParams::LATEX;
3481         runparams.linelen = lyxrc.plaintext_linelen;
3482         runparams.includeall = includeall;
3483         vector<string> backs = backends();
3484         Converters converters = theConverters();
3485         if (find(backs.begin(), backs.end(), format) == backs.end()) {
3486                 // Get shortest path to format
3487                 converters.buildGraph();
3488                 Graph::EdgePath path;
3489                 for (vector<string>::const_iterator it = backs.begin();
3490                      it != backs.end(); ++it) {
3491                         Graph::EdgePath p = converters.getPath(*it, format);
3492                         if (!p.empty() && (path.empty() || p.size() < path.size())) {
3493                                 backend_format = *it;
3494                                 path = p;
3495                         }
3496                 }
3497                 if (path.empty()) {
3498                         if (!put_in_tempdir) {
3499                                 // Only show this alert if this is an export to a non-temporary
3500                                 // file (not for previewing).
3501                                 Alert::error(_("Couldn't export file"), bformat(
3502                                         _("No information for exporting the format %1$s."),
3503                                         formats.prettyName(format)));
3504                         }
3505                         return false;
3506                 }
3507                 runparams.flavor = converters.getFlavor(path);
3508
3509         } else {
3510                 backend_format = format;
3511                 // FIXME: Don't hardcode format names here, but use a flag
3512                 if (backend_format == "pdflatex")
3513                         runparams.flavor = OutputParams::PDFLATEX;
3514                 else if (backend_format == "luatex")
3515                         runparams.flavor = OutputParams::LUATEX;
3516                 else if (backend_format == "xetex")
3517                         runparams.flavor = OutputParams::XETEX;
3518         }
3519
3520         string filename = latexName(false);
3521         filename = addName(temppath(), filename);
3522         filename = changeExtension(filename,
3523                                    formats.extension(backend_format));
3524
3525         // fix macros
3526         updateMacroInstances();
3527
3528         // Plain text backend
3529         if (backend_format == "text") {
3530                 runparams.flavor = OutputParams::TEXT;
3531                 writePlaintextFile(*this, FileName(filename), runparams);
3532         }
3533         // HTML backend
3534         else if (backend_format == "xhtml") {
3535                 runparams.flavor = OutputParams::HTML;
3536                 switch (params().html_math_output) {
3537                 case BufferParams::MathML: 
3538                         runparams.math_flavor = OutputParams::MathAsMathML; 
3539                         break;
3540                 case BufferParams::HTML: 
3541                         runparams.math_flavor = OutputParams::MathAsHTML; 
3542                         break;
3543                 case BufferParams::Images:
3544                         runparams.math_flavor = OutputParams::MathAsImages; 
3545                         break;
3546                 case BufferParams::LaTeX:
3547                         runparams.math_flavor = OutputParams::MathAsLaTeX; 
3548                         break;
3549                 }
3550                 makeLyXHTMLFile(FileName(filename), runparams);
3551         } else if (backend_format == "lyx")
3552                 writeFile(FileName(filename));
3553         // Docbook backend
3554         else if (isDocBook()) {
3555                 runparams.nice = !put_in_tempdir;
3556                 makeDocBookFile(FileName(filename), runparams);
3557         }
3558         // LaTeX backend
3559         else if (backend_format == format) {
3560                 runparams.nice = true;
3561                 if (!makeLaTeXFile(FileName(filename), string(), runparams)) {
3562                         if (d->cloned_buffer_) {
3563                                 d->cloned_buffer_->d->errorLists["Export"] =
3564                                         d->errorLists["Export"];
3565                         }
3566                         return false;
3567                 }
3568         } else if (!lyxrc.tex_allows_spaces
3569                    && contains(filePath(), ' ')) {
3570                 Alert::error(_("File name error"),
3571                            _("The directory path to the document cannot contain spaces."));
3572                 return false;
3573         } else {
3574                 runparams.nice = false;
3575                 if (!makeLaTeXFile(FileName(filename), filePath(), runparams)) {
3576                         if (d->cloned_buffer_) {
3577                                 d->cloned_buffer_->d->errorLists["Export"] =
3578                                         d->errorLists["Export"];
3579                         }
3580                         return false;
3581                 }
3582         }
3583
3584         string const error_type = (format == "program")
3585                 ? "Build" : bufferFormat();
3586         ErrorList & error_list = d->errorLists[error_type];
3587         string const ext = formats.extension(format);
3588         FileName const tmp_result_file(changeExtension(filename, ext));
3589         bool const success = converters.convert(this, FileName(filename),
3590                 tmp_result_file, FileName(absFileName()), backend_format, format,
3591                 error_list);
3592
3593         // Emit the signal to show the error list or copy it back to the
3594         // cloned Buffer so that it can be emitted afterwards.
3595         if (format != backend_format) {
3596                 if (d->cloned_buffer_) {
3597                         d->cloned_buffer_->d->errorLists[error_type] = 
3598                                 d->errorLists[error_type];
3599                 } else 
3600                         errors(error_type);
3601                 // also to the children, in case of master-buffer-view
3602                 ListOfBuffers clist = getDescendents();
3603                 ListOfBuffers::const_iterator cit = clist.begin();
3604                 ListOfBuffers::const_iterator const cen = clist.end();
3605                 for (; cit != cen; ++cit) {
3606                         if (d->cloned_buffer_) {
3607                                 // Enable reverse search by copying back the
3608                                 // texrow object to the cloned buffer.
3609                                 // FIXME: this is not thread safe.
3610                                 (*cit)->d->cloned_buffer_->d->texrow = (*cit)->d->texrow;
3611                                 (*cit)->d->cloned_buffer_->d->errorLists[error_type] = 
3612                                         (*cit)->d->errorLists[error_type];
3613                         } else
3614                                 (*cit)->errors(error_type, true);
3615                 }
3616         }
3617
3618         if (d->cloned_buffer_) {
3619                 // Enable reverse dvi or pdf to work by copying back the texrow
3620                 // object to the cloned buffer.
3621                 // FIXME: There is a possibility of concurrent access to texrow
3622                 // here from the main GUI thread that should be securized.
3623                 d->cloned_buffer_->d->texrow = d->texrow;
3624                 string const error_type = bufferFormat();
3625                 d->cloned_buffer_->d->errorLists[error_type] = d->errorLists[error_type];
3626         }
3627
3628         if (!success)
3629                 return false;
3630
3631         if (put_in_tempdir) {
3632                 result_file = tmp_result_file.absFileName();
3633                 return true;
3634         }
3635
3636         result_file = changeExtension(d->exportFileName().absFileName(), ext);
3637         // We need to copy referenced files (e. g. included graphics
3638         // if format == "dvi") to the result dir.
3639         vector<ExportedFile> const files =
3640                 runparams.exportdata->externalFiles(format);
3641         string const dest = onlyPath(result_file);
3642         bool use_force = use_gui ? lyxrc.export_overwrite == ALL_FILES
3643                                  : force_overwrite == ALL_FILES;
3644         CopyStatus status = use_force ? FORCE : SUCCESS;
3645         
3646         vector<ExportedFile>::const_iterator it = files.begin();
3647         vector<ExportedFile>::const_iterator const en = files.end();
3648         for (; it != en && status != CANCEL; ++it) {
3649                 string const fmt = formats.getFormatFromFile(it->sourceName);
3650                 status = copyFile(fmt, it->sourceName,
3651                         makeAbsPath(it->exportName, dest),
3652                         it->exportName, status == FORCE);
3653         }
3654
3655         if (status == CANCEL) {
3656                 message(_("Document export cancelled."));
3657         } else if (tmp_result_file.exists()) {
3658                 // Finally copy the main file
3659                 use_force = use_gui ? lyxrc.export_overwrite != NO_FILES
3660                                     : force_overwrite != NO_FILES;
3661                 if (status == SUCCESS && use_force)
3662                         status = FORCE;
3663                 status = copyFile(format, tmp_result_file,
3664                         FileName(result_file), result_file,
3665                         status == FORCE);
3666                 message(bformat(_("Document exported as %1$s "
3667                         "to file `%2$s'"),
3668                         formats.prettyName(format),
3669                         makeDisplayPath(result_file)));
3670         } else {
3671                 // This must be a dummy converter like fax (bug 1888)
3672                 message(bformat(_("Document exported as %1$s"),
3673                         formats.prettyName(format)));
3674         }
3675
3676         return true;
3677 }
3678
3679
3680 bool Buffer::doExport(string const & format, bool put_in_tempdir,
3681                       bool includeall) const
3682 {
3683         string result_file;
3684         // (1) export with all included children (omit \includeonly)
3685         if (includeall && !doExport(format, put_in_tempdir, true, result_file))
3686                 return false;
3687         // (2) export with included children only
3688         return doExport(format, put_in_tempdir, false, result_file);
3689 }
3690
3691
3692 bool Buffer::preview(string const & format, bool includeall) const
3693 {
3694         MarkAsExporting exporting(this);
3695         string result_file;
3696         // (1) export with all included children (omit \includeonly)
3697         if (includeall && !doExport(format, true, true))
3698                 return false;
3699         // (2) export with included children only
3700         if (!doExport(format, true, false, result_file))
3701                 return false;
3702         return formats.view(*this, FileName(result_file), format);
3703 }
3704
3705
3706 bool Buffer::isExportable(string const & format) const
3707 {
3708         vector<string> backs = backends();
3709         for (vector<string>::const_iterator it = backs.begin();
3710              it != backs.end(); ++it)
3711                 if (theConverters().isReachable(*it, format))
3712                         return true;
3713         return false;
3714 }
3715
3716
3717 vector<Format const *> Buffer::exportableFormats(bool only_viewable) const
3718 {
3719         vector<string> const backs = backends();
3720         set<string> excludes;
3721         if (params().useNonTeXFonts) {
3722                 excludes.insert("latex");
3723                 excludes.insert("pdflatex");
3724         }
3725         vector<Format const *> result =
3726                 theConverters().getReachable(backs[0], only_viewable, true, excludes);
3727         for (vector<string>::const_iterator it = backs.begin() + 1;
3728              it != backs.end(); ++it) {
3729                 vector<Format const *>  r =
3730                         theConverters().getReachable(*it, only_viewable, false, excludes);
3731                 result.insert(result.end(), r.begin(), r.end());
3732         }
3733         return result;
3734 }
3735
3736
3737 vector<string> Buffer::backends() const
3738 {
3739         vector<string> v;
3740         v.push_back(bufferFormat());
3741         // FIXME: Don't hardcode format names here, but use a flag
3742         if (v.back() == "latex") {
3743                 v.push_back("pdflatex");
3744                 v.push_back("luatex");
3745                 v.push_back("xetex");
3746         } else if (v.back() == "xetex")
3747                 v.push_back("luatex");
3748         v.push_back("xhtml");
3749         v.push_back("text");
3750         v.push_back("lyx");
3751         return v;
3752 }
3753
3754
3755 Buffer::ReadStatus Buffer::extractFromVC()
3756 {
3757         bool const found = LyXVC::file_not_found_hook(d->filename);
3758         if (!found)
3759                 return ReadFileNotFound;
3760         if (!d->filename.isReadableFile())
3761                 return ReadVCError;
3762         return ReadSuccess;
3763 }
3764
3765
3766 Buffer::ReadStatus Buffer::loadEmergency()
3767 {
3768         FileName const emergencyFile = getEmergencyFileName();
3769         if (!emergencyFile.exists() 
3770                   || emergencyFile.lastModified() <= d->filename.lastModified())
3771                 return ReadFileNotFound;
3772
3773         docstring const file = makeDisplayPath(d->filename.absFileName(), 20);
3774         docstring const text = bformat(_("An emergency save of the document "
3775                 "%1$s exists.\n\nRecover emergency save?"), file);
3776         
3777         int const load_emerg = Alert::prompt(_("Load emergency save?"), text,
3778                 0, 2, _("&Recover"), _("&Load Original"), _("&Cancel"));
3779
3780         switch (load_emerg)
3781         {
3782         case 0: {
3783                 docstring str;
3784                 ReadStatus const ret_llf = loadThisLyXFile(emergencyFile);
3785                 bool const success = (ret_llf == ReadSuccess);
3786                 if (success) {
3787                         if (isReadonly()) {
3788                                 Alert::warning(_("File is read-only"),
3789                                         bformat(_("An emergency file is successfully loaded, "
3790                                         "but the original file %1$s is marked read-only. "
3791                                         "Please make sure to save the document as a different "
3792                                         "file."), from_utf8(d->filename.absFileName())));
3793                         }
3794                         markDirty();
3795                         str = _("Document was successfully recovered.");
3796                 } else
3797                         str = _("Document was NOT successfully recovered.");
3798                 str += "\n\n" + bformat(_("Remove emergency file now?\n(%1$s)"),
3799                         makeDisplayPath(emergencyFile.absFileName()));
3800
3801                 int const del_emerg = 
3802                         Alert::prompt(_("Delete emergency file?"), str, 1, 1,
3803                                 _("&Remove"), _("&Keep"));
3804                 if (del_emerg == 0) {
3805                         emergencyFile.removeFile();
3806                         if (success)
3807                                 Alert::warning(_("Emergency file deleted"),
3808                                         _("Do not forget to save your file now!"), true);
3809                         }
3810                 return success ? ReadSuccess : ReadEmergencyFailure;
3811         }
3812         case 1: {
3813                 int const del_emerg =
3814                         Alert::prompt(_("Delete emergency file?"),
3815                                 _("Remove emergency file now?"), 1, 1,
3816                                 _("&Remove"), _("&Keep"));
3817                 if (del_emerg == 0)
3818                         emergencyFile.removeFile();
3819                 return ReadOriginal;
3820         }
3821
3822         default:
3823                 break;
3824         }
3825         return ReadCancel;
3826 }
3827
3828
3829 Buffer::ReadStatus Buffer::loadAutosave()
3830 {
3831         // Now check if autosave file is newer.
3832         FileName const autosaveFile = getAutosaveFileName();
3833         if (!autosaveFile.exists() 
3834                   || autosaveFile.lastModified() <= d->filename.lastModified()) 
3835                 return ReadFileNotFound;
3836
3837         docstring const file = makeDisplayPath(d->filename.absFileName(), 20);
3838         docstring const text = bformat(_("The backup of the document %1$s " 
3839                 "is newer.\n\nLoad the backup instead?"), file);
3840         int const ret = Alert::prompt(_("Load backup?"), text, 0, 2,
3841                 _("&Load backup"), _("Load &original"), _("&Cancel"));
3842         
3843         switch (ret)
3844         {
3845         case 0: {
3846                 ReadStatus const ret_llf = loadThisLyXFile(autosaveFile);
3847                 // the file is not saved if we load the autosave file.
3848                 if (ret_llf == ReadSuccess) {
3849                         if (isReadonly()) {
3850                                 Alert::warning(_("File is read-only"),
3851                                         bformat(_("A backup file is successfully loaded, "
3852                                         "but the original file %1$s is marked read-only. "
3853                                         "Please make sure to save the document as a "
3854                                         "different file."), 
3855                                         from_utf8(d->filename.absFileName())));
3856                         }
3857                         markDirty();
3858                         return ReadSuccess;
3859                 }
3860                 return ReadAutosaveFailure;
3861         }
3862         case 1:
3863                 // Here we delete the autosave
3864                 autosaveFile.removeFile();
3865                 return ReadOriginal;
3866         default:
3867                 break;
3868         }
3869         return ReadCancel;
3870 }
3871
3872
3873 Buffer::ReadStatus Buffer::loadLyXFile()
3874 {
3875         if (!d->filename.isReadableFile()) {
3876                 ReadStatus const ret_rvc = extractFromVC();
3877                 if (ret_rvc != ReadSuccess)
3878                         return ret_rvc;
3879         }
3880
3881         ReadStatus const ret_re = loadEmergency();
3882         if (ret_re == ReadSuccess || ret_re == ReadCancel)
3883                 return ret_re;
3884         
3885         ReadStatus const ret_ra = loadAutosave();
3886         if (ret_ra == ReadSuccess || ret_ra == ReadCancel)
3887                 return ret_ra;
3888
3889         return loadThisLyXFile(d->filename);
3890 }
3891
3892
3893 Buffer::ReadStatus Buffer::loadThisLyXFile(FileName const & fn)
3894 {
3895         return readFile(fn);
3896 }
3897
3898
3899 void Buffer::bufferErrors(TeXErrors const & terr, ErrorList & errorList) const
3900 {
3901         TeXErrors::Errors::const_iterator it = terr.begin();
3902         TeXErrors::Errors::const_iterator end = terr.end();
3903         ListOfBuffers clist = getDescendents();
3904         ListOfBuffers::const_iterator cen = clist.end();
3905
3906         for (; it != end; ++it) {
3907                 int id_start = -1;
3908                 int pos_start = -1;
3909                 int errorRow = it->error_in_line;
3910                 Buffer const * buf = 0;
3911                 Impl const * p = d;
3912                 if (it->child_name.empty())
3913                     p->texrow.getIdFromRow(errorRow, id_start, pos_start);
3914                 else {
3915                         // The error occurred in a child
3916                         ListOfBuffers::const_iterator cit = clist.begin();
3917                         for (; cit != cen; ++cit) {
3918                                 string const child_name =
3919                                         DocFileName(changeExtension(
3920                                                 (*cit)->absFileName(), "tex")).
3921                                                         mangledFileName();
3922                                 if (it->child_name != child_name)
3923                                         continue;
3924                                 (*cit)->d->texrow.getIdFromRow(errorRow,
3925                                                         id_start, pos_start);
3926                                 if (id_start != -1) {
3927                                         buf = d->cloned_buffer_
3928                                                 ? (*cit)->d->cloned_buffer_->d->owner_
3929                                                 : (*cit)->d->owner_;
3930                                         p = (*cit)->d;
3931                                         break;
3932                                 }
3933                         }
3934                 }
3935                 int id_end = -1;
3936                 int pos_end = -1;
3937                 bool found;
3938                 do {
3939                         ++errorRow;
3940                         found = p->texrow.getIdFromRow(errorRow, id_end, pos_end);
3941                 } while (found && id_start == id_end && pos_start == pos_end);
3942
3943                 if (id_start != id_end) {
3944                         // Next registered position is outside the inset where
3945                         // the error occurred, so signal end-of-paragraph
3946                         pos_end = 0;
3947                 }
3948
3949                 errorList.push_back(ErrorItem(it->error_desc,
3950                         it->error_text, id_start, pos_start, pos_end, buf));
3951         }
3952 }
3953
3954
3955 void Buffer::setBuffersForInsets() const
3956 {
3957         inset().setBuffer(const_cast<Buffer &>(*this)); 
3958 }
3959
3960
3961 void Buffer::updateBuffer(UpdateScope scope, UpdateType utype) const
3962 {
3963         // Use the master text class also for child documents
3964         Buffer const * const master = masterBuffer();
3965         DocumentClass const & textclass = master->params().documentClass();
3966         
3967         // do this only if we are the top-level Buffer
3968         if (master == this)
3969                 reloadBibInfoCache();
3970
3971         // keep the buffers to be children in this set. If the call from the
3972         // master comes back we can see which of them were actually seen (i.e.
3973         // via an InsetInclude). The remaining ones in the set need still be updated.
3974         static std::set<Buffer const *> bufToUpdate;
3975         if (scope == UpdateMaster) {
3976                 // If this is a child document start with the master
3977                 if (master != this) {
3978                         bufToUpdate.insert(this);
3979                         master->updateBuffer(UpdateMaster, utype);
3980                         // Do this here in case the master has no gui associated with it. Then, 
3981                         // the TocModel is not updated and TocModel::toc_ is invalid (bug 5699).
3982                         if (!master->d->gui_)
3983                                 structureChanged();
3984
3985                         // was buf referenced from the master (i.e. not in bufToUpdate anymore)?
3986                         if (bufToUpdate.find(this) == bufToUpdate.end())
3987                                 return;
3988                 }
3989
3990                 // start over the counters in the master
3991                 textclass.counters().reset();
3992         }
3993
3994         // update will be done below for this buffer
3995         bufToUpdate.erase(this);
3996
3997         // update all caches
3998         clearReferenceCache();
3999         updateMacros();
4000
4001         Buffer & cbuf = const_cast<Buffer &>(*this);
4002
4003         LASSERT(!text().paragraphs().empty(), /**/);
4004
4005         // do the real work
4006         ParIterator parit = cbuf.par_iterator_begin();
4007         updateBuffer(parit, utype);
4008
4009         if (master != this)
4010                 // TocBackend update will be done later.
4011                 return;
4012
4013         d->bibinfo_cache_valid_ = true;
4014         cbuf.tocBackend().update();
4015         if (scope == UpdateMaster)
4016                 cbuf.structureChanged();
4017 }
4018
4019
4020 static depth_type getDepth(DocIterator const & it)
4021 {
4022         depth_type depth = 0;
4023         for (size_t i = 0 ; i < it.depth() ; ++i)
4024                 if (!it[i].inset().inMathed())
4025                         depth += it[i].paragraph().getDepth() + 1;
4026         // remove 1 since the outer inset does not count
4027         return depth - 1;
4028 }
4029
4030 static depth_type getItemDepth(ParIterator const & it)
4031 {
4032         Paragraph const & par = *it;
4033         LabelType const labeltype = par.layout().labeltype;
4034
4035         if (labeltype != LABEL_ENUMERATE && labeltype != LABEL_ITEMIZE)
4036                 return 0;
4037
4038         // this will hold the lowest depth encountered up to now.
4039         depth_type min_depth = getDepth(it);
4040         ParIterator prev_it = it;
4041         while (true) {
4042                 if (prev_it.pit())
4043                         --prev_it.top().pit();
4044                 else {
4045                         // start of nested inset: go to outer par
4046                         prev_it.pop_back();
4047                         if (prev_it.empty()) {
4048                                 // start of document: nothing to do
4049                                 return 0;
4050                         }
4051                 }
4052
4053                 // We search for the first paragraph with same label
4054                 // that is not more deeply nested.
4055                 Paragraph & prev_par = *prev_it;
4056                 depth_type const prev_depth = getDepth(prev_it);
4057                 if (labeltype == prev_par.layout().labeltype) {
4058                         if (prev_depth < min_depth)
4059                                 return prev_par.itemdepth + 1;
4060                         if (prev_depth == min_depth)
4061                                 return prev_par.itemdepth;
4062                 }
4063                 min_depth = min(min_depth, prev_depth);
4064                 // small optimization: if we are at depth 0, we won't
4065                 // find anything else
4066                 if (prev_depth == 0)
4067                         return 0;
4068         }
4069 }
4070
4071
4072 static bool needEnumCounterReset(ParIterator const & it)
4073 {
4074         Paragraph const & par = *it;
4075         LASSERT(par.layout().labeltype == LABEL_ENUMERATE, /**/);
4076         depth_type const cur_depth = par.getDepth();
4077         ParIterator prev_it = it;
4078         while (prev_it.pit()) {
4079                 --prev_it.top().pit();
4080                 Paragraph const & prev_par = *prev_it;
4081                 if (prev_par.getDepth() <= cur_depth)
4082                         return  prev_par.layout().labeltype != LABEL_ENUMERATE;
4083         }
4084         // start of nested inset: reset
4085         return true;
4086 }
4087
4088
4089 // set the label of a paragraph. This includes the counters.
4090 void Buffer::Impl::setLabel(ParIterator & it, UpdateType utype) const
4091 {
4092         BufferParams const & bp = owner_->masterBuffer()->params();
4093         DocumentClass const & textclass = bp.documentClass();
4094         Paragraph & par = it.paragraph();
4095         Layout const & layout = par.layout();
4096         Counters & counters = textclass.counters();
4097
4098         if (par.params().startOfAppendix()) {
4099                 // FIXME: only the counter corresponding to toplevel
4100                 // sectioning should be reset
4101                 counters.reset();
4102                 counters.appendix(true);
4103         }
4104         par.params().appendix(counters.appendix());
4105
4106         // Compute the item depth of the paragraph
4107         par.itemdepth = getItemDepth(it);
4108
4109         if (layout.margintype == MARGIN_MANUAL
4110             || layout.latextype == LATEX_BIB_ENVIRONMENT) {
4111                 if (par.params().labelWidthString().empty())
4112                         par.params().labelWidthString(par.expandLabel(layout, bp));
4113         } else {
4114                 par.params().labelWidthString(docstring());
4115         }
4116
4117         switch(layout.labeltype) {
4118         case LABEL_COUNTER:
4119                 if (layout.toclevel <= bp.secnumdepth
4120                       && (layout.latextype != LATEX_ENVIRONMENT
4121                           || it.text()->isFirstInSequence(it.pit()))) {
4122                         if (counters.hasCounter(layout.counter))
4123                                 counters.step(layout.counter, utype);
4124                         par.params().labelString(par.expandLabel(layout, bp));
4125                 } else
4126                         par.params().labelString(docstring());
4127                 break;
4128
4129         case LABEL_ITEMIZE: {
4130                 // At some point of time we should do something more
4131                 // clever here, like:
4132                 //   par.params().labelString(
4133                 //    bp.user_defined_bullet(par.itemdepth).getText());
4134                 // for now, use a simple hardcoded label
4135                 docstring itemlabel;
4136                 switch (par.itemdepth) {
4137                 case 0:
4138                         itemlabel = char_type(0x2022);
4139                         break;
4140                 case 1:
4141                         itemlabel = char_type(0x2013);
4142                         break;
4143                 case 2:
4144                         itemlabel = char_type(0x2217);
4145                         break;
4146                 case 3:
4147                         itemlabel = char_type(0x2219); // or 0x00b7
4148                         break;
4149                 }
4150                 par.params().labelString(itemlabel);
4151                 break;
4152         }
4153
4154         case LABEL_ENUMERATE: {
4155                 docstring enumcounter = layout.counter.empty() ? from_ascii("enum") : layout.counter;
4156
4157                 switch (par.itemdepth) {
4158                 case 2:
4159                         enumcounter += 'i';
4160                 case 1:
4161                         enumcounter += 'i';
4162                 case 0:
4163                         enumcounter += 'i';
4164                         break;
4165                 case 3:
4166                         enumcounter += "iv";
4167                         break;
4168                 default:
4169                         // not a valid enumdepth...
4170                         break;
4171                 }
4172
4173                 // Maybe we have to reset the enumeration counter.
4174                 if (needEnumCounterReset(it))
4175                         counters.reset(enumcounter);
4176                 counters.step(enumcounter, utype);
4177
4178                 string const & lang = par.getParLanguage(bp)->code();
4179                 par.params().labelString(counters.theCounter(enumcounter, lang));
4180
4181                 break;
4182         }
4183
4184         case LABEL_SENSITIVE: {
4185                 string const & type = counters.current_float();
4186                 docstring full_label;
4187                 if (type.empty())
4188                         full_label = owner_->B_("Senseless!!! ");
4189                 else {
4190                         docstring name = owner_->B_(textclass.floats().getType(type).name());
4191                         if (counters.hasCounter(from_utf8(type))) {
4192                                 string const & lang = par.getParLanguage(bp)->code();
4193                                 counters.step(from_utf8(type), utype);
4194                                 full_label = bformat(from_ascii("%1$s %2$s:"), 
4195                                                      name, 
4196                                                      counters.theCounter(from_utf8(type), lang));
4197                         } else
4198                                 full_label = bformat(from_ascii("%1$s #:"), name);      
4199                 }
4200                 par.params().labelString(full_label);   
4201                 break;
4202         }
4203
4204         case LABEL_NO_LABEL:
4205                 par.params().labelString(docstring());
4206                 break;
4207
4208         case LABEL_MANUAL:
4209         case LABEL_TOP_ENVIRONMENT:
4210         case LABEL_CENTERED_TOP_ENVIRONMENT:
4211         case LABEL_STATIC:      
4212         case LABEL_BIBLIO:
4213                 par.params().labelString(par.expandLabel(layout, bp));
4214                 break;
4215         }
4216 }
4217
4218
4219 void Buffer::updateBuffer(ParIterator & parit, UpdateType utype) const
4220 {
4221         LASSERT(parit.pit() == 0, /**/);
4222
4223         // Set the position of the text in the buffer to be able
4224         // to resolve macros in it.
4225         parit.text()->setMacrocontextPosition(parit);
4226
4227         depth_type maxdepth = 0;
4228         pit_type const lastpit = parit.lastpit();
4229         for ( ; parit.pit() <= lastpit ; ++parit.pit()) {
4230                 // reduce depth if necessary
4231                 parit->params().depth(min(parit->params().depth(), maxdepth));
4232                 maxdepth = parit->getMaxDepthAfter();
4233
4234                 if (utype == OutputUpdate) {
4235                         // track the active counters
4236                         // we have to do this for the master buffer, since the local
4237                         // buffer isn't tracking anything.
4238                         masterBuffer()->params().documentClass().counters().
4239                                         setActiveLayout(parit->layout());
4240                 }
4241                 
4242                 // set the counter for this paragraph
4243                 d->setLabel(parit, utype);
4244
4245                 // now the insets
4246                 InsetList::const_iterator iit = parit->insetList().begin();
4247                 InsetList::const_iterator end = parit->insetList().end();
4248                 for (; iit != end; ++iit) {
4249                         parit.pos() = iit->pos;
4250                         iit->inset->updateBuffer(parit, utype);
4251                 }
4252         }
4253 }
4254
4255
4256 int Buffer::spellCheck(DocIterator & from, DocIterator & to,
4257         WordLangTuple & word_lang, docstring_list & suggestions) const
4258 {
4259         int progress = 0;
4260         WordLangTuple wl;
4261         suggestions.clear();
4262         word_lang = WordLangTuple();
4263         // OK, we start from here.
4264         DocIterator const end = doc_iterator_end(this);
4265         for (; from != end; from.forwardPos()) {
4266                 // We are only interested in text so remove the math CursorSlice.
4267                 while (from.inMathed()) {
4268                         from.pop_back();
4269                         from.pos()++;
4270                 }
4271                 // If from is at the end of the document (which is possible
4272                 // when leaving the mathed) LyX will crash later.
4273                 if (from == end)
4274                         break;
4275                 to = from;
4276                 from.paragraph().spellCheck();
4277                 SpellChecker::Result res = from.paragraph().spellCheck(from.pos(), to.pos(), wl, suggestions);
4278                 if (SpellChecker::misspelled(res)) {
4279                         word_lang = wl;
4280                         break;
4281                 }
4282
4283                 // Do not increase progress when from == to, otherwise the word
4284                 // count will be wrong.
4285                 if (from != to) {
4286                         from = to;
4287                         ++progress;
4288                 }
4289         }
4290         return progress;
4291 }
4292
4293
4294 Buffer::ReadStatus Buffer::reload()
4295 {
4296         setBusy(true);
4297         // c.f. bug http://www.lyx.org/trac/ticket/6587
4298         removeAutosaveFile();
4299         // e.g., read-only status could have changed due to version control
4300         d->filename.refresh();
4301         docstring const disp_fn = makeDisplayPath(d->filename.absFileName());
4302
4303         ReadStatus const status = loadLyXFile();
4304         if (status == ReadSuccess) {
4305                 updateBuffer();
4306                 changed(true);
4307                 updateTitles();
4308                 markClean();
4309                 message(bformat(_("Document %1$s reloaded."), disp_fn));
4310                 d->undo_.clear();
4311         } else {
4312                 message(bformat(_("Could not reload document %1$s."), disp_fn));
4313         }       
4314         setBusy(false);
4315         removePreviews();
4316         updatePreviews();
4317         errors("Parse");
4318         return status;
4319 }
4320
4321
4322 bool Buffer::saveAs(FileName const & fn)
4323 {
4324         FileName const old_name = fileName();
4325         FileName const old_auto = getAutosaveFileName();
4326         bool const old_unnamed = isUnnamed();
4327
4328         setFileName(fn);
4329         markDirty();
4330         setUnnamed(false);
4331
4332         if (save()) {
4333                 // bring the autosave file with us, just in case.
4334                 moveAutosaveFile(old_auto);
4335                 // validate version control data and
4336                 // correct buffer title
4337                 lyxvc().file_found_hook(fileName());
4338                 updateTitles();
4339                 // the file has now been saved to the new location.
4340                 // we need to check that the locations of child buffers
4341                 // are still valid.
4342                 checkChildBuffers();
4343                 return true;
4344         } else {
4345                 // save failed
4346                 // reset the old filename and unnamed state
4347                 setFileName(old_name);
4348                 setUnnamed(old_unnamed);
4349                 return false;
4350         }
4351 }
4352
4353
4354 // FIXME We could do better here, but it is complicated. What would be
4355 // nice is to offer either (a) to save the child buffer to an appropriate
4356 // location, so that it would "move with the master", or else (b) to update
4357 // the InsetInclude so that it pointed to the same file. But (a) is a bit
4358 // complicated, because the code for this lives in GuiView.
4359 void Buffer::checkChildBuffers()
4360 {
4361         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
4362         Impl::BufferPositionMap::iterator const en = d->children_positions.end();
4363         for (; it != en; ++it) {
4364                 DocIterator dit = it->second;
4365                 Buffer * cbuf = const_cast<Buffer *>(it->first);
4366                 if (!cbuf || !theBufferList().isLoaded(cbuf))
4367                         continue;
4368                 Inset * inset = dit.nextInset();
4369                 LASSERT(inset && inset->lyxCode() == INCLUDE_CODE, continue);
4370                 InsetInclude * inset_inc = static_cast<InsetInclude *>(inset);
4371                 docstring const & incfile = inset_inc->getParam("filename");
4372                 string oldloc = cbuf->absFileName();
4373                 string newloc = makeAbsPath(to_utf8(incfile),
4374                                 onlyPath(absFileName())).absFileName();
4375                 if (oldloc == newloc)
4376                         continue;
4377                 // the location of the child file is incorrect.
4378                 Alert::warning(_("Included File Invalid"),
4379                                 bformat(_("Saving this document to a new location has made the file:\n"
4380                                 "  %1$s\n"
4381                                 "inaccessible. You will need to update the included filename."),
4382                                 from_utf8(oldloc)));
4383                 cbuf->setParent(0);
4384                 inset_inc->setChildBuffer(0);
4385         }
4386         // invalidate cache of children
4387         d->children_positions.clear();
4388         d->position_to_children.clear();
4389 }
4390
4391 } // namespace lyx