pdf_pages_cache.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef PDF_PAGES_CACHE_H_
00028 #define PDF_PAGES_CACHE_H_
00029
00030 #include "log.h"
00031 #include "mutex.h"
00032
00033 #include "pdf_define.h"
00034 #include "pdf_page.h"
00035
00036 namespace pdf
00037 {
00038
00039
00040 class PDFPage;
00041 class PagesCache
00042 {
00043 public:
00044 PagesCache(void);
00045 ~PagesCache(void);
00046
00047
00048 bool reset(const unsigned int size);
00049
00050
00051 unsigned int size();
00052
00053
00054 void clear();
00055
00056
00057 void add_page(PagePtr p);
00058
00059
00060
00061 bool make_enough_memory(const int page_num, const int length);
00062
00063
00064 void clear_cached_bitmaps();
00065
00066
00067 PagePtr get_page(const size_t idx);
00068
00069
00070 void update_mem_usage(const int length);
00071
00072
00073 Mutex & get_mutex() { return cache_mutex; }
00074
00075 private:
00076
00077
00078 bool remove_page(const int page_num = -1);
00079
00080 private:
00081 typedef std::tr1::unordered_map<size_t, PagePtr> Pages;
00082 typedef Pages::iterator PagesIter;
00083
00084 private:
00085
00086 unsigned int size_limit;
00087
00088
00089 int total_length;
00090
00091
00092 Pages pages;
00093
00094
00095 Mutex cache_mutex;
00096 };
00097
00098 };
00099
00100 #endif //PDF_PAGES_CACHE_H_
00101