2000-02-04 09:38:32 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file TextCache.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2000-02-04 09:38:32 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
|
|
#ifndef TEXT_CACHE_H
|
|
|
|
|
#define TEXT_CACHE_H
|
|
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
2001-12-08 14:20:11 +00:00
|
|
|
|
#include <iosfwd>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2003-05-23 13:54:09 +00:00
|
|
|
|
class Buffer;
|
|
|
|
|
class LyXText;
|
2001-12-08 14:20:11 +00:00
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
// This is only the very first implemetation and use of the TextCache,
|
|
|
|
|
// operations on it needs to be put into a class or a namespace, that part
|
|
|
|
|
// is _NOT_ finished so don't bother to come with too many comments on it
|
|
|
|
|
// (unless you have some nice ideas on where/how to do it)
|
|
|
|
|
//
|
|
|
|
|
// I think we need a global TextCache that is common for all BufferViews,
|
|
|
|
|
// also the BufferList needs access to the TextCache. Please tell if you
|
|
|
|
|
// don't agree.
|
|
|
|
|
//
|
|
|
|
|
// Q. What are we caching?
|
|
|
|
|
// A. We are caching the screen representations (LyXText) of the
|
2001-06-25 00:06:33 +00:00
|
|
|
|
// documents (Buffer,Paragraph) for specific BufferView widths.
|
2000-02-04 09:38:32 +00:00
|
|
|
|
// Q. Why the cache?
|
|
|
|
|
// A. It is not really needed, but it speeds things up a lot
|
|
|
|
|
// when you have more than one document loaded at once since a total
|
|
|
|
|
// rebreak (reformatting) need not be done when switching between
|
|
|
|
|
// documents. When the cache is in function a document only needs to be
|
|
|
|
|
// formatted upon loading and when the with of the BufferView changes.
|
|
|
|
|
// Later it will also be unneccessary to reformat when having two
|
|
|
|
|
// BufferViews of equal width with the same document, a simple copy
|
|
|
|
|
// of the LyXText structure will do.
|
|
|
|
|
// Invariant for the TextCache:
|
|
|
|
|
// - The buffer of the text in the TextCache _must_ exists
|
|
|
|
|
// in the bufferlist.
|
|
|
|
|
// - For a text in the TextCache there _must not_ be an equivalent
|
|
|
|
|
// text in any BufferView. (same buffer and width).
|
|
|
|
|
// Among others this mean:
|
|
|
|
|
// - When a document is closed all trace of it must be removed from
|
|
|
|
|
// the TextCache.
|
|
|
|
|
// Scenarios:
|
|
|
|
|
// I believe there are only three possible scenarios where the two first
|
|
|
|
|
// are also covered by the third.
|
|
|
|
|
// - The simplest scenario is what we have now, a single
|
2002-03-21 17:27:08 +00:00
|
|
|
|
// BufferView only.
|
2000-02-04 09:38:32 +00:00
|
|
|
|
// o Opening
|
|
|
|
|
// Nothing to do with the TextCache is done when opening a file.
|
|
|
|
|
// o Switching
|
|
|
|
|
// We switch from buffer A to buffer B.
|
|
|
|
|
// * A's text is cached in TextCache.
|
|
|
|
|
// * We make a search for a text in TextCache that fits B
|
|
|
|
|
// (same buffer and same width).
|
|
|
|
|
// o Horizontal resize
|
|
|
|
|
// If the BufferView's width (LyXView) is horizontally changed all
|
|
|
|
|
// the entries in the TextCache are deleted. (This causes
|
|
|
|
|
// reformat of all loaded documents when next viewed)
|
|
|
|
|
// o Close
|
|
|
|
|
// When a buffer is closed we don't have to do anything, because
|
|
|
|
|
// to close a single buffer it is required to only exist in the
|
|
|
|
|
// BufferView and not in the TextCache. Upon LFUN_QUIT we
|
|
|
|
|
// don't really care since everything is deleted anyway.
|
|
|
|
|
// - The next scenario is when we have several BufferViews (in one or
|
|
|
|
|
// more LyXViews) of equal width.
|
|
|
|
|
// o Opening
|
|
|
|
|
// Nothing to do with the TextCache is done when opening a file.
|
|
|
|
|
// o Switching
|
|
|
|
|
// We switch from buffer A to buffer B.
|
|
|
|
|
// * If A is in another Bufferview we do not put it into TextCache.
|
|
|
|
|
// else we put A into TextCache.
|
|
|
|
|
// * If B is viewed in another BufferView we make a copy of its
|
|
|
|
|
// text and use that, else we search in TextCache for a match.
|
|
|
|
|
// (same buffer same width)
|
|
|
|
|
// o Horizontal resize
|
|
|
|
|
// If the BufferView's width (LyXView) is horisontaly changed all
|
|
|
|
|
// the entries in the TextCache is deleted. (This causes
|
|
|
|
|
// reformat of all loaded documents when next viewed)
|
|
|
|
|
// o Close
|
|
|
|
|
// - The last scenario should cover both the previous ones, this time
|
|
|
|
|
// we have several BufferViews (in one or more LyXViews) with no
|
|
|
|
|
// limitations on width. (And if you wonder why the two other
|
|
|
|
|
// senarios are needed... I used them to get to this one.)
|
|
|
|
|
// o Opening
|
|
|
|
|
// Nothing to do with the TextCache is done when opening a file.
|
|
|
|
|
// o Switching
|
|
|
|
|
// We switch from buffer A to buffer B.
|
|
|
|
|
// o Horisontal rezize
|
|
|
|
|
// o Close
|
|
|
|
|
|
|
|
|
|
/** This class is used to cache generated LyXText's.
|
|
|
|
|
The LyXText's is used by the BufferView to visualize the contents
|
|
|
|
|
of a buffer and its paragraphs. Instead of deleting the LyXText when
|
|
|
|
|
we switch from one document to another we cache it here so that when
|
|
|
|
|
we switch back we do not have to reformat. This makes switching very
|
|
|
|
|
fast at the expense of a bit higher memory usage.
|
|
|
|
|
*/
|
|
|
|
|
class TextCache {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
|
typedef std::map<Buffer *, std::pair<int,LyXText *> > Cache;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
|
typedef Cache::value_type value_type;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
|
|
/** Returns a pointer to a LyXText that fits the provided buffer
|
|
|
|
|
and width. Of there is no match 0 is returned. */
|
2000-06-12 11:27:15 +00:00
|
|
|
|
LyXText * findFit(Buffer * b, int p);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
/** Lists all the LyXText's currently in the cache.
|
|
|
|
|
Uses msg as header for the list. */
|
2000-04-04 00:19:15 +00:00
|
|
|
|
void show(std::ostream & o, string const & msg);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
/// Gives info on a single LyXText (buffer and width)
|
2000-06-12 11:27:15 +00:00
|
|
|
|
static void show(std::ostream & o, value_type const &);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
/** Adds a LyXText to the cache iff its buffer is
|
|
|
|
|
present in bufferlist. */
|
2000-06-12 11:27:15 +00:00
|
|
|
|
void add(Buffer *, int witdth, LyXText *);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
/** Clears the cache. Deletes all LyXText's and releases
|
|
|
|
|
the allocated memory. */
|
|
|
|
|
void clear();
|
|
|
|
|
/// Removes all LyXText's that has buffer b from the TextCache
|
|
|
|
|
void removeAllWithBuffer(Buffer * b);
|
|
|
|
|
private:
|
|
|
|
|
/// The cache.
|
|
|
|
|
Cache cache;
|
|
|
|
|
};
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2000-02-04 09:38:32 +00:00
|
|
|
|
extern TextCache textcache;
|
|
|
|
|
#endif
|