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