postgresql/contrib/tsearch2/stopword.c

134 lines
2.4 KiB
C
Raw Normal View History

2003-08-04 02:43:34 +02:00
/*
2003-07-21 12:27:44 +02:00
* stopword library
* Teodor Sigaev <teodor@sigaev.ru>
*/
#include "postgres.h"
#include "miscadmin.h"
2003-07-21 12:27:44 +02:00
#include "common.h"
#include "dict.h"
#include "ts_locale.h"
2003-07-21 12:27:44 +02:00
#define STOPBUFLEN 4096
void
2003-08-04 02:43:34 +02:00
freestoplist(StopList * s)
{
char **ptr = s->stop;
if (ptr)
while (*ptr && s->len > 0)
{
2003-07-21 12:27:44 +02:00
free(*ptr);
2003-08-04 02:43:34 +02:00
ptr++;
s->len--;
free(s->stop);
}
memset(s, 0, sizeof(StopList));
2003-07-21 12:27:44 +02:00
}
void
2003-08-04 02:43:34 +02:00
readstoplist(text *in, StopList * s)
{
char **stop = NULL;
s->len = 0;
if (in && VARSIZE(in) - VARHDRSZ > 0)
{
char *filename = text2char(in);
FILE *hin;
2003-08-04 02:43:34 +02:00
char buf[STOPBUFLEN];
int reallen = 0;
/* if path is relative, take it as relative to share dir */
if (!is_absolute_path(filename))
{
2005-10-15 04:49:52 +02:00
char sharepath[MAXPGPATH];
char *absfn;
#ifdef WIN32
char delim = '\\';
#else
char delim = '/';
#endif
get_share_path(my_exec_path, sharepath);
absfn = palloc(strlen(sharepath) + strlen(filename) + 2);
sprintf(absfn, "%s%c%s", sharepath, delim, filename);
pfree(filename);
filename = absfn;
}
2003-08-04 02:43:34 +02:00
if ((hin = fopen(filename, "r")) == NULL)
ereport(ERROR,
(errcode(ERRCODE_CONFIG_FILE_ERROR),
errmsg("could not open file \"%s\": %m",
2003-08-04 02:43:34 +02:00
filename)));
2003-08-04 02:43:34 +02:00
while (fgets(buf, STOPBUFLEN, hin))
{
buf[strlen(buf) - 1] = '\0';
pg_verifymbstr( buf, strlen(buf), false );
lowerstr(buf);
2003-08-04 02:43:34 +02:00
if (*buf == '\0')
continue;
2003-07-21 12:27:44 +02:00
2003-08-04 02:43:34 +02:00
if (s->len >= reallen)
{
char **tmp;
reallen = (reallen) ? reallen * 2 : 16;
tmp = (char **) realloc((void *) stop, sizeof(char *) * reallen);
if (!tmp)
{
2003-07-21 12:27:44 +02:00
freestoplist(s);
2003-08-04 02:43:34 +02:00
fclose(hin);
ereport(ERROR,
(errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory")));
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
stop = tmp;
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
stop[s->len] = strdup(buf);
if (!stop[s->len])
{
2003-07-21 12:27:44 +02:00
freestoplist(s);
2003-08-04 02:43:34 +02:00
fclose(hin);
ereport(ERROR,
(errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory")));
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
if (s->wordop)
stop[s->len] = (s->wordop) (stop[s->len]);
2003-07-21 12:27:44 +02:00
2003-08-04 02:43:34 +02:00
(s->len)++;
2003-07-21 12:27:44 +02:00
}
fclose(hin);
2003-08-04 02:43:34 +02:00
pfree(filename);
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
s->stop = stop;
}
2003-07-21 12:27:44 +02:00
static int
2003-08-04 02:43:34 +02:00
comparestr(const void *a, const void *b)
{
return strcmp(*(char **) a, *(char **) b);
2003-07-21 12:27:44 +02:00
}
void
2003-08-04 02:43:34 +02:00
sortstoplist(StopList * s)
{
if (s->stop && s->len > 0)
qsort(s->stop, s->len, sizeof(char *), comparestr);
2003-07-21 12:27:44 +02:00
}
bool
2003-08-04 02:43:34 +02:00
searchstoplist(StopList * s, char *key)
{
if (s->wordop)
key = (*(s->wordop)) (key);
return (s->stop && s->len > 0 && bsearch(&key, s->stop, s->len, sizeof(char *), comparestr)) ? true : false;
2003-07-21 12:27:44 +02:00
}