]>
Dogcows Code - chaz/openbox/blob - obrender/imagecache.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 imagecache.c for the Openbox window manager
4 Copyright (c) 2008 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
20 #include "imagecache.h"
23 static gboolean
RrImagePicEqual(const RrImagePic
*p1
,
24 const RrImagePic
*p2
);
26 RrImageCache
* RrImageCacheNew(gint max_resized_saved
)
30 g_assert(max_resized_saved
>= 0);
32 self
= g_slice_new(RrImageCache
);
34 self
->max_resized_saved
= max_resized_saved
;
35 self
->pic_table
= g_hash_table_new((GHashFunc
)RrImagePicHash
,
36 (GEqualFunc
)RrImagePicEqual
);
37 self
->name_table
= g_hash_table_new(g_str_hash
, g_str_equal
);
41 void RrImageCacheRef(RrImageCache
*self
)
46 void RrImageCacheUnref(RrImageCache
*self
)
48 if (self
&& --self
->ref
== 0) {
49 g_assert(g_hash_table_size(self
->pic_table
) == 0);
50 g_hash_table_unref(self
->pic_table
);
51 self
->pic_table
= NULL
;
53 g_assert(g_hash_table_size(self
->name_table
) == 0);
54 g_hash_table_destroy(self
->name_table
);
55 self
->name_table
= NULL
;
57 g_slice_free(RrImageCache
, self
);
61 RrImage
* RrImageCacheFindName(RrImageCache
*self
, const gchar
*name
)
63 return g_hash_table_lookup(self
->name_table
, name
);
66 /*! Finds an image in the cache, if it is already in there */
67 RrImage
* RrImageCacheFind(RrImageCache
*self
,
68 RrPixel32
*data
, gint w
, gint h
)
72 RrImagePicInit(&pic
, NULL
, w
, h
, data
);
73 return g_hash_table_lookup(self
->pic_table
, &pic
);
76 #define hashsize(n) ((RrPixel32)1<<(n))
77 #define hashmask(n) (hashsize(n)-1)
78 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
79 /* mix -- mix 3 32-bit values reversibly. */
82 a -= c; a ^= rot(c, 4); c += b; \
83 b -= a; b ^= rot(a, 6); a += c; \
84 c -= b; c ^= rot(b, 8); b += a; \
85 a -= c; a ^= rot(c,16); c += b; \
86 b -= a; b ^= rot(a,19); a += c; \
87 c -= b; c ^= rot(b, 4); b += a; \
89 /* final -- final mixing of 3 32-bit values (a,b,c) into c */
90 #define final(a,b,c) \
92 c ^= b; c -= rot(b,14); \
93 a ^= c; a -= rot(c,11); \
94 b ^= a; b -= rot(a,25); \
95 c ^= b; c -= rot(b,16); \
96 a ^= c; a -= rot(c,4); \
97 b ^= a; b -= rot(a,14); \
98 c ^= b; c -= rot(b,24); \
101 /* This is a fast, reversable hash function called "lookup3", found here:
102 http://burtleburtle.net/bob/c/lookup3.c, by Bob Jenkins
104 This hashing algorithm is "reversible", that is, not cryptographically
105 secure at all. But we don't care about that, we just want something to
106 tell when images are the same or different relatively quickly.
108 guint32
hashword(const guint32
*key
, gint length
, guint32 initval
)
112 /* Set up the internal state */
113 a
= b
= c
= 0xdeadbeef + (((guint32
)length
)<<2) + initval
;
115 /* handle most of the key */
126 /* handle the last 3 guint32's */
127 switch(length
) /* all the case statements fall through */
133 case 0: /* case 0: nothing left to add */
136 /* report the result */
140 /*! This is some arbitrary initial value for the hashing function. It's
141 constant so that you get the same result from the same data each time.
143 #define HASH_INITVAL 0xf00d
145 guint
RrImagePicHash(const RrImagePic
*p
)
147 return hashword(p
->data
, p
->width
* p
->height
, HASH_INITVAL
);
150 static gboolean
RrImagePicEqual(const RrImagePic
*p1
,
151 const RrImagePic
*p2
)
153 return p1
->width
== p2
->width
&& p1
->height
== p2
->height
&&
This page took 0.039635 seconds and 4 git commands to generate.