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
123
124
|
/*
* Copyright (C) 2007 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IconRecord_h
#define IconRecord_h
#include "PageURLRecord.h"
#include "SharedBuffer.h"
#include <wtf/HashSet.h>
#include <wtf/RefCounted.h>
#include <wtf/text/StringHash.h>
#include <wtf/text/WTFString.h>
#if OS(SOLARIS)
#include <sys/types.h> // For time_t structure.
#endif
namespace WebCore {
class IconDataSnapshot;
class Image;
class IntSize;
class SQLDatabase;
enum ImageDataStatus {
ImageDataStatusPresent, ImageDataStatusMissing, ImageDataStatusUnknown
};
class IconSnapshot {
public:
IconSnapshot() : m_timestamp(0) { }
IconSnapshot(const String& iconURL, int timestamp, SharedBuffer* data)
: m_iconURL(iconURL)
, m_timestamp(timestamp)
, m_data(data)
{ }
const String& iconURL() const { return m_iconURL; }
int timestamp() const { return m_timestamp; }
SharedBuffer* data() const { return m_data.get(); }
private:
String m_iconURL;
int m_timestamp;
RefPtr<SharedBuffer> m_data;
};
class IconRecord : public RefCounted<IconRecord> {
friend class PageURLRecord;
public:
static Ref<IconRecord> create(const String& url)
{
return adoptRef(*new IconRecord(url));
}
~IconRecord();
time_t getTimestamp() { return m_stamp; }
void setTimestamp(time_t stamp) { m_stamp = stamp; }
void setImageData(PassRefPtr<SharedBuffer> data);
Image* image(const IntSize&);
String iconURL() { return m_iconURL; }
void loadImageFromResource(const char*);
ImageDataStatus imageDataStatus();
const HashSet<String>& retainingPageURLs() { return m_retainingPageURLs; }
IconSnapshot snapshot(bool forDeletion = false) const;
private:
IconRecord(const String& url);
String m_iconURL;
time_t m_stamp;
RefPtr<Image> m_image;
HashSet<String> m_retainingPageURLs;
// This allows us to cache whether or not a SiteIcon has had its data set yet
// This helps the IconDatabase know if it has to set the data on a new object or not,
// and also to determine if the icon is missing data or if it just hasn't been brought
// in from the DB yet
bool m_dataSet;
// FIXME - Right now WebCore::Image doesn't have a very good API for accessing multiple representations
// Even the NSImage way of doing things that we do in WebKit isn't very clean... once we come up with a
// better way of handling that, we'll likely have a map of size-to-images similar to below
// typedef HashMap<IntSize, Image*> SizeImageMap;
// SizeImageMap m_images;
};
} //namespace WebCore
#endif
|