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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
/*********************************************************************/
/* file: substitute.c - functions related to the substitute command */
/* TINTIN III */
/* (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t */
/* coded by peter unold 1992 */
/*********************************************************************/
#include "tintin.h"
#include "protos/action.h"
#include "protos/files.h"
#include "protos/glob.h"
#include "protos/globals.h"
#include "protos/print.h"
#include "protos/parse.h"
#include "protos/string.h"
#include "protos/tlist.h"
#include "protos/utils.h"
#include "protos/vars.h"
/***************************/
/* the #substitute command */
/***************************/
static void list_subs(const char *left, bool gag, struct session *ses)
{
bool flag = false;
kbtree_t(trip) *sub = ses->subs;
TRIP_ITER(sub, mysubs)
if (!match(left, mysubs->left))
continue;
if (gag)
{
if (!strcmp(mysubs->right, EMPTY_LINE))
{
if (!flag)
tintin_printf(ses, "#THESE GAGS HAVE BEEN DEFINED:");
tintin_printf(ses, "{%s~7~}", mysubs->left);
flag=true;
}
}
else
{
if (!flag)
tintin_printf(ses, "#THESE SUBSTITUTES HAVE BEEN DEFINED:");
flag=true;
show_trip(mysubs, ses);
}
ENDITER
if (flag)
return;
if (strcmp(left, "*"))
tintin_printf(ses, "#THAT %s IS NOT DEFINED.", gag? "GAG":"SUBSTITUTE");
else
tintin_printf(ses, "#NO %sS HAVE BEEN DEFINED.", gag? "GAG":"SUBSTITUTE");
}
static void parse_sub(const char *left_, const char *right, bool gag, struct session *ses)
{
char left[BUFFER_SIZE];
substitute_myvars(left_, left, ses, 0);
if (!*right)
return list_subs(*left? left : "*", gag, ses);
kbtree_t(trip) *sub = ses->subs;
ptrip new = MALLOC(sizeof(struct trip));
new->left = mystrdup(left_);
new->right = mystrdup(right);
new->pr = 0;
ptrip *t = kb_get(trip, sub, new);
if (t)
{
ptrip d = *t;
kb_del(trip, sub, new);
free(d->left);
free(d->right);
free(d);
}
kb_put(trip, sub, new);
subnum++;
#ifdef HAVE_SIMD
ses->subs_dirty=true;
#endif
if (ses->mesvar[MSG_SUBSTITUTE])
{
if (strcmp(right, EMPTY_LINE))
tintin_printf(ses, "#Ok. {%s} now replaces {%s}.", right, left);
else
tintin_printf(ses, "#Ok. {%s} is now gagged.", left);
}
}
void substitute_command(const char *arg, struct session *ses)
{
char left[BUFFER_SIZE], right[BUFFER_SIZE];
arg = get_arg_in_braces(arg, left, 0);
arg = get_arg_in_braces(arg, right, 1);
parse_sub(left, right, 0, ses);
}
void gag_command(const char *arg, struct session *ses)
{
char temp[BUFFER_SIZE];
if (!*arg)
return parse_sub("", "", 1, ses);
get_arg_in_braces(arg, temp, 1);
parse_sub(temp, EMPTY_LINE, 1, ses);
}
/*****************************/
/* the #unsubstitute command */
/*****************************/
static bool is_not_gag(char **right)
{
return strcmp(*right, EMPTY_LINE);
}
static bool is_gag(char **right)
{
return !strcmp(*right, EMPTY_LINE);
}
static void unsub(const char *arg, bool gag, struct session *ses)
{
char left[BUFFER_SIZE];
arg = get_arg_in_braces(arg, left, 1);
if (!delete_tlist(ses->subs, left, ses->mesvar[MSG_SUBSTITUTE]?
gag? "#Ok. {%s} is no longer gagged." :
"#Ok. {%s} is no longer substituted." : 0,
gag? is_not_gag : is_gag, true, ses)
&& ses->mesvar[MSG_SUBSTITUTE])
{
tintin_printf(ses, "#THAT SUBSTITUTE (%s) IS NOT DEFINED.", left);
}
#ifdef HAVE_SIMD
ses->subs_dirty=true;
#endif
}
void unsubstitute_command(const char *arg, struct session *ses)
{
unsub(arg, false, ses);
}
void ungag_command(const char *arg, struct session *ses)
{
unsub(arg, true, ses);
}
#define APPEND(srch) if (rlen+len > BUFFER_SIZE-1) \
len=BUFFER_SIZE-1-rlen; \
memcpy(result+rlen, srch, len); \
rlen+=len;
// returns true if gagged
static bool do_one_sub(char *line, ptrip ln, struct session *ses)
{
char result[BUFFER_SIZE], tmp[BUFFER_SIZE];
const char *l;
int rlen, len;
if (!check_one_action(line, ln->left, pvars, false))
return false;
if (!strcmp(ln->right, EMPTY_LINE))
{
strcpy(line, EMPTY_LINE);
return true;
}
substitute_vars(ln->right, tmp, ses);
rlen=match_start-line;
memcpy(result, line, rlen);
len=strlen(tmp);
APPEND(tmp);
while (*match_end)
if (check_one_action(l=match_end, ln->left, pvars, true))
{
/* no gags possible here */
len=match_start-l;
APPEND(l);
substitute_vars(ln->right, tmp, ses);
len=strlen(tmp);
APPEND(tmp);
}
else
{
len=strlen(l);
APPEND(l);
break;
}
memcpy(line, result, rlen);
line[rlen]=0;
return false;
}
static void do_all_sub_serially(char *line, struct session *ses)
{
pvars_t vars, *lastpvars;
lastpvars=pvars;
pvars=&vars;
TRIP_ITER(ses->subs, ln)
if (do_one_sub(line, ln, ses))
break;
ENDITER
pvars=lastpvars;
}
#ifdef HAVE_SIMD
// Hyperscan disallows patterns that match an empty buffer, we do them by hand.
static bool is_omni_regex(const char *pat)
{
if (*pat=='^')
pat++;
if (pat[0]=='.' && pat[1]=='*') // we merge .* so there may be only one
pat+=2;
if (*pat=='$')
pat++;
return !*pat;
}
static void build_subs_hs(struct session *ses)
{
debuglog(ses, "SIMD: building subs");
hs_free_database(ses->subs_hs);
ses->subs_hs=0;
ses->subs_dirty=false;
free(ses->subs_data);
ses->subs_data=0;
free(ses->subs_markers);
ses->subs_markers=0;
int n = count_tlist(ses->subs);
const char **pat = MALLOC(n*sizeof(void*));
unsigned int *flags = MALLOC(n*sizeof(int));
unsigned int *ids = MALLOC(n*sizeof(int));
ptrip *data = MALLOC(n*sizeof(ptrip));
uintptr_t *markers = MALLOC(n*sizeof(uintptr_t));
if (!pat || !flags || !ids || !data || !markers)
die("out of memory");
ses->subs_omni_last=ses->subs_omni_first=n;
int j=0;
TRIP_ITER(ses->subs, ln)
pat[j]=action_to_regex(ln->left);
if (is_omni_regex(pat[j]))
{
pat[--ses->subs_omni_first]=pat[j];
data[ses->subs_omni_first]=ln;
continue;
}
flags[j]=HS_FLAG_DOTALL|HS_FLAG_SOM_LEFTMOST;
ids[j]=j;
data[j]=ln;
j++;
ENDITER
ses->subs_data=data;
bzero(markers, n*sizeof(uintptr_t));
ses->subs_markers=markers;
if (!ses->subs_omni_first)
goto done;
debuglog(ses, "SIMD: compiling subs");
hs_compile_error_t *error;
if (hs_compile_multi(pat, flags, ids, ses->subs_omni_first, HS_MODE_BLOCK,
0, &ses->subs_hs, &error))
{
tintin_eprintf(ses, "#Error: hyperscan compilation failed for substitutes: %s",
error->message);
if (error->expression>=0)
tintin_eprintf(ses, "#Converted bad expression was: %s",
pat[error->expression]);
hs_free_compile_error(error);
}
done:
debuglog(ses, "SIMD: rebuilt subs");
for (int i=0; i<n; i++)
SFREE((char*)pat[i]);
MFREE(ids, n*sizeof(int));
MFREE(flags, n*sizeof(int));
MFREE(pat, n*sizeof(void*));
if (ses->subs_hs && hs_alloc_scratch(ses->subs_hs, &hs_scratch))
die("out of memory");
}
static unsigned short longest_len[BUFFER_SIZE];
static unsigned int longest_id[BUFFER_SIZE];
static int sub_match(unsigned int id, unsigned long long from,
unsigned long long to, unsigned int flags, void *context)
{
if (from<BUFFER_SIZE && from<to)
if (longest_len[from] < to-from)
{
longest_len[from] = to-from;
longest_id[from] = id;
}
return 0;
}
static void do_all_sub_simd(char *line, struct session *ses)
{
if (ses->subs_dirty)
build_subs_hs(ses);
if (!ses->subs_hs) // compilation error
return do_all_sub_serially(line, ses);
int len = strlen(line);
for (int i=0; i<len; i++)
longest_len[i]=0;
for (int i=0; i<len; i++)
longest_id[i]=0;
hs_error_t err=hs_scan(ses->subs_hs, line, len, 0, hs_scratch,
sub_match, ses);
if (err)
return tintin_eprintf(ses, "#Error in hs_scan: %d", err);
pvars_t vars, *lastpvars;
lastpvars=pvars;
pvars=&vars;
static uintptr_t marker;
marker++;
for (int i=0; i<len; i++)
{
if (!longest_len[i])
continue;
ptrip ln = ses->subs_data[longest_id[i]];
if (ses->subs_markers[longest_id[i]] == marker)
continue; // already done
if (do_one_sub(line, ln, ses))
goto gagged;
ses->subs_markers[longest_id[i]] = marker;
}
for (int i=ses->subs_omni_first; i<ses->subs_omni_last; i++)
if (do_one_sub(line, ses->subs_data[i], ses))
goto gagged;
gagged:
pvars=lastpvars;
}
#endif
void do_all_sub(char *line, struct session *ses)
{
#ifdef HAVE_SIMD
if (!kb_size(ses->subs))
return;
if (simd)
return do_all_sub_simd(line, ses);
#endif
do_all_sub_serially(line, ses);
}
void changeto_command(const char *arg, struct session *ses)
{
char left[BUFFER_SIZE];
if (!_)
return tintin_eprintf(ses, "#ERROR: #change is allowed only inside an action/promptaction");
get_arg(arg, left, 1, ses);
strcpy(_, left);
}
void gagthis_command(const char *arg, struct session *ses)
{
if (!_)
return tintin_eprintf(ses, "#ERROR: #gagthis is allowed only inside an action/promptaction");
strcpy(_, EMPTY_LINE);
}
|