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