/* $NetBSD: txtwalk.c,v 1.1.1.1 1997/09/26 23:02:54 phil Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. * All rights reserved. * * Written by Philip A. Nelson for Piermont Information Systems Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software develooped for the NetBSD Project by * Piermont Information Systems Inc. * 4. The name of Piermont Information Systems Inc. may not be used to endorse * or promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * */ /* * walk a text buffer, processing matched lines * * Written by Philip A. Nelson. * 7/29/97 * */ #undef DEBUG #include #include #include #include #include #include "txtwalk.h" /* prototypes */ static void process (struct lookfor, char *); static void match (char *, struct lookfor *, int); static int finddata (struct lookfor, char *, struct data *, int *); static char *strndup (char *, int); /* Walk the buffer, call match for each line. */ void walk (char *buffer, size_t size, struct lookfor *these, int numthese) { int i=0; int len; int line = 1; while (i < size) { /* Ignore zero characters. */ if (*buffer == '\0') { buffer++; i++; } else { /* Assume this starts a line. */ len = 0; while (buffer[len] != '\n' && buffer[len] != '\0') len++; buffer[len] = '\0'; #ifdef DEBUG printf ("%5d: %s\n", line, buffer); #endif match(buffer, these, numthese); buffer += len+1; i += len+1; line++; } } } /* Match the current line with a string of interest. * For each match in these, process the match. */ static void match (char *line, struct lookfor *these, int numthese) { int linelen; /* Line length */ int patlen; /* Pattern length */ int which; /* Which pattern we are using */ linelen = strlen(line); for (which = 0; which < numthese; which++) { patlen = strlen(these[which].head); if (linelen < patlen) continue; if (strncmp (these[which].head, line, patlen) == 0) process (these[which], line); } } /* process the matched line. */ static void process (struct lookfor this, char *line) { struct data found[MAXDATA]; int numfound = 0; char *p; int i, j; if (finddata(this, line, found, &numfound)) { #ifdef DEBUG printf ("process: \"%s\"\n", line); for (i=0; i