mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
lib: Reorganize upgrade around document types
Rather than potentially making multiple passes over the same type of data in the database, reorganize upgrade around each type of data that may be upgraded. This eliminates code duplication, will make multi-version upgrades faster, and will let us improve progress reporting.
This commit is contained in:
parent
48db8c8b60
commit
e0635bd003
1 changed files with 26 additions and 46 deletions
|
@ -1248,11 +1248,9 @@ notmuch_database_upgrade (notmuch_database_t *notmuch,
|
||||||
* format. */
|
* format. */
|
||||||
notmuch->features = target_features;
|
notmuch->features = target_features;
|
||||||
|
|
||||||
/* Before version 1, each message document had its filename in the
|
/* Perform per-message upgrades. */
|
||||||
* data field. Copy that into the new format by calling
|
if (new_features &
|
||||||
* notmuch_message_add_filename.
|
(NOTMUCH_FEATURE_FILE_TERMS | NOTMUCH_FEATURE_BOOL_FOLDER)) {
|
||||||
*/
|
|
||||||
if (new_features & NOTMUCH_FEATURE_FILE_TERMS) {
|
|
||||||
notmuch_query_t *query = notmuch_query_create (notmuch, "");
|
notmuch_query_t *query = notmuch_query_create (notmuch, "");
|
||||||
notmuch_messages_t *messages;
|
notmuch_messages_t *messages;
|
||||||
notmuch_message_t *message;
|
notmuch_message_t *message;
|
||||||
|
@ -1271,13 +1269,27 @@ notmuch_database_upgrade (notmuch_database_t *notmuch,
|
||||||
|
|
||||||
message = notmuch_messages_get (messages);
|
message = notmuch_messages_get (messages);
|
||||||
|
|
||||||
filename = _notmuch_message_talloc_copy_data (message);
|
/* Before version 1, each message document had its
|
||||||
if (filename && *filename != '\0') {
|
* filename in the data field. Copy that into the new
|
||||||
_notmuch_message_add_filename (message, filename);
|
* format by calling notmuch_message_add_filename.
|
||||||
_notmuch_message_clear_data (message);
|
*/
|
||||||
_notmuch_message_sync (message);
|
if (new_features & NOTMUCH_FEATURE_FILE_TERMS) {
|
||||||
|
filename = _notmuch_message_talloc_copy_data (message);
|
||||||
|
if (filename && *filename != '\0') {
|
||||||
|
_notmuch_message_add_filename (message, filename);
|
||||||
|
_notmuch_message_clear_data (message);
|
||||||
|
}
|
||||||
|
talloc_free (filename);
|
||||||
}
|
}
|
||||||
talloc_free (filename);
|
|
||||||
|
/* Prior to version 2, the "folder:" prefix was
|
||||||
|
* probabilistic and stemmed. Change it to the current
|
||||||
|
* boolean prefix. Add "path:" prefixes while at it.
|
||||||
|
*/
|
||||||
|
if (new_features & NOTMUCH_FEATURE_BOOL_FOLDER)
|
||||||
|
_notmuch_message_upgrade_folder (message);
|
||||||
|
|
||||||
|
_notmuch_message_sync (message);
|
||||||
|
|
||||||
notmuch_message_destroy (message);
|
notmuch_message_destroy (message);
|
||||||
|
|
||||||
|
@ -1287,7 +1299,9 @@ notmuch_database_upgrade (notmuch_database_t *notmuch,
|
||||||
notmuch_query_destroy (query);
|
notmuch_query_destroy (query);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Also, before version 1 we stored directory timestamps in
|
/* Perform per-directory upgrades. */
|
||||||
|
|
||||||
|
/* Before version 1 we stored directory timestamps in
|
||||||
* XTIMESTAMP documents instead of the current XDIRECTORY
|
* XTIMESTAMP documents instead of the current XDIRECTORY
|
||||||
* documents. So copy those as well. */
|
* documents. So copy those as well. */
|
||||||
if (new_features & NOTMUCH_FEATURE_DIRECTORY_DOCS) {
|
if (new_features & NOTMUCH_FEATURE_DIRECTORY_DOCS) {
|
||||||
|
@ -1329,40 +1343,6 @@ notmuch_database_upgrade (notmuch_database_t *notmuch,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Prior to version 2, the "folder:" prefix was probabilistic and
|
|
||||||
* stemmed. Change it to the current boolean prefix. Add "path:"
|
|
||||||
* prefixes while at it.
|
|
||||||
*/
|
|
||||||
if (new_features & NOTMUCH_FEATURE_BOOL_FOLDER) {
|
|
||||||
notmuch_query_t *query = notmuch_query_create (notmuch, "");
|
|
||||||
notmuch_messages_t *messages;
|
|
||||||
notmuch_message_t *message;
|
|
||||||
|
|
||||||
count = 0;
|
|
||||||
total = notmuch_query_count_messages (query);
|
|
||||||
|
|
||||||
for (messages = notmuch_query_search_messages (query);
|
|
||||||
notmuch_messages_valid (messages);
|
|
||||||
notmuch_messages_move_to_next (messages)) {
|
|
||||||
if (do_progress_notify) {
|
|
||||||
progress_notify (closure, (double) count / total);
|
|
||||||
do_progress_notify = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
message = notmuch_messages_get (messages);
|
|
||||||
|
|
||||||
_notmuch_message_upgrade_folder (message);
|
|
||||||
_notmuch_message_sync (message);
|
|
||||||
|
|
||||||
notmuch_message_destroy (message);
|
|
||||||
|
|
||||||
count++;
|
|
||||||
}
|
|
||||||
|
|
||||||
notmuch_query_destroy (query);
|
|
||||||
}
|
|
||||||
|
|
||||||
db->set_metadata ("features", _print_features (local, notmuch->features));
|
db->set_metadata ("features", _print_features (local, notmuch->features));
|
||||||
db->set_metadata ("version", STRINGIFY (NOTMUCH_DATABASE_VERSION));
|
db->set_metadata ("version", STRINGIFY (NOTMUCH_DATABASE_VERSION));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue