Add missing issue number in Misc/NEWS entry.
[python.git] / Modules / _sqlite / cache.c
blob85118fc78e49994c973d6d0ea3c37fd36b6c2efe
1 /* cache .c - a LRU cache
3 * Copyright (C) 2004-2007 Gerhard Häring <gh@ghaering.de>
5 * This file is part of pysqlite.
7 * This software is provided 'as-is', without any express or implied
8 * warranty. In no event will the authors be held liable for any damages
9 * arising from the use of this software.
11 * Permission is granted to anyone to use this software for any purpose,
12 * including commercial applications, and to alter it and redistribute it
13 * freely, subject to the following restrictions:
15 * 1. The origin of this software must not be misrepresented; you must not
16 * claim that you wrote the original software. If you use this software
17 * in a product, an acknowledgment in the product documentation would be
18 * appreciated but is not required.
19 * 2. Altered source versions must be plainly marked as such, and must not be
20 * misrepresented as being the original software.
21 * 3. This notice may not be removed or altered from any source distribution.
24 #include "cache.h"
25 #include <limits.h>
27 /* only used internally */
28 pysqlite_Node* pysqlite_new_node(PyObject* key, PyObject* data)
30 pysqlite_Node* node;
32 node = (pysqlite_Node*) (pysqlite_NodeType.tp_alloc(&pysqlite_NodeType, 0));
33 if (!node) {
34 return NULL;
37 Py_INCREF(key);
38 node->key = key;
40 Py_INCREF(data);
41 node->data = data;
43 node->prev = NULL;
44 node->next = NULL;
46 return node;
49 void pysqlite_node_dealloc(pysqlite_Node* self)
51 Py_DECREF(self->key);
52 Py_DECREF(self->data);
54 Py_TYPE(self)->tp_free((PyObject*)self);
57 int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs)
59 PyObject* factory;
60 int size = 10;
62 self->factory = NULL;
64 if (!PyArg_ParseTuple(args, "O|i", &factory, &size)) {
65 return -1;
68 /* minimum cache size is 5 entries */
69 if (size < 5) {
70 size = 5;
72 self->size = size;
73 self->first = NULL;
74 self->last = NULL;
76 self->mapping = PyDict_New();
77 if (!self->mapping) {
78 return -1;
81 Py_INCREF(factory);
82 self->factory = factory;
84 self->decref_factory = 1;
86 return 0;
89 void pysqlite_cache_dealloc(pysqlite_Cache* self)
91 pysqlite_Node* node;
92 pysqlite_Node* delete_node;
94 if (!self->factory) {
95 /* constructor failed, just get out of here */
96 return;
99 /* iterate over all nodes and deallocate them */
100 node = self->first;
101 while (node) {
102 delete_node = node;
103 node = node->next;
104 Py_DECREF(delete_node);
107 if (self->decref_factory) {
108 Py_DECREF(self->factory);
110 Py_DECREF(self->mapping);
112 Py_TYPE(self)->tp_free((PyObject*)self);
115 PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args)
117 PyObject* key = args;
118 pysqlite_Node* node;
119 pysqlite_Node* ptr;
120 PyObject* data;
122 node = (pysqlite_Node*)PyDict_GetItem(self->mapping, key);
123 if (node) {
124 /* an entry for this key already exists in the cache */
126 /* increase usage counter of the node found */
127 if (node->count < LONG_MAX) {
128 node->count++;
131 /* if necessary, reorder entries in the cache by swapping positions */
132 if (node->prev && node->count > node->prev->count) {
133 ptr = node->prev;
135 while (ptr->prev && node->count > ptr->prev->count) {
136 ptr = ptr->prev;
139 if (node->next) {
140 node->next->prev = node->prev;
141 } else {
142 self->last = node->prev;
144 if (node->prev) {
145 node->prev->next = node->next;
147 if (ptr->prev) {
148 ptr->prev->next = node;
149 } else {
150 self->first = node;
153 node->next = ptr;
154 node->prev = ptr->prev;
155 if (!node->prev) {
156 self->first = node;
158 ptr->prev = node;
160 } else {
161 /* There is no entry for this key in the cache, yet. We'll insert a new
162 * entry in the cache, and make space if necessary by throwing the
163 * least used item out of the cache. */
165 if (PyDict_Size(self->mapping) == self->size) {
166 if (self->last) {
167 node = self->last;
169 if (PyDict_DelItem(self->mapping, self->last->key) != 0) {
170 return NULL;
173 if (node->prev) {
174 node->prev->next = NULL;
176 self->last = node->prev;
177 node->prev = NULL;
179 Py_DECREF(node);
183 data = PyObject_CallFunction(self->factory, "O", key);
185 if (!data) {
186 return NULL;
189 node = pysqlite_new_node(key, data);
190 if (!node) {
191 return NULL;
193 node->prev = self->last;
195 Py_DECREF(data);
197 if (PyDict_SetItem(self->mapping, key, (PyObject*)node) != 0) {
198 Py_DECREF(node);
199 return NULL;
202 if (self->last) {
203 self->last->next = node;
204 } else {
205 self->first = node;
207 self->last = node;
210 Py_INCREF(node->data);
211 return node->data;
214 PyObject* pysqlite_cache_display(pysqlite_Cache* self, PyObject* args)
216 pysqlite_Node* ptr;
217 PyObject* prevkey;
218 PyObject* nextkey;
219 PyObject* fmt_args;
220 PyObject* template;
221 PyObject* display_str;
223 ptr = self->first;
225 while (ptr) {
226 if (ptr->prev) {
227 prevkey = ptr->prev->key;
228 } else {
229 prevkey = Py_None;
231 Py_INCREF(prevkey);
233 if (ptr->next) {
234 nextkey = ptr->next->key;
235 } else {
236 nextkey = Py_None;
238 Py_INCREF(nextkey);
240 fmt_args = Py_BuildValue("OOO", prevkey, ptr->key, nextkey);
241 if (!fmt_args) {
242 return NULL;
244 template = PyString_FromString("%s <- %s ->%s\n");
245 if (!template) {
246 Py_DECREF(fmt_args);
247 return NULL;
249 display_str = PyString_Format(template, fmt_args);
250 Py_DECREF(template);
251 Py_DECREF(fmt_args);
252 if (!display_str) {
253 return NULL;
255 PyObject_Print(display_str, stdout, Py_PRINT_RAW);
256 Py_DECREF(display_str);
258 Py_DECREF(prevkey);
259 Py_DECREF(nextkey);
261 ptr = ptr->next;
264 Py_INCREF(Py_None);
265 return Py_None;
268 static PyMethodDef cache_methods[] = {
269 {"get", (PyCFunction)pysqlite_cache_get, METH_O,
270 PyDoc_STR("Gets an entry from the cache or calls the factory function to produce one.")},
271 {"display", (PyCFunction)pysqlite_cache_display, METH_NOARGS,
272 PyDoc_STR("For debugging only.")},
273 {NULL, NULL}
276 PyTypeObject pysqlite_NodeType = {
277 PyVarObject_HEAD_INIT(NULL, 0)
278 MODULE_NAME "Node", /* tp_name */
279 sizeof(pysqlite_Node), /* tp_basicsize */
280 0, /* tp_itemsize */
281 (destructor)pysqlite_node_dealloc, /* tp_dealloc */
282 0, /* tp_print */
283 0, /* tp_getattr */
284 0, /* tp_setattr */
285 0, /* tp_compare */
286 0, /* tp_repr */
287 0, /* tp_as_number */
288 0, /* tp_as_sequence */
289 0, /* tp_as_mapping */
290 0, /* tp_hash */
291 0, /* tp_call */
292 0, /* tp_str */
293 0, /* tp_getattro */
294 0, /* tp_setattro */
295 0, /* tp_as_buffer */
296 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
297 0, /* tp_doc */
298 0, /* tp_traverse */
299 0, /* tp_clear */
300 0, /* tp_richcompare */
301 0, /* tp_weaklistoffset */
302 0, /* tp_iter */
303 0, /* tp_iternext */
304 0, /* tp_methods */
305 0, /* tp_members */
306 0, /* tp_getset */
307 0, /* tp_base */
308 0, /* tp_dict */
309 0, /* tp_descr_get */
310 0, /* tp_descr_set */
311 0, /* tp_dictoffset */
312 (initproc)0, /* tp_init */
313 0, /* tp_alloc */
314 0, /* tp_new */
315 0 /* tp_free */
318 PyTypeObject pysqlite_CacheType = {
319 PyVarObject_HEAD_INIT(NULL, 0)
320 MODULE_NAME ".Cache", /* tp_name */
321 sizeof(pysqlite_Cache), /* tp_basicsize */
322 0, /* tp_itemsize */
323 (destructor)pysqlite_cache_dealloc, /* tp_dealloc */
324 0, /* tp_print */
325 0, /* tp_getattr */
326 0, /* tp_setattr */
327 0, /* tp_compare */
328 0, /* tp_repr */
329 0, /* tp_as_number */
330 0, /* tp_as_sequence */
331 0, /* tp_as_mapping */
332 0, /* tp_hash */
333 0, /* tp_call */
334 0, /* tp_str */
335 0, /* tp_getattro */
336 0, /* tp_setattro */
337 0, /* tp_as_buffer */
338 Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
339 0, /* tp_doc */
340 0, /* tp_traverse */
341 0, /* tp_clear */
342 0, /* tp_richcompare */
343 0, /* tp_weaklistoffset */
344 0, /* tp_iter */
345 0, /* tp_iternext */
346 cache_methods, /* tp_methods */
347 0, /* tp_members */
348 0, /* tp_getset */
349 0, /* tp_base */
350 0, /* tp_dict */
351 0, /* tp_descr_get */
352 0, /* tp_descr_set */
353 0, /* tp_dictoffset */
354 (initproc)pysqlite_cache_init, /* tp_init */
355 0, /* tp_alloc */
356 0, /* tp_new */
357 0 /* tp_free */
360 extern int pysqlite_cache_setup_types(void)
362 int rc;
364 pysqlite_NodeType.tp_new = PyType_GenericNew;
365 pysqlite_CacheType.tp_new = PyType_GenericNew;
367 rc = PyType_Ready(&pysqlite_NodeType);
368 if (rc < 0) {
369 return rc;
372 rc = PyType_Ready(&pysqlite_CacheType);
373 return rc;