]> code.citadel.org Git - citadel.git/blob - citadel/serv_fulltext.c
* More glue code for the fulltext indexer.
[citadel.git] / citadel / serv_fulltext.c
1 /*
2  * $Id$
3  *
4  * This module handles fulltext indexing of the message base.
5  *
6  */
7
8
9 #include "sysdep.h"
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <errno.h>
17 #include <sys/types.h>
18
19 #if TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # if HAVE_SYS_TIME_H
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 #include <sys/wait.h>
31 #include <string.h>
32 #include <limits.h>
33 #include "citadel.h"
34 #include "server.h"
35 #include "sysdep_decls.h"
36 #include "citserver.h"
37 #include "support.h"
38 #include "config.h"
39 #include "serv_extensions.h"
40 #include "database.h"
41 #include "msgbase.h"
42 #include "control.h"
43 #include "room_ops.h"
44 #include "tools.h"
45 #include "serv_fulltext.h"
46 #include "ft_wordbreaker.h"
47
48
49 long ft_newhighest = 0L;
50 long *ft_newmsgs = NULL;
51 int ft_num_msgs = 0;
52 int ft_num_alloc = 0;
53
54
55 /*
56  * Index or de-index a message.  (op == 1 to index, 0 to de-index)
57  */
58 void ft_index_message(long msgnum, int op) {
59         struct CtdlMessage *msg;
60         int num_tokens = 0;
61         int *tokens = NULL;
62         int i;
63
64         msg = CtdlFetchMessage(msgnum, 1);
65         if (msg == NULL) return;
66
67         if (msg->cm_fields['M'] != NULL) {
68                 wordbreaker(msg->cm_fields['M'], &num_tokens, &tokens);
69         }
70         CtdlFreeMessage(msg);
71
72         if (num_tokens > 0) {
73                 for (i=0; i<num_tokens; ++i) {
74                         /* FIXME do something with this */
75                         lprintf(CTDL_DEBUG, "msg %ld, token %d\n",
76                                 msgnum, tokens[i]);
77                         }
78                 free(tokens);
79         }
80 }
81
82
83
84 /*
85  * Add a message to the list of those to be indexed.
86  */
87 void ft_index_msg(long msgnum, void *userdata) {
88
89         if ((msgnum > CitControl.MMfulltext) && (msgnum <= ft_newhighest)) {
90                 ++ft_num_msgs;
91                 if (ft_num_msgs > ft_num_alloc) {
92                         ft_num_alloc += 1024;
93                         ft_newmsgs = realloc(ft_newmsgs,
94                                 (ft_num_alloc * sizeof(long)));
95                 }
96                 ft_newmsgs[ft_num_msgs - 1] = msgnum;
97         }
98
99 }
100
101 /*
102  * Scan a room for messages to index.
103  */
104 void ft_index_room(struct ctdlroom *qrbuf, void *data)
105 {
106         getroom(&CC->room, qrbuf->QRname);
107         CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, ft_index_msg, NULL);
108 }
109
110
111 /*
112  * Compare function
113  */
114 int longcmp(const void *rec1, const void *rec2) {
115         long i1, i2;
116
117         i1 = *(const long *)rec1;
118         i2 = *(const long *)rec2;
119
120         if (i1 > i2) return(1);
121         if (i1 < i2) return(-1);
122         return(0);
123 }
124
125
126 /*
127  * Begin the fulltext indexing process.  (Called as an EVT_TIMER event)
128  */
129 void do_fulltext_indexing(void) {
130         int i;
131
132         lprintf(CTDL_DEBUG, "do_fulltext_indexing() started\n");
133
134         /*
135          * Check to see whether the fulltext index is up to date; if there
136          * are no messages to index, don't waste any more time trying.
137          */
138         lprintf(CTDL_DEBUG, "CitControl.MMhighest  = %ld\n",
139                 CitControl.MMhighest);
140         lprintf(CTDL_DEBUG, "CitControl.MMfulltext = %ld\n",
141                 CitControl.MMfulltext);
142         if (CitControl.MMfulltext >= CitControl.MMhighest) {
143                 lprintf(CTDL_DEBUG, "Nothing to do!\n");
144                 return;
145         }
146         
147         /*
148          * Make sure we don't run the indexer too frequently.
149          * FIXME write this...
150          */
151
152         /*
153          * If we've switched wordbreaker modules, burn the index and start
154          * over.  FIXME write this...
155          */
156
157         /*
158          * Now go through each room and find messages to index.
159          */
160         ft_newhighest = CitControl.MMhighest;
161         ForEachRoom(ft_index_room, NULL);       /* load all msg pointers */
162
163         if (ft_num_msgs > 0) {
164                 qsort(ft_newmsgs, ft_num_msgs, sizeof(long), longcmp);
165                 if (i>1) for (i=0; i<(ft_num_msgs-1); ++i) { /* purge dups */
166                         if (ft_newmsgs[i] == ft_newmsgs[i+1]) {
167                                 memmove(&ft_newmsgs[i], &ft_newmsgs[i+1],
168                                         ((ft_num_msgs - i)*sizeof(long)));
169                                 --ft_num_msgs;
170                         }
171                 }
172
173                 /* Here it is ... do each message! */
174                 for (i=0; i<ft_num_msgs; ++i) {
175                         ft_index_message(ft_newmsgs[i], 1);
176                 }
177
178                 free(ft_newmsgs);
179                 ft_num_msgs = 0;
180                 ft_num_alloc = 0;
181                 ft_newmsgs = NULL;
182         }
183
184         lprintf(CTDL_DEBUG, "do_fulltext_indexing() finished\n");
185         return;
186 }
187
188
189 /*****************************************************************************/
190
191 char *serv_fulltext_init(void)
192 {
193         CtdlRegisterSessionHook(do_fulltext_indexing, EVT_TIMER);
194         return "$Id$";
195 }