From 0d07bf44e79de72bae506584664e38d94dacb652 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Tue, 19 Aug 2008 12:01:13 +0000 Subject: 25490: make zties dynamic so there can be more than one gdbm handle in use at a time. --- ChangeLog | 3 +++ Src/Modules/db_gdbm.c | 50 +++++++++++++++++++++++++++++++++----------------- Src/zsh.h | 1 + 3 files changed, 37 insertions(+), 17 deletions(-) diff --git a/ChangeLog b/ChangeLog index e399e4c66..685d01133 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-08-19 Clint Adams + * 25490: Src/zsh.h, Src/Modules/db_gdbm.c: make zties dynamic so + there can be more than one gdbm handle in use at a time. + * 25489: Completion/Unix/Command/_git: remove cruft for "git octopus/octupus". diff --git a/Src/Modules/db_gdbm.c b/Src/Modules/db_gdbm.c index 9cc9648d1..2b06719c6 100644 --- a/Src/Modules/db_gdbm.c +++ b/Src/Modules/db_gdbm.c @@ -39,6 +39,8 @@ #include +static char *backtype = "db/gdbm"; + static const struct gsu_scalar gdbm_gsu = { gdbmgetfn, gdbmsetfn, gdbmunsetfn }; @@ -47,14 +49,13 @@ static struct builtin bintab[] = { BUILTIN("zuntie", 0, bin_zuntie, 1, -1, 0, NULL, NULL), }; -GDBM_FILE dbf = NULL; -Param tied_param; - /**/ static int bin_ztie(char *nam, char **args, Options ops, UNUSED(int func)) { char *resource_name, *pmname; + GDBM_FILE dbf = NULL; + Param tied_param; if(!OPT_ISSET(ops,'d')) { zwarnnam(nam, "you must pass `-d db/gdbm' to ztie", NULL); @@ -69,16 +70,11 @@ bin_ztie(char *nam, char **args, Options ops, UNUSED(int func)) * a registry. */ - if(dbf) { - zwarnnam(nam, "something is already ztied and this implementation is flawed", NULL); - return 1; - } - pmname = ztrdup(*args); resource_name = OPT_ARG(ops, 'f'); - if (!(tied_param = createspecialhash(pmname, &getgdbmnode, &scangdbmkeys, PM_SPECIAL | PM_HASHED))) { + if (!(tied_param = createspecialhash(pmname, &getgdbmnode, &scangdbmkeys, 0))) { zwarnnam(nam, "cannot create the requested parameter name", NULL); return 1; } @@ -89,6 +85,8 @@ bin_ztie(char *nam, char **args, Options ops, UNUSED(int func)) return 1; } + tied_param->u.hash->tmpdata = (void *)dbf; + return 0; } @@ -96,11 +94,19 @@ bin_ztie(char *nam, char **args, Options ops, UNUSED(int func)) static int bin_zuntie(char *nam, char **args, Options ops, UNUSED(int func)) { - paramtab->removenode(paramtab, tied_param->node.nam); - free(tied_param); - tied_param = NULL; + Param pm; + GDBM_FILE dbf; + + pm = (Param) paramtab->getnode(paramtab, args[0]); + if(!pm) { + zwarnnam(nam, "cannot untie %s", args[0]); + return 1; + } + + dbf = (GDBM_FILE)(pm->u.hash->tmpdata); gdbm_close(dbf); - dbf = NULL; +/* free(pm->u.hash->tmpdata); */ + paramtab->removenode(paramtab, pm->node.nam); return 0; } @@ -111,10 +117,12 @@ gdbmgetfn(Param pm) { datum key, content; int ret; + GDBM_FILE dbf; key.dptr = pm->node.nam; key.dsize = strlen(key.dptr) + 1; + dbf = (GDBM_FILE)(pm->u.hash->tmpdata); ret = gdbm_exists(dbf, key); if(ret) { content = gdbm_fetch(dbf, key); @@ -131,12 +139,14 @@ gdbmsetfn(Param pm, char **val) { datum key, content; int ret; + GDBM_FILE dbf; key.dptr = pm->node.nam; key.dsize = strlen(key.dptr) + 1; content.dptr = val; content.dsize = strlen(content.dptr) + 1; + dbf = (GDBM_FILE)(pm->u.hash->tmpdata); ret = gdbm_store(dbf, key, content, GDBM_REPLACE); } @@ -146,20 +156,22 @@ gdbmunsetfn(Param pm, int um) { datum key; int ret; + GDBM_FILE dbf; key.dptr = pm->node.nam; key.dsize = strlen(key.dptr) + 1; + dbf = (GDBM_FILE)(pm->u.hash->tmpdata); ret = gdbm_delete(dbf, key); } /**/ static HashNode -getgdbmnode(UNUSED(HashTable ht), const char *name) +getgdbmnode(HashTable ht, const char *name) { - int len, ret; + int len; char *nameu; - datum content, key; + datum key; Param pm = NULL; nameu = dupstring(name); @@ -170,16 +182,20 @@ getgdbmnode(UNUSED(HashTable ht), const char *name) pm->node.nam = nameu; pm->node.flags = PM_SCALAR; pm->gsu.s = &gdbm_gsu; + pm->u.hash = ht; return &pm->node; } /**/ static void -scangdbmkeys(UNUSED(HashTable ht), ScanFunc func, int flags) +scangdbmkeys(HashTable ht, ScanFunc func, int flags) { Param pm = NULL; datum key, content; + GDBM_FILE dbf; + + dbf = (GDBM_FILE)(ht->tmpdata); pm = (Param) hcalloc(sizeof(struct param)); diff --git a/Src/zsh.h b/Src/zsh.h index bff2aeb55..ca49c695c 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -979,6 +979,7 @@ struct hashtable { int hsize; /* size of nodes[] (number of hash values) */ int ct; /* number of elements */ HashNode *nodes; /* array of size hsize */ + void *tmpdata; /* HASHTABLE METHODS */ HashFunc hash; /* pointer to hash function for this table */ -- cgit 1.4.1