blob: ac3d68c071d66ffb95611702823a790a95b30c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef XFA_SRC_FDE_CSS_FDE_CSSCACHE_H_
#define XFA_SRC_FDE_CSS_FDE_CSSCACHE_H_
#include <map>
#include "xfa/src/fde/css/fde_css.h"
#include "xfa/src/fgas/crt/fgas_memory.h"
struct FDE_CSSCACHEITEM : public CFX_Target {
FDE_CSSCACHEITEM(IFDE_CSSStyleSheet* p);
~FDE_CSSCACHEITEM();
IFDE_CSSStyleSheet* pStylesheet;
FX_DWORD dwActivity;
};
class CFDE_CSSStyleSheetCache : public IFDE_CSSStyleSheetCache,
public CFX_Target {
public:
CFDE_CSSStyleSheetCache();
~CFDE_CSSStyleSheetCache();
virtual void Release() { delete this; }
virtual void SetMaxItems(int32_t iMaxCount = 5) {
FXSYS_assert(iMaxCount >= 3);
m_iMaxItems = iMaxCount;
}
virtual void AddStyleSheet(const CFX_ByteStringC& szKey,
IFDE_CSSStyleSheet* pStyleSheet);
virtual IFDE_CSSStyleSheet* GetStyleSheet(const CFX_ByteStringC& szKey) const;
virtual void RemoveStyleSheet(const CFX_ByteStringC& szKey);
protected:
void RemoveLowestActivityItem();
std::map<CFX_ByteString, FDE_CSSCACHEITEM*> m_Stylesheets;
IFX_MEMAllocator* m_pFixedStore;
int32_t m_iMaxItems;
};
struct FDE_CSSTAGCACHE : public CFX_Target {
public:
FDE_CSSTAGCACHE(FDE_CSSTAGCACHE* parent, IFDE_CSSTagProvider* tag);
FDE_CSSTAGCACHE(const FDE_CSSTAGCACHE& it);
FDE_CSSTAGCACHE* GetParent() const { return pParent; }
IFDE_CSSTagProvider* GetTag() const { return pTag; }
FX_DWORD HashID() const { return dwIDHash; }
FX_DWORD HashTag() const { return dwTagHash; }
int32_t CountHashClass() const { return dwClassHashs.GetSize(); }
void SetClassIndex(int32_t index) { iClassIndex = index; }
FX_DWORD HashClass() const {
return iClassIndex < dwClassHashs.GetSize()
? dwClassHashs.GetAt(iClassIndex)
: 0;
}
protected:
IFDE_CSSTagProvider* pTag;
FDE_CSSTAGCACHE* pParent;
FX_DWORD dwIDHash;
FX_DWORD dwTagHash;
int32_t iClassIndex;
CFDE_DWordArray dwClassHashs;
};
typedef CFX_ObjectStackTemplate<FDE_CSSTAGCACHE> CFDE_CSSTagStack;
class CFDE_CSSAccelerator : public IFDE_CSSAccelerator, public CFX_Target {
public:
virtual void OnEnterTag(IFDE_CSSTagProvider* pTag);
virtual void OnLeaveTag(IFDE_CSSTagProvider* pTag);
void Clear() { m_Stack.RemoveAll(); }
FDE_CSSTAGCACHE* GetTopElement() const { return m_Stack.GetTopElement(); }
protected:
CFDE_CSSTagStack m_Stack;
};
#endif // XFA_SRC_FDE_CSS_FDE_CSSCACHE_H_
|