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