home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / ft_global.h < prev    next >
C/C++ Source or Header  |  2000-11-16  |  2KB  |  58 lines

  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.  
  17. /* Written by Sergei A. Golubchik, who has a shared copyright to this code */
  18.  
  19. /* some definitions for full-text indices */
  20.  
  21. /* #include "myisam.h" */
  22.  
  23. #ifndef _ft_global_h
  24. #define _ft_global_h
  25. #ifdef  __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. #define FT_QUERY_MAXLEN 1024
  30.  
  31. typedef struct ft_doc_rec {
  32.   my_off_t  dpos;
  33.   double    weight;
  34. } FT_DOC;
  35.  
  36. typedef struct st_ft_doclist {
  37.   int       ndocs;
  38.   int       curdoc;
  39.   void      *info;  /* actually (MI_INFO *) but don't want to include myisam.h */
  40.   FT_DOC    doc[1];
  41. } FT_DOCLIST;
  42.  
  43. extern const char *ft_precompiled_stopwords[];
  44.  
  45. int ft_init_stopwords(const char **);
  46. void ft_free_stopwords(void);
  47.  
  48. FT_DOCLIST * ft_init_search(void *, uint, byte *, uint, my_bool);
  49. int          ft_read_next(FT_DOCLIST *, char *);
  50. #define      ft_close_search(handler)   my_free(((gptr)(handler)),MYF(0))
  51. #define      ft_get_relevance(handler)  ((handler)->doc[(handler)->curdoc].weight)
  52. #define      ft_reinit_search(handler)  (((FT_DOCLIST *)(handler))->curdoc=-1)
  53.  
  54. #ifdef  __cplusplus
  55. }
  56. #endif
  57. #endif
  58.