mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
client/mysql.cc: new ctypes client/mysqldump.c: new ctypes client/mysqltest.c: new ctypes client/sql_string.cc: new ctypes client/sql_string.h: new ctypes extra/mysql_install.c: new ctypes extra/replace.c: new ctypes extra/resolve_stack_dump.c: new ctypes extra/resolveip.c: new ctypes heap/hp_hash.c: new ctypes include/m_ctype.h: new ctypes include/my_sys.h: new ctypes isam/_key.c: new ctypes isam/_search.c: new ctypes libmysql/Makefile.shared: new ctypes libmysql/libmysql.c: new ctypes myisam/ft_dump.c: new ctypes myisam/ft_parser.c: new ctypes myisam/mi_test1.c: new ctypes mysys/charset.c: new ctypes mysys/default.c: new ctypes mysys/getvar.c: new ctypes mysys/hash.c: new ctypes mysys/mf_casecnv.c: new ctypes mysys/mf_dirname.c: new ctypes mysys/mf_format.c: new ctypes mysys/mf_iocache2.c: new ctypes mysys/mf_soundex.c: new ctypes mysys/mf_wfile.c: new ctypes mysys/my_error.c: new ctypes mysys/my_getwd.c: new ctypes mysys/my_init.c: new ctypes mysys/my_vsnprintf.c: new ctypes mysys/typelib.c: new ctypes sql/convert.cc: new ctypes sql/des_key_file.cc: new ctypes sql/field.cc: new ctypes sql/field.h: new ctypes sql/field_conv.cc: new ctypes sql/filesort.cc: new ctypes sql/ha_innodb.cc: new ctypes sql/hostname.cc: new ctypes sql/init.cc: new ctypes sql/item.cc: new ctypes sql/item_func.cc: new ctypes sql/item_strfunc.cc: new ctypes sql/item_sum.cc: new ctypes sql/item_timefunc.cc: new ctypes sql/key.cc: new ctypes sql/log.cc: new ctypes sql/mysql_priv.h: new ctypes sql/mysqld.cc: new ctypes sql/opt_range.cc: new ctypes sql/procedure.cc: new ctypes sql/slave.cc: new ctypes sql/sql_acl.cc: new ctypes sql/sql_analyse.cc: new ctypes sql/sql_base.cc: new ctypes sql/sql_cache.cc: new ctypes sql/sql_db.cc: new ctypes sql/sql_handler.cc: new ctypes sql/sql_lex.cc: new ctypes sql/sql_parse.cc: new ctypes sql/sql_show.cc: new ctypes sql/sql_string.cc: new ctypes sql/sql_string.h: new ctypes sql/sql_table.cc: new ctypes sql/sql_yacc.yy: new ctypes sql/table.cc: new ctypes sql/time.cc: new ctypes strings/Makefile.am: new ctypes strings/ctype-big5.c: new ctypes strings/ctype-czech.c: new ctypes strings/ctype-gbk.c: new ctypes strings/ctype-latin1_de.c: new ctypes strings/ctype-sjis.c: new ctypes strings/ctype-tis620.c: new ctypes strings/ctype.c: new ctypes strings/str2int.c: new ctypes strings/strto.c: new ctypes tools/mysqlmanager.c: new ctypes
236 lines
5.6 KiB
C
236 lines
5.6 KiB
C
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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"
|
|
|
|
#ifdef EVAL_RUN
|
|
#ifdef PIVOT_STAT
|
|
ulong collstat=0;
|
|
#endif
|
|
#endif /* EVAL_RUN */
|
|
|
|
typedef struct st_ft_docstat {
|
|
FT_WORD *list;
|
|
uint uniq;
|
|
double sum;
|
|
#ifdef EVAL_RUN
|
|
uint words, totlen;
|
|
double max, nsum, nsum2;
|
|
#endif /* EVAL_RUN */
|
|
|
|
} FT_DOCSTAT;
|
|
|
|
static int FT_WORD_cmp(void* cmp_arg, FT_WORD *w1, FT_WORD *w2)
|
|
{
|
|
return _mi_compare_text(default_charset_info,
|
|
(uchar*) w1->pos, w1->len,
|
|
(uchar*) w2->pos, w2->len,
|
|
(my_bool) (cmp_arg != 0));
|
|
}
|
|
|
|
static int walk_and_copy(FT_WORD *word,uint32 count,FT_DOCSTAT *docstat)
|
|
{
|
|
word->weight=LWS_IN_USE;
|
|
|
|
#ifdef EVAL_RUN
|
|
word->cnt= (uchar) count;
|
|
if(docstat->max < word->weight) docstat->max=word->weight;
|
|
docstat->words+=count;
|
|
docstat->totlen+=word->len;
|
|
#endif /* EVAL_RUN */
|
|
docstat->sum+=word->weight;
|
|
|
|
memcpy_fixed((docstat->list)++,word,sizeof(FT_WORD));
|
|
return 0;
|
|
}
|
|
|
|
/* transforms tree of words into the array, applying normalization */
|
|
|
|
FT_WORD * ft_linearize(TREE *wtree)
|
|
{
|
|
FT_WORD *wlist,*p;
|
|
FT_DOCSTAT docstat;
|
|
DBUG_ENTER("ft_linearize");
|
|
|
|
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;
|
|
#ifdef EVAL_RUN
|
|
docstat.nsum=docstat.nsum2=docstat.max=docstat.words=docstat.totlen=
|
|
#endif /* EVAL_RUN */
|
|
docstat.sum=0;
|
|
tree_walk(wtree,(tree_walk_action)&walk_and_copy,&docstat,left_root_right);
|
|
}
|
|
delete_tree(wtree);
|
|
if (!wlist)
|
|
DBUG_RETURN(NULL);
|
|
|
|
docstat.list->pos=NULL;
|
|
|
|
for (p=wlist;p->pos;p++)
|
|
{
|
|
p->weight=PRENORM_IN_USE;
|
|
#ifdef EVAL_RUN
|
|
docstat.nsum+=p->weight;
|
|
docstat.nsum2+=p->weight*p->weight;
|
|
#endif /* EVAL_RUN */
|
|
}
|
|
|
|
#ifdef EVAL_RUN
|
|
#ifdef PIVOT_STAT
|
|
collstat+=PIVOT_STAT;
|
|
#endif
|
|
#endif /* EVAL_RUN */
|
|
|
|
for (p=wlist;p->pos;p++)
|
|
{
|
|
p->weight/=NORM_IN_USE;
|
|
}
|
|
|
|
DBUG_RETURN(wlist);
|
|
}
|
|
|
|
#define true_word_char(s,X) (my_isalnum(s,X) || (X)=='_')
|
|
#ifdef HYPHEN_IS_DELIM
|
|
#define misc_word_char(X) ((X)=='\'')
|
|
#else
|
|
#define misc_word_char(X) ((X)=='\'' || (X)=='-')
|
|
#endif
|
|
#define word_char(s,X) (true_word_char(s,X) || misc_word_char(s,X))
|
|
|
|
|
|
/* returns:
|
|
* 0 - eof
|
|
* 1 - word found
|
|
* 2 - left bracket
|
|
* 3 - right bracket
|
|
*/
|
|
byte ft_get_word(byte **start, byte *end, FT_WORD *word, FTB_PARAM *param)
|
|
{
|
|
byte *doc=*start;
|
|
int mwc;
|
|
|
|
param->yesno=(FTB_YES==' ')?1:0;
|
|
param->plusminus=param->pmsign=0;
|
|
|
|
while (doc<end)
|
|
{
|
|
for (;doc<end;doc++)
|
|
{
|
|
/*
|
|
BAR TODO: discuss with Serge how to remove
|
|
default_charset_info correctly
|
|
*/
|
|
if (true_word_char(default_charset_info,*doc)) break;
|
|
if (*doc == FTB_LBR || *doc == FTB_RBR)
|
|
{
|
|
/* param->prev=' '; */
|
|
*start=doc+1;
|
|
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;
|
|
param->yesno=param->plusminus=param->pmsign=0;
|
|
}
|
|
|
|
mwc=0;
|
|
for (word->pos=doc; doc<end; doc++)
|
|
if (true_word_char(default_charset_info,*doc))
|
|
mwc=0;
|
|
else if (!misc_word_char(*doc) || mwc++)
|
|
break;
|
|
|
|
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++;
|
|
|
|
if (((word->len >= ft_min_word_len && !is_stopword(word->pos, word->len))
|
|
|| param->trunc) && word->len < ft_max_word_len)
|
|
{
|
|
*start=doc;
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
byte ft_simple_get_word(byte **start, byte *end, FT_WORD *word)
|
|
{
|
|
byte *doc=*start;
|
|
int mwc;
|
|
|
|
while (doc<end)
|
|
{
|
|
for (;doc<end;doc++)
|
|
{
|
|
if (true_word_char(default_charset_info,*doc)) break;
|
|
}
|
|
|
|
mwc=0;
|
|
for(word->pos=doc; doc<end; doc++)
|
|
if (true_word_char(default_charset_info,*doc))
|
|
mwc=0;
|
|
else if (!misc_word_char(*doc) || mwc++)
|
|
break;
|
|
|
|
word->len= (uint)(doc-word->pos) - mwc;
|
|
|
|
if (word->len >= ft_min_word_len && word->len < ft_max_word_len &&
|
|
!is_stopword(word->pos, word->len))
|
|
{
|
|
*start=doc;
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int ft_parse(TREE *wtree, byte *doc, int doclen)
|
|
{
|
|
byte *end=doc+doclen;
|
|
FT_WORD w;
|
|
|
|
if (!is_tree_inited(wtree))
|
|
{
|
|
init_tree(wtree,0,0,sizeof(FT_WORD),(qsort_cmp2)&FT_WORD_cmp,0,NULL, NULL);
|
|
}
|
|
|
|
while (ft_simple_get_word(&doc,end,&w))
|
|
{
|
|
if (!tree_insert(wtree, &w, 0))
|
|
goto err;
|
|
}
|
|
return 0;
|
|
|
|
err:
|
|
delete_tree(wtree);
|
|
return 1;
|
|
}
|
|
|