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