]> git.lyx.org Git - lyx.git/blob - src/Buffer.h
4b360adc2851a1d26c0d97ca19e6c9d2f3a51732
[lyx.git] / src / Buffer.h
1 // -*- C++ -*-
2 /**
3  * \file Buffer.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef BUFFER_H
13 #define BUFFER_H
14
15 #include "OutputEnums.h"
16
17 #include "insets/InsetCode.h"
18
19 #include "support/strfwd.h"
20 #include "support/types.h"
21
22 #include <list>
23 #include <set>
24 #include <string>
25 #include <vector>
26
27
28 namespace lyx {
29
30 class BiblioInfo;
31 class BufferParams;
32 class DispatchResult;
33 class DocIterator;
34 class docstring_list;
35 class ErrorList;
36 class FuncRequest;
37 class FuncStatus;
38 class Inset;
39 class InsetLabel;
40 class InsetRef;
41 class Font;
42 class Format;
43 class Lexer;
44 class Text;
45 class LyXVC;
46 class LaTeXFeatures;
47 class Language;
48 class MacroData;
49 class MacroNameSet;
50 class MacroSet;
51 class OutputParams;
52 class Paragraph;
53 class ParConstIterator;
54 class ParIterator;
55 class ParagraphList;
56 class TeXErrors;
57 class TexRow;
58 class TocBackend;
59 class Undo;
60 class WordLangTuple;
61
62 namespace frontend {
63 class GuiBufferDelegate;
64 class WorkAreaManager;
65 }
66
67 namespace support {
68 class FileName;
69 class FileNameList;
70 }
71
72
73 class Buffer;
74 typedef std::vector<Buffer *> ListOfBuffers;
75
76
77 /** The buffer object.
78  * This is the buffer object. It contains all the informations about
79  * a document loaded into LyX.
80  * The buffer object owns the Text (wrapped in an InsetText), which
81  * contains the individual paragraphs of the document.
82  *
83  *
84  * I am not sure if the class is complete or
85  * minimal, probably not.
86  * \author Lars Gullik Bjønnes
87  */
88 class Buffer {
89 public:
90         /// What type of log will \c getLogName() return?
91         enum LogType {
92                 latexlog, ///< LaTeX log
93                 buildlog  ///< Literate build log
94         };
95
96         /// Result of \c readFile()
97         enum ReadStatus {
98                 failure, ///< The file could not be read
99                 success, ///< The file could not be read
100                 wrongversion ///< The version of the file does not match ours
101         };
102
103
104         /// Method to check if a file is externally modified, used by
105         /// isExternallyModified()
106         /**
107          * timestamp is fast but inaccurate. For example, the granularity
108          * of timestamp on a FAT filesystem is 2 second. Also, various operations
109          * may touch the timestamp of a file even when its content is unchanged.
110          *
111          * checksum is accurate but slow, which can be a problem when it is
112          * frequently used, or used for a large file on a slow (network) file
113          * system.
114          *
115          * FIXME: replace this method with support/FileMonitor.
116          */
117         enum CheckMethod {
118                 checksum_method,  ///< Use file checksum
119                 timestamp_method, ///< Use timestamp, and checksum if timestamp has changed
120         };
121
122         ///
123         enum UpdateScope {
124                 UpdateMaster,
125                 UpdateChildOnly
126         };
127
128         /// Constructor
129         explicit Buffer(std::string const & file, bool readonly = false,
130                 Buffer const * cloned_buffer = 0);
131
132         /// Destructor
133         ~Buffer();
134
135         ///
136         Buffer * clone() const;
137         ///
138         bool isClone() const;
139
140         /** High-level interface to buffer functionality.
141             This function parses a command string and executes it.
142         */
143         void dispatch(std::string const & command, DispatchResult & result);
144
145         /// Maybe we know the function already by number...
146         void dispatch(FuncRequest const & func, DispatchResult & result);
147
148         /// Can this function be exectued?
149         /// \return true if we made a decision
150         bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
151
152         /// read a new document from a string
153         bool readString(std::string const &);
154         /// load a new file
155         bool readFile(support::FileName const & filename);
156
157         /// read the header, returns number of unknown tokens
158         int readHeader(Lexer & lex);
159
160         /** Reads a file without header.
161             \param par if != 0 insert the file.
162             \return \c true if file is not completely read.
163         */
164         bool readDocument(Lexer &);
165
166         ///
167         DocIterator getParFromID(int id) const;
168         /// do we have a paragraph with this id?
169         bool hasParWithID(int id) const;
170
171         ///
172         frontend::WorkAreaManager & workAreaManager() const;
173
174         /** Save file.
175             Takes care of auto-save files and backup file if requested.
176             Returns \c true if the save is successful, \c false otherwise.
177         */
178         bool save() const;
179
180         /// Write document to stream. Returns \c false if unsuccesful.
181         bool write(std::ostream &) const;
182         /// save emergency file
183         /// \return a status message towards the user.
184         docstring emergencyWrite();
185         /// Write file. Returns \c false if unsuccesful.
186         bool writeFile(support::FileName const &) const;
187
188         /// Loads LyX file \c filename into buffer, *  and return success
189         bool loadLyXFile(support::FileName const & s);
190         /// Reloads the LyX file
191         bool reload();
192
193         /// Fill in the ErrorList with the TeXErrors
194         void bufferErrors(TeXErrors const &, ErrorList &) const;
195
196         /// Just a wrapper for writeLaTeXSource, first creating the ofstream.
197         bool makeLaTeXFile(support::FileName const & filename,
198                            std::string const & original_path,
199                            OutputParams const &,
200                            bool output_preamble = true,
201                            bool output_body = true) const;
202         /** Export the buffer to LaTeX.
203             If \p os is a file stream, and params().inputenc is "auto" or
204             "default", and the buffer contains text in different languages
205             with more than one encoding, then this method will change the
206             encoding associated to \p os. Therefore you must not call this
207             method with a string stream if the output is supposed to go to a
208             file. \code
209             ofdocstream ofs;
210             ofs.open("test.tex");
211             writeLaTeXSource(ofs, ...);
212             ofs.close();
213             \endcode is NOT equivalent to \code
214             odocstringstream oss;
215             writeLaTeXSource(oss, ...);
216             ofdocstream ofs;
217             ofs.open("test.tex");
218             ofs << oss.str();
219             ofs.close();
220             \endcode
221          */
222         void writeLaTeXSource(odocstream & os,
223                            std::string const & original_path,
224                            OutputParams const &,
225                            bool output_preamble = true,
226                            bool output_body = true) const;
227         ///
228         void makeDocBookFile(support::FileName const & filename,
229                              OutputParams const & runparams_in,
230                              bool only_body = false) const;
231         ///
232         void writeDocBookSource(odocstream & os, std::string const & filename,
233                              OutputParams const & runparams_in,
234                              bool only_body = false) const;
235         ///
236         void makeLyXHTMLFile(support::FileName const & filename,
237                              OutputParams const & runparams_in,
238                              bool only_body = false) const;
239         ///
240         void writeLyXHTMLSource(odocstream & os,
241                              OutputParams const & runparams_in,
242                              bool only_body = false) const;
243         /// returns the main language for the buffer (document)
244         Language const * language() const;
245         /// get l10n translated to the buffers language
246         docstring const B_(std::string const & l10n) const;
247
248         ///
249         int runChktex();
250         /// return true if the main lyx file does not need saving
251         bool isClean() const;
252         ///
253         bool isDepClean(std::string const & name) const;
254
255         /// whether or not disk file has been externally modified
256         bool isExternallyModified(CheckMethod method) const;
257
258         /// save timestamp and checksum of the given file.
259         void saveCheckSum(support::FileName const & file) const;
260
261         /// mark the main lyx file as not needing saving
262         void markClean() const;
263
264         ///
265         void markDepClean(std::string const & name);
266
267         ///
268         void setUnnamed(bool flag = true);
269
270         /// Whether or not a filename has been assigned to this buffer
271         bool isUnnamed() const;
272
273         /// Whether or not this buffer is internal.
274         ///
275         /// An internal buffer does not contain a real document, but some auxiliary text segment.
276         /// It is not associated with a filename, it is never saved, thus it does not need to be
277         /// automatically saved, nor it needs to trigger any "do you want to save ?" question.
278         bool isInternal() const;
279
280         /// Mark this buffer as dirty.
281         void markDirty();
282
283         /// Returns the buffer's filename. It is always an absolute path.
284         support::FileName fileName() const;
285
286         /// Returns the buffer's filename. It is always an absolute path.
287         std::string absFileName() const;
288
289         /// Returns the the path where the buffer lives.
290         /// It is always an absolute path.
291         std::string filePath() const;
292
293         /** A transformed version of the file name, adequate for LaTeX.
294             \param no_path optional if \c true then the path is stripped.
295         */
296         std::string latexName(bool no_path = true) const;
297
298         /// Get the name and type of the log.
299         std::string logName(LogType * type = 0) const;
300
301         /// Change name of buffer. Updates "read-only" flag.
302         void setFileName(std::string const & newfile);
303
304         /// Set document's parent Buffer.
305         void setParent(Buffer const *);
306         Buffer const * parent() const;
307
308         /// Collect all relative buffers
309         ListOfBuffers allRelatives() const;
310
311         /** Get the document's master (or \c this if this is not a
312             child document)
313          */
314         Buffer const * masterBuffer() const;
315
316         /// \return true if \p child is a child of this \c Buffer.
317         bool isChild(Buffer * child) const;
318         
319         /// return a vector of all children (and grandchildren)
320         ListOfBuffers getChildren(bool grand_children = true) const;
321
322         /// Add all children (and grandchildren) to supplied vector
323         void getChildren(ListOfBuffers & children, bool grand_children = true) const;
324
325         /// Is buffer read-only?
326         bool isReadonly() const;
327
328         /// Set buffer read-only flag
329         void setReadonly(bool flag = true);
330
331         /// returns \c true if the buffer contains a LaTeX document
332         bool isLatex() const;
333         /// returns \c true if the buffer contains a DocBook document
334         bool isDocBook() const;
335         /// returns \c true if the buffer contains a Wed document
336         bool isLiterate() const;
337
338         /** Validate a buffer for LaTeX.
339             This validates the buffer, and returns a struct for use by
340             #makeLaTeX# and others. Its main use is to figure out what
341             commands and packages need to be included in the LaTeX file.
342             It (should) also check that the needed constructs are there
343             (i.e. that the \refs points to coresponding \labels). It
344             should perhaps inset "error" insets to help the user correct
345             obvious mistakes.
346         */
347         void validate(LaTeXFeatures &) const;
348
349         /// Reference information is cached in the Buffer, so we do not
350         /// have to check or read things over and over. 
351         ///
352         /// There are two caches.
353         ///
354         /// One is a cache of the BibTeX files from which reference info is
355         /// being gathered. This cache is PER BUFFER, and the cache for the
356         /// master essentially includes the cache for its children. This gets
357         /// invalidated when an InsetBibtex is created, deleted, or modified.
358         /// 
359         /// The other is a cache of the reference information itself. This
360         /// exists only in the master buffer, and when it needs to be updated,
361         /// the children add their information to the master's cache.
362         
363         /// Calling this method invalidates the cache and so requires a
364         /// re-read.
365         void invalidateBibinfoCache() const;
366         /// This invalidates the cache of files we need to check.
367         void invalidateBibfileCache() const;
368         /// Updates the cached bibliography information.
369         /// Note that you MUST call this method to update the cache. It will
370         /// not happen otherwise. (Currently, it is called at the start of
371         /// updateBuffer() and from GuiCitation.)
372         /// Note that this operates on the master document.
373         void checkBibInfoCache() const;
374         /// \return the bibliography information for this buffer's master,
375         /// or just for it, if it isn't a child.
376         BiblioInfo const & masterBibInfo() const;
377         ///
378         void fillWithBibKeys(BiblioInfo & keys) const;
379         ///
380         void getLabelList(std::vector<docstring> &) const;
381
382         ///
383         void changeLanguage(Language const * from, Language const * to);
384
385         ///
386         bool isMultiLingual() const;
387         ///
388         std::set<Language const *> getLanguages() const;
389
390         ///
391         BufferParams & params();
392         BufferParams const & params() const;
393
394         /** The list of paragraphs.
395             This is a linked list of paragraph, this list holds the
396             whole contents of the document.
397          */
398         ParagraphList & paragraphs();
399         ParagraphList const & paragraphs() const;
400
401         /// LyX version control object.
402         LyXVC & lyxvc();
403         LyXVC const & lyxvc() const;
404
405         /// Where to put temporary files.
406         std::string const temppath() const;
407
408         /// Used when typesetting to place errorboxes.
409         TexRow const & texrow() const;
410         TexRow & texrow();
411
412         ///
413         ParIterator par_iterator_begin();
414         ///
415         ParConstIterator par_iterator_begin() const;
416         ///
417         ParIterator par_iterator_end();
418         ///
419         ParConstIterator par_iterator_end() const;
420
421         // Position of the child buffer where it appears first in the master.
422         DocIterator firstChildPosition(Buffer const * child);
423
424         /** \returns true only when the file is fully loaded.
425          *  Used to prevent the premature generation of previews
426          *  and by the citation inset.
427          */
428         bool isFullyLoaded() const;
429         /// Set by buffer_funcs' newFile.
430         void setFullyLoaded(bool);
431
432         /// Our main text (inside the top InsetText)
433         Text & text() const;
434
435         /// Our top InsetText
436         Inset & inset() const;
437
438         //
439         // Macro handling
440         //
441         /// Collect macro definitions in paragraphs
442         void updateMacros() const;
443         /// Iterate through the whole buffer and try to resolve macros
444         void updateMacroInstances() const;
445
446         /// List macro names of this buffer, the parent and the children
447         void listMacroNames(MacroNameSet & macros) const;
448         /// Collect macros of the parent and its children in front of this buffer.
449         void listParentMacros(MacroSet & macros, LaTeXFeatures & features) const;
450
451         /// Return macro defined before pos (or in the master buffer)
452         MacroData const * getMacro(docstring const & name, DocIterator const & pos, bool global = true) const;
453         /// Return macro defined anywhere in the buffer (or in the master buffer)
454         MacroData const * getMacro(docstring const & name, bool global = true) const;
455         /// Return macro defined before the inclusion of the child
456         MacroData const * getMacro(docstring const & name, Buffer const & child, bool global = true) const;
457
458         /// Collect user macro names at loading time
459         typedef std::set<docstring> UserMacroSet;
460         UserMacroSet usermacros;
461
462         /// Replace the inset contents for insets which InsetCode is equal
463         /// to the passed \p inset_code.
464         void changeRefsIfUnique(docstring const & from, docstring const & to,
465                 InsetCode code);
466
467         /// get source code (latex/docbook) for some paragraphs, or all paragraphs
468         /// including preamble
469         void getSourceCode(odocstream & os, pit_type par_begin, pit_type par_end,
470                 bool full_source) const;
471
472         /// Access to error list.
473         /// This method is used only for GUI visualisation of Buffer related
474         /// errors (like parsing or LateX compilation). This method is const
475         /// because modifying the returned ErrorList does not touch the document
476         /// contents.
477         ErrorList & errorList(std::string const & type) const;
478
479         /// The Toc backend.
480         /// This is useful only for screen visualisation of the Buffer. This
481         /// method is const because modifying this backend does not touch
482         /// the document contents.
483         TocBackend & tocBackend() const;
484
485         ///
486         Undo & undo();
487
488         /// This function is called when the buffer is changed.
489         void changed(bool update_metrics) const;
490         ///
491         void setChild(DocIterator const & dit, Buffer * child);
492         ///
493         void updateTocItem(std::string const &, DocIterator const &) const;
494         /// This function is called when the buffer structure is changed.
495         void structureChanged() const;
496         /// This function is called when some parsing error shows up.
497         void errors(std::string const & err, bool from_master = false) const;
498         /// This function is called when the buffer busy status change.
499         void setBusy(bool on) const;
500         /// Update window titles of all users.
501         void updateTitles() const;
502         /// Reset autosave timers for all users.
503         void resetAutosaveTimers() const;
504         ///
505         void message(docstring const & msg) const;
506
507         ///
508         void setGuiDelegate(frontend::GuiBufferDelegate * gui);
509         ///
510         bool hasGuiDelegate() const;
511
512         ///
513         void autoSave() const;
514         ///
515         void removeAutosaveFile() const;
516         ///
517         void moveAutosaveFile(support::FileName const & old) const;
518         ///
519         support::FileName getAutosaveFileName() const;
520
521         /// return the format of the buffer on a string
522         std::string bufferFormat() const;
523         /// return the default output format of the current backend
524         std::string getDefaultOutputFormat() const;
525
526         ///
527         bool doExport(std::string const & format, bool put_in_tempdir,
528                 bool includeall, std::string & result_file) const;
529         ///
530         bool doExport(std::string const & format, bool put_in_tempdir,
531                       bool includeall = false) const;
532         ///
533         bool preview(std::string const & format, bool includeall = false) const;
534         ///
535         bool isExportable(std::string const & format) const;
536         ///
537         std::vector<Format const *> exportableFormats(bool only_viewable) const;
538         ///
539         bool isExportableFormat(std::string const & format) const;
540         /// mark the buffer as busy exporting something, or not
541         void setExportStatus(bool e) const;
542         ///
543         bool isExporting() const;
544
545         ///
546         typedef std::vector<std::pair<Inset *, ParIterator> > References;
547         References & references(docstring const & label);
548         References const & references(docstring const & label) const;
549         void clearReferenceCache() const;
550         void setInsetLabel(docstring const & label, InsetLabel const * il);
551         InsetLabel const * insetLabel(docstring const & label) const;
552
553         /// return a list of all used branches (also in children)
554         void getUsedBranches(std::list<docstring> &, bool const from_master = false) const;
555
556         /// sets the buffer_ member for every inset in this buffer.
557         // FIXME This really shouldn't be needed, but at the moment it's not
558         // clear how to do it just for the individual pieces we need.
559         void setBuffersForInsets() const;
560         /// Updates screen labels and some other information associated with
561         /// insets and paragraphs. Actually, it's more like a general "recurse
562         /// through the Buffer" routine, that visits all the insets and paragraphs.
563         void updateBuffer() const { updateBuffer(UpdateMaster, InternalUpdate); }
564         /// \param scope: whether to start with the master document or just
565         /// do this one.
566         /// \param output: whether we are preparing for output.
567         void updateBuffer(UpdateScope scope, UpdateType utype) const;
568         /// 
569         void updateBuffer(ParIterator & parit, UpdateType utype) const;
570
571         /// Spellcheck starting from \p from.
572         /// \p from initial position, will then points to the next misspelled
573         ///    word.
574         /// \p to will points to the end of the next misspelled word.
575         /// \p word_lang will contain the found misspelled word.
576         /// \return progress if a new word was found.
577         int spellCheck(DocIterator & from, DocIterator & to,
578                 WordLangTuple & word_lang, docstring_list & suggestions) const;
579         ///
580         void checkChildBuffers();
581
582 private:
583         ///
584         bool readFileHelper(support::FileName const & s);
585         ///
586         std::vector<std::string> backends() const;
587         /** Inserts a file into a document
588             \return \c false if method fails.
589         */
590         ReadStatus readFile(Lexer &, support::FileName const & filename,
591                             bool fromString = false);
592         ///
593         void getLanguages(std::set<Language const *> &) const;
594         /// Update the list of all bibfiles in use (including bibfiles
595         /// of loaded child documents).
596         void updateBibfilesCache(UpdateScope scope = UpdateMaster) const;
597         /// Return the list with all bibfiles in use (including bibfiles
598         /// of loaded child documents).
599         support::FileNameList const & 
600                 getBibfilesCache(UpdateScope scope = UpdateMaster) const;
601
602         /// Use the Pimpl idiom to hide the internals.
603         class Impl;
604         /// The pointer never changes although *pimpl_'s contents may.
605         Impl * const d;
606 };
607
608
609 } // namespace lyx
610
611 #endif