2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2012 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
#include "compiler.h"
|
|
|
|
#include "opcode.h"
|
|
|
|
#include "indir_enum.h"
|
|
|
|
#include "toktyp.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "hashtab_objcode.h"
|
|
|
|
#include "compile_pattern.h"
|
|
|
|
#include "op.h"
|
|
|
|
|
|
|
|
GBLREF short int source_column;
|
2012-03-24 14:06:46 -04:00
|
|
|
|
2012-02-05 11:35:58 -05:00
|
|
|
void op_indpat(mval *v, mval *dst)
|
|
|
|
{
|
2012-03-24 14:06:46 -04:00
|
|
|
int rval;
|
|
|
|
icode_str indir_src;
|
2012-02-05 11:35:58 -05:00
|
|
|
mstr *obj, object;
|
2024-07-19 11:43:27 -04:00
|
|
|
oprtype x, getdst;
|
2012-03-24 14:06:46 -04:00
|
|
|
DCL_THREADGBL_ACCESS;
|
2012-02-05 11:35:58 -05:00
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
SETUP_THREADGBL_ACCESS;
|
2012-02-05 11:35:58 -05:00
|
|
|
MV_FORCE_STR(v);
|
|
|
|
indir_src.str = v->str;
|
|
|
|
indir_src.code = indir_pattern;
|
|
|
|
if (NULL == (obj = cache_get(&indir_src)))
|
|
|
|
{
|
2012-03-24 14:06:46 -04:00
|
|
|
obj = &object;
|
2024-07-19 11:43:27 -04:00
|
|
|
comp_init(&v->str, &getdst);
|
2012-02-05 11:35:58 -05:00
|
|
|
source_column = 1; /* to coordinate with scanner redirection*/
|
2012-03-24 14:06:46 -04:00
|
|
|
rval = compile_pattern(&x, (TK_ATSIGN == TREF(window_token)));
|
2024-07-19 11:43:27 -04:00
|
|
|
if (EXPR_FAIL == comp_fini(rval, obj, OC_IRETMVAL, &x, &getdst, v->str.len))
|
2012-03-24 14:06:46 -04:00
|
|
|
return;
|
|
|
|
indir_src.str.addr = v->str.addr;
|
|
|
|
cache_put(&indir_src, obj);
|
|
|
|
/* Fall into code activation below */
|
2012-02-05 11:35:58 -05:00
|
|
|
}
|
2024-07-19 11:43:27 -04:00
|
|
|
TREF(ind_result) = dst; /* Where to store return value */
|
2012-03-24 14:06:46 -04:00
|
|
|
comp_indr(obj);
|
|
|
|
return;
|
2012-02-05 11:35:58 -05:00
|
|
|
}
|