mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
ndbquery: compatibility with ndb/query
Added the -m and -a flags to ndbquery as in Plan 9's ndb/query.
This commit is contained in:
parent
a2567fcac9
commit
89137059ed
1 changed files with 84 additions and 53 deletions
|
@ -3,16 +3,26 @@
|
|||
#include <bio.h>
|
||||
#include <ndb.h>
|
||||
|
||||
static int all, multiple;
|
||||
|
||||
/*
|
||||
* search the database for matches
|
||||
*/
|
||||
void
|
||||
usage(void)
|
||||
{
|
||||
fprint(2, "usage: query attr value [returned attribute]\n");
|
||||
fprint(2, "usage: ndbquery [-am] [-f ndbfile] attr value [returned attribute]\n");
|
||||
exits("usage");
|
||||
}
|
||||
|
||||
static void
|
||||
prmatch(Ndbtuple *nt, char *rattr)
|
||||
{
|
||||
for(; nt; nt = nt->entry)
|
||||
if(strcmp(nt->attr, rattr) == 0)
|
||||
print("%s\n", nt->val);
|
||||
}
|
||||
|
||||
void
|
||||
search(Ndb *db, char *attr, char *val, char *rattr)
|
||||
{
|
||||
|
@ -21,15 +31,30 @@ search(Ndb *db, char *attr, char *val, char *rattr)
|
|||
Ndbtuple *nt;
|
||||
char *p;
|
||||
|
||||
if(rattr){
|
||||
p = ndbgetvalue(db, &s, attr, val, rattr, nil);
|
||||
if(p){
|
||||
if(rattr && !all){
|
||||
p = ndbgetvalue(db, &s, attr, val, rattr, &t);
|
||||
if(multiple)
|
||||
prmatch(t, rattr);
|
||||
else if(p){
|
||||
print("%s\n", p);
|
||||
}
|
||||
ndbfree(t);
|
||||
free(p);
|
||||
return;
|
||||
}
|
||||
|
||||
/* all entries with matching rattrs */
|
||||
if(rattr){
|
||||
t = ndbsearch(db, &s, attr, val);
|
||||
while(t != nil){
|
||||
prmatch(t, rattr);
|
||||
ndbfree(t);
|
||||
t = ndbsnext(&s, attr, val);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
/* all entries */
|
||||
t = ndbsearch(db, &s, attr, val);
|
||||
while(t){
|
||||
for(nt = t; nt; nt = nt->entry)
|
||||
|
@ -49,6 +74,12 @@ main(int argc, char **argv)
|
|||
int reps = 1;
|
||||
|
||||
ARGBEGIN{
|
||||
case 'a':
|
||||
all++;
|
||||
break;
|
||||
case 'm':
|
||||
multiple++;
|
||||
break;
|
||||
case 'f':
|
||||
dbfile = ARGF();
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue