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