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