Skip to content
Snippets Groups Projects
Commit 29a2a839 authored by Fredrik Noring's avatar Fredrik Noring
Browse files

Fixed consistency bug and enhanced error description.

Rev: lib/modules/Yabu.pmod/module.pmod:1.3
parent 57ad1e9c
No related branches found
No related tags found
No related merge requests found
// Yabu by Fredrik Noring // Yabu by Fredrik Noring
// $Id: module.pmod,v 1.2 1998/06/10 19:20:59 hubbe Exp $ // $Id: module.pmod,v 1.3 1998/12/12 01:06:50 noring Exp $
#if constant(thread_create) #if constant(thread_create)
#define THREAD_SAFE #define THREAD_SAFE
...@@ -194,6 +194,17 @@ class Chunk { ...@@ -194,6 +194,17 @@ class Chunk {
return x; return x;
} }
/* Perform consistency check. Returns 0 for failure, otherwise success. */
int consistency()
{
multiset k = mkmultiset(indices(keys));
foreach(indices(frees), int type)
foreach(frees[type], int offset)
if(k[encode_key(offset, type)])
return 0;
return 1;
}
array(string) list_keys() array(string) list_keys()
{ {
return indices(keys); return indices(keys);
...@@ -219,7 +230,8 @@ class Chunk { ...@@ -219,7 +230,8 @@ class Chunk {
mapping m = decode_chunk(file::read_at(offset, type)); mapping m = decode_chunk(file::read_at(offset, type));
if(m->size == 0) if(m->size == 0)
ERR("Cannot decode free chunk!"); ERR(sprintf("Cannot decode free chunk! [consistency status: %s]",
consistency()?"#OK":"#FAILURE"));
if(attributes) if(attributes)
return m; return m;
return m->entry; return m->entry;
...@@ -240,13 +252,15 @@ class Chunk { ...@@ -240,13 +252,15 @@ class Chunk {
mapping state(array|void almost_free) mapping state(array|void almost_free)
{ {
mapping m = copy_value(frees); mapping m_frees = copy_value(frees);
mapping m_keys = copy_value(keys);
foreach(almost_free||({}), string key) { foreach(almost_free||({}), string key) {
int offset, type; int offset, type;
DECODE_KEY(key, offset, type); DECODE_KEY(key, offset, type);
m[type] = (m[type]||({})) | ({ offset }); m_frees[type] = (m_frees[type]||({})) | ({ offset });
m_delete(m_keys, key);
} }
return copy_value(([ "eof":eof, "keys":keys, "frees":m ])); return copy_value(([ "eof":eof, "keys":m_keys, "frees":m_frees ]));
} }
void purge() void purge()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment