]> git.lyx.org Git - lyx.git/blob - src/Buffer.h
typo
[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::list<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         /** Get the document's master (or \c this if this is not a
309             child document)
310          */
311         Buffer const * masterBuffer() const;
312
313         /// \return true if \p child is a child of this \c Buffer.
314         bool isChild(Buffer * child) const;
315         
316         /// \return true if this \c Buffer has children
317         bool hasChildren() const;
318         
319         /// \return a list of the direct children of this Buffer.
320         /// this list has no duplicates and is in the order in which
321         /// the children appear.
322         ListOfBuffers getChildren() const;
323         
324         /// \return a list of all descendents of this Buffer (children,
325         /// grandchildren, etc). this list has no duplicates and is in
326         /// the order in which the children appear.
327         ListOfBuffers getDescendents() const;
328
329         /// Collect all relative buffers, in the order in which they appear.
330         /// I.e., the "root" Buffer is first, then its first child, then any
331         /// of its children, etc. However, there are no duplicates in this
332         /// list.
333         /// This is "stable", too, in the sense that it returns the same
334         /// thing from whichever Buffer it is called.
335         ListOfBuffers allRelatives() const;
336
337         /// Is buffer read-only?
338         bool isReadonly() const;
339
340         /// Set buffer read-only flag
341         void setReadonly(bool flag = true);
342
343         /// returns \c true if the buffer contains a LaTeX document
344         bool isLatex() const;
345         /// returns \c true if the buffer contains a DocBook document
346         bool isDocBook() const;
347         /// returns \c true if the buffer contains a Wed document
348         bool isLiterate() const;
349
350         /** Validate a buffer for LaTeX.
351             This validates the buffer, and returns a struct for use by
352             #makeLaTeX# and others. Its main use is to figure out what
353             commands and packages need to be included in the LaTeX file.
354             It (should) also check that the needed constructs are there
355             (i.e. that the \refs points to coresponding \labels). It
356             should perhaps inset "error" insets to help the user correct
357             obvious mistakes.
358         */
359         void validate(LaTeXFeatures &) const;
360
361         /// Reference information is cached in the Buffer, so we do not
362         /// have to check or read things over and over. 
363         ///
364         /// There are two caches.
365         ///
366         /// One is a cache of the BibTeX files from which reference info is
367         /// being gathered. This cache is PER BUFFER, and the cache for the
368         /// master essentially includes the cache for its children. This gets
369         /// invalidated when an InsetBibtex is created, deleted, or modified.
370         /// 
371         /// The other is a cache of the reference information itself. This
372         /// exists only in the master buffer, and when it needs to be updated,
373         /// the children add their information to the master's cache.
374         
375         /// Calling this method invalidates the cache and so requires a
376         /// re-read.
377         void invalidateBibinfoCache() const;
378         /// This invalidates the cache of files we need to check.
379         void invalidateBibfileCache() const;
380         /// Updates the cached bibliography information.
381         /// Note that you MUST call this method to update the cache. It will
382         /// not happen otherwise. (Currently, it is called at the start of
383         /// updateBuffer() and from GuiCitation.)
384         /// Note that this operates on the master document.
385         void checkBibInfoCache() const;
386         /// \return the bibliography information for this buffer's master,
387         /// or just for it, if it isn't a child.
388         BiblioInfo const & masterBibInfo() const;
389         ///
390         void fillWithBibKeys(BiblioInfo & keys) const;
391         ///
392         void getLabelList(std::vector<docstring> &) const;
393
394         ///
395         void changeLanguage(Language const * from, Language const * to);
396
397         ///
398         bool isMultiLingual() const;
399         ///
400         std::set<Language const *> getLanguages() const;
401
402         ///
403         BufferParams & params();
404         BufferParams const & params() const;
405
406         /** The list of paragraphs.
407             This is a linked list of paragraph, this list holds the
408             whole contents of the document.
409          */
410         ParagraphList & paragraphs();
411         ParagraphList const & paragraphs() const;
412
413         /// LyX version control object.
414         LyXVC & lyxvc();
415         LyXVC const & lyxvc() const;
416
417         /// Where to put temporary files.
418         std::string const temppath() const;
419
420         /// Used when typesetting to place errorboxes.
421         TexRow const & texrow() const;
422         TexRow & texrow();
423
424         ///
425         ParIterator par_iterator_begin();
426         ///
427         ParConstIterator par_iterator_begin() const;
428         ///
429         ParIterator par_iterator_end();
430         ///
431         ParConstIterator par_iterator_end() const;
432
433         // Position of the child buffer where it appears first in the master.
434         DocIterator firstChildPosition(Buffer const * child);
435
436         /** \returns true only when the file is fully loaded.
437          *  Used to prevent the premature generation of previews
438          *  and by the citation inset.
439          */
440         bool isFullyLoaded() const;
441         /// Set by buffer_funcs' newFile.
442         void setFullyLoaded(bool);
443
444         /// Our main text (inside the top InsetText)
445         Text & text() const;
446
447         /// Our top InsetText
448         Inset & inset() const;
449
450         //
451         // Macro handling
452         //
453         /// Collect macro definitions in paragraphs
454         void updateMacros() const;
455         /// Iterate through the whole buffer and try to resolve macros
456         void updateMacroInstances() const;
457
458         /// List macro names of this buffer, the parent and the children
459         void listMacroNames(MacroNameSet & macros) const;
460         /// Collect macros of the parent and its children in front of this buffer.
461         void listParentMacros(MacroSet & macros, LaTeXFeatures & features) const;
462
463         /// Return macro defined before pos (or in the master buffer)
464         MacroData const * getMacro(docstring const & name, DocIterator const & pos, bool global = true) const;
465         /// Return macro defined anywhere in the buffer (or in the master buffer)
466         MacroData const * getMacro(docstring const & name, bool global = true) const;
467         /// Return macro defined before the inclusion of the child
468         MacroData const * getMacro(docstring const & name, Buffer const & child, bool global = true) const;
469
470         /// Collect user macro names at loading time
471         typedef std::set<docstring> UserMacroSet;
472         UserMacroSet usermacros;
473
474         /// Replace the inset contents for insets which InsetCode is equal
475         /// to the passed \p inset_code.
476         void changeRefsIfUnique(docstring const & from, docstring const & to,
477                 InsetCode code);
478
479         /// get source code (latex/docbook) for some paragraphs, or all paragraphs
480         /// including preamble
481         void getSourceCode(odocstream & os, pit_type par_begin, pit_type par_end,
482                 bool full_source) const;
483
484         /// Access to error list.
485         /// This method is used only for GUI visualisation of Buffer related
486         /// errors (like parsing or LateX compilation). This method is const
487         /// because modifying the returned ErrorList does not touch the document
488         /// contents.
489         ErrorList & errorList(std::string const & type) const;
490
491         /// The Toc backend.
492         /// This is useful only for screen visualisation of the Buffer. This
493         /// method is const because modifying this backend does not touch
494         /// the document contents.
495         TocBackend & tocBackend() const;
496
497         ///
498         Undo & undo();
499
500         /// This function is called when the buffer is changed.
501         void changed(bool update_metrics) const;
502         ///
503         void setChild(DocIterator const & dit, Buffer * child);
504         ///
505         void updateTocItem(std::string const &, DocIterator const &) const;
506         /// This function is called when the buffer structure is changed.
507         void structureChanged() const;
508         /// This function is called when some parsing error shows up.
509         void errors(std::string const & err, bool from_master = false) const;
510         /// This function is called when the buffer busy status change.
511         void setBusy(bool on) const;
512         /// Update window titles of all users.
513         void updateTitles() const;
514         /// Reset autosave timers for all users.
515         void resetAutosaveTimers() const;
516         ///
517         void message(docstring const & msg) const;
518
519         ///
520         void setGuiDelegate(frontend::GuiBufferDelegate * gui);
521         ///
522         bool hasGuiDelegate() const;
523
524         ///
525         void autoSave() const;
526         ///
527         void removeAutosaveFile() const;
528         ///
529         void moveAutosaveFile(support::FileName const & old) const;
530         ///
531         support::FileName getAutosaveFileName() const;
532
533         /// return the format of the buffer on a string
534         std::string bufferFormat() const;
535         /// return the default output format of the current backend
536         std::string getDefaultOutputFormat() const;
537
538         ///
539         bool doExport(std::string const & format, bool put_in_tempdir,
540                 bool includeall, std::string & result_file) const;
541         ///
542         bool doExport(std::string const & format, bool put_in_tempdir,
543                       bool includeall = false) const;
544         ///
545         bool preview(std::string const & format, bool includeall = false) const;
546         ///
547         bool isExportable(std::string const & format) const;
548         ///
549         std::vector<Format const *> exportableFormats(bool only_viewable) const;
550         ///
551         bool isExportableFormat(std::string const & format) const;
552         /// mark the buffer as busy exporting something, or not
553         void setExportStatus(bool e) const;
554         ///
555         bool isExporting() const;
556
557         ///
558         typedef std::vector<std::pair<Inset *, ParIterator> > References;
559         References & references(docstring const & label);
560         References const & references(docstring const & label) const;
561         void clearReferenceCache() const;
562         void setInsetLabel(docstring const & label, InsetLabel const * il);
563         InsetLabel const * insetLabel(docstring const & label) const;
564
565         /// return a list of all used branches (also in children)
566         void getUsedBranches(std::list<docstring> &, bool const from_master = false) const;
567
568         /// sets the buffer_ member for every inset in this buffer.
569         // FIXME This really shouldn't be needed, but at the moment it's not
570         // clear how to do it just for the individual pieces we need.
571         void setBuffersForInsets() const;
572         /// Updates screen labels and some other information associated with
573         /// insets and paragraphs. Actually, it's more like a general "recurse
574         /// through the Buffer" routine, that visits all the insets and paragraphs.
575         void updateBuffer() const { updateBuffer(UpdateMaster, InternalUpdate); }
576         /// \param scope: whether to start with the master document or just
577         /// do this one.
578         /// \param output: whether we are preparing for output.
579         void updateBuffer(UpdateScope scope, UpdateType utype) const;
580         /// 
581         void updateBuffer(ParIterator & parit, UpdateType utype) const;
582
583         /// Spellcheck starting from \p from.
584         /// \p from initial position, will then points to the next misspelled
585         ///    word.
586         /// \p to will points to the end of the next misspelled word.
587         /// \p word_lang will contain the found misspelled word.
588         /// \return progress if a new word was found.
589         int spellCheck(DocIterator & from, DocIterator & to,
590                 WordLangTuple & word_lang, docstring_list & suggestions) const;
591         ///
592         void checkChildBuffers();
593
594 private:
595         ///
596         bool readFileHelper(support::FileName const & s);
597         ///
598         std::vector<std::string> backends() const;
599         /** Inserts a file into a document
600             \return \c false if method fails.
601         */
602         ReadStatus readFile(Lexer &, support::FileName const & filename,
603                             bool fromString = false);
604         ///
605         void getLanguages(std::set<Language const *> &) const;
606         /// Update the list of all bibfiles in use (including bibfiles
607         /// of loaded child documents).
608         void updateBibfilesCache(UpdateScope scope = UpdateMaster) const;
609         /// Return the list with all bibfiles in use (including bibfiles
610         /// of loaded child documents).
611         support::FileNameList const & 
612                 getBibfilesCache(UpdateScope scope = UpdateMaster) const;
613         ///
614         void collectChildren(ListOfBuffers & children, bool grand_children) const;
615
616         
617         /// Use the Pimpl idiom to hide the internals.
618         class Impl;
619         /// The pointer never changes although *pimpl_'s contents may.
620         Impl * const d;
621 };
622
623
624 } // namespace lyx
625
626 #endif