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