]> code.citadel.org Git - citadel.git/blob - citadel/server/modules/fulltext/serv_fulltext.c
6909e9f4770ea9f20a76d22357ebf5c5a019172c
[citadel.git] / citadel / server / modules / fulltext / serv_fulltext.c
1 // This module handles fulltext indexing of the message base.
2 //
3 // Copyright (c) 2005-2023 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or disclosure
6 // is subject to the terms of the GNU General Public License, version 3.
7
8 #include "../../sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <pwd.h>
15 #include <errno.h>
16 #include <sys/types.h>
17 #include <time.h>
18 #include <sys/wait.h>
19 #include <string.h>
20 #include <limits.h>
21 #include <libcitadel.h>
22 #include "../../citadel_defs.h"
23 #include "../../server.h"
24 #include "../../citserver.h"
25 #include "../../support.h"
26 #include "../../config.h"
27 #include "../../room_ops.h"
28 #include "../../database.h"
29 #include "../../msgbase.h"
30 #include "../../control.h"
31 #include "serv_fulltext.h"
32 #include "ft_wordbreaker.h"
33 #include "../../threads.h"
34 #include "../../context.h"
35 #include "../../ctdl_module.h"
36
37 // Compare function
38 int longcmp(const void *rec1, const void *rec2) {
39         long i1, i2;
40
41         i1 = *(const long *)rec1;
42         i2 = *(const long *)rec2;
43
44         if (i1 > i2) return(1);
45         if (i1 < i2) return(-1);
46         return(0);
47 }
48
49
50                 //if (ftc_msgs[i] != NULL) {
51                         //cdb_store(CDB_FULLTEXT, &i, sizeof(int), ftc_msgs[i], (ftc_num_msgs[i] * sizeof(long)));
52
53
54
55 // Index or de-index a message.  (op == 1 to index, 0 to de-index)
56 void ft_index_message(long msgnum, int op) {
57         int i, j;
58         Array *tokens_in_this_message = NULL;
59         struct cdbdata cdb_bucket;
60         StrBuf *msgtext;
61         char *txt;
62         int tok;
63         struct CtdlMessage *msg = NULL;
64
65         if (msgnum == 0) return;
66
67         msg = CtdlFetchMessage(msgnum, 1);
68         if (msg == NULL) {
69                 syslog(LOG_ERR, "fulltext: ft_index_message() could not load msg %ld", msgnum);
70                 return;
71         }
72
73         if (!CM_IsEmpty(msg, eSuppressIdx)) {
74                 syslog(LOG_DEBUG, "fulltext: ft_index_message() excluded msg %ld", msgnum);
75                 CM_Free(msg);
76                 return;
77         }
78
79         syslog(LOG_DEBUG, "fulltext: ft_index_message() %s msg %ld", (op ? "adding" : "removing") , msgnum);
80
81         // Output the message as text before indexing it, so we don't end up indexing a bunch of encoded base64, etc.
82         CC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
83         CtdlOutputPreLoadedMsg(msg, MT_CITADEL, HEADERS_ALL, 0, 1, 0);
84         CM_Free(msg);
85         msgtext = CC->redirect_buffer;
86         CC->redirect_buffer = NULL;
87         if (msgtext != NULL) {
88                 syslog(LOG_DEBUG, "fulltext: wordbreaking message %ld (%d bytes)", msgnum, StrLength(msgtext));
89         }
90         txt = SmashStrBuf(&msgtext);
91         tokens_in_this_message = wordbreaker(txt);
92         free(txt);
93
94         syslog(LOG_DEBUG, "fulltext: %sindexing message %ld [%d tokens]",
95                 (op ? "" : "de"),
96                 msgnum,
97                 array_len(tokens_in_this_message)
98         );
99
100         if (array_len(tokens_in_this_message) > 0) {
101                 for (i=0; i<array_len(tokens_in_this_message); ++i) {
102
103                         // Identify the bucket which we will be modifying
104                         memcpy(&tok, array_get_element_at(tokens_in_this_message, i), sizeof(int));
105         
106                         // fetch the bucket
107                         // cdb_bucket = cdb_fetch(CDB_FULLTEXT, &tok, sizeof(int));
108                         // if op == 1 , add this msgnum to the record.
109                         // if op == 0 , remove this msgnum from the record.
110                         // FIXME do this
111                         // FIXME then write it back to disk
112                 }
113         }
114         array_free(tokens_in_this_message);
115 }
116
117
118
119 Array *messages_to_be_indexed = NULL;
120 long highest_msg_already_indexed = 0;
121 long highest_msg_to_be_indexed = 0;
122
123
124 // Scan a room for messages to index.
125 void ft_index_room(struct ctdlroom *qrbuf, void *data) {
126         if (server_shutting_down) {
127                 return;
128         }
129         CtdlGetRoom(&CC->room, qrbuf->QRname);
130
131 #if 0
132         int num_msgs = 0;
133         long *msglist;
134         int i;
135         num_msgs = CtdlFetchMsgList(CC->room.QRnumber, &msglist);
136         if (msglist != NULL) {
137                 for (i=0; i<num_msgs; ++i) {
138                         if (
139                                 (msglist[i] > 0)
140                                 && (msglist[i] > highest_msg_already_indexed)
141                                 && (msglist[i] <= highest_msg_to_be_indexed)
142                            ) {
143                                 array_append(messages_to_be_indexed, &msglist[i]);
144                         }
145                 }
146                 free(msglist);
147         }
148 #endif
149 }
150
151
152 // Begin the fulltext indexing process.
153 void do_fulltext_indexing(void) {
154         int i;
155         static time_t last_progress = 0L;
156         static int is_running = 0;
157         if (is_running) return;         // Concurrency check - only one can run 
158         is_running = 1;
159
160         // Don't do this if the site doesn't have it enabled.
161         if (!CtdlGetConfigInt("c_enable_fulltext")) {
162                 return;
163         }
164         syslog(LOG_DEBUG, "fulltext: indexing started");
165
166         // If we've switched wordbreaker modules, burn the index and start over.
167         begin_critical_section(S_CONTROL);
168         if (CtdlGetConfigInt("MM_fulltext_wordbreaker") != FT_WORDBREAKER_ID) {
169                 syslog(LOG_DEBUG, "fulltext: wb ver on disk = %d, code ver = %d",
170                         CtdlGetConfigInt("MM_fulltext_wordbreaker"), FT_WORDBREAKER_ID
171                 );
172                 syslog(LOG_INFO, "fulltext: (re)initializing index");
173                 cdb_trunc(CDB_FULLTEXT);
174                 CtdlSetConfigLong("MMfulltext", 0);
175         }
176         end_critical_section(S_CONTROL);
177
178         // Silently return if our fulltext index is up to date with new messages.
179         if ((CtdlGetConfigLong("MMfulltext") >= CtdlGetConfigLong("MMhighest"))) {
180                 return;         // nothing to do!
181         }
182
183         highest_msg_already_indexed = CtdlGetConfigLong("MMfulltext");
184         highest_msg_to_be_indexed = CtdlGetConfigLong("MMhighest");
185         messages_to_be_indexed = array_new(sizeof(long));
186
187         // Now go through each room and find messages to index.
188         CtdlForEachRoom(ft_index_room, NULL);                           // load all msg pointers
189         array_sort(messages_to_be_indexed, longcmp);                    // sort them
190
191         // Here it is ... do each message!
192         long msgnum = 0;
193         long prev_msgnum = 0;
194         for (i=0; i<array_len(messages_to_be_indexed); ++i) {
195                 memcpy(&msgnum, array_get_element_at(messages_to_be_indexed, i), sizeof(long));
196
197                 if (msgnum != prev_msgnum) {                            // careful to avoid dupes
198                         ft_index_message(msgnum, 1);
199                 }
200
201                 prev_msgnum = msgnum;
202         }
203
204         array_free(messages_to_be_indexed);
205
206 #if 0
207         syslog(LOG_DEBUG,
208                 "fulltext: indexed %d of %d messages (%d%%)", i, ft_num_msgs, ((i*100) / ft_num_msgs));
209         last_progress = time(NULL);
210
211         // Check to see if we need to quit early
212         if (server_shutting_down) {
213                 syslog(LOG_DEBUG, "fulltext: indexer quitting early");
214                 ft_newhighest = ft_newmsgs[i];
215                 break;
216         }
217
218         begin_critical_section(S_CONTROL);
219         CtdlSetConfigLong("MMfulltext", ft_newhighest);
220         CtdlSetConfigInt("MM_fulltext_wordbreaker", FT_WORDBREAKER_ID);
221         end_critical_section(S_CONTROL);
222 #endif
223
224         syslog(LOG_DEBUG, "fulltext: indexing finished");
225         is_running = 0;
226         return;
227 }
228
229
230 // API call to perform searches.
231 // (This one does the "all of these words" search.)
232 // Caller is responsible for freeing the message list.
233 void ft_search(int *fts_num_msgs, long **fts_msgs, const char *search_string) {
234         Array *t = NULL;
235         int i, j;
236         struct cdbdata cdb_bucket;
237         int num_all_msgs = 0;
238         long *all_msgs = NULL;
239         int num_ret_msgs = 0;
240         int num_ret_alloc = 0;
241         long *ret_msgs = NULL;
242         int tok;
243
244 #if 0
245         t = wordbreaker(search_string);
246         if (array_len(t) > 0) {
247                 for (i=0; i<array_len(t); ++i) {
248
249                         // search for tokens[i]
250                         memcpy(&tok, array_get_element_at(t, i), sizeof(int));
251
252                         // fetch the bucket, Liza
253                         if (ftc_msgs[tok] == NULL) {
254                                 cdb_bucket = cdb_fetch(CDB_FULLTEXT, &tok, sizeof(int));
255                                 if (cdb_bucket.ptr != NULL) {
256                                         ftc_num_msgs[tok] = cdb_bucket.len / sizeof(long);
257                                         ftc_msgs[tok] = (long *) malloc(cdb_bucket.len);
258                                         memcpy(ftc_msgs[tok], cdb_bucket.ptr, cdb_bucket.len);
259                                 }
260                                 else {
261                                         ftc_num_msgs[tok] = 0;
262                                         ftc_msgs[tok] = malloc(sizeof(long));
263                                 }
264                         }
265
266                         num_all_msgs += ftc_num_msgs[tok];
267                         if (num_all_msgs > 0) {
268                                 all_msgs = realloc(all_msgs, num_all_msgs*sizeof(long) );
269                                 memcpy(&all_msgs[num_all_msgs-ftc_num_msgs[tok]], ftc_msgs[tok], ftc_num_msgs[tok]*sizeof(long) );
270                         }
271
272                 }
273                 array_free(t);
274                 if (all_msgs != NULL) {
275                         qsort(all_msgs, num_all_msgs, sizeof(long), longcmp);
276
277                         // At this point, if a message appears array_len(t) times in the
278                         // list, then it contains all of the search tokens.
279                         if (num_all_msgs >= array_len(t))
280                                 for (j=0; j<(num_all_msgs-array_len(t)+1); ++j) {
281                                         if (all_msgs[j] == all_msgs[j+array_len(t)-1]) {
282                                                 ++num_ret_msgs;
283                                                 if (num_ret_msgs > num_ret_alloc) {
284                                                         num_ret_alloc += 64;
285                                                         ret_msgs = realloc(ret_msgs, (num_ret_alloc*sizeof(long)) );
286                                                 }
287                                                 ret_msgs[num_ret_msgs - 1] = all_msgs[j];
288                                                 
289                                         }
290                                 }
291                         free(all_msgs);
292                 }
293         }
294
295         *fts_num_msgs = num_ret_msgs;
296         *fts_msgs = ret_msgs;
297 #endif
298 }
299
300
301 // This search command is for diagnostic purposes and may be removed or replaced.
302 void cmd_srch(char *argbuf) {
303         int num_msgs = 0;
304         long *msgs = NULL;
305         int i;
306         char search_string[256];
307
308         if (CtdlAccessCheck(ac_logged_in)) return;
309
310         if (!CtdlGetConfigInt("c_enable_fulltext")) {
311                 cprintf("%d Full text index is not enabled on this server.\n", ERROR + CMD_NOT_SUPPORTED);
312                 return;
313         }
314
315         extract_token(search_string, argbuf, 0, '|', sizeof search_string);
316         ft_search(&num_msgs, &msgs, search_string);
317
318         cprintf("%d %d msgs match all search words:\n", LISTING_FOLLOWS, num_msgs);
319         if (num_msgs > 0) {
320                 for (i=0; i<num_msgs; ++i) {
321                         cprintf("%ld\n", msgs[i]);
322                 }
323         }
324         if (msgs != NULL) free(msgs);
325         cprintf("000\n");
326 }
327
328
329
330 void ft_delete_remove(char *room, long msgnum) {
331         if (room) return;
332         
333         // Remove from fulltext index
334         if (CtdlGetConfigInt("c_enable_fulltext")) {
335                 ft_index_message(msgnum, 0);
336         }
337 }
338
339
340 // Initialization function, called from modules_init.c
341 char *ctdl_module_init_fulltext(void) {
342         if (!threading) {
343                 CtdlRegisterProtoHook(cmd_srch, "SRCH", "Full text search");
344                 CtdlRegisterDeleteHook(ft_delete_remove);
345                 CtdlRegisterSearchFuncHook(ft_search, "fulltext");
346                 CtdlRegisterSessionHook(do_fulltext_indexing, EVT_TIMER, PRIO_CLEANUP + 300);
347         }
348         // return our module name for the log
349         return "fulltext";
350 }