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