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

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. /* some definitions for full-text indices */
  18. #include "fulltext.h"
  19. #include <m_ctype.h>
  20. #include <my_tree.h>
  21. #define MIN_WORD_LEN 4
  22. #define HYPHEN_IS_DELIM
  23. #define HYPHEN_IS_CONCAT     /* not used for now */
  24. #define COMPILE_STOPWORDS_IN
  25. /* Most of the formulae were shamelessly stolen from SMART distribution
  26.    ftp://ftp.cs.cornell.edu/pub/smart/smart.11.0.tar.Z
  27.    NORM_PIVOT was taken from the article
  28.    A.Singhal, C.Buckley, M.Mitra, "Pivoted Document Length Normalization",
  29.    ACM SIGIR'96, 21-29, 1996
  30.  */
  31. #define LWS_FOR_QUERY   LWS_TF
  32. #define LWS_IN_USE  LWS_LOG
  33. #define PRENORM_IN_USE      PRENORM_AVG
  34. #define NORM_IN_USE       NORM_PIVOT
  35. #define GWS_IN_USE GWS_PROB
  36. /*==============================================================*/
  37. #define LWS_TF   (count)
  38. #define LWS_BINARY (count>0)
  39. #define LWS_SQUARE     (count*count)
  40. #define LWS_LOG  (count?(log(count)+1):0)
  41. /*--------------------------------------------------------------*/
  42. #define PRENORM_NONE       (p->weight)
  43. #define PRENORM_MAX   (p->weight/docstat.max)
  44. #define PRENORM_AUG   (0.4+0.6*p->weight/docstat.max)
  45. #define PRENORM_AVG      (p->weight/docstat.sum*docstat.uniq)
  46. #define PRENORM_AVGLOG ((1+log(p->weight))/(1+log(docstat.sum/docstat.uniq)))
  47. /*--------------------------------------------------------------*/
  48. #define NORM_NONE       (1)
  49. #define NORM_SUM    (docstat.nsum)
  50. #define NORM_COS     (sqrt(docstat.nsum2))
  51. #ifdef EVAL_RUN
  52. /*
  53. extern ulong collstat;
  54. #define PIVOT_STAT  (docstat.uniq)
  55. #define PIVOT_SLOPE (0.69)
  56. #define PIVOT_PIVOT ((double)collstat/(info->state->records+1))
  57. #define NORM_PIVOT  ((1-PIVOT_SLOPE)*PIVOT_PIVOT+PIVOT_SLOPE*docstat.uniq)
  58. */
  59. #endif /* EVAL_RUN */
  60. #define PIVOT_VAL (0.0115)
  61. #define NORM_PIVOT  (1+PIVOT_VAL*docstat.uniq)
  62. /*---------------------------------------------------------------*/
  63. #define GWS_NORM      (1/sqrt(sum2))
  64. #define GWS_GFIDF       (sum/doc_cnt)
  65. /* Mysterious, but w/o (double) GWS_IDF performs better :-o */
  66. #define GWS_IDF    log(aio->info->state->records/doc_cnt)
  67. #define GWS_IDF1    log((double)aio->info->state->records/doc_cnt)
  68. #define GWS_PROB log(((double)(aio->info->state->records-doc_cnt))/doc_cnt)
  69. #define GWS_FREQ (1.0/doc_cnt)
  70. #define GWS_SQUARED pow(log((double)aio->info->state->records/doc_cnt),2)
  71. #define GWS_CUBIC   pow(log((double)aio->info->state->records/doc_cnt),3)
  72. #define GWS_ENTROPY (1-(suml/sum-log(sum))/log(aio->info->state->records))
  73. /*=================================================================*/
  74. typedef struct st_ft_word {
  75.   byte * pos;
  76.   uint  len;
  77.   double weight;
  78. #ifdef EVAL_RUN
  79.   byte  cnt;
  80. #endif /* EVAL_RUN */
  81. } FT_WORD;
  82. int is_stopword(char *word, uint len);
  83. uint _ft_make_key(MI_INFO *, uint , byte *, FT_WORD *, my_off_t);
  84. TREE * ft_parse(TREE *, byte *, int);
  85. FT_WORD * ft_linearize(MI_INFO *, uint, byte *, TREE *);