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