X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-tcl.git;a=blobdiff_plain;f=cdb%2Freadonly.c;h=7a3ba446439b825fa8b51c05ba62b48d486b69ff;hp=4cf8e2218b1a38dfb68e31fb49aa72650f910de7;hb=5dca360f2da544c9b6baf9d18ad8cd0b0e073e60;hpb=f16e3e0cf0a2b965643df01e24ef59e1393da78d diff --git a/cdb/readonly.c b/cdb/readonly.c index 4cf8e22..7a3ba44 100644 --- a/cdb/readonly.c +++ b/cdb/readonly.c @@ -1,18 +1,44 @@ -/**/ +/* + * cdb, cdb-wr - Tcl bindings for tinycdb and a journalling write extension + * Copyright 2006 Ian Jackson + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301, USA. + */ #include "chiark_tcl_cdb.h" -static void destroy_cdb_idtabcb(Tcl_Interp *ip, void *val) { abort(); } - -const IdDataSpec cdbtcl_databases= { - "cdb-db", "cdb-opendatabases-table", destroy_cdb_idtabcb -}; - typedef struct Ro { int ix, fd; struct cdb cdb; } Ro; +static void ro_close(Ro *ro) { + cdb_free(&ro->cdb); + close(ro->fd); +} + +static void destroy_cdb_idtabcb(Tcl_Interp *ip, void *ro_v) { + ro_close(ro_v); + TFREE(ro_v); +} + +const IdDataSpec cdbtcl_databases= { + "cdb-db", "cdb-opendatabases-table", destroy_cdb_idtabcb +}; + int cht_do_cdb_open(ClientData cd, Tcl_Interp *ip, const char *path, void **result) { Ro *ro; @@ -33,10 +59,9 @@ int cht_do_cdb_open(ClientData cd, Tcl_Interp *ip, } int cht_do_cdb_close(ClientData cd, Tcl_Interp *ip, void *ro_v) { - Ro *ro= ro_v; - cdb_free(&ro->cdb); - close(ro->fd); - TFREE(ro); + ro_close(ro_v); + cht_tabledataid_disposing(ip, ro_v, &cdbtcl_databases); + TFREE(ro_v); return TCL_OK; }