filter: index/unindex dives on loading or clearing logs

When loading dive data, populate the fulltext index. When clearing
dive data, free the fulltext index. When deleting a dive, remove it
from the fulltext index.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-02-16 22:26:47 +01:00 committed by Dirk Hohndel
parent 6434ad2628
commit d3f6e032cc
3 changed files with 20 additions and 0 deletions

View file

@ -5,6 +5,7 @@
#include "deco.h"
#include "divesite.h"
#include "divelist.h"
#include "fulltext.h"
#include "planner.h"
#include "qthelper.h"
#include "gettext.h"
@ -829,6 +830,10 @@ void process_loaded_dives()
/* Autogroup dives if desired by user. */
autogroup_dives(&dive_table, &trip_table);
#ifndef SUBSURFACE_MOBILE
fulltext_reload();
#endif
}
/*
@ -1338,6 +1343,10 @@ int get_dive_id_closest_to(timestamp_t when)
void clear_dive_file_data()
{
#ifndef SUBSURFACE_MOBILE
fulltext_unregister_all();
#endif
while (dive_table.nr)
delete_single_dive(0);
current_dive = NULL;