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