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