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