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