mariadb/myisam/ft_parser.c

245 lines
6.2 KiB
C
Raw Normal View History

2000-07-31 21:29:14 +02:00
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2000-07-31 21:29:14 +02:00
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.
2000-07-31 21:29:14 +02:00
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.
2000-07-31 21:29:14 +02:00
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 */
/* Written by Sergei A. Golubchik, who has a shared copyright to this code */
#include "ftdefs.h"
typedef struct st_ft_docstat {
FT_WORD *list;
uint uniq;
double sum;
} FT_DOCSTAT;
2002-04-15 22:32:40 +02:00
static int FT_WORD_cmp(CHARSET_INFO* cs, FT_WORD *w1, FT_WORD *w2)
2000-07-31 21:29:14 +02:00
{
2002-06-03 11:59:31 +02:00
return mi_compare_text(cs, (uchar*) w1->pos, w1->len,
(uchar*) w2->pos, w2->len, 0, 0);
2000-07-31 21:29:14 +02:00
}
static int walk_and_copy(FT_WORD *word,uint32 count,FT_DOCSTAT *docstat)
{
word->weight=LWS_IN_USE;
docstat->sum+=word->weight;
memcpy_fixed((docstat->list)++,word,sizeof(FT_WORD));
return 0;
}
/* transforms tree of words into the array, applying normalization */
2001-11-22 19:35:35 +01:00
FT_WORD * ft_linearize(TREE *wtree)
2000-07-31 21:29:14 +02:00
{
FT_WORD *wlist,*p;
FT_DOCSTAT docstat;
2001-07-27 20:39:48 +02:00
DBUG_ENTER("ft_linearize");
2000-07-31 21:29:14 +02:00
if ((wlist=(FT_WORD *) my_malloc(sizeof(FT_WORD)*
(1+wtree->elements_in_tree),MYF(0))))
{
docstat.list=wlist;
docstat.uniq=wtree->elements_in_tree;
docstat.sum=0;
tree_walk(wtree,(tree_walk_action)&walk_and_copy,&docstat,left_root_right);
}
delete_tree(wtree);
if (!wlist)
2001-07-27 20:39:48 +02:00
DBUG_RETURN(NULL);
2000-07-31 21:29:14 +02:00
docstat.list->pos=NULL;
for (p=wlist;p->pos;p++)
2000-07-31 21:29:14 +02:00
{
p->weight=PRENORM_IN_USE;
}
for (p=wlist;p->pos;p++)
2000-07-31 21:29:14 +02:00
{
p->weight/=NORM_IN_USE;
}
2001-07-27 20:39:48 +02:00
DBUG_RETURN(wlist);
2000-07-31 21:29:14 +02:00
}
2004-02-16 18:53:00 +01:00
my_bool ft_boolean_check_syntax_string(const byte *str)
{
uint i, j;
if (!str ||
(strlen(str)+1 != sizeof(ft_boolean_syntax)) ||
(str[0] != ' ' && str[1] != ' '))
return 1;
for (i=0; i<sizeof(ft_boolean_syntax); i++)
{
/* limiting to 7-bit ascii only */
if ((unsigned char)(str[i]) > 127 || my_isalnum(default_charset_info, str[i]))
return 1;
for (j=0; j<i; j++)
if (str[i] == str[j] && (i != 11 || j != 10))
return 1;
}
return 0;
}
2001-11-22 19:35:35 +01:00
/* returns:
* 0 - eof
* 1 - word found
* 2 - left bracket
* 3 - right bracket
*/
byte ft_get_word(CHARSET_INFO *cs, byte **start, byte *end,
FT_WORD *word, FTB_PARAM *param)
2000-07-31 21:29:14 +02:00
{
byte *doc=*start;
uint mwc, length, mbl;
2002-06-28 15:18:45 +02:00
param->yesno=(FTB_YES==' ') ? 1 : (param->quot != 0);
2001-11-22 19:35:35 +01:00
param->plusminus=param->pmsign=0;
2000-07-31 21:29:14 +02:00
while (doc<end)
2000-07-31 21:29:14 +02:00
{
for (;doc<end;doc++)
{
if (true_word_char(cs,*doc)) break;
2004-02-15 20:36:12 +01:00
if (*doc == FTB_RQUOT && param->quot)
{
2002-05-08 18:47:27 +02:00
param->quot=doc;
2002-04-18 16:12:29 +02:00
*start=doc+1;
return 3; /* FTB_RBR */
}
2004-02-15 20:36:12 +01:00
if (!param->quot)
{
2004-02-15 20:36:12 +01:00
if (*doc == FTB_LBR || *doc == FTB_RBR || *doc == FTB_LQUOT)
{
/* param->prev=' '; */
*start=doc+1;
if (*doc == FTB_LQUOT) param->quot=*start;
return (*doc == FTB_RBR)+2;
}
if (param->prev == ' ')
{
if (*doc == FTB_YES ) { param->yesno=+1; continue; } else
if (*doc == FTB_EGAL) { param->yesno= 0; continue; } else
if (*doc == FTB_NO ) { param->yesno=-1; continue; } else
if (*doc == FTB_INC ) { param->plusminus++; continue; } else
if (*doc == FTB_DEC ) { param->plusminus--; continue; } else
if (*doc == FTB_NEG ) { param->pmsign=!param->pmsign; continue; }
}
}
param->prev=*doc;
2002-06-28 15:18:45 +02:00
param->yesno=(FTB_YES==' ') ? 1 : (param->quot != 0);
2002-04-18 16:12:29 +02:00
param->plusminus=param->pmsign=0;
}
2003-10-20 21:32:49 +02:00
mwc=length=0;
for (word->pos=doc; doc<end; length++, mbl=my_mbcharlen(cs, *(uchar *)doc), doc+=(mbl ? mbl : 1))
if (true_word_char(cs,*doc))
mwc=0;
2005-11-26 19:36:11 +01:00
else if (!misc_word_char(*doc) || mwc)
break;
2005-11-26 19:36:11 +01:00
else
mwc++;
2001-11-22 19:35:35 +01:00
param->prev='A'; /* be sure *prev is true_word_char */
word->len= (uint)(doc-word->pos) - mwc;
if ((param->trunc=(doc<end && *doc == FTB_TRUNC)))
doc++;
2003-10-20 21:32:49 +02:00
if (((length >= ft_min_word_len && !is_stopword(word->pos, word->len))
|| param->trunc) && length < ft_max_word_len)
{
*start=doc;
return 1;
}
2000-07-31 21:29:14 +02:00
}
2004-02-15 20:36:12 +01:00
if (param->quot)
{
param->quot=*start=doc;
return 3; /* FTB_RBR */
}
return 0;
}
byte ft_simple_get_word(CHARSET_INFO *cs, byte **start, byte *end,
FT_WORD *word)
{
2003-10-24 13:23:06 +02:00
byte *doc= *start;
uint mwc, length, mbl;
DBUG_ENTER("ft_simple_get_word");
2000-07-31 21:29:14 +02:00
2000-09-13 00:08:34 +02:00
while (doc<end)
2000-07-31 21:29:14 +02:00
{
2000-09-13 00:08:34 +02:00
for (;doc<end;doc++)
2000-07-31 21:29:14 +02:00
{
if (true_word_char(cs,*doc)) break;
}
2003-10-24 13:23:06 +02:00
mwc= length= 0;
for (word->pos=doc; doc<end; length++, mbl=my_mbcharlen(cs, *(uchar *)doc), doc+=(mbl ? mbl : 1))
if (true_word_char(cs,*doc))
2003-10-24 13:23:06 +02:00
mwc= 0;
else if (!misc_word_char(*doc) || mwc)
break;
else
mwc++;
word->len= (uint)(doc-word->pos) - mwc;
2003-10-20 21:32:49 +02:00
if (length >= ft_min_word_len && length < ft_max_word_len &&
!is_stopword(word->pos, word->len))
{
2003-10-24 13:23:06 +02:00
*start= doc;
DBUG_RETURN(1);
2000-07-31 21:29:14 +02:00
}
}
DBUG_RETURN(0);
}
2002-04-15 22:32:40 +02:00
void ft_parse_init(TREE *wtree, CHARSET_INFO *cs)
{
DBUG_ENTER("ft_parse_init");
2002-04-15 22:32:40 +02:00
if (!is_tree_inited(wtree))
init_tree(wtree,0,0,sizeof(FT_WORD),(qsort_cmp2)&FT_WORD_cmp,0,NULL, cs);
DBUG_VOID_RETURN;
2002-04-15 22:32:40 +02:00
}
2003-10-23 15:21:06 +02:00
int ft_parse(TREE *wtree, byte *doc, int doclen, my_bool with_alloc)
{
byte *end=doc+doclen;
FT_WORD w;
DBUG_ENTER("ft_parse");
while (ft_simple_get_word(wtree->custom_arg, &doc,end,&w))
{
2003-10-23 15:21:06 +02:00
if (with_alloc)
{
byte *ptr;
/* allocating the data in the tree - to avoid mallocs and frees */
DBUG_ASSERT(wtree->with_delete==0);
ptr=(byte *)alloc_root(& wtree->mem_root,w.len);
memcpy(ptr, w.pos, w.len);
w.pos=ptr;
}
if (!tree_insert(wtree, &w, 0, wtree->custom_arg))
goto err;
}
DBUG_RETURN(0);
err:
delete_tree(wtree);
DBUG_RETURN(1);
2000-07-31 21:29:14 +02:00
}