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