|  | /* | 
|  | * This file is part of the UCB release of Plan 9. It is subject to the license | 
|  | * terms in the LICENSE file found in the top-level directory of this | 
|  | * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No | 
|  | * part of the UCB release of Plan 9, including this file, may be copied, | 
|  | * modified, propagated, or distributed except according to the terms contained | 
|  | * in the LICENSE file. | 
|  | */ | 
|  | #include <stdlib.h> | 
|  |  | 
|  | #include <stdio.h> | 
|  | #include <parlib/parlib.h> | 
|  | #include <unistd.h> | 
|  | #include <signal.h> | 
|  | #include <fcntl.h> | 
|  | #include <iplib/iplib.h> | 
|  | #include <ndblib/ndb.h> | 
|  |  | 
|  | /* | 
|  | *  search for a tuple that has the given 'attr=val' and also 'rattr=x'. | 
|  | *  copy 'x' into 'buf' and return the whole tuple. | 
|  | * | 
|  | *  return 0 if not found. | 
|  | */ | 
|  | char* | 
|  | ndbgetvalue(struct ndb *db, struct ndbs *s, char *attr, char *val, char *rattr, | 
|  | struct ndbtuple **pp) | 
|  | { | 
|  | struct ndbtuple *t, *nt; | 
|  | char *rv; | 
|  | struct ndbs temps; | 
|  |  | 
|  | if(s == NULL) | 
|  | s = &temps; | 
|  | if(pp) | 
|  | *pp = NULL; | 
|  | t = ndbsearch(db, s, attr, val); | 
|  | while(t){ | 
|  | /* first look on same line (closer binding) */ | 
|  | nt = s->t; | 
|  | for(;;){ | 
|  | if(strcmp(rattr, nt->attr) == 0){ | 
|  | rv = strdup(nt->val); | 
|  | if(pp != NULL) | 
|  | *pp = t; | 
|  | else | 
|  | ndbfree(t); | 
|  | return rv; | 
|  | } | 
|  | nt = nt->line; | 
|  | if(nt == s->t) | 
|  | break; | 
|  | } | 
|  | /* search whole tuple */ | 
|  | for(nt = t; nt; nt = nt->entry){ | 
|  | if(strcmp(rattr, nt->attr) == 0){ | 
|  | rv = strdup(nt->val); | 
|  | if(pp != NULL) | 
|  | *pp = t; | 
|  | else | 
|  | ndbfree(t); | 
|  | return rv; | 
|  | } | 
|  | } | 
|  | ndbfree(t); | 
|  | t = ndbsnext(s, attr, val); | 
|  | } | 
|  | return NULL; | 
|  | } | 
|  |  | 
|  | struct ndbtuple* | 
|  | ndbgetval(struct ndb *db, | 
|  | struct ndbs *s, char *attr, char *val, char *rattr, char *buf) | 
|  | { | 
|  | struct ndbtuple *t; | 
|  | char *p; | 
|  |  | 
|  | p = ndbgetvalue(db, s, attr, val, rattr, &t); | 
|  | if(p == NULL){ | 
|  | if(buf != NULL) | 
|  | *buf = 0; | 
|  | } else { | 
|  | if(buf != NULL){ | 
|  | strncpy(buf, p, Ndbvlen-1); | 
|  | buf[Ndbvlen-1] = 0; | 
|  | } | 
|  | free(p); | 
|  | } | 
|  | ndbsetmalloctag(t, getcallerpc(&db)); | 
|  | return t; | 
|  | } |