MySQL 8.0.37
Source Code Documentation
ftdefs.h
Go to the documentation of this file.
1/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
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, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24/* Written by Sergei A. Golubchik, who has a shared copyright to this code */
25
26/**
27 @file storage/myisam/ftdefs.h
28 Some definitions for full-text indices.
29*/
30
31#include <math.h>
32#include <mysql/plugin.h>
33
34#include "m_ctype.h"
35#include "my_tree.h"
38
39#define true_word_char(ctype, character) \
40 ((ctype) & (_MY_U | _MY_L | _MY_NMR) || (character) == '_')
41
42#define FT_MAX_WORD_LEN_FOR_SORT 31
43
44#define FTPARSER_MEMROOT_ALLOC_SIZE 65536
45
46/* Interested readers may consult SMART
47 (ftp://ftp.cs.cornell.edu/pub/smart/smart.11.0.tar.Z)
48 for an excellent implementation of vector space model we use.
49 It also demonstrate the usage of different weghting techniques.
50 This code, though, is completely original and is not based on the
51 SMART code but was in some cases inspired by it.
52
53 NORM_PIVOT was taken from the article
54 A.Singhal, C.Buckley, M.Mitra, "Pivoted Document Length Normalization",
55 ACM SIGIR'96, 21-29, 1996
56 */
57
58#define LWS_FOR_QUERY LWS_TF
59#define LWS_IN_USE LWS_LOG
60#define PRENORM_IN_USE PRENORM_AVG
61#define NORM_IN_USE NORM_PIVOT
62#define GWS_IN_USE GWS_PROB
63/*==============================================================*/
64#define LWS_TF (count)
65#define LWS_BINARY (count > 0)
66#define LWS_SQUARE (count * count)
67#define LWS_LOG (count ? (log((double)count) + 1) : 0)
68/*--------------------------------------------------------------*/
69#define PRENORM_NONE (p->weight)
70#define PRENORM_MAX (p->weight / docstat.max)
71#define PRENORM_AUG (0.4 + 0.6 * p->weight / docstat.max)
72#define PRENORM_AVG (p->weight / docstat.sum * docstat.uniq)
73#define PRENORM_AVGLOG \
74 ((1 + log(p->weight)) / (1 + log(docstat.sum / docstat.uniq)))
75/*--------------------------------------------------------------*/
76#define NORM_NONE (1)
77#define NORM_SUM (docstat.nsum)
78#define NORM_COS (sqrt(docstat.nsum2))
79
80#define PIVOT_VAL (0.0115)
81#define NORM_PIVOT (1 + PIVOT_VAL * docstat.uniq)
82/*---------------------------------------------------------------*/
83#define GWS_NORM (1 / sqrt(sum2))
84#define GWS_GFIDF (sum / doc_cnt)
85/* Mysterious, but w/o (double) GWS_IDF performs better :-o */
86#define GWS_IDF log(aio->info->state->records / doc_cnt)
87#define GWS_IDF1 log((double)aio->info->state->records / doc_cnt)
88#define GWS_PROB \
89 ((aio->info->state->records > doc_cnt) \
90 ? log(((double)(aio->info->state->records - doc_cnt)) / doc_cnt) \
91 : 0)
92#define GWS_FREQ (1.0 / doc_cnt)
93#define GWS_SQUARED pow(log((double)aio->info->state->records / doc_cnt), 2)
94#define GWS_CUBIC pow(log((double)aio->info->state->records / doc_cnt), 3)
95#define GWS_ENTROPY \
96 (1 - (suml / sum - log(sum)) / log(aio->info->state->records))
97/*=================================================================*/
98
99/* Boolean search operators */
100#define FTB_YES (ft_boolean_syntax[0])
101#define FTB_EGAL (ft_boolean_syntax[1])
102#define FTB_NO (ft_boolean_syntax[2])
103#define FTB_INC (ft_boolean_syntax[3])
104#define FTB_DEC (ft_boolean_syntax[4])
105#define FTB_LBR (ft_boolean_syntax[5])
106#define FTB_RBR (ft_boolean_syntax[6])
107#define FTB_NEG (ft_boolean_syntax[7])
108#define FTB_TRUNC (ft_boolean_syntax[8])
109#define FTB_LQUOT (ft_boolean_syntax[10])
110#define FTB_RQUOT (ft_boolean_syntax[11])
111
112#ifdef __cplusplus
113extern "C" {
114#endif
115
116struct FT_WORD {
117 uchar *pos;
118 uint len;
119 double weight;
120};
121
122int is_stopword(char *word, uint len);
123
125
128uchar ft_simple_get_word(const CHARSET_INFO *, uchar **, const uchar *,
129 FT_WORD *, bool);
130
131typedef struct _st_ft_seg_iterator {
134 const uchar *rec, *pos;
136
140
141void ft_parse_init(TREE *, const CHARSET_INFO *);
142int ft_parse(TREE *, uchar *, int, struct st_mysql_ftparser *parser,
146uint _mi_ft_parse(TREE *, MI_INFO *, uint, const uchar *,
148
151 const CHARSET_INFO *);
152
153extern const struct _ft_vft _ft_vft_nlq;
154int ft_nlq_read_next(FT_INFO *, char *);
160
161extern const struct _ft_vft _ft_vft_boolean;
162
163int ft_boolean_read_next(FT_INFO *, char *);
169
172 uint keynr,
173 uint paramnr);
175
176#ifdef __cplusplus
177} // extern "C"
178#endif
FT_WORD * ft_linearize(TREE *, MEM_ROOT *)
Definition: ft_parser.cc:66
void ftparser_call_deinitializer(MI_INFO *info)
Definition: ft_parser.cc:362
void ft_parse_init(TREE *, const CHARSET_INFO *)
Definition: ft_parser.cc:243
FT_INFO * ft_init_nlq_search(MI_INFO *, uint, uchar *, uint, uint, uchar *)
Definition: ft_nlq_search.cc:218
int ft_nlq_read_next(FT_INFO *, char *)
Definition: ft_nlq_search.cc:307
const struct _ft_vft _ft_vft_boolean
Definition: ft_static.cc:60
const struct _ft_vft _ft_vft_nlq
Definition: ft_static.cc:57
int ft_parse(TREE *, uchar *, int, struct st_mysql_ftparser *parser, MYSQL_FTPARSER_PARAM *, MEM_ROOT *)
Definition: ft_parser.cc:289
float ft_nlq_find_relevance(FT_INFO *, uchar *, uint)
Definition: ft_nlq_search.cc:330
void ft_boolean_close_search(FT_INFO *)
Definition: ft_boolean_search.cc:940
void _mi_ft_segiterator_dummy_init(const uchar *, uint, FT_SEG_ITERATOR *)
Definition: ft_update.cc:48
void ft_nlq_close_search(FT_INFO *)
Definition: ft_nlq_search.cc:355
float ft_boolean_find_relevance(FT_INFO *, uchar *, uint)
Definition: ft_boolean_search.cc:883
uchar ft_get_word(const CHARSET_INFO *, uchar **, uchar *, FT_WORD *, MYSQL_FTPARSER_BOOLEAN_INFO *)
Definition: ft_parser.cc:119
void ft_nlq_reinit_search(FT_INFO *)
Definition: ft_nlq_search.cc:362
float ft_nlq_get_relevance(FT_INFO *)
Definition: ft_nlq_search.cc:357
my_off_t ft_nlq_get_docid(FT_INFO *)
MYSQL_FTPARSER_PARAM * ftparser_call_initializer(MI_INFO *info, uint keynr, uint paramnr)
Definition: ft_parser.cc:333
uint _mi_ft_parse(TREE *, MI_INFO *, uint, const uchar *, MYSQL_FTPARSER_PARAM *, MEM_ROOT *)
Definition: ft_update.cc:101
FT_WORD * _mi_ft_parserecord(MI_INFO *, uint, const uchar *, MEM_ROOT *)
Definition: ft_update.cc:120
struct _st_ft_seg_iterator FT_SEG_ITERATOR
FT_INFO * ft_init_boolean_search(MI_INFO *, uint, uchar *, uint, const CHARSET_INFO *)
Definition: ft_boolean_search.cc:515
int is_stopword(char *word, uint len)
Definition: ft_stopwords.cc:123
uint _mi_ft_segiterator(FT_SEG_ITERATOR *)
Definition: ft_update.cc:67
my_off_t ft_boolean_get_docid(FT_INFO *)
MYSQL_FTPARSER_PARAM * ftparser_alloc_param(MI_INFO *info)
Definition: ft_parser.cc:311
uchar ft_simple_get_word(const CHARSET_INFO *, uchar **, const uchar *, FT_WORD *, bool)
Definition: ft_parser.cc:209
void _mi_ft_segiterator_init(MI_INFO *, uint, const uchar *, FT_SEG_ITERATOR *)
Definition: ft_update.cc:39
int ft_boolean_read_next(FT_INFO *, char *)
Definition: ft_boolean_search.cc:742
uint _ft_make_key(MI_INFO *, uint, uchar *, FT_WORD *, my_off_t)
Definition: ft_update.cc:265
float ft_boolean_get_relevance(FT_INFO *)
Definition: ft_boolean_search.cc:949
void ft_boolean_reinit_search(FT_INFO *)
Definition: ft_boolean_search.cc:954
Some definitions for full-text indices.
A better implementation of the UNIX ctype(3) library.
ulonglong my_off_t
Definition: my_inttypes.h:72
unsigned char uchar
Definition: my_inttypes.h:52
Log info(cout, "NOTE")
struct Parser parser
Code for handling of priority queues.
Definition: m_ctype.h:385
Definition: ft_global.h:72
FTS query token.
Definition: fts0tokenize.h:58
uint len
word len
Definition: fts0tokenize.h:60
double weight
word weight, unused in innodb
Definition: fts0tokenize.h:61
uchar * pos
word start pointer
Definition: fts0tokenize.h:59
Definition: my_compare.h:60
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Definition: myisamdef.h:252
Definition: plugin_ftparser.h:129
Definition: plugin_ftparser.h:191
Definition: my_tree.h:68
Definition: ft_global.h:48
Definition: ftdefs.h:131
uint len
Definition: ftdefs.h:132
HA_KEYSEG * seg
Definition: ftdefs.h:133
const uchar * rec
Definition: ftdefs.h:134
uint num
Definition: ftdefs.h:132
const uchar * pos
Definition: ftdefs.h:134
Definition: plugin_ftparser.h:212
unsigned int uint
Definition: uca9-dump.cc:75