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