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