ft_stopwords.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Written by Sergei A. Golubchik, who has a shared copyright to this code */
  17. #include "ftdefs.h"
  18. typedef struct st_ft_stopwords {
  19.   const char * pos;
  20.   uint   len;
  21. } FT_STOPWORD;
  22. static TREE *stopwords3=NULL;
  23. static int FT_STOPWORD_cmp(FT_STOPWORD *w1, FT_STOPWORD *w2)
  24. {
  25.   return _mi_compare_text(default_charset_info,
  26.   (uchar *)w1->pos,w1->len,
  27.   (uchar *)w2->pos,w2->len,0);
  28. }
  29. int ft_init_stopwords(const char **sws)
  30. {
  31.   FT_STOPWORD sw;
  32.   if(!stopwords3)
  33.   {
  34.     if(!(stopwords3=(TREE *)my_malloc(sizeof(TREE),MYF(0)))) return -1;
  35.     init_tree(stopwords3,0,sizeof(FT_STOPWORD),(qsort_cmp)&FT_STOPWORD_cmp,0,
  36.       NULL);
  37.   }
  38.   if(!sws) return 0;
  39.   for(;*sws;sws++)
  40.   {
  41.     if( (sw.len= (uint) strlen(sw.pos=*sws)) < MIN_WORD_LEN) continue;
  42.     if(!tree_insert(stopwords3, &sw, 0))
  43.     {
  44.       delete_tree(stopwords3); /* purecov: inspected */
  45.       return -1; /* purecov: inspected */
  46.     }
  47.   }
  48.   return 0;
  49. }
  50. int is_stopword(char *word, uint len)
  51. {
  52.   FT_STOPWORD sw;
  53.   sw.pos=word;
  54.   sw.len=len;
  55.   return tree_search(stopwords3,&sw) != NULL;
  56. }
  57. void ft_free_stopwords()
  58. {
  59.   if (stopwords3)
  60.   {
  61.     delete_tree(stopwords3); /* purecov: inspected */    
  62.     my_free((char*) stopwords3,MYF(0));
  63.     stopwords3=0;
  64.   }
  65. }