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