]> git.lyx.org Git - lyx.git/blob - src/buffer.h
boring change
[lyx.git] / src / buffer.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *           Copyright 1995 Matthias Ettrich
7  *
8  *           This file is Copyleft 1996
9  *           Lars Gullik Bjønnes
10  *
11  * ====================================================== */
12
13 #ifndef BUFFER_H
14 #define BUFFER_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "LString.h"
21 #include "undo.h"
22 #include "support/limited_stack.h"
23
24 #include "lyxvc.h"
25 #include "bufferparams.h"
26 #include "texrow.h"
27 #include "paragraph.h"
28
29 #include <boost/shared_ptr.hpp>
30
31 class BufferView;
32 class LyXRC;
33 class TeXErrors;
34 class LaTeXFeatures;
35 class Language;
36 class ParIterator;
37
38 // When lyx 1.3.x starts we should enable this
39 // btw. we should also test this with 1.2 so that we
40 // do not get any surprises. (Lgb)
41 #define NO_COMPABILITY 1
42
43 ///
44 struct DEPCLEAN {
45         ///
46         bool clean;
47         ///
48         string master;
49         ///
50         DEPCLEAN * next;
51 };
52
53 /** The buffer object.
54   This is the buffer object. It contains all the informations about
55   a document loaded into LyX. I am not sure if the class is complete or
56   minimal, probably not.
57   \author Lars Gullik Bjønnes
58   */
59 class Buffer {
60 public:
61         /// What type of log will \c getLogName() return?
62         enum LogType {
63                 latexlog, ///< LaTeX log
64                 buildlog  ///< Literate build log
65         };
66
67         /** Constructor
68             \param file
69             \param b  optional \c false by default
70         */
71         explicit Buffer(string const & file, bool b = false);
72
73         /// Destructor
74         ~Buffer();
75
76         /** High-level interface to buffer functionality.
77             This function parses a command string and executes it
78         */
79         bool dispatch(string const & command, bool * result = 0);
80
81         /// Maybe we know the function already by number...
82         bool dispatch(int ac, string const & argument, bool * result = 0);
83
84         ///
85         void resizeInsets(BufferView *);
86
87         /// Update window titles of all users.
88         void updateTitles() const;
89
90         /// Reset autosave timers for all users.
91         void resetAutosaveTimers() const;
92
93         /** Adds the BufferView to the users list.
94             Later this func will insert the \c BufferView into a real list,
95             not just setting a pointer.
96         */
97         void addUser(BufferView * u);
98
99         /** Removes the #BufferView# from the users list.
100             Since we only can have one at the moment, we just reset it.
101         */
102         void delUser(BufferView *);
103
104         ///
105         void redraw();
106
107         /// Load the autosaved file.
108         void loadAutoSaveFile();
109
110         /** Reads a file.
111             \param par if != 0 insert the file.
112             \return \c false if method fails.
113         */
114         bool readFile(LyXLex &, Paragraph * par = 0);
115
116         /** Reads a file without header.
117             \param par if != 0 insert the file.
118             \return \c false if file is not completely read.
119         */
120         bool readLyXformat2(LyXLex &, Paragraph * par = 0);
121
122         /// This parses a single LyXformat-Token.
123         bool parseSingleLyXformat2Token(LyXLex &, Paragraph *& par,
124                                         Paragraph *& return_par,
125                                         string const & token, int & pos,
126                                         Paragraph::depth_type & depth,
127                                         LyXFont &);
128         ///
129         void insertStringAsLines(Paragraph *&, lyx::pos_type &,
130                                  LyXFont const &, string const &) const;
131 #ifndef NO_COMPABILITY
132         ///
133         Inset * isErtInset(Paragraph * par, int pos) const;
134         ///
135         void insertErtContents(Paragraph * par, int & pos,
136                                bool set_inactive = true);
137 #endif
138         ///
139         Paragraph * getParFromID(int id) const;
140 private:
141         /// Parse a single inset.
142         void readInset(LyXLex &, Paragraph *& par, int & pos, LyXFont &);
143 public:
144         /** Save file.
145             Takes care of auto-save files and backup file if requested.
146             Returns \c true if the save is successful, \c false otherwise.
147         */
148         bool save() const;
149
150         /// Write file. Returns \c false if unsuccesful.
151         bool writeFile(string const &, bool) const;
152
153         ///
154         void writeFileAscii(string const & , int);
155         ///
156         void writeFileAscii(std::ostream &, int);
157         ///
158         string const asciiParagraph(Paragraph const *, unsigned int linelen,
159                                     bool noparbreak = false) const;
160         /// Just a wrapper for the method below, first creating the ofstream.
161         void makeLaTeXFile(string const & filename,
162                            string const & original_path,
163                            bool nice,
164                            bool only_body = false,
165                            bool only_preamble = false);
166         ///
167         void makeLaTeXFile(std::ostream & os,
168                            string const & original_path,
169                            bool nice,
170                            bool only_body = false,
171                            bool only_preamble = false);
172         /** LaTeX all paragraphs from par to endpar.
173             \param \a endpar if == 0 then to the end
174         */
175         void latexParagraphs(std::ostream & os, Paragraph * par,
176                              Paragraph * endpar, TexRow & texrow, bool moving_arg = false) const;
177         ///
178         void simpleDocBookOnePar(std::ostream &,
179                                  Paragraph * par, int & desc_on,
180                                  Paragraph::depth_type depth) const ;
181         ///
182         void simpleLinuxDocOnePar(std::ostream & os, Paragraph * par,
183                                   Paragraph::depth_type depth);
184         ///
185         void makeLinuxDocFile(string const & filename,
186                               bool nice, bool only_body = false);
187         ///
188         void makeDocBookFile(string const & filename,
189                              bool nice, bool only_body = false);
190         /// Open SGML/XML tag.
191         int sgmlOpenTag(std::ostream & os, Paragraph::depth_type depth, bool mixcont,
192                 string const & latexname) const;
193         /// Closes SGML/XML tag.
194         int sgmlCloseTag(std::ostream & os, Paragraph::depth_type depth, bool mixcont,
195                 string const & latexname) const;
196         ///
197         void sgmlError(Paragraph * par, int pos, string const & message) const;
198
199         /// returns the main language for the buffer (document)
200         Language const * getLanguage() const;
201         ///
202         int runChktex();
203         ///
204         bool isLyxClean() const;
205         ///
206         bool isBakClean() const;
207         ///
208         bool isDepClean(string const & name) const;
209
210         ///
211         void markLyxClean() const;
212
213         ///
214         void markBakClean();
215
216         ///
217         void markDepClean(string const & name);
218
219         ///
220         void setUnnamed(bool flag = true);
221
222         ///
223         bool isUnnamed();
224
225         /// Mark this buffer as dirty.
226         void markDirty();
227
228         /// Returns the buffer's filename. It is always an absolute path.
229         string const & fileName() const;
230
231         /// Returns the the path where the buffer lives.
232         /// It is always an absolute path.
233         string const & filePath() const;
234
235         /** A transformed version of the file name, adequate for LaTeX.
236             \param no_path optional if \c true then the path is stripped.
237         */
238         string const getLatexName(bool no_path = true) const;
239
240         /// Get the name and type of the log.
241         std::pair<LogType, string> const getLogName() const;
242
243         /// Change name of buffer. Updates "read-only" flag.
244         void setFileName(string const & newfile);
245
246         /// Name of the document's parent
247         void setParentName(string const &);
248
249         /// Is buffer read-only?
250         bool isReadonly() const;
251
252         /// Set buffer read-only flag
253         void setReadonly(bool flag = true);
254
255         /// returns \c true if the buffer contains a LaTeX document
256         bool isLatex() const;
257         /// returns \c true if the buffer contains a LinuxDoc document
258         bool isLinuxDoc() const;
259         /// returns \c true if the buffer contains a DocBook document
260         bool isDocBook() const;
261         /** returns \c true if the buffer contains either a LinuxDoc
262             or DocBook document */
263         bool isSGML() const;
264         /// returns \c true if the buffer contains a Wed document
265         bool isLiterate() const;
266
267         /** Validate a buffer for LaTeX.
268             This validates the buffer, and returns a struct for use by
269             #makeLaTeX# and others. Its main use is to figure out what
270             commands and packages need to be included in the LaTeX file.
271             It (should) also check that the needed constructs are there
272             (i.e. that the \refs points to coresponding \labels). It
273             should perhaps inset "error" insets to help the user correct
274             obvious mistakes.
275         */
276         void validate(LaTeXFeatures &) const;
277
278         ///
279         string const getIncludeonlyList(char delim = ',');
280         ///
281         std::vector<std::pair<string, string> > const getBibkeyList() const;
282         ///
283         std::vector<string> const getLabelList();
284
285         /** This will clearly have to change later. Later we can have more
286             than one user per buffer. */
287         BufferView * getUser() const;
288
289         ///
290         void changeLanguage(Language const * from, Language const * to);
291         ///
292         bool isMultiLingual();
293
294         /// Does this mean that this is buffer local?
295         limited_stack<boost::shared_ptr<Undo> > undostack;
296
297         /// Does this mean that this is buffer local?
298         limited_stack<boost::shared_ptr<Undo> > redostack;
299
300         ///
301         BufferParams params;
302
303         /** The list of paragraphs.
304             This is a linked list of paragraph, this list holds the
305             whole contents of the document.
306          */
307         Paragraph * paragraph;
308
309         /// LyX version control object.
310         LyXVC lyxvc;
311
312         /// Where to put temporary files.
313         string tmppath;
314
315         /** If we are writing a nice LaTeX file or not.
316             While writing as LaTeX, tells whether we are
317             doing a 'nice' LaTeX file */
318         bool niceFile;
319
320         /// Used when typesetting to place errorboxes.
321         TexRow texrow;
322 private:
323         /// is save needed
324         mutable bool lyx_clean;
325
326         /// is autosave needed
327         mutable bool bak_clean;
328
329         /// is this a unnamed file (New...)
330         bool unnamed;
331
332         /// is regenerating #.tex# necessary
333         DEPCLEAN * dep_clean;
334
335         /// buffer is r/o
336         bool read_only;
337
338         /// name of the file the buffer is associated with.
339         string filename_;
340
341         /// The path to the document file.
342         string filepath_;
343
344         /// Format number of buffer
345         int file_format;
346         /** A list of views using this buffer.
347             Why not keep a list of the BufferViews that use this buffer?
348
349             At least then we don't have to do a lot of magic like:
350             #buffer->lyx_gui->bufferview->updateLayoutChoice#. Just ask each
351             of the buffers in the list of users to do a #updateLayoutChoice#.
352         */
353         BufferView * users;
354
355 public:
356         ///
357         class inset_iterator {
358         public:
359                 typedef std::input_iterator_tag iterator_category;
360                 typedef Inset value_type;
361                 typedef ptrdiff_t difference_type;
362                 typedef Inset * pointer;
363                 typedef Inset & reference;
364
365
366                 ///
367                 inset_iterator() : par(0) /*, it(0)*/ {}
368                 //
369                 inset_iterator(Paragraph * paragraph) : par(paragraph) {
370                         setParagraph();
371                 }
372                 ///
373                 inset_iterator(Paragraph * paragraph, lyx::pos_type pos);
374                 ///
375                 inset_iterator & operator++() { // prefix ++
376                         if (par) {
377                                 ++it;
378                                 if (it == par->inset_iterator_end()) {
379                                         par = par->next();
380                                         setParagraph();
381                                 }
382                         }
383                         return *this;
384                 }
385                 ///
386                 inset_iterator operator++(int) { // postfix ++
387                         inset_iterator tmp(par, it.getPos());
388                         if (par) {
389                                 ++it;
390                                 if (it == par->inset_iterator_end()) {
391                                         par = par->next();
392                                         setParagraph();
393                                 }
394                         }
395                         return tmp;
396                 }
397                 ///
398                 Inset * operator*() { return *it; }
399
400                 ///
401                 Paragraph * getPar() { return par; }
402                 ///
403                 lyx::pos_type getPos() const { return it.getPos(); }
404                 ///
405                 friend
406                 bool operator==(inset_iterator const & iter1,
407                                 inset_iterator const & iter2);
408         private:
409                 ///
410                 void setParagraph();
411                 ///
412                 Paragraph * par;
413                 ///
414                 Paragraph::inset_iterator it;
415         };
416
417         ///
418         inset_iterator inset_iterator_begin() {
419                 return inset_iterator(paragraph);
420         }
421         ///
422         inset_iterator inset_iterator_end() {
423                 return inset_iterator();
424         }
425         ///
426         inset_iterator inset_const_iterator_begin() const {
427                 return inset_iterator(paragraph);
428         }
429         ///
430         inset_iterator inset_const_iterator_end() const {
431                 return inset_iterator();
432         }
433
434         ///
435         ParIterator par_iterator_begin();
436         ///
437         ParIterator par_iterator_end();
438
439         ///
440         Inset * getInsetFromID(int id_arg) const;
441 };
442
443
444 inline
445 void Buffer::addUser(BufferView * u)
446 {
447         users = u;
448 }
449
450
451 inline
452 void Buffer::delUser(BufferView *)
453 {
454         users = 0;
455 }
456
457
458 inline
459 Language const * Buffer::getLanguage() const
460 {
461         return params.language;
462 }
463
464
465 inline
466 bool Buffer::isLyxClean() const
467 {
468         return lyx_clean;
469 }
470
471
472 inline
473 bool Buffer::isBakClean() const
474 {
475         return bak_clean;
476 }
477
478
479 inline
480 void Buffer::markLyxClean() const
481 {
482         if (!lyx_clean) {
483                 lyx_clean = true;
484                 updateTitles();
485         }
486         // if the .lyx file has been saved, we don't need an
487         // autosave
488         bak_clean = true;
489 }
490
491
492 inline
493 void Buffer::markBakClean()
494 {
495         bak_clean = true;
496 }
497
498
499 inline
500 void Buffer::setUnnamed(bool flag)
501 {
502         unnamed = flag;
503 }
504
505
506 inline
507 bool Buffer::isUnnamed()
508 {
509         return unnamed;
510 }
511
512
513 inline
514 void Buffer::markDirty()
515 {
516         if (lyx_clean) {
517                 lyx_clean = false;
518                 updateTitles();
519         }
520         bak_clean = false;
521         DEPCLEAN * tmp = dep_clean;
522         while (tmp) {
523                 tmp->clean = false;
524                 tmp = tmp->next;
525         }
526 }
527
528
529 inline
530 string const & Buffer::fileName() const
531 {
532         return filename_;
533 }
534
535
536 inline
537 string const & Buffer::filePath() const
538 {
539         return filepath_;
540 }
541
542
543 inline
544 bool Buffer::isReadonly() const
545 {
546         return read_only;
547 }
548
549
550 inline
551 BufferView * Buffer::getUser() const
552 {
553         return users;
554 }
555
556
557 inline
558 void Buffer::setParentName(string const & name)
559 {
560         params.parentname = name;
561 }
562
563
564 ///
565 inline
566 bool operator==(Buffer::inset_iterator const & iter1,
567                 Buffer::inset_iterator const & iter2)
568 {
569         return iter1.par == iter2.par
570                 && (iter1.par == 0 || iter1.it == iter2.it);
571 }
572
573
574 ///
575 inline
576 bool operator!=(Buffer::inset_iterator const & iter1,
577                 Buffer::inset_iterator const & iter2)
578 {
579         return !(iter1 == iter2);
580 }
581
582 #endif