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
|
/*
* Main program and I/O for external vile syntax/highlighter programs
*
* $Header: /usr/build/vile/vile/RCS/builtflt.c,v 1.23 2002/02/12 22:48:58 tom Exp $
*
*/
#include "estruct.h"
#include "builtflt.h"
#ifdef _builtflt_h
#include "edef.h"
#include "nevars.h"
#include <stdarg.h>
static FILTER_DEF *current_filter;
static MARK mark_in;
static MARK mark_out;
static TBUFF *gets_data;
static const char *current_params;
static int need_separator;
/******************************************************************************
* Private functions *
******************************************************************************/
#if OPT_MAJORMODE
/*
* Given the 'major_name', verify that it applies to this buffer, and if so,
* lookup $filtername and see if we can associate the external filtername to
* one of the built-in filters.
*
* FIXME: This only works for filters constructed with the naming convention
* that we use for our external filters, i.e., "vile-{majormode}-filt".
*
* FIXME: Should we allow lookup of majormodes that aren't assigned to a
* buffer?
*/
static int
parse_filtername(const char *major_name, const char **params)
{
static const char prefix[] = "vile-";
static const char suffix[] = "-filt";
char *temp;
*params = 0;
if (curbp != 0
&& curbp->majr != 0
&& !strcmp(curbp->majr->name, major_name)
&& (temp = b_val_ptr(curbp, VAL_FILTERNAME)) != 0) {
if (!strncmp(temp, prefix, sizeof(prefix) - 1)) {
char *base = temp + sizeof(prefix) - 1;
char *next = base;
int n;
while (*next) {
if (!strncmp(next, suffix, sizeof(suffix) - 1)
&& (isSpace(next[sizeof(suffix) - 1])
|| (next[sizeof(suffix) - 1] == EOS))) {
size_t len = next - base;
for (n = 0; builtflt[n] != 0; n++) {
char *name = builtflt[n]->filter_name;
if (strlen(name) == len
&& !strncmp(base, name, len)) {
*params = skip_cblanks(next + sizeof(suffix) - 1);
return n;
}
}
break;
}
next++;
}
}
}
return -1;
}
#endif
/*
* All we're really interested in are the -k options. Ignore -v and -q.
*/
static int
process_params(void)
{
const char *s = current_params;
const char *t;
memset(flt_options, 0, sizeof(flt_options));
while (*s != EOS) {
s = skip_cblanks(s);
if (*s == '-') {
while (*++s != EOS && !isSpace(*s)) {
flt_options[CharOf(*s)] += 1;
if (*s == 'k') {
s = skip_cblanks(s + 1);
t = skip_ctext(s);
if (t != s) {
char *value = strmalloc(s);
value[t - s] = EOS;
flt_read_keywords(value);
free(value);
s = t;
}
}
}
} else {
s = skip_ctext(s);
}
}
vile_keywords = !flt_options['v'];
return !vile_keywords;
}
static void
save_mark(int first)
{
if (mark_out.o > llength(mark_out.l))
mark_out.o = llength(mark_out.l);
if (first)
DOT = mark_out;
else
MK = mark_out;
}
/******************************************************************************
* Public functions *
******************************************************************************/
void
flt_echo(char *string, int length)
{
while (length-- > 0)
flt_putc(*string++);
}
void
flt_failed(const char *msg)
{
mlforce("[Filter: %s]", msg);
}
void
flt_finish(void)
{
tb_free(&gets_data);
}
char *
flt_gets(char **ptr, unsigned *len)
{
int need = is_header_line(mark_in, curbp) ? -1 : llength(mark_in.l);
*len = 0;
*ptr = 0;
if (need >= 0
&& tb_init(&gets_data, 0) != 0
&& tb_bappend(&gets_data, mark_in.l->l_text, need) != 0
&& tb_sappend(&gets_data, "\n") != 0
&& tb_append(&gets_data, EOS) != 0) {
*ptr = tb_values(gets_data);
*len = need + len_record_sep(curbp);
TRACE(("flt_gets %6d:%.*s\n",
line_no(curbp, mark_in.l),
*ptr ? need : 1,
*ptr ? *ptr : ""));
mark_in.l = lforw(mark_in.l);
} else {
TRACE(("flt_gets - EOF\n"));
}
return *ptr;
}
/*
* This function is used from flex to read chunks from the input file. We'll
* make it simple by ending each read at the end of a line; some long lines
* will be split across successive reads.
*/
int
flt_input(char *buffer, int max_size)
{
char *separator = "\n";
int need = strlen(separator);
int used = 0;
if (need_separator) {
strcpy(buffer, separator);
used = need;
need_separator = FALSE;
}
if (!is_header_line(mark_in, curbp)) {
while (used < max_size) {
if (mark_in.o < llength(mark_in.l)) {
buffer[used++] = (char) lgetc(mark_in.l, mark_in.o++);
} else {
mark_in.l = lforw(mark_in.l);
mark_in.o = w_left_margin(curwp);
need_separator = TRUE;
break;
}
}
if (need_separator && (used + need) < max_size) {
strcpy(buffer + used, separator);
used += need;
need_separator = FALSE;
}
}
return used;
}
char *
flt_name(void)
{
return current_filter ? current_filter->filter_name : "";
}
void
flt_putc(int ch)
{
if (ch == '\n') {
if (mark_out.l != buf_head(curbp))
mark_out.l = lforw(mark_out.l);
mark_out.o = w_left_margin(curwp);
} else {
mark_out.o++;
}
}
void
flt_puts(char *string, int length, char *marker)
{
char bfr1[NSTRING];
char bfr2[NSTRING];
char *last;
int count;
if (length > 0) {
save_mark(TRUE);
if (marker != 0 && *marker != 0 && *marker != 'N') {
vl_strncpy(bfr2, marker, sizeof(bfr1) - 10);
last = lsprintf(bfr1, "%c%d%s:", CTL_A, length, bfr2);
parse_attribute(bfr1, last - bfr1, 0, &count);
}
flt_echo(string, length);
save_mark(FALSE);
if (apply_attribute()) {
int save_shape = regionshape;
regionshape = EXACT;
(void) attributeregion();
videoattribute = 0;
regionshape = save_shape;
}
}
}
/*
* For the given majormode 'name', check if we have a builtin filter by that
* name, or if it has an associated filtername, check if that is a builtin.
*
* Sets current_filter and current_params as a side-effect.
*/
int
flt_lookup(char *name)
{
int n;
TRACE(("flt_lookup(%s)\n", name));
for (n = 0; builtflt[n] != 0; n++) {
if (!strcmp(name, builtflt[n]->filter_name)) {
current_filter = builtflt[n];
current_params = "";
TRACE(("...%s\n", builtflt[n]->filter_name));
return TRUE;
}
}
#if OPT_MAJORMODE
if ((n = parse_filtername(name, ¤t_params)) >= 0) {
TRACE(("...%s(%s)\n", builtflt[n]->filter_name, current_params));
current_filter = builtflt[n];
return TRUE;
}
#endif
TRACE(("...not found\n"));
return FALSE;
}
int
flt_start(char *name)
{
TRACE(("flt_start(%s)\n", name));
if (flt_lookup(name)) {
MARK save_dot;
MARK save_mk;
save_dot = DOT;
save_mk = MK;
need_separator = FALSE;
mark_in.l = lforw(buf_head(curbp));
mark_in.o = w_left_margin(curwp);
mark_out = mark_in;
tb_init(&gets_data, 0);
flt_initialize();
flt_make_symtab(current_filter->filter_name);
current_filter->InitFilter(1);
flt_read_keywords(MY_NAME);
if (!process_params()) {
if (strcmp(MY_NAME, current_filter->filter_name)) {
flt_read_keywords(current_filter->filter_name);
}
}
set_symbol_table(current_filter->filter_name);
current_filter->InitFilter(0);
current_filter->DoFilter(stdin);
DOT = save_dot;
MK = save_mk;
return TRUE;
}
return FALSE;
}
static TBUFF *filter_list;
int
var_FILTER_LIST(TBUFF ** rp, const char *vp)
{
int n;
if (rp) {
if (filter_list == 0) {
for (n = 0; builtflt[n] != 0; n++) {
if (n)
tb_sappend0(&filter_list, " ");
tb_sappend0(&filter_list, builtflt[n]->filter_name);
}
}
tb_scopy(rp, tb_values(filter_list));
return TRUE;
} else if (vp) {
return ABORT; /* read-only */
} else {
return FALSE;
}
}
#if NO_LEAKS
void
flt_leaks(void)
{
flt_free_symtab();
FreeIfNeeded(default_attr);
tb_free(&filter_list);
}
#endif
#else
extern void builtflt(void);
void
builtflt(void)
{
}
#endif /* _builtflt_h */
|