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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
/*
* cook - file construction tool
* Copyright (C) 1991, 1992, 1993, 1994, 1997, 1998, 1999 Peter Miller;
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
*
* MANIFEST: functions to perform recipe pattern matching
*/
#include <expr/position.h>
#include <match/private.h>
#include <mem.h>
#include <str.h>
#include <trace.h>
/*
* NAME
* match_delete - dispose of match structure
*
* SYNOPSIS
* void match_delete(match_ty *);
*
* DESCRIPTION
* The match_delete function is used to dispose of a match structure
* allocated by the match_alloc function.
*
* RETURNS
* void
*/
void
match_delete(this)
match_ty *this;
{
trace(("match_delete(this = %08X)\n{\n"/*}*/, this));
if (this->vptr->destructor)
this->vptr->destructor(this);
mem_free(this);
trace((/*{*/"}\n"));
}
/*
* NAME
* match - attempt to
*
* SYNOPSIS
* match_ty *match(string_ty *pattern, string_ty *string);
*
* DESCRIPTION
* The match function is used to match a pattern with a string.
* The matching fields are filled in in the returned structure.
*
* RETURNS
* match_ty *: a pointer to a match structure in dynamic memory with the
* match fields set as appropriate.
*
* A NULL pointer is returned if the string does not match the
* pattern.
*
* The value MATCH_ERROR will be returned if it was not a valid
* pattern; the error message will have been printed already.
*
* CAVEAT
* The match structure should be released by calling match_delete.,
*/
int
match_attempt(mp, formal, actual, pp)
match_ty *mp;
string_ty *formal;
string_ty *actual;
const expr_position_ty *pp;
{
if (match_compile(mp, formal, pp) < 0)
return -1;
return match_execute(mp, actual, pp);
}
int
match_compile(this, formal, pp)
match_ty *this;
string_ty *formal;
const expr_position_ty *pp;
{
int result;
trace(("match_compile(this = %08lX, formal = %08lX)\n{\n",
(long)this, (long)formal));
trace_string(formal->str_text);
result = this->vptr->compile(this, formal, pp);
trace(("return %d;\n", result));
trace(("}\n"));
return result;
}
int
match_execute(this, actual, pp)
match_ty *this;
string_ty *actual;
const expr_position_ty *pp;
{
int result;
trace(("match_execute(this = %08lX, actual = %08lX)\n{\n",
(long)this, (long)actual));
trace_string(actual->str_text);
result = this->vptr->execute(this, actual, pp);
trace(("return %d;\n", result));
trace(("}\n"));
return result;
}
/*
* NAME
* reconstruct - make string from pattern
*
* SYNOPSIS
* string_ty *reconstruct(string_ty *pattern, match_ty *field);
*
* DESCRIPTION
* The reconstruct function is used to rebuild a string from a replacement
* pattern and the match field values.
*
* RETURNS
* string_ty *; pointer to the reconstructed string
* or NULL on error (the error will already have been rinted)
*/
string_ty *
match_reconstruct_lhs(this, pattern, pp)
string_ty *pattern;
const match_ty *this;
const expr_position_ty *pp;
{
string_ty *result;
trace(("reconstruct(this = %08lX, pattern = %08X)\n{\n"/*}*/,
this, pattern));
result = this->vptr->reconstruct_lhs(this, pattern, pp);
trace(("return %08lX;\n", result));
trace((/*{*/"}\n"));
return result;
}
string_ty *
match_reconstruct_rhs(this, pattern, pp)
const match_ty *this;
string_ty *pattern;
const expr_position_ty *pp;
{
string_ty *result;
trace(("reconstruct(this = %08lX, pattern = %08X)\n{\n"/*}*/,
this, pattern));
result = this->vptr->reconstruct_rhs(this, pattern, pp);
trace(("return %08lX;\n", result));
trace((/*{*/"}\n"));
return result;
}
int
match_usage_mask(this, s, pp)
const match_ty *this;
string_ty *s;
const expr_position_ty *pp;
{
return this->vptr->usage_mask(this, s, pp);
}
|