1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
/*
* This module handles fulltext indexing of the message base.
* Copyright (c) 2005-2011 by the citadel.org team
*
* This program is open source software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "sysdep.h"
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <signal.h>
#include <pwd.h>
#include <errno.h>
#include <sys/types.h>
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#include <sys/wait.h>
#include <string.h>
#include <limits.h>
#include <libcitadel.h>
#include "citadel.h"
#include "server.h"
#include "citserver.h"
#include "support.h"
#include "config.h"
#include "database.h"
#include "msgbase.h"
#include "control.h"
#include "serv_fulltext.h"
#include "ft_wordbreaker.h"
#include "threads.h"
#include "context.h"
#include "ctdl_module.h"
long ft_newhighest = 0L;
long *ft_newmsgs = NULL;
int ft_num_msgs = 0;
int ft_num_alloc = 0;
int ftc_num_msgs[65536];
long *ftc_msgs[65536];
/*
* Compare function
*/
int longcmp(const void *rec1, const void *rec2) {
long i1, i2;
i1 = *(const long *)rec1;
i2 = *(const long *)rec2;
if (i1 > i2) return(1);
if (i1 < i2) return(-1);
return(0);
}
/*
* Flush our index cache out to disk.
*/
void ft_flush_cache(void) {
int i;
time_t last_update = 0;
for (i=0; i<65536; ++i) {
if ((time(NULL) - last_update) >= 10) {
syslog(LOG_INFO,
"Flushing index cache to disk (%d%% complete)",
(i * 100 / 65536)
);
last_update = time(NULL);
}
if (ftc_msgs[i] != NULL) {
cdb_store(CDB_FULLTEXT, &i, sizeof(int), ftc_msgs[i],
(ftc_num_msgs[i] * sizeof(long)));
ftc_num_msgs[i] = 0;
free(ftc_msgs[i]);
ftc_msgs[i] = NULL;
}
}
syslog(LOG_INFO, "Flushed index cache to disk (100%% complete)");
}
/*
* Index or de-index a message. (op == 1 to index, 0 to de-index)
*/
void ft_index_message(long msgnum, int op) {
int num_tokens = 0;
int *tokens = NULL;
int i, j;
struct cdbdata *cdb_bucket;
StrBuf *msgtext;
char *txt;
int tok;
struct CtdlMessage *msg = NULL;
msg = CtdlFetchMessage(msgnum, 1);
if (msg == NULL) {
syslog(LOG_ERR, "ft_index_message() could not load msg %ld", msgnum);
return;
}
if (msg->cm_fields['1'] != NULL) {
syslog(LOG_DEBUG, "ft_index_message() excluded msg %ld", msgnum);
CtdlFreeMessage(msg);
return;
}
syslog(LOG_DEBUG, "ft_index_message() %s msg %ld", (op ? "adding" : "removing") , msgnum);
/* Output the message as text before indexing it, so we don't end up
* indexing a bunch of encoded base64, etc.
*/
CC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
CtdlOutputPreLoadedMsg(msg, MT_CITADEL, HEADERS_ALL, 0, 1, 0);
CtdlFreeMessage(msg);
msgtext = CC->redirect_buffer;
CC->redirect_buffer = NULL;
syslog(LOG_DEBUG, "Wordbreaking message %ld...", msgnum);
if ((msgtext == NULL) || (StrLength(msgtext) == 0)) {
syslog(LOG_ALERT, "This message has a zero length. Probable data corruption.");
}
txt = SmashStrBuf(&msgtext);
wordbreaker(txt, &num_tokens, &tokens);
free(txt);
syslog(LOG_DEBUG, "Indexing message %ld [%d tokens]", msgnum, num_tokens);
if (num_tokens > 0) {
for (i=0; i<num_tokens; ++i) {
/* Add the message to the relevant token bucket */
/* search for tokens[i] */
tok = tokens[i];
if ( (tok >= 0) && (tok <= 65535) ) {
/* fetch the bucket, Liza */
if (ftc_msgs[tok] == NULL) {
cdb_bucket = cdb_fetch(CDB_FULLTEXT, &tok, sizeof(int));
if (cdb_bucket != NULL) {
ftc_num_msgs[tok] = cdb_bucket->len / sizeof(long);
ftc_msgs[tok] = (long *)cdb_bucket->ptr;
cdb_bucket->ptr = NULL;
cdb_free(cdb_bucket);
}
else {
ftc_num_msgs[tok] = 0;
ftc_msgs[tok] = malloc(sizeof(long));
}
}
if (op == 1) { /* add to index */
++ftc_num_msgs[tok];
ftc_msgs[tok] = realloc(ftc_msgs[tok],
ftc_num_msgs[tok]*sizeof(long));
ftc_msgs[tok][ftc_num_msgs[tok] - 1] = msgnum;
}
if (op == 0) { /* remove from index */
if (ftc_num_msgs[tok] >= 1) {
for (j=0; j<ftc_num_msgs[tok]; ++j) {
if (ftc_msgs[tok][j] == msgnum) {
memmove(&ftc_msgs[tok][j], &ftc_msgs[tok][j+1], ((ftc_num_msgs[tok] - j - 1)*sizeof(long)));
--ftc_num_msgs[tok];
--j;
}
}
}
}
}
else {
syslog(LOG_ALERT, "Invalid token %d !!", tok);
}
}
free(tokens);
}
}
/*
* Add a message to the list of those to be indexed.
*/
void ft_index_msg(long msgnum, void *userdata) {
if ((msgnum > CitControl.MMfulltext) && (msgnum <= ft_newhighest)) {
++ft_num_msgs;
if (ft_num_msgs > ft_num_alloc) {
ft_num_alloc += 1024;
ft_newmsgs = realloc(ft_newmsgs,
(ft_num_alloc * sizeof(long)));
}
ft_newmsgs[ft_num_msgs - 1] = msgnum;
}
}
/*
* Scan a room for messages to index.
*/
void ft_index_room(struct ctdlroom *qrbuf, void *data)
{
if (server_shutting_down)
return;
CtdlGetRoom(&CC->room, qrbuf->QRname);
CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, ft_index_msg, NULL);
}
/*
* Begin the fulltext indexing process.
*/
void do_fulltext_indexing(void) {
int i;
static time_t last_index = 0L;
static time_t last_progress = 0L;
time_t run_time = 0L;
time_t end_time = 0L;
static int is_running = 0;
if (is_running) return; /* Concurrency check - only one can run */
is_running = 1;
/*
* Don't do this if the site doesn't have it enabled.
*/
if (!config.c_enable_fulltext) {
return;
}
/*
* Make sure we don't run the indexer too frequently.
* FIXME move the setting into config
*/
if ( (time(NULL) - last_index) < 300L) {
return;
}
/*
* Check to see whether the fulltext index is up to date; if there
* are no messages to index, don't waste any more time trying.
*/
if ((CitControl.MMfulltext >= CitControl.MMhighest) && (CitControl.fulltext_wordbreaker == FT_WORDBREAKER_ID)) {
return; /* nothing to do! */
}
run_time = time(NULL);
syslog(LOG_DEBUG, "do_fulltext_indexing() started (%ld)", run_time);
/*
* If we've switched wordbreaker modules, burn the index and start
* over.
*/
begin_critical_section(S_CONTROL);
if (CitControl.fulltext_wordbreaker != FT_WORDBREAKER_ID) {
syslog(LOG_DEBUG, "wb ver on disk = %d, code ver = %d",
CitControl.fulltext_wordbreaker, FT_WORDBREAKER_ID
);
syslog(LOG_INFO, "(re)initializing full text index");
cdb_trunc(CDB_FULLTEXT);
CitControl.MMfulltext = 0L;
put_control();
}
end_critical_section(S_CONTROL);
/*
* Now go through each room and find messages to index.
*/
ft_newhighest = CitControl.MMhighest;
CtdlForEachRoom(ft_index_room, NULL); /* load all msg pointers */
if (ft_num_msgs > 0) {
qsort(ft_newmsgs, ft_num_msgs, sizeof(long), longcmp);
for (i=0; i<(ft_num_msgs-1); ++i) { /* purge dups */
if (ft_newmsgs[i] == ft_newmsgs[i+1]) {
memmove(&ft_newmsgs[i], &ft_newmsgs[i+1],
((ft_num_msgs - i - 1)*sizeof(long)));
--ft_num_msgs;
--i;
}
}
/* Here it is ... do each message! */
for (i=0; i<ft_num_msgs; ++i) {
if (time(NULL) != last_progress) {
syslog(LOG_DEBUG,
"Indexed %d of %d messages (%d%%)",
i, ft_num_msgs,
((i*100) / ft_num_msgs)
);
last_progress = time(NULL);
}
ft_index_message(ft_newmsgs[i], 1);
/* Check to see if we need to quit early */
if (server_shutting_down) {
syslog(LOG_DEBUG, "Indexer quitting early");
ft_newhighest = ft_newmsgs[i];
break;
}
/* Check to see if we have to maybe flush to disk */
if (i >= FT_MAX_CACHE) {
syslog(LOG_DEBUG, "Time to flush.");
ft_newhighest = ft_newmsgs[i];
break;
}
}
free(ft_newmsgs);
ft_num_msgs = 0;
ft_num_alloc = 0;
ft_newmsgs = NULL;
}
end_time = time(NULL);
if (server_shutting_down) {
is_running = 0;
return;
}
syslog(LOG_DEBUG, "do_fulltext_indexing() duration (%ld)", end_time - run_time);
/* Save our place so we don't have to do this again */
ft_flush_cache();
begin_critical_section(S_CONTROL);
CitControl.MMfulltext = ft_newhighest;
CitControl.fulltext_wordbreaker = FT_WORDBREAKER_ID;
put_control();
end_critical_section(S_CONTROL);
last_index = time(NULL);
syslog(LOG_DEBUG, "do_fulltext_indexing() finished");
is_running = 0;
return;
}
/*
* API call to perform searches.
* (This one does the "all of these words" search.)
* Caller is responsible for freeing the message list.
*/
void ft_search(int *fts_num_msgs, long **fts_msgs, const char *search_string) {
int num_tokens = 0;
int *tokens = NULL;
int i, j;
struct cdbdata *cdb_bucket;
int num_all_msgs = 0;
long *all_msgs = NULL;
int num_ret_msgs = 0;
int num_ret_alloc = 0;
long *ret_msgs = NULL;
int tok;
wordbreaker(search_string, &num_tokens, &tokens);
if (num_tokens > 0) {
for (i=0; i<num_tokens; ++i) {
/* search for tokens[i] */
tok = tokens[i];
/* fetch the bucket, Liza */
if (ftc_msgs[tok] == NULL) {
cdb_bucket = cdb_fetch(CDB_FULLTEXT, &tok, sizeof(int));
if (cdb_bucket != NULL) {
ftc_num_msgs[tok] = cdb_bucket->len / sizeof(long);
ftc_msgs[tok] = (long *)cdb_bucket->ptr;
cdb_bucket->ptr = NULL;
cdb_free(cdb_bucket);
}
else {
ftc_num_msgs[tok] = 0;
ftc_msgs[tok] = malloc(sizeof(long));
}
}
num_all_msgs += ftc_num_msgs[tok];
if (num_all_msgs > 0) {
all_msgs = realloc(all_msgs, num_all_msgs*sizeof(long) );
memcpy(&all_msgs[num_all_msgs-ftc_num_msgs[tok]],
ftc_msgs[tok], ftc_num_msgs[tok]*sizeof(long) );
}
}
free(tokens);
if (all_msgs != NULL) {
qsort(all_msgs, num_all_msgs, sizeof(long), longcmp);
/*
* At this point, if a message appears num_tokens times in the
* list, then it contains all of the search tokens.
*/
if (num_all_msgs >= num_tokens)
for (j=0; j<(num_all_msgs-num_tokens+1); ++j) {
if (all_msgs[j] == all_msgs[j+num_tokens-1]) {
++num_ret_msgs;
if (num_ret_msgs > num_ret_alloc) {
num_ret_alloc += 64;
ret_msgs = realloc(ret_msgs,
(num_ret_alloc*sizeof(long)) );
}
ret_msgs[num_ret_msgs - 1] = all_msgs[j];
}
}
free(all_msgs);
}
}
*fts_num_msgs = num_ret_msgs;
*fts_msgs = ret_msgs;
}
/*
* This search command is for diagnostic purposes and may be removed or replaced.
*/
void cmd_srch(char *argbuf) {
int num_msgs = 0;
long *msgs = NULL;
int i;
char search_string[256];
if (CtdlAccessCheck(ac_logged_in)) return;
if (!config.c_enable_fulltext) {
cprintf("%d Full text index is not enabled on this server.\n",
ERROR + CMD_NOT_SUPPORTED);
return;
}
extract_token(search_string, argbuf, 0, '|', sizeof search_string);
ft_search(&num_msgs, &msgs, search_string);
cprintf("%d %d msgs match all search words:\n",
LISTING_FOLLOWS, num_msgs);
if (num_msgs > 0) {
for (i=0; i<num_msgs; ++i) {
cprintf("%ld\n", msgs[i]);
}
}
if (msgs != NULL) free(msgs);
cprintf("000\n");
}
/*
* Zero out our index cache.
*/
void initialize_ft_cache(void) {
memset(ftc_num_msgs, 0, (65536 * sizeof(int)));
memset(ftc_msgs, 0, (65536 * sizeof(long *)));
}
void ft_delete_remove(char *room, long msgnum)
{
if (room) return;
/* Remove from fulltext index */
if (config.c_enable_fulltext) {
ft_index_message(msgnum, 0);
}
}
/*****************************************************************************/
CTDL_MODULE_INIT(fulltext)
{
if (!threading)
{
initialize_ft_cache();
initialize_noise_words();
CtdlRegisterProtoHook(cmd_srch, "SRCH", "Full text search");
CtdlRegisterDeleteHook(ft_delete_remove);
CtdlRegisterSearchFuncHook(ft_search, "fulltext");
CtdlRegisterCleanupHook(noise_word_cleanup);
CtdlRegisterSessionHook(do_fulltext_indexing, EVT_TIMER, PRIO_CLEANUP + 300);
}
/* return our module name for the log */
return "fulltext";
}
|