summaryrefslogtreecommitdiffstats
path: root/khtml/xml/dom_restyler.cpp
blob: 699a5ab5992e9ecfd36a364b97e2dc37f1521888 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * This file is part of the DOM implementation for KDE.
 *
 * Copyright (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#include "dom_restyler.h"
#include "dom_elementimpl.h"

namespace khtml {

DynamicDomRestyler::DynamicDomRestyler()
{
}

void DynamicDomRestyler::addDependency(ElementImpl* subject, ElementImpl* dependency, StructuralDependencyType type)
{
    assert(type < LastStructuralDependency);

    dependency_map[type].append(dependency, subject);
    reverse_map.append(subject,dependency);
}

void DynamicDomRestyler::removeDependency(ElementImpl* subject, ElementImpl* dependency, StructuralDependencyType type)
{
    dependency_map[type].remove(dependency, subject);
    // don't remove from reverse_map as there might be other depencies to the same element
}

void DynamicDomRestyler::removeDependencies(ElementImpl* subject, StructuralDependencyType type)
{
    KMultiMap<ElementImpl>::List* my_dependencies = reverse_map.tqfind(subject);

    if (!my_dependencies) return;

    for (my_dependencies->first(); my_dependencies->current() ; my_dependencies->next())
    {
        ElementImpl* e = my_dependencies->current();
        dependency_map[type].remove(e,subject);
    }

    // don't remove from reverse_map as there might be other depencies to the same elements
}

void DynamicDomRestyler::resetDependencies(ElementImpl* subject)
{
    KMultiMap<ElementImpl>::List* my_dependencies = reverse_map.tqfind(subject);

    if (!my_dependencies) return;

    for (my_dependencies->first(); my_dependencies->current() ; my_dependencies->next())
    {
        ElementImpl* e = my_dependencies->current();
        for (int type = 0; type < LastStructuralDependency; type++) {
            dependency_map[type].remove(e,subject);
        }
    }

    reverse_map.remove(subject);
}

void DynamicDomRestyler::restyleDepedent(ElementImpl* dependency, StructuralDependencyType type)
{
    assert(type < LastStructuralDependency);
    KMultiMap<ElementImpl>::List* dep = dependency_map[type].tqfind(dependency);

    if (!dep) return;

    // take copy as the restyle will change the list
    KMultiMap<ElementImpl>::List dependent(*dep);

    for (dependent.first(); dependent.current() ; dependent.next())
    {
//         kdDebug() << "Restyling dependent" << endl;
        dependent.current()->setChanged(true);
    }
}

void DynamicDomRestyler::dumpStats() const
{
/*
    kdDebug() << "Keys in structural dependencies: " << dependency_map[StructuralDependency].size() << endl;
    kdDebug() << "Keys in attribute dependencies: " << dependency_map[AttributeDependency].size() << endl;

    kdDebug() << "Keys in reverse map: " << reverse_map.size() << endl;
    */
}

void DynamicDomRestyler::addDependency(uint attrID, AttributeDependencyType type)
{
    assert(type < LastAttributeDependency);

    unsigned int hash = (attrID * 257) % 512;
    attribute_map[type][hash] = true;
}

bool DynamicDomRestyler::checkDependency(uint attrID, AttributeDependencyType type)
{
    assert(type < LastAttributeDependency);

    unsigned int hash = (attrID * 257) % 512;
    // ### gives false positives, but that's okay.
    return attribute_map[type][hash];
}

} // namespace