X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=fdb.php;h=230a83bbe706e809b12beab9b2502210f0f8332b;hb=c483b6d8ab1f6aa89c0b5b82d44cc76d29e99a62;hp=9eab198049dbfe80c417f9ac914882bf206f6c38;hpb=cf7fd682a5ec01f52585d3fc4b54aff342b65861;p=wfpl.git diff --git a/fdb.php b/fdb.php index 9eab198..230a83b 100644 --- a/fdb.php +++ b/fdb.php @@ -1,22 +1,9 @@ > 24) . chr(($int >> 16) & 0xff) . chr(($int >> 8) & 0xff) . chr($int & 0xff); -} - -# return a php number from the string you pass in. The first 4 bytes of the -# string are read in as a binary value in big-endian format. -function from_raw_int($quad) { - return (ord(substr($quad, 0, 1)) << 24) + (ord(substr($quad, 1, 1)) << 16) + (ord(substr($quad, 2, 1)) << 8) + ord(substr($quad, 3, 1)); -} - -function int_at($string, $index) { - return from_raw_int(substr($string, $index * 4, 4)); -} - -# remove the first 4 bytes of the string, and return them as an int -function pop_int(&$string) { - $int = from_raw_int(substr($string, 0, 4)); - $string = substr($string, 4); - return $int; -} - function fdb_fix_key($key) { - $key = ereg_replace('[^a-z0-9.-]', '_', strtolower($key)); - $key = ereg_replace('^[-.]', '_', strtolower($key)); + $key = preg_replace('|[^a-z0-9.-]|', '_', strtolower($key)); + $key = preg_replace('|^[-.]|', '_', strtolower($key)); return substr($key, 0, 32); } @@ -93,14 +59,7 @@ function fdb_geta($key) { if($data === false) { return false; } - $header_count = pop_int($data); - $out = array(); - while($header_count--) { - $size = pop_int($data); - $out[] = substr($data, 0, $size); - $data = substr($data, $size); - } - return $out; + return raw_to_array($data); } # returns: @@ -129,12 +88,16 @@ function fdb_set($key, $data) { if(!is_array($data)) { $data = array($data); } - $out = to_raw_int(count($data)); - foreach($data as $dat) { - $out .= to_raw_int(strlen($dat)); - $out .= $dat; + fdb_set_raw($key, array_to_raw($data)); +} + +function fdb_delete($key) { + $key = fdb_fix_key($key); + $path = fdb_get_dir() . "/$key"; + if(file_exists($path)) { + return unlink($path); } - fdb_set_raw($key, $out); + return false; } ?>