123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881 |
- %{
- /* Written by Pace Willisson (pace@blitz.com)
- * and placed in the public domain.
- *
- * Largely rewritten by J.T. Conklin (jtc@wimsey.com)
- *
- * $FreeBSD: src/bin/expr/expr.y,v 1.16 2000/07/22 10:59:36 se Exp $
- */
- #include <sys/types.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <locale.h>
- #include <ctype.h>
- #include <err.h>
- #include <errno.h>
- #include <regex.h>
- #include <limits.h>
- #include <asterisk/ast_expr.h>
- #include <asterisk/logger.h>
- #ifdef LONG_LONG_MIN
- #define QUAD_MIN LONG_LONG_MIN
- #endif
- #ifdef LONG_LONG_MAX
- #define QUAD_MAX LONG_LONG_MAX
- #endif
- # if ! defined(QUAD_MIN)
- # define QUAD_MIN (-0x7fffffffffffffffL-1)
- # endif
- # if ! defined(QUAD_MAX)
- # define QUAD_MAX (0x7fffffffffffffffL)
- # endif
- #define YYPARSE_PARAM kota
- #define YYLEX_PARAM kota
- /* #define ast_log fprintf
- #define LOG_WARNING stderr */
-
- enum valtype {
- integer, numeric_string, string
- } ;
- struct val {
- enum valtype type;
- union {
- char *s;
- quad_t i;
- } u;
- } ;
- struct parser_control {
- struct val *result;
- int pipa;
- char *arg_orig;
- char *argv;
- char *ptrptr;
- int firsttoken;
- } ;
- static int chk_div __P((quad_t, quad_t));
- static int chk_minus __P((quad_t, quad_t, quad_t));
- static int chk_plus __P((quad_t, quad_t, quad_t));
- static int chk_times __P((quad_t, quad_t, quad_t));
- static void free_value __P((struct val *));
- static int is_zero_or_null __P((struct val *));
- static int isstring __P((struct val *));
- static struct val *make_integer __P((quad_t));
- static struct val *make_str __P((const char *));
- static struct val *op_and __P((struct val *, struct val *));
- static struct val *op_colon __P((struct val *, struct val *));
- static struct val *op_div __P((struct val *, struct val *));
- static struct val *op_eq __P((struct val *, struct val *));
- static struct val *op_ge __P((struct val *, struct val *));
- static struct val *op_gt __P((struct val *, struct val *));
- static struct val *op_le __P((struct val *, struct val *));
- static struct val *op_lt __P((struct val *, struct val *));
- static struct val *op_minus __P((struct val *, struct val *));
- static struct val *op_ne __P((struct val *, struct val *));
- static struct val *op_or __P((struct val *, struct val *));
- static struct val *op_plus __P((struct val *, struct val *));
- static struct val *op_rem __P((struct val *, struct val *));
- static struct val *op_times __P((struct val *, struct val *));
- static quad_t to_integer __P((struct val *));
- static void to_string __P((struct val *));
- /* uh, if I want to predeclare yylex with a YYLTYPE, I have to predeclare the yyltype... sigh */
- typedef struct yyltype
- {
- int first_line;
- int first_column;
- int last_line;
- int last_column;
- } yyltype;
- # define YYLTYPE yyltype
- # define YYLTYPE_IS_TRIVIAL 1
- static int ast_yyerror __P((const char *,YYLTYPE *, struct parser_control *));
- #define ast_yyerror(x) ast_yyerror(x,&yyloc,kota)
- %}
- %pure-parser
- %locations
- /* %debug for when you are having big problems */
- /* %name-prefix="ast_yy" */
- %union
- {
- struct val *val;
- }
- %{
- static int ast_yylex __P((YYSTYPE *, YYLTYPE *, struct parser_control *));
- %}
- %left <val> '|'
- %left <val> '&'
- %left <val> '=' '>' '<' GE LE NE
- %left <val> '+' '-'
- %left <val> '*' '/' '%'
- %left <val> ':'
- %token <val> TOKEN
- %type <val> start expr
- %%
- start: expr { ((struct parser_control *)kota)->result = $$; }
- ;
- expr: TOKEN
- | '(' expr ')' { $$ = $2; @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '|' expr { $$ = op_or ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '&' expr { $$ = op_and ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '=' expr { $$ = op_eq ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '>' expr { $$ = op_gt ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '<' expr { $$ = op_lt ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr GE expr { $$ = op_ge ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr LE expr { $$ = op_le ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr NE expr { $$ = op_ne ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '+' expr { $$ = op_plus ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '-' expr { $$ = op_minus ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '*' expr { $$ = op_times ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '/' expr { $$ = op_div ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr '%' expr { $$ = op_rem ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- | expr ':' expr { $$ = op_colon ($1, $3); @$.first_column = @1.first_column; @$.last_column = @3.last_column; @$.first_line=0; @$.last_line=0;}
- ;
- %%
- static struct val *
- make_integer (i)
- quad_t i;
- {
- struct val *vp;
- vp = (struct val *) malloc (sizeof (*vp));
- if (vp == NULL) {
- ast_log(LOG_WARNING, "malloc() failed\n");
- return(NULL);
- }
- vp->type = integer;
- vp->u.i = i;
- return vp;
- }
- static struct val *
- make_str (s)
- const char *s;
- {
- struct val *vp;
- size_t i;
- int isint;
- vp = (struct val *) malloc (sizeof (*vp));
- if (vp == NULL || ((vp->u.s = strdup (s)) == NULL)) {
- ast_log(LOG_WARNING,"malloc() failed\n");
- return(NULL);
- }
- for(i = 1, isint = isdigit(s[0]) || s[0] == '-';
- isint && i < strlen(s);
- i++)
- {
- if(!isdigit(s[i]))
- isint = 0;
- }
- if (isint)
- vp->type = numeric_string;
- else
- vp->type = string;
- return vp;
- }
- static void
- free_value (vp)
- struct val *vp;
- {
- if (vp==NULL) {
- return;
- }
- if (vp->type == string || vp->type == numeric_string)
- free (vp->u.s);
- free (vp);
- }
- static quad_t
- to_integer (vp)
- struct val *vp;
- {
- quad_t i;
- if (vp == NULL) {
- ast_log(LOG_WARNING,"vp==NULL in to_integer()\n");
- return(0);
- }
- if (vp->type == integer)
- return 1;
- if (vp->type == string)
- return 0;
- /* vp->type == numeric_string, make it numeric */
- errno = 0;
- i = strtoq(vp->u.s, (char**)NULL, 10);
- if (errno != 0) {
- free(vp->u.s);
- ast_log(LOG_WARNING,"overflow\n");
- return(0);
- }
- free (vp->u.s);
- vp->u.i = i;
- vp->type = integer;
- return 1;
- }
- static void
- to_string (vp)
- struct val *vp;
- {
- char *tmp;
- if (vp->type == string || vp->type == numeric_string)
- return;
- tmp = malloc ((size_t)25);
- if (tmp == NULL) {
- ast_log(LOG_WARNING,"malloc() failed\n");
- return;
- }
- sprintf (tmp, "%lld", (long long)vp->u.i);
- vp->type = string;
- vp->u.s = tmp;
- }
- static int
- isstring (vp)
- struct val *vp;
- {
- /* only TRUE if this string is not a valid integer */
- return (vp->type == string);
- }
- static int
- ast_yylex (YYSTYPE *lvalp, YYLTYPE *yylloc, struct parser_control *karoto)
- {
- char *p=0;
- char *t1=0;
- char savep = 0;
- char *savepp = 0;
-
- if (karoto->firsttoken==1) {
- t1 = karoto->argv;
- karoto->firsttoken = 0;
- } else {
- t1 = karoto->ptrptr;
- }
-
- while(*t1 && *t1 == ' ' ) /* we can remove worries about leading/multiple spaces being present */
- t1++;
- karoto->ptrptr = t1;
- yylloc->first_column = t1 - karoto->argv;
-
- while( *t1 && *t1 != ' ' && *t1 != '"') /* find the next space or quote */
- t1++;
- if( *t1 == ' ' )
- {
- *t1 = 0;
- p = karoto->ptrptr;
- karoto->ptrptr = t1+1;
- yylloc->last_column = t1 - karoto->argv;
- }
- else if (*t1 == '"' )
- {
- /* opening quote. find the closing quote */
- char *t2=t1+1;
- while( *t2 && *t2 != '"')
- t2++;
- if( *t2 == '"' )
- {
- if( *(t2+1) == ' ' || *(t2+1) == 0 )
- {
- if( *(t2+1) )
- {
- *(t2+1) = 0;
- karoto->ptrptr = t2+2;
- }
- else
- {
- karoto->ptrptr = t2+1;
- }
- }
- else
- {
- /* hmmm. what if another token is here? */
- /* maybe we can insert a space? */
- savep = *(t2+1);
- savepp = t2+1;
- *(t2+1) = 0;
- karoto->ptrptr = t2+1;
- }
- p = t1;
- }
- else
- {
- /* NOT GOOD -- no closing quote! */
- p = t1;
- karoto->ptrptr = t2;
- }
- yylloc->last_column = t2 - karoto->argv;
- }
- else if( *t1 == 0 )
- {
- if( t1 != karoto->ptrptr )
- {
- /* this is the last token */
- p = karoto->ptrptr;
- karoto->ptrptr = t1;
- }
- else
- {
- /* we are done. That was quick */
- p = karoto->ptrptr;
- yylloc->last_column = t1 - karoto->argv;
- }
- }
- if( *p == 0 )
- p = 0;
-
- if (p==NULL) {
- return (0);
- }
- if (strlen (p) == 1) {
- if (strchr ("|&=<>+-*/%:()", *p))
- return (*p);
- } else if (strlen (p) == 2 && p[1] == '=') {
- switch (*p) {
- case '>': return (GE);
- case '<': return (LE);
- case '!': return (NE);
- }
- }
- lvalp->val = make_str (p);
- if( savep )
- {
- *savepp = savep; /* restore the null terminated string */
- savepp = 0;
- savep = 0;
- }
- return (TOKEN);
- }
- static int
- is_zero_or_null (vp)
- struct val *vp;
- {
- if (vp->type == integer) {
- return (vp->u.i == 0);
- } else {
- return (*vp->u.s == 0 || (to_integer (vp) && vp->u.i == 0));
- }
- /* NOTREACHED */
- }
- char *ast_expr (char *arg)
- {
- struct parser_control karoto;
- char *kota;
- char *pirouni;
-
- kota=strdup(arg);
- karoto.result = NULL;
- karoto.firsttoken=1;
- karoto.argv=kota;
- karoto.arg_orig = arg;
- /* ast_yydebug = 1; */
-
- ast_yyparse ((void *)&karoto);
- free(kota);
- if (karoto.result==NULL) {
- pirouni=strdup("0");
- return(pirouni);
- } else {
- if (karoto.result->type == integer) {
- pirouni=malloc(256);
- sprintf (pirouni,"%lld", (long long)karoto.result->u.i);
- }
- else {
- pirouni=strdup(karoto.result->u.s);
- }
- free(karoto.result);
- }
- return(pirouni);
- }
- #ifdef STANDALONE
- int main(int argc,char **argv) {
- char *s;
- s=ast_expr(argv[1]);
- printf("=====%s======\n",s);
- }
- #endif
- #undef ast_yyerror
- #define ast_yyerror(x) ast_yyerror(x, YYLTYPE *yylloc, struct parser_control *karoto)
- static int
- ast_yyerror (const char *s)
- {
- char spacebuf[8000]; /* best safe than sorry */
- char spacebuf2[8000]; /* best safe than sorry */
- int i=0;
- spacebuf[0] = 0;
-
- if( yylloc->first_column > 7990 ) /* if things get out of whack, why crash? */
- yylloc->first_column = 7990;
- if( yylloc->last_column > 7990 )
- yylloc->last_column = 7990;
- for(i=0;i<yylloc->first_column;i++) spacebuf[i] = ' ';
- for( ;i<yylloc->last_column;i++) spacebuf[i] = '^';
- spacebuf[i] = 0;
- for(i=0;i<karoto->ptrptr-karoto->argv;i++) spacebuf2[i] = ' ';
- spacebuf2[i++]='^';
- spacebuf2[i]= 0;
- ast_log(LOG_WARNING,"ast_yyerror(): syntax error: %s; Input:\n%s\n%s\n%s\n",s,
- karoto->arg_orig,spacebuf,spacebuf2);
- return(0);
- }
- static struct val *
- op_or (a, b)
- struct val *a, *b;
- {
- if (is_zero_or_null (a)) {
- free_value (a);
- return (b);
- } else {
- free_value (b);
- return (a);
- }
- }
-
- static struct val *
- op_and (a, b)
- struct val *a, *b;
- {
- if (is_zero_or_null (a) || is_zero_or_null (b)) {
- free_value (a);
- free_value (b);
- return (make_integer ((quad_t)0));
- } else {
- free_value (b);
- return (a);
- }
- }
- static struct val *
- op_eq (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (isstring (a) || isstring (b)) {
- to_string (a);
- to_string (b);
- r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) == 0));
- } else {
- (void)to_integer(a);
- (void)to_integer(b);
- r = make_integer ((quad_t)(a->u.i == b->u.i));
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static struct val *
- op_gt (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (isstring (a) || isstring (b)) {
- to_string (a);
- to_string (b);
- r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) > 0));
- } else {
- (void)to_integer(a);
- (void)to_integer(b);
- r = make_integer ((quad_t)(a->u.i > b->u.i));
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static struct val *
- op_lt (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (isstring (a) || isstring (b)) {
- to_string (a);
- to_string (b);
- r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) < 0));
- } else {
- (void)to_integer(a);
- (void)to_integer(b);
- r = make_integer ((quad_t)(a->u.i < b->u.i));
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static struct val *
- op_ge (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (isstring (a) || isstring (b)) {
- to_string (a);
- to_string (b);
- r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) >= 0));
- } else {
- (void)to_integer(a);
- (void)to_integer(b);
- r = make_integer ((quad_t)(a->u.i >= b->u.i));
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static struct val *
- op_le (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (isstring (a) || isstring (b)) {
- to_string (a);
- to_string (b);
- r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) <= 0));
- } else {
- (void)to_integer(a);
- (void)to_integer(b);
- r = make_integer ((quad_t)(a->u.i <= b->u.i));
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static struct val *
- op_ne (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (isstring (a) || isstring (b)) {
- to_string (a);
- to_string (b);
- r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) != 0));
- } else {
- (void)to_integer(a);
- (void)to_integer(b);
- r = make_integer ((quad_t)(a->u.i != b->u.i));
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static int
- chk_plus (a, b, r)
- quad_t a, b, r;
- {
- /* sum of two positive numbers must be positive */
- if (a > 0 && b > 0 && r <= 0)
- return 1;
- /* sum of two negative numbers must be negative */
- if (a < 0 && b < 0 && r >= 0)
- return 1;
- /* all other cases are OK */
- return 0;
- }
- static struct val *
- op_plus (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (!to_integer (a)) {
- ast_log(LOG_WARNING,"non-numeric argument\n");
- if (!to_integer (b)) {
- free_value(a);
- free_value(b);
- return make_integer(0);
- } else {
- free_value(a);
- return (b);
- }
- } else if (!to_integer(b)) {
- free_value(b);
- return (a);
- }
- r = make_integer (/*(quad_t)*/(a->u.i + b->u.i));
- if (chk_plus (a->u.i, b->u.i, r->u.i)) {
- ast_log(LOG_WARNING,"overflow\n");
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static int
- chk_minus (a, b, r)
- quad_t a, b, r;
- {
- /* special case subtraction of QUAD_MIN */
- if (b == QUAD_MIN) {
- if (a >= 0)
- return 1;
- else
- return 0;
- }
- /* this is allowed for b != QUAD_MIN */
- return chk_plus (a, -b, r);
- }
- static struct val *
- op_minus (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (!to_integer (a)) {
- ast_log(LOG_WARNING, "non-numeric argument\n");
- if (!to_integer (b)) {
- free_value(a);
- free_value(b);
- return make_integer(0);
- } else {
- r = make_integer(0 - b->u.i);
- free_value(a);
- free_value(b);
- return (r);
- }
- } else if (!to_integer(b)) {
- ast_log(LOG_WARNING, "non-numeric argument\n");
- free_value(b);
- return (a);
- }
- r = make_integer (/*(quad_t)*/(a->u.i - b->u.i));
- if (chk_minus (a->u.i, b->u.i, r->u.i)) {
- ast_log(LOG_WARNING, "overflow\n");
- }
- free_value (a);
- free_value (b);
- return r;
- }
- static int
- chk_times (a, b, r)
- quad_t a, b, r;
- {
- /* special case: first operand is 0, no overflow possible */
- if (a == 0)
- return 0;
- /* cerify that result of division matches second operand */
- if (r / a != b)
- return 1;
- return 0;
- }
- static struct val *
- op_times (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (!to_integer (a) || !to_integer (b)) {
- free_value(a);
- free_value(b);
- ast_log(LOG_WARNING, "non-numeric argument\n");
- return(make_integer(0));
- }
- r = make_integer (/*(quad_t)*/(a->u.i * b->u.i));
- if (chk_times (a->u.i, b->u.i, r->u.i)) {
- ast_log(LOG_WARNING, "overflow\n");
- }
- free_value (a);
- free_value (b);
- return (r);
- }
- static int
- chk_div (a, b)
- quad_t a, b;
- {
- /* div by zero has been taken care of before */
- /* only QUAD_MIN / -1 causes overflow */
- if (a == QUAD_MIN && b == -1)
- return 1;
- /* everything else is OK */
- return 0;
- }
- static struct val *
- op_div (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (!to_integer (a)) {
- free_value(a);
- free_value(b);
- ast_log(LOG_WARNING, "non-numeric argument\n");
- return make_integer(0);
- } else if (!to_integer (b)) {
- free_value(a);
- free_value(b);
- ast_log(LOG_WARNING, "non-numeric argument\n");
- return make_integer(INT_MAX);
- }
- if (b->u.i == 0) {
- ast_log(LOG_WARNING, "division by zero\n");
- free_value(a);
- free_value(b);
- return make_integer(INT_MAX);
- }
- r = make_integer (/*(quad_t)*/(a->u.i / b->u.i));
- if (chk_div (a->u.i, b->u.i)) {
- ast_log(LOG_WARNING, "overflow\n");
- }
- free_value (a);
- free_value (b);
- return r;
- }
-
- static struct val *
- op_rem (a, b)
- struct val *a, *b;
- {
- struct val *r;
- if (!to_integer (a) || !to_integer (b)) {
- ast_log(LOG_WARNING, "non-numeric argument\n");
- free_value(a);
- free_value(b);
- return make_integer(0);
- }
- if (b->u.i == 0) {
- ast_log(LOG_WARNING, "div by zero\n");
- free_value(a);
- return (b);
- }
- r = make_integer (/*(quad_t)*/(a->u.i % b->u.i));
- /* chk_rem necessary ??? */
- free_value (a);
- free_value (b);
- return r;
- }
-
- static struct val *
- op_colon (a, b)
- struct val *a, *b;
- {
- regex_t rp;
- regmatch_t rm[2];
- char errbuf[256];
- int eval;
- struct val *v;
- /* coerce to both arguments to strings */
- to_string(a);
- to_string(b);
- /* compile regular expression */
- if ((eval = regcomp (&rp, b->u.s, REG_EXTENDED)) != 0) {
- regerror (eval, &rp, errbuf, sizeof(errbuf));
- ast_log(LOG_WARNING,"regcomp() error : %s",errbuf);
- free_value(a);
- free_value(b);
- return make_str("");
- }
- /* compare string against pattern */
- /* remember that patterns are anchored to the beginning of the line */
- if (regexec(&rp, a->u.s, (size_t)2, rm, 0) == 0 && rm[0].rm_so == 0) {
- if (rm[1].rm_so >= 0) {
- *(a->u.s + rm[1].rm_eo) = '\0';
- v = make_str (a->u.s + rm[1].rm_so);
- } else {
- v = make_integer ((quad_t)(rm[0].rm_eo - rm[0].rm_so));
- }
- } else {
- if (rp.re_nsub == 0) {
- v = make_integer ((quad_t)0);
- } else {
- v = make_str ("");
- }
- }
- /* free arguments and pattern buffer */
- free_value (a);
- free_value (b);
- regfree (&rp);
- return v;
- }
|