/******************************************************************************
* TinTin++ *
* Copyright (C) 2004 (See CREDITS file) *
* *
* This program is protected under the GNU GPL (See COPYING) *
* *
* 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-1307 USA *
******************************************************************************/
/******************************************************************************
* (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
* *
* coded by Peter Unold 1992 *
******************************************************************************/
#include "tintin.h"
DO_COMMAND(do_substitute)
{
char arg1[BUFFER_SIZE], arg2[BUFFER_SIZE], arg3[BUFFER_SIZE], *str;
str = sub_arg_in_braces(ses, arg, arg1, 0, SUB_VAR|SUB_FUN);
arg = get_arg_in_braces(str, arg2, 1);
arg = get_arg_in_braces(arg, arg3, 1);
if (*arg3 == 0)
{
strcpy(arg3, "5");
}
if (*arg1 == 0)
{
show_list(ses->list[LIST_SUBSTITUTE], 0);
}
else if (*str == 0)
{
if (show_node_with_wild(ses, arg1, LIST_SUBSTITUTE) == FALSE)
{
show_message(ses, LIST_SUBSTITUTE, "#SUBSTITUTE: NO MATCH(ES) FOUND FOR {%s}.", arg1);
}
}
else
{
update_node_list(ses->list[LIST_SUBSTITUTE], arg1, arg2, arg3);
show_message(ses, LIST_SUBSTITUTE, "#OK. {%s} IS NOW SUBSTITUTED AS {%s} @ {%s}.", arg1, arg2, arg3);
}
return ses;
}
DO_COMMAND(do_unsubstitute)
{
delete_node_with_wild(ses, LIST_SUBSTITUTE, arg);
return ses;
}
void check_all_substitutions(struct session *ses, char *original, char *line)
{
char match[BUFFER_SIZE], subst[BUFFER_SIZE], output[BUFFER_SIZE], *ptl, *ptm;
struct listroot *root = ses->list[LIST_SUBSTITUTE];
struct listnode *node;
for (root->update = 0 ; root->update < root->used ; root->update++)
{
if (check_one_regexp(ses, root->list[root->update], original, original, 0))
{
node = root->list[root->update];
ptl = original;
*output = 0;
do
{
if (*gtd->vars[0] == 0)
{
break;
}
strcpy(match, gtd->vars[0]);
substitute(ses, node->right, subst, SUB_ARG|SUB_VAR|SUB_FUN|SUB_COL|SUB_ESC);
ptm = strstr(ptl, match);
*ptm = 0;
cat_sprintf(output, "%s%s", ptl, subst);
ptl = ptm + strlen(match);
show_debug(ses, LIST_SUBSTITUTE, "#DEBUG SUBSTITUTE {%s} {%s}", node->left, match);
}
while (check_one_regexp(ses, node, ptl, ptl, 0));
strcat(output, ptl);
strcpy(original, output);
}
}
}