summaryrefslogtreecommitdiffstats
path: root/nss_expr.c
blob: 22da3d69c0cd335a543695473676634c09b35db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Copyright 2001-2004 The Apache Software Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "mod_nss.h"

/*  _________________________________________________________________
**
**  Expression Handling
**  _________________________________________________________________
*/

nss_expr_info_type nss_expr_info;
char              *nss_expr_error;

nss_expr *nss_expr_comp(apr_pool_t *p, char *expr)
{
    nss_expr_info.pool       = p;
    nss_expr_info.inputbuf   = expr;
    nss_expr_info.inputlen   = strlen(expr);
    nss_expr_info.inputptr   = nss_expr_info.inputbuf;
    nss_expr_info.expr       = FALSE;

    nss_expr_error = NULL;
    if (nss_expr_yyparse())
        return NULL;
    return nss_expr_info.expr;
}

char *nss_expr_get_error(void)
{
    if (nss_expr_error == NULL)
        return "";
    return nss_expr_error;
}

nss_expr *nss_expr_make(nss_expr_node_op op, void *a1, void *a2)
{
    nss_expr *node;

    node = (nss_expr *)apr_palloc(nss_expr_info.pool, sizeof(nss_expr));
    node->node_op   = op;
    node->node_arg1 = (char *)a1;
    node->node_arg2 = (char *)a2;
    return node;
}

int nss_expr_exec(request_rec *r, nss_expr *expr)
{
    BOOL rc;

    rc = nss_expr_eval(r, expr);
    if (nss_expr_error != NULL)
        return (-1);
    else
        return (rc ? 1 : 0);
}