]> git.lyx.org Git - lyx.git/blob - src/buffer.C
5 new lfuns, move all apply code out of ControlDocument and into the core.
[lyx.git] / src / buffer.C
1 /**
2  * \file buffer.C
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  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "buffer.h"
14
15 #include "author.h"
16 #include "buffer_funcs.h"
17 #include "bufferlist.h"
18 #include "bufferparams.h"
19 #include "counters.h"
20 #include "Bullet.h"
21 #include "Chktex.h"
22 #include "debug.h"
23 #include "errorlist.h"
24 #include "exporter.h"
25 #include "format.h"
26 #include "funcrequest.h"
27 #include "gettext.h"
28 #include "insetiterator.h"
29 #include "language.h"
30 #include "LaTeX.h"
31 #include "LaTeXFeatures.h"
32 #include "LyXAction.h"
33 #include "lyxlex.h"
34 #include "lyxtext.h"
35 #include "lyxrc.h"
36 #include "lyxvc.h"
37 #include "lyx_main.h"
38 #include "messages.h"
39 #include "output.h"
40 #include "output_docbook.h"
41 #include "output_latex.h"
42 #include "output_linuxdoc.h"
43 #include "paragraph.h"
44 #include "paragraph_funcs.h"
45 #include "ParagraphParameters.h"
46 #include "pariterator.h"
47 #include "sgml.h"
48 #include "texrow.h"
49 #include "undo.h"
50 #include "version.h"
51
52 #include "insets/insetbibitem.h"
53 #include "insets/insetbibtex.h"
54 #include "insets/insetinclude.h"
55 #include "insets/insettext.h"
56
57 #include "frontends/Alert.h"
58
59 #include "graphics/Previews.h"
60
61 #include "support/FileInfo.h"
62 #include "support/filetools.h"
63 #include "support/gzstream.h"
64 #include "support/lyxlib.h"
65 #include "support/os.h"
66 #include "support/path.h"
67 #include "support/textutils.h"
68 #include "support/tostr.h"
69 #include "support/std_sstream.h"
70
71 #include <boost/bind.hpp>
72
73 #include <iomanip>
74 #include <stack>
75
76 #include <utime.h>
77
78 using lyx::pos_type;
79 using lyx::par_type;
80
81 using lyx::support::AddName;
82 using lyx::support::atoi;
83 using lyx::support::bformat;
84 using lyx::support::ChangeExtension;
85 using lyx::support::cmd_ret;
86 using lyx::support::createBufferTmpDir;
87 using lyx::support::destroyDir;
88 using lyx::support::FileInfo;
89 using lyx::support::FileInfo;
90 using lyx::support::getExtFromContents;
91 using lyx::support::IsDirWriteable;
92 using lyx::support::IsFileWriteable;
93 using lyx::support::LibFileSearch;
94 using lyx::support::ltrim;
95 using lyx::support::MakeAbsPath;
96 using lyx::support::MakeDisplayPath;
97 using lyx::support::MakeLatexName;
98 using lyx::support::OnlyFilename;
99 using lyx::support::OnlyPath;
100 using lyx::support::Path;
101 using lyx::support::QuoteName;
102 using lyx::support::removeAutosaveFile;
103 using lyx::support::rename;
104 using lyx::support::RunCommand;
105 using lyx::support::split;
106 using lyx::support::strToInt;
107 using lyx::support::subst;
108 using lyx::support::tempName;
109 using lyx::support::trim;
110
111 namespace os = lyx::support::os;
112
113 using std::endl;
114 using std::for_each;
115 using std::make_pair;
116
117 using std::ifstream;
118 using std::ios;
119 using std::ostream;
120 using std::ostringstream;
121 using std::ofstream;
122 using std::pair;
123 using std::stack;
124 using std::vector;
125 using std::string;
126
127
128 // all these externs should eventually be removed.
129 extern BufferList bufferlist;
130
131 namespace {
132
133 const int LYX_FORMAT = 232;
134
135 } // namespace anon
136
137
138 typedef std::map<string, bool> DepClean;
139
140 struct Buffer::Impl
141 {
142         Impl(Buffer & parent, string const & file, bool readonly);
143
144         limited_stack<Undo> undostack;
145         limited_stack<Undo> redostack;
146         BufferParams params;
147         LyXVC lyxvc;
148         string temppath;
149         TexRow texrow;
150
151         /// need to regenerate .tex?
152         DepClean dep_clean;
153
154         /// is save needed?
155         mutable bool lyx_clean;
156
157         /// is autosave needed?
158         mutable bool bak_clean;
159
160         /// is this a unnamed file (New...)?
161         bool unnamed;
162
163         /// buffer is r/o
164         bool read_only;
165
166         /// name of the file the buffer is associated with.
167         string filename;
168
169         /// The path to the document file.
170         string filepath;
171
172         boost::scoped_ptr<Messages> messages;
173
174         /** Set to true only when the file is fully loaded.
175          *  Used to prevent the premature generation of previews
176          *  and by the citation inset.
177          */
178         bool file_fully_loaded;
179
180         /// our LyXText that should be wrapped in an InsetText
181         InsetText inset;
182 };
183
184
185 Buffer::Impl::Impl(Buffer & parent, string const & file, bool readonly_)
186         : lyx_clean(true), bak_clean(true), unnamed(false), read_only(readonly_),
187           filename(file), filepath(OnlyPath(file)), file_fully_loaded(false),
188                 inset(params)
189 {
190         lyxvc.buffer(&parent);
191         temppath = createBufferTmpDir();
192         // FIXME: And now do something if temppath == string(), because we
193         // assume from now on that temppath points to a valid temp dir.
194         // See http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg67406.html
195 }
196
197
198 Buffer::Buffer(string const & file, bool ronly)
199         : pimpl_(new Impl(*this, file, ronly))
200 {
201         lyxerr[Debug::INFO] << "Buffer::Buffer()" << endl;
202 }
203
204
205 Buffer::~Buffer()
206 {
207         lyxerr[Debug::INFO] << "Buffer::~Buffer()" << endl;
208         // here the buffer should take care that it is
209         // saved properly, before it goes into the void.
210
211         closing();
212
213         if (!temppath().empty() && destroyDir(temppath()) != 0) {
214                 Alert::warning(_("Could not remove temporary directory"),
215                         bformat(_("Could not remove the temporary directory %1$s"), temppath()));
216         }
217
218         // Remove any previewed LaTeX snippets associated with this buffer.
219         lyx::graphics::Previews::get().removeLoader(*this);
220 }
221
222
223 LyXText & Buffer::text() const
224 {
225         return const_cast<LyXText &>(pimpl_->inset.text_);
226 }
227
228
229 InsetBase & Buffer::inset() const
230 {
231         return const_cast<InsetText &>(pimpl_->inset);
232 }
233
234
235 limited_stack<Undo> & Buffer::undostack()
236 {
237         return pimpl_->undostack;
238 }
239
240
241 limited_stack<Undo> const & Buffer::undostack() const
242 {
243         return pimpl_->undostack;
244 }
245
246
247 limited_stack<Undo> & Buffer::redostack()
248 {
249         return pimpl_->redostack;
250 }
251
252
253 limited_stack<Undo> const & Buffer::redostack() const
254 {
255         return pimpl_->redostack;
256 }
257
258
259 BufferParams & Buffer::params()
260 {
261         return pimpl_->params;
262 }
263
264
265 BufferParams const & Buffer::params() const
266 {
267         return pimpl_->params;
268 }
269
270
271 ParagraphList & Buffer::paragraphs()
272 {
273         return text().paragraphs();
274 }
275
276
277 ParagraphList const & Buffer::paragraphs() const
278 {
279         return text().paragraphs();
280 }
281
282
283 LyXVC & Buffer::lyxvc()
284 {
285         return pimpl_->lyxvc;
286 }
287
288
289 LyXVC const & Buffer::lyxvc() const
290 {
291         return pimpl_->lyxvc;
292 }
293
294
295 string const & Buffer::temppath() const
296 {
297         return pimpl_->temppath;
298 }
299
300
301 TexRow & Buffer::texrow()
302 {
303         return pimpl_->texrow;
304 }
305
306
307 TexRow const & Buffer::texrow() const
308 {
309         return pimpl_->texrow;
310 }
311
312
313 string const Buffer::getLatexName(bool no_path) const
314 {
315         string const name = ChangeExtension(MakeLatexName(fileName()), ".tex");
316         return no_path ? OnlyFilename(name) : name;
317 }
318
319
320 pair<Buffer::LogType, string> const Buffer::getLogName() const
321 {
322         string const filename = getLatexName(false);
323
324         if (filename.empty())
325                 return make_pair(Buffer::latexlog, string());
326
327         string const path = temppath();
328
329         string const fname = AddName(path,
330                                      OnlyFilename(ChangeExtension(filename,
331                                                                   ".log")));
332         string const bname =
333                 AddName(path, OnlyFilename(
334                         ChangeExtension(filename,
335                                         formats.extension("literate") + ".out")));
336
337         // If no Latex log or Build log is newer, show Build log
338
339         FileInfo const f_fi(fname);
340         FileInfo const b_fi(bname);
341
342         if (b_fi.exist() &&
343             (!f_fi.exist() || f_fi.getModificationTime() < b_fi.getModificationTime())) {
344                 lyxerr[Debug::FILES] << "Log name calculated as: " << bname << endl;
345                 return make_pair(Buffer::buildlog, bname);
346         }
347         lyxerr[Debug::FILES] << "Log name calculated as: " << fname << endl;
348         return make_pair(Buffer::latexlog, fname);
349 }
350
351
352 void Buffer::setReadonly(bool flag)
353 {
354         if (pimpl_->read_only != flag) {
355                 pimpl_->read_only = flag;
356                 readonly(flag);
357         }
358 }
359
360
361 void Buffer::setFileName(string const & newfile)
362 {
363         pimpl_->filename = MakeAbsPath(newfile);
364         pimpl_->filepath = OnlyPath(pimpl_->filename);
365         setReadonly(IsFileWriteable(pimpl_->filename) == 0);
366         updateTitles();
367 }
368
369
370 // We'll remove this later. (Lgb)
371 namespace {
372
373 void unknownClass(string const & unknown)
374 {
375         Alert::warning(_("Unknown document class"),
376                 bformat(_("Using the default document class, because the "
377                         "class %1$s is unknown."), unknown));
378 }
379
380 } // anon
381
382
383 int Buffer::readHeader(LyXLex & lex)
384 {
385         int unknown_tokens = 0;
386
387         while (lex.isOK()) {
388                 lex.nextToken();
389                 string const token = lex.getString();
390
391                 if (token.empty())
392                         continue;
393
394                 if (token == "\\end_header")
395                         break;
396
397                 lyxerr[Debug::PARSER] << "Handling header token: `"
398                                       << token << '\'' << endl;
399
400
401                 string unknown = params().readToken(lex, token);
402                 if (!unknown.empty()) {
403                         if (unknown[0] != '\\') {
404                                 unknownClass(unknown);
405                         } else {
406                                 ++unknown_tokens;
407                                 string const s = bformat(_("Unknown token: "
408                                                            "%1$s %2$s\n"),
409                                                          token,
410                                                          lex.getString());
411                                 error(ErrorItem(_("Header error"), s,
412                                                 -1, 0, 0));
413                         }
414                 }
415         }
416         return unknown_tokens;
417 }
418
419
420 // Uwe C. Schroeder
421 // changed to be public and have one parameter
422 // Returns false if "\end_document" is not read (Asger)
423 bool Buffer::readBody(LyXLex & lex)
424 {
425         if (paragraphs().empty()) {
426                 readHeader(lex);
427                 if (!params().getLyXTextClass().load()) {
428                         string theclass = params().getLyXTextClass().name();
429                         Alert::error(_("Can't load document class"), bformat(
430                                         "Using the default document class, because the "
431                                         " class %1$s could not be loaded.", theclass));
432                         params().textclass = 0;
433                 }
434         } else {
435                 // We don't want to adopt the parameters from the
436                 // document we insert, so read them into a temporary buffer
437                 // and then discard it
438
439                 Buffer tmpbuf("", false);
440                 tmpbuf.readHeader(lex);
441         }
442
443         return text().read(*this, lex);
444 }
445
446
447 // needed to insert the selection
448 void Buffer::insertStringAsLines(ParagraphList & pars,
449         par_type & par, pos_type & pos,
450         LyXFont const & fn, string const & str)
451 {
452         LyXLayout_ptr const & layout = pars[par].layout();
453
454         LyXFont font = fn;
455
456         pars[par].checkInsertChar(font);
457         // insert the string, don't insert doublespace
458         bool space_inserted = true;
459         bool autobreakrows = !pars[par].inInset() ||
460                 static_cast<InsetText *>(pars[par].inInset())->getAutoBreakRows();
461         for (string::const_iterator cit = str.begin();
462             cit != str.end(); ++cit) {
463                 if (*cit == '\n') {
464                         if (autobreakrows && (!pars[par].empty() || pars[par].allowEmpty())) {
465                                 breakParagraph(params(), paragraphs(), par, pos,
466                                                layout->isEnvironment());
467                                 ++par;
468                                 pos = 0;
469                                 space_inserted = true;
470                         } else {
471                                 continue;
472                         }
473                         // do not insert consecutive spaces if !free_spacing
474                 } else if ((*cit == ' ' || *cit == '\t') &&
475                            space_inserted && !pars[par].isFreeSpacing()) {
476                         continue;
477                 } else if (*cit == '\t') {
478                         if (!pars[par].isFreeSpacing()) {
479                                 // tabs are like spaces here
480                                 pars[par].insertChar(pos, ' ', font);
481                                 ++pos;
482                                 space_inserted = true;
483                         } else {
484                                 const pos_type n = 8 - pos % 8;
485                                 for (pos_type i = 0; i < n; ++i) {
486                                         pars[par].insertChar(pos, ' ', font);
487                                         ++pos;
488                                 }
489                                 space_inserted = true;
490                         }
491                 } else if (!IsPrintable(*cit)) {
492                         // Ignore unprintables
493                         continue;
494                 } else {
495                         // just insert the character
496                         pars[par].insertChar(pos, *cit, font);
497                         ++pos;
498                         space_inserted = (*cit == ' ');
499                 }
500
501         }
502 }
503
504
505 bool Buffer::readFile(string const & filename)
506 {
507         // Check if the file is compressed.
508         string const format = getExtFromContents(filename);
509         if (format == "gzip" || format == "zip" || format == "compress") {
510                 params().compressed = true;
511         }
512
513         // remove dummy empty par
514         paragraphs().clear();
515         bool ret = readFile(filename, paragraphs().size());
516
517         // After we have read a file, we must ensure that the buffer
518         // language is set and used in the gui.
519         // If you know of a better place to put this, please tell me. (Lgb)
520         updateDocLang(params().language);
521
522         return ret;
523 }
524
525
526 bool Buffer::readFile(string const & filename, par_type pit)
527 {
528         LyXLex lex(0, 0);
529         lex.setFile(filename);
530         return readFile(lex, filename, pit);
531 }
532
533
534 bool Buffer::fully_loaded() const
535 {
536         return pimpl_->file_fully_loaded;
537 }
538
539
540 void Buffer::fully_loaded(bool value)
541 {
542         pimpl_->file_fully_loaded = value;
543 }
544
545
546 bool Buffer::readFile(LyXLex & lex, string const & filename, par_type pit)
547 {
548         BOOST_ASSERT(!filename.empty());
549
550         if (!lex.isOK()) {
551                 Alert::error(_("Document could not be read"),
552                              bformat(_("%1$s could not be read."), filename));
553                 return false;
554         }
555
556         lex.next();
557         string const token(lex.getString());
558
559         if (!lex.isOK()) {
560                 Alert::error(_("Document could not be read"),
561                              bformat(_("%1$s could not be read."), filename));
562                 return false;
563         }
564
565         // the first token _must_ be...
566         if (token != "\\lyxformat") {
567                 lyxerr << "Token: " << token << endl;
568
569                 Alert::error(_("Document format failure"),
570                              bformat(_("%1$s is not a LyX document."),
571                                        filename));
572                 return false;
573         }
574
575         lex.eatLine();
576         string tmp_format = lex.getString();
577         //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
578         // if present remove ".," from string.
579         string::size_type dot = tmp_format.find_first_of(".,");
580         //lyxerr << "           dot found at " << dot << endl;
581         if (dot != string::npos)
582                         tmp_format.erase(dot, 1);
583         int file_format = strToInt(tmp_format);
584         //lyxerr << "format: " << file_format << endl;
585
586         if (file_format > LYX_FORMAT) {
587                 Alert::warning(_("Document format failure"),
588                                bformat(_("%1$s was created with a newer"
589                                          " version of LyX. This is likely to"
590                                          " cause problems."),
591                                          filename));
592         } else if (file_format < LYX_FORMAT) {
593                 string const tmpfile = tempName();
594                 if (tmpfile.empty()) {
595                         Alert::error(_("Conversion failed"),
596                                      bformat(_("%1$s is from an earlier"
597                                               " version of LyX, but a temporary"
598                                               " file for converting it could"
599                                               " not be created."),
600                                               filename));
601                         return false;
602                 }
603                 string command = LibFileSearch("lyx2lyx", "lyx2lyx");
604                 if (command.empty()) {
605                         Alert::error(_("Conversion script not found"),
606                                      bformat(_("%1$s is from an earlier"
607                                                " version of LyX, but the"
608                                                " conversion script lyx2lyx"
609                                                " could not be found."),
610                                                filename));
611                         return false;
612                 }
613                 command += " -t"
614                         + tostr(LYX_FORMAT)
615                         + " -o " + tmpfile + ' '
616                         + QuoteName(filename);
617                 lyxerr[Debug::INFO] << "Running '"
618                                     << command << '\''
619                                     << endl;
620                 cmd_ret const ret = RunCommand(command);
621                 if (ret.first != 0) {
622                         Alert::error(_("Conversion script failed"),
623                                      bformat(_("%1$s is from an earlier version"
624                                               " of LyX, but the lyx2lyx script"
625                                               " failed to convert it."),
626                                               filename));
627                         return false;
628                 } else {
629                         bool ret = readFile(tmpfile, pit);
630                         // Do stuff with tmpfile name and buffer name here.
631                         return ret;
632                 }
633
634         }
635
636         bool the_end = readBody(lex);
637         params().setPaperStuff();
638
639 #warning Look here!
640 #if 0
641         if (token == "\\end_document")
642                 the_end_read = true;
643
644         if (!the_end) {
645                 Alert::error(_("Document format failure"),
646                              bformat(_("%1$s ended unexpectedly, which means"
647                                        " that it is probably corrupted."),
648                                        filename));
649         }
650 #endif 
651         pimpl_->file_fully_loaded = true;
652         return true;
653 }
654
655
656 // Should probably be moved to somewhere else: BufferView? LyXView?
657 bool Buffer::save() const
658 {
659         // We don't need autosaves in the immediate future. (Asger)
660         resetAutosaveTimers();
661
662         // make a backup
663         string s;
664         if (lyxrc.make_backup) {
665                 s = fileName() + '~';
666                 if (!lyxrc.backupdir_path.empty())
667                         s = AddName(lyxrc.backupdir_path,
668                                     subst(os::slashify_path(s),'/','!'));
669
670                 // Rename is the wrong way of making a backup,
671                 // this is the correct way.
672                 /* truss cp fil fil2:
673                    lstat("LyXVC3.lyx", 0xEFFFF898)                 Err#2 ENOENT
674                    stat("LyXVC.lyx", 0xEFFFF688)                   = 0
675                    open("LyXVC.lyx", O_RDONLY)                     = 3
676                    open("LyXVC3.lyx", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 4
677                    fstat(4, 0xEFFFF508)                            = 0
678                    fstat(3, 0xEFFFF508)                            = 0
679                    read(3, " # T h i s   f i l e   w".., 8192)     = 5579
680                    write(4, " # T h i s   f i l e   w".., 5579)    = 5579
681                    read(3, 0xEFFFD4A0, 8192)                       = 0
682                    close(4)                                        = 0
683                    close(3)                                        = 0
684                    chmod("LyXVC3.lyx", 0100644)                    = 0
685                    lseek(0, 0, SEEK_CUR)                           = 46440
686                    _exit(0)
687                 */
688
689                 // Should probably have some more error checking here.
690                 // Doing it this way, also makes the inodes stay the same.
691                 // This is still not a very good solution, in particular we
692                 // might loose the owner of the backup.
693                 FileInfo finfo(fileName());
694                 if (finfo.exist()) {
695                         mode_t fmode = finfo.getMode();
696                         struct utimbuf times = {
697                                 finfo.getAccessTime(),
698                                 finfo.getModificationTime() };
699
700                         ifstream ifs(fileName().c_str());
701                         ofstream ofs(s.c_str(), ios::out|ios::trunc);
702                         if (ifs && ofs) {
703                                 ofs << ifs.rdbuf();
704                                 ifs.close();
705                                 ofs.close();
706                                 ::chmod(s.c_str(), fmode);
707
708                                 if (::utime(s.c_str(), &times)) {
709                                         lyxerr << "utime error." << endl;
710                                 }
711                         } else {
712                                 lyxerr << "LyX was not able to make "
713                                         "backup copy. Beware." << endl;
714                         }
715                 }
716         }
717
718         if (writeFile(fileName())) {
719                 markClean();
720                 removeAutosaveFile(fileName());
721         } else {
722                 // Saving failed, so backup is not backup
723                 if (lyxrc.make_backup)
724                         rename(s, fileName());
725                 return false;
726         }
727         return true;
728 }
729
730
731 bool Buffer::writeFile(string const & fname) const
732 {
733         if (pimpl_->read_only && fname == fileName())
734                 return false;
735
736         FileInfo finfo(fname);
737         if (finfo.exist() && !finfo.writable())
738                 return false;
739
740         bool retval;
741
742         if (params().compressed) {
743                 gz::ogzstream ofs(fname.c_str());
744                 if (!ofs)
745                         return false;
746
747                 retval = do_writeFile(ofs);
748
749         } else {
750                 ofstream ofs(fname.c_str());
751                 if (!ofs)
752                         return false;
753
754                 retval = do_writeFile(ofs);
755         }
756
757         return retval;
758 }
759
760
761 bool Buffer::do_writeFile(ostream & ofs) const
762 {
763 #ifdef HAVE_LOCALE
764         // Use the standard "C" locale for file output.
765         ofs.imbue(std::locale::classic());
766 #endif
767
768         // The top of the file should not be written by params().
769
770         // write out a comment in the top of the file
771         ofs << "#LyX " << lyx_version
772             << " created this file. For more info see http://www.lyx.org/\n"
773             << "\\lyxformat " << LYX_FORMAT << "\n";
774
775         // now write out the buffer parameters.
776         params().writeFile(ofs);
777
778         ofs << "\\end_header\n";
779
780         // write the text
781         text().write(*this, ofs);
782
783         // Write marker that shows file is complete
784         ofs << "\n\\end_document" << endl;
785
786         // Shouldn't really be needed....
787         //ofs.close();
788
789         // how to check if close went ok?
790         // Following is an attempt... (BE 20001011)
791
792         // good() returns false if any error occured, including some
793         //        formatting error.
794         // bad()  returns true if something bad happened in the buffer,
795         //        which should include file system full errors.
796
797         bool status = true;
798         if (!ofs) {
799                 status = false;
800                 lyxerr << "File was not closed properly." << endl;
801         }
802
803         return status;
804 }
805
806
807 void Buffer::makeLaTeXFile(string const & fname,
808                            string const & original_path,
809                            OutputParams const & runparams,
810                            bool output_preamble, bool output_body)
811 {
812         lyxerr[Debug::LATEX] << "makeLaTeXFile..." << endl;
813
814         ofstream ofs;
815         if (!openFileWrite(ofs, fname))
816                 return;
817
818         makeLaTeXFile(ofs, original_path,
819                       runparams, output_preamble, output_body);
820
821         ofs.close();
822         if (ofs.fail())
823                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
824 }
825
826
827 void Buffer::makeLaTeXFile(ostream & os,
828                            string const & original_path,
829                            OutputParams const & runparams_in,
830                            bool output_preamble, bool output_body)
831 {
832         OutputParams runparams = runparams_in;
833
834         // validate the buffer.
835         lyxerr[Debug::LATEX] << "  Validating buffer..." << endl;
836         LaTeXFeatures features(*this, params(), runparams.nice);
837         validate(features);
838         lyxerr[Debug::LATEX] << "  Buffer validation done." << endl;
839
840         texrow().reset();
841         // The starting paragraph of the coming rows is the
842         // first paragraph of the document. (Asger)
843         texrow().start(paragraphs().begin()->id(), 0);
844
845         if (output_preamble && runparams.nice) {
846                 os << "%% LyX " << lyx_version << " created this file.  "
847                         "For more info, see http://www.lyx.org/.\n"
848                         "%% Do not edit unless you really know what "
849                         "you are doing.\n";
850                 texrow().newline();
851                 texrow().newline();
852         }
853         lyxerr[Debug::INFO] << "lyx header finished" << endl;
854         // There are a few differences between nice LaTeX and usual files:
855         // usual is \batchmode and has a
856         // special input@path to allow the including of figures
857         // with either \input or \includegraphics (what figinsets do).
858         // input@path is set when the actual parameter
859         // original_path is set. This is done for usual tex-file, but not
860         // for nice-latex-file. (Matthias 250696)
861         // Note that input@path is only needed for something the user does
862         // in the preamble, included .tex files or ERT, files included by
863         // LyX work without it.
864         if (output_preamble) {
865                 if (!runparams.nice) {
866                         // code for usual, NOT nice-latex-file
867                         os << "\\batchmode\n"; // changed
868                         // from \nonstopmode
869                         texrow().newline();
870                 }
871                 if (!original_path.empty()) {
872                         string inputpath = os::external_path(original_path);
873                         subst(inputpath, "~", "\\string~");
874                         os << "\\makeatletter\n"
875                             << "\\def\\input@path{{"
876                             << inputpath << "/}}\n"
877                             << "\\makeatother\n";
878                         texrow().newline();
879                         texrow().newline();
880                         texrow().newline();
881                 }
882
883                 // Write the preamble
884                 runparams.use_babel = params().writeLaTeX(os, features, texrow());
885
886                 if (!output_body)
887                         return;
888
889                 // make the body.
890                 os << "\\begin{document}\n";
891                 texrow().newline();
892         } // output_preamble
893         lyxerr[Debug::INFO] << "preamble finished, now the body." << endl;
894
895         if (!lyxrc.language_auto_begin) {
896                 os << subst(lyxrc.language_command_begin, "$$lang",
897                              params().language->babel())
898                     << endl;
899                 texrow().newline();
900         }
901
902         // if we are doing a real file with body, even if this is the
903         // child of some other buffer, let's cut the link here.
904         // This happens for example if only a child document is printed.
905         string save_parentname;
906         if (output_preamble) {
907                 save_parentname = params().parentname;
908                 params().parentname.erase();
909         }
910
911         // the real stuff
912         latexParagraphs(*this, paragraphs(), os, texrow(), runparams);
913
914         // Restore the parenthood if needed
915         if (output_preamble)
916                 params().parentname = save_parentname;
917
918         // add this just in case after all the paragraphs
919         os << endl;
920         texrow().newline();
921
922         if (!lyxrc.language_auto_end) {
923                 os << subst(lyxrc.language_command_end, "$$lang",
924                              params().language->babel())
925                     << endl;
926                 texrow().newline();
927         }
928
929         if (output_preamble) {
930                 os << "\\end{document}\n";
931                 texrow().newline();
932
933                 lyxerr[Debug::LATEX] << "makeLaTeXFile...done" << endl;
934         } else {
935                 lyxerr[Debug::LATEX] << "LaTeXFile for inclusion made."
936                                      << endl;
937         }
938
939         // Just to be sure. (Asger)
940         texrow().newline();
941
942         lyxerr[Debug::INFO] << "Finished making LaTeX file." << endl;
943         lyxerr[Debug::INFO] << "Row count was " << texrow().rows() - 1
944                             << '.' << endl;
945 }
946
947
948 bool Buffer::isLatex() const
949 {
950         return params().getLyXTextClass().outputType() == LATEX;
951 }
952
953
954 bool Buffer::isLinuxDoc() const
955 {
956         return params().getLyXTextClass().outputType() == LINUXDOC;
957 }
958
959
960 bool Buffer::isLiterate() const
961 {
962         return params().getLyXTextClass().outputType() == LITERATE;
963 }
964
965
966 bool Buffer::isDocBook() const
967 {
968         return params().getLyXTextClass().outputType() == DOCBOOK;
969 }
970
971
972 bool Buffer::isSGML() const
973 {
974         LyXTextClass const & tclass = params().getLyXTextClass();
975
976         return tclass.outputType() == LINUXDOC ||
977                tclass.outputType() == DOCBOOK;
978 }
979
980
981 void Buffer::makeLinuxDocFile(string const & fname,
982                               OutputParams const & runparams,
983                               bool body_only)
984 {
985         ofstream ofs;
986         if (!openFileWrite(ofs, fname))
987                 return;
988
989         LaTeXFeatures features(*this, params(), runparams.nice);
990         validate(features);
991
992         texrow().reset();
993
994         LyXTextClass const & tclass = params().getLyXTextClass();
995
996         string top_element = tclass.latexname();
997
998         if (!body_only) {
999                 ofs << tclass.class_header();
1000
1001                 string preamble = params().preamble;
1002                 string const name = runparams.nice ? ChangeExtension(pimpl_->filename, ".sgml")
1003                          : fname;
1004                 preamble += features.getIncludedFiles(name);
1005                 preamble += features.getLyXSGMLEntities();
1006
1007                 if (!preamble.empty()) {
1008                         ofs << " [ " << preamble << " ]";
1009                 }
1010                 ofs << ">\n\n";
1011
1012                 if (params().options.empty())
1013                         sgml::openTag(ofs, 0, false, top_element);
1014                 else {
1015                         string top = top_element;
1016                         top += ' ';
1017                         top += params().options;
1018                         sgml::openTag(ofs, 0, false, top);
1019                 }
1020         }
1021
1022         ofs << "<!-- LyX "  << lyx_version
1023             << " created this file. For more info see http://www.lyx.org/"
1024             << " -->\n";
1025
1026         linuxdocParagraphs(*this, paragraphs(), ofs, runparams);
1027
1028         if (!body_only) {
1029                 ofs << "\n\n";
1030                 sgml::closeTag(ofs, 0, false, top_element);
1031         }
1032
1033         ofs.close();
1034         if (ofs.fail())
1035                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1036 }
1037
1038
1039 void Buffer::makeDocBookFile(string const & fname,
1040                              OutputParams const & runparams,
1041                              bool only_body)
1042 {
1043         ofstream ofs;
1044         if (!openFileWrite(ofs, fname))
1045                 return;
1046
1047         LaTeXFeatures features(*this, params(), runparams.nice);
1048         validate(features);
1049
1050         texrow().reset();
1051
1052         LyXTextClass const & tclass = params().getLyXTextClass();
1053         string top_element = tclass.latexname();
1054
1055         if (!only_body) {
1056                 ofs << subst(tclass.class_header(), "#", top_element);
1057
1058                 string preamble = params().preamble;
1059                 string const name = runparams.nice ? ChangeExtension(pimpl_->filename, ".sgml")
1060                          : fname;
1061                 preamble += features.getIncludedFiles(name);
1062                 preamble += features.getLyXSGMLEntities();
1063
1064                 if (!preamble.empty()) {
1065                         ofs << "\n [ " << preamble << " ]";
1066                 }
1067                 ofs << ">\n\n";
1068         }
1069
1070         string top = top_element;
1071         top += " lang=\"";
1072         top += params().language->code();
1073         top += '"';
1074
1075         if (!params().options.empty()) {
1076                 top += ' ';
1077                 top += params().options;
1078         }
1079         sgml::openTag(ofs, 0, false, top);
1080
1081         ofs << "<!-- SGML/XML file was created by LyX " << lyx_version
1082             << "\n  See http://www.lyx.org/ for more information -->\n";
1083
1084         params().getLyXTextClass().counters().reset();
1085         docbookParagraphs(*this, paragraphs(), ofs, runparams);
1086
1087         ofs << "\n\n";
1088         sgml::closeTag(ofs, 0, false, top_element);
1089
1090         ofs.close();
1091         if (ofs.fail())
1092                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1093 }
1094
1095
1096 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1097 // Other flags: -wall -v0 -x
1098 int Buffer::runChktex()
1099 {
1100         busy(true);
1101
1102         // get LaTeX-Filename
1103         string const name = getLatexName();
1104         string const path = temppath();
1105         string const org_path = filePath();
1106
1107         Path p(path); // path to LaTeX file
1108         message(_("Running chktex..."));
1109
1110         // Generate the LaTeX file if neccessary
1111         OutputParams runparams;
1112         runparams.flavor = OutputParams::LATEX;
1113         runparams.nice = false;
1114         makeLaTeXFile(name, org_path, runparams);
1115
1116         TeXErrors terr;
1117         Chktex chktex(lyxrc.chktex_command, name, filePath());
1118         int res = chktex.run(terr); // run chktex
1119
1120         if (res == -1) {
1121                 Alert::error(_("chktex failure"),
1122                              _("Could not run chktex successfully."));
1123         } else if (res > 0) {
1124                 // Insert all errors as errors boxes
1125                 bufferErrors(*this, terr);
1126         }
1127
1128         busy(false);
1129
1130         return res;
1131 }
1132
1133
1134 void Buffer::validate(LaTeXFeatures & features) const
1135 {
1136         LyXTextClass const & tclass = params().getLyXTextClass();
1137
1138         if (params().tracking_changes) {
1139                 features.require("dvipost");
1140                 features.require("color");
1141         }
1142
1143         // AMS Style is at document level
1144         if (params().use_amsmath == BufferParams::AMS_ON
1145             || tclass.provides(LyXTextClass::amsmath))
1146                 features.require("amsmath");
1147
1148         for_each(paragraphs().begin(), paragraphs().end(),
1149                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
1150
1151         // the bullet shapes are buffer level not paragraph level
1152         // so they are tested here
1153         for (int i = 0; i < 4; ++i) {
1154                 if (params().user_defined_bullet(i) != ITEMIZE_DEFAULTS[i]) {
1155                         int const font = params().user_defined_bullet(i).getFont();
1156                         if (font == 0) {
1157                                 int const c = params()
1158                                         .user_defined_bullet(i)
1159                                         .getCharacter();
1160                                 if (c == 16
1161                                    || c == 17
1162                                    || c == 25
1163                                    || c == 26
1164                                    || c == 31) {
1165                                         features.require("latexsym");
1166                                 }
1167                         } else if (font == 1) {
1168                                 features.require("amssymb");
1169                         } else if ((font >= 2 && font <= 5)) {
1170                                 features.require("pifont");
1171                         }
1172                 }
1173         }
1174
1175         if (lyxerr.debugging(Debug::LATEX)) {
1176                 features.showStruct();
1177         }
1178 }
1179
1180
1181 void Buffer::getLabelList(std::vector<string> & list) const
1182 {
1183         /// if this is a child document and the parent is already loaded
1184         /// Use the parent's list instead  [ale990407]
1185         Buffer const * tmp = getMasterBuffer();
1186         if (!tmp) {
1187                 lyxerr << "getMasterBuffer() failed!" << endl;
1188                 BOOST_ASSERT(tmp);
1189         }
1190         if (tmp != this) {
1191                 tmp->getLabelList(list);
1192                 return;
1193         }
1194
1195         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it)
1196                 it.nextInset()->getLabelList(*this, list);
1197 }
1198
1199
1200 // This is also a buffer property (ale)
1201 void Buffer::fillWithBibKeys(std::vector<std::pair<string, string> > & keys)
1202         const
1203 {
1204         /// if this is a child document and the parent is already loaded
1205         /// use the parent's list instead  [ale990412]
1206         Buffer const * tmp = getMasterBuffer();
1207         BOOST_ASSERT(tmp);
1208         if (tmp != this) {
1209                 tmp->fillWithBibKeys(keys);
1210                 return;
1211         }
1212
1213         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1214                 if (it->lyxCode() == InsetOld::BIBTEX_CODE) {
1215                         InsetBibtex const & inset =
1216                                 dynamic_cast<InsetBibtex const &>(*it);
1217                         inset.fillWithBibKeys(*this, keys);
1218                 } else if (it->lyxCode() == InsetOld::INCLUDE_CODE) {
1219                         InsetInclude const & inset =
1220                                 dynamic_cast<InsetInclude const &>(*it);
1221                         inset.fillWithBibKeys(*this, keys);
1222                 } else if (it->lyxCode() == InsetOld::BIBITEM_CODE) {
1223                         InsetBibitem const & inset =
1224                                 dynamic_cast<InsetBibitem const &>(*it);
1225                         string const key = inset.getContents();
1226                         string const opt = inset.getOptions();
1227                         string const ref; // = pit->asString(this, false);
1228                         string const info = opt + "TheBibliographyRef" + ref;
1229                         keys.push_back(pair<string, string>(key, info));
1230                 }
1231         }
1232 }
1233
1234
1235 bool Buffer::isDepClean(string const & name) const
1236 {
1237         DepClean::const_iterator it = pimpl_->dep_clean.find(name);
1238         if (it == pimpl_->dep_clean.end())
1239                 return true;
1240         return it->second;
1241 }
1242
1243
1244 void Buffer::markDepClean(string const & name)
1245 {
1246         pimpl_->dep_clean[name] = true;
1247 }
1248
1249
1250 bool Buffer::dispatch(string const & command, bool * result)
1251 {
1252         return dispatch(lyxaction.lookupFunc(command), result);
1253 }
1254
1255
1256 bool Buffer::dispatch(FuncRequest const & func, bool * result)
1257 {
1258         bool dispatched = true;
1259
1260         switch (func.action) {
1261                 case LFUN_EXPORT: {
1262                         bool const tmp = Exporter::Export(this, func.argument, false);
1263                         if (result)
1264                                 *result = tmp;
1265                         break;
1266                 }
1267
1268                 default:
1269                         dispatched = false;
1270         }
1271         return dispatched;
1272 }
1273
1274
1275 void Buffer::changeLanguage(Language const * from, Language const * to)
1276 {
1277         lyxerr << "Changing Language!" << endl;
1278
1279         // Take care of l10n/i18n
1280         updateDocLang(to);
1281
1282         ParIterator end = par_iterator_end();
1283         for (ParIterator it = par_iterator_begin(); it != end; ++it)
1284                 it->changeLanguage(params(), from, to);
1285 }
1286
1287
1288 void Buffer::updateDocLang(Language const * nlang)
1289 {
1290         pimpl_->messages.reset(new Messages(nlang->code()));
1291 }
1292
1293
1294 bool Buffer::isMultiLingual() const
1295 {
1296         ParConstIterator end = par_iterator_end();
1297         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
1298                 if (it->isMultiLingual(params()))
1299                         return true;
1300
1301         return false;
1302 }
1303
1304
1305 ParIterator Buffer::getParFromID(int id) const
1306 {
1307         ParConstIterator it = par_iterator_begin();
1308         ParConstIterator end = par_iterator_end();
1309
1310         if (id < 0) {
1311                 // John says this is called with id == -1 from undo
1312                 lyxerr << "getParFromID(), id: " << id << endl;
1313                 return end;
1314         }
1315
1316         for (; it != end; ++it)
1317                 if (it->id() == id)
1318                         return it;
1319
1320         return end;
1321 }
1322
1323
1324 bool Buffer::hasParWithID(int id) const
1325 {
1326         ParConstIterator it = par_iterator_begin();
1327         ParConstIterator end = par_iterator_end();
1328
1329         if (id < 0) {
1330                 // John says this is called with id == -1 from undo
1331                 lyxerr << "hasParWithID(), id: " << id << endl;
1332                 return 0;
1333         }
1334
1335         for (; it != end; ++it)
1336                 if (it->id() == id)
1337                         return true;
1338
1339         return false;
1340 }
1341
1342
1343 ParIterator Buffer::par_iterator_begin()
1344 {
1345         return ::par_iterator_begin(inset());
1346 }
1347
1348
1349 ParIterator Buffer::par_iterator_end()
1350 {
1351         return ::par_iterator_end(inset());
1352 }
1353
1354
1355 ParConstIterator Buffer::par_iterator_begin() const
1356 {
1357         return ::par_const_iterator_begin(inset());
1358 }
1359
1360
1361 ParConstIterator Buffer::par_iterator_end() const
1362 {
1363         return ::par_const_iterator_end(inset());
1364 }
1365
1366
1367 Language const * Buffer::getLanguage() const
1368 {
1369         return params().language;
1370 }
1371
1372
1373 string const Buffer::B_(string const & l10n) const
1374 {
1375         if (pimpl_->messages.get()) {
1376                 return pimpl_->messages->get(l10n);
1377         }
1378
1379         return _(l10n);
1380 }
1381
1382
1383 bool Buffer::isClean() const
1384 {
1385         return pimpl_->lyx_clean;
1386 }
1387
1388
1389 bool Buffer::isBakClean() const
1390 {
1391         return pimpl_->bak_clean;
1392 }
1393
1394
1395 void Buffer::markClean() const
1396 {
1397         if (!pimpl_->lyx_clean) {
1398                 pimpl_->lyx_clean = true;
1399                 updateTitles();
1400         }
1401         // if the .lyx file has been saved, we don't need an
1402         // autosave
1403         pimpl_->bak_clean = true;
1404 }
1405
1406
1407 void Buffer::markBakClean()
1408 {
1409         pimpl_->bak_clean = true;
1410 }
1411
1412
1413 void Buffer::setUnnamed(bool flag)
1414 {
1415         pimpl_->unnamed = flag;
1416 }
1417
1418
1419 bool Buffer::isUnnamed() const
1420 {
1421         return pimpl_->unnamed;
1422 }
1423
1424
1425 void Buffer::markDirty()
1426 {
1427         if (pimpl_->lyx_clean) {
1428                 pimpl_->lyx_clean = false;
1429                 updateTitles();
1430         }
1431         pimpl_->bak_clean = false;
1432
1433         DepClean::iterator it = pimpl_->dep_clean.begin();
1434         DepClean::const_iterator const end = pimpl_->dep_clean.end();
1435
1436         for (; it != end; ++it) {
1437                 it->second = false;
1438         }
1439 }
1440
1441
1442 string const & Buffer::fileName() const
1443 {
1444         return pimpl_->filename;
1445 }
1446
1447
1448 string const & Buffer::filePath() const
1449 {
1450         return pimpl_->filepath;
1451 }
1452
1453
1454 bool Buffer::isReadonly() const
1455 {
1456         return pimpl_->read_only;
1457 }
1458
1459
1460 void Buffer::setParentName(string const & name)
1461 {
1462         params().parentname = name;
1463 }
1464
1465
1466 Buffer const * Buffer::getMasterBuffer() const
1467 {
1468         if (!params().parentname.empty()
1469             && bufferlist.exists(params().parentname)) {
1470                 Buffer const * buf = bufferlist.getBuffer(params().parentname);
1471                 if (buf)
1472                         return buf->getMasterBuffer();
1473         }
1474
1475         return this;
1476 }