summaryrefslogtreecommitdiff
path: root/xfa/src/fdp/src/css/fde_csscache.h
blob: 82c0e4f7e0f4d81c656489195dd9651eb23bb05e (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
85
86
87
88
89
90
91
92
93
94
95
96
97
// 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 _FDE_CSSCACHE
#define _FDE_CSSCACHE
typedef struct _FDE_CSSCACHEITEM : public CFX_Target {
    _FDE_CSSCACHEITEM(IFDE_CSSStyleSheet *p);
    ~_FDE_CSSCACHEITEM();
    IFDE_CSSStyleSheet				*pStylesheet;
    FX_DWORD						dwActivity;
} FDE_CSSCACHEITEM, * FDE_LPCSSCACHEITEM;
class CFDE_CSSStyleSheetCache : public IFDE_CSSStyleSheetCache, public CFX_ThreadLock, public CFX_Target
{
public:
    CFDE_CSSStyleSheetCache();
    ~CFDE_CSSStyleSheetCache();
    virtual void					Release()
    {
        FDE_Delete this;
    }

    virtual void					SetMaxItems(int32_t iMaxCount = 5)
    {
        FXSYS_assert(iMaxCount >= 3);
        m_iMaxItems = iMaxCount;
    }

    virtual void					AddStyleSheet(FX_BSTR szKey, IFDE_CSSStyleSheet *pStyleSheet);
    virtual IFDE_CSSStyleSheet*		GetStyleSheet(FX_BSTR szKey) const;
    virtual void					RemoveStyleSheet(FX_BSTR szKey);
protected:
    void							RemoveLowestActivityItem();
    CFX_MapByteStringToPtr			m_Stylesheets;
    IFX_MEMAllocator				*m_pFixedStore;
    int32_t						m_iMaxItems;
};
typedef 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;
} FDE_CSSTAGCACHE, * FDE_LPCSSTAGCACHE;
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_LPCSSTAGCACHE				GetTopElement()	const
    {
        return m_Stack.GetTopElement();
    }
protected:
    CFDE_CSSTagStack				m_Stack;
};
#endif