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