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