]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-not.c
SearchCtx should contain 'type' - this is to make life easier when defining new searc...
[irc/quakenet/newserv.git] / newsearch / ns-not.c
CommitLineData
c86edd1d
Q
1/*
2 * NOT functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
c8be5183
CP
10void not_free(searchCtx *ctx, struct searchNode *thenode);
11void *not_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
c86edd1d 12
f33f3f52 13struct searchNode *not_parse(searchCtx *ctx, int argc, char **argv) {
c86edd1d
Q
14 searchNode *thenode, *subnode;
15
16 if (argc!=1) {
17 parseError="not: usage: not (term)";
18 return NULL;
19 }
20
21 /* Allocate our actual node */
9ce4f0be
IB
22 if (!(thenode=(searchNode *)malloc(sizeof(searchNode)))) {
23 parseError = "malloc: could not allocate memory for this search.";
24 return NULL;
25 }
c86edd1d
Q
26
27 thenode->returntype = RETURNTYPE_BOOL;
28 thenode->exe = not_exe;
29 thenode->free = not_free;
30
f33f3f52 31 subnode=ctx->parser(ctx, argv[0]); /* Propogate the search type */
c86edd1d
Q
32
33 if (!subnode) {
34 free(thenode);
35 return NULL;
36 }
37
c7f7a584 38 /* Our subnode needs to return a BOOL */
c8be5183 39 subnode=coerceNode(ctx, subnode, RETURNTYPE_BOOL);
c7f7a584 40
c86edd1d
Q
41 thenode->localdata=(void *)subnode;
42
43 return thenode;
44}
45
c8be5183 46void not_free(searchCtx *ctx, struct searchNode *thenode) {
c86edd1d
Q
47 struct searchNode *subnode;
48 subnode=thenode->localdata;
49
c8be5183 50 (subnode->free)(ctx, subnode);
c86edd1d
Q
51 free(thenode);
52}
53
c8be5183 54void *not_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
c86edd1d
Q
55 struct searchNode *subnode;
56
57 subnode=thenode->localdata;
58
c8be5183 59 if ((subnode->exe)(ctx, subnode, theinput)) {
c7f7a584 60 return (void *)0;
61 } else {
62 return (void *)1;
c86edd1d 63 }
c86edd1d 64}