* mu-index: cosmetics

This commit is contained in:
Dirk-Jan C. Binnema
2010-09-26 15:52:42 +03:00
parent 6cb61593ad
commit 3fa552a81e
2 changed files with 15 additions and 18 deletions

View File

@ -78,7 +78,6 @@ mu_index_destroy (MuIndex *index)
} }
struct _MuIndexCallbackData { struct _MuIndexCallbackData {
MuIndexMsgCallback _idx_msg_cb; MuIndexMsgCallback _idx_msg_cb;
MuIndexDirCallback _idx_dir_cb; MuIndexDirCallback _idx_dir_cb;

View File

@ -1,5 +1,5 @@
/* /*
** Copyright (C) 2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ** Copyright (C) 2008-2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by ** it under the terms of the GNU General Public License as published by
@ -37,12 +37,11 @@ struct _MuIndexStats {
}; };
typedef struct _MuIndexStats MuIndexStats; typedef struct _MuIndexStats MuIndexStats;
/** /**
* create a new MuIndex instance. NOTE(1): the database does not * create a new MuIndex instance. NOTE(1): the database does not have
* have to exist yet, but the directory already has to exist; * to exist yet, but the directory must already exist; NOTE(2): before
* NOTE(2): before doing anything with the returned Index object, * doing anything with the returned Index object, make sure you haved
* make sure you haved called g_type_init, and mu_msg_init somewhere * called g_type_init, and mu_msg_init somewhere in your code.
* in your code.
* *
* @param xpath path to the 'homedir'; the xapian directory will be * @param xpath path to the 'homedir'; the xapian directory will be
* this homedir/xapian * this homedir/xapian
@ -52,7 +51,7 @@ typedef struct _MuIndexStats MuIndexStats;
MuIndex* mu_index_new (const char* muhome); MuIndex* mu_index_new (const char* muhome);
/** /**
* destroy the index instance * destroy the index instance
* *
* @param index a MuIndex instance, or NULL * @param index a MuIndex instance, or NULL
@ -60,8 +59,7 @@ MuIndex* mu_index_new (const char* muhome);
void mu_index_destroy (MuIndex *index); void mu_index_destroy (MuIndex *index);
/**
/**
* callback function for mu_index_(run|stats|cleanup), for each message * callback function for mu_index_(run|stats|cleanup), for each message
* *
* @param stats pointer to structure to receive statistics data * @param stats pointer to structure to receive statistics data
@ -73,7 +71,7 @@ void mu_index_destroy (MuIndex *index);
typedef MuResult (*MuIndexMsgCallback) (MuIndexStats* stats, void *user_data); typedef MuResult (*MuIndexMsgCallback) (MuIndexStats* stats, void *user_data);
/** /**
* callback function for mu_index_(run|stats|cleanup), for each dir enter/leave * callback function for mu_index_(run|stats|cleanup), for each dir enter/leave
* *
* @param path dirpath we just entered / left * @param path dirpath we just entered / left
@ -86,7 +84,7 @@ typedef MuResult (*MuIndexMsgCallback) (MuIndexStats* stats, void *user_data);
typedef MuResult (*MuIndexDirCallback) (const char* path, gboolean enter, typedef MuResult (*MuIndexDirCallback) (const char* path, gboolean enter,
void *user_data); void *user_data);
/** /**
* start the indexing process * start the indexing process
* *
* @param index a valid MuIndex instance * @param index a valid MuIndex instance
@ -109,7 +107,7 @@ MuResult mu_index_run (MuIndex *index, const char* path, gboolean force,
MuIndexStats *stats, MuIndexMsgCallback msg_cb, MuIndexStats *stats, MuIndexMsgCallback msg_cb,
MuIndexDirCallback dir_cb, void *user_data); MuIndexDirCallback dir_cb, void *user_data);
/** /**
* gather some statistics about the Maildir; this is usually much faster * gather some statistics about the Maildir; this is usually much faster
* than mu_index_run, and can thus be used to provide some information to the user * than mu_index_run, and can thus be used to provide some information to the user
* note though that the statistics may be different from the reality that * note though that the statistics may be different from the reality that
@ -135,7 +133,7 @@ MuResult mu_index_stats (MuIndex *index, const char* path, MuIndexStats *stats,
/** /**
* callback function to determine if a message should be delete from * callback function to determine if a message should be delete from
* the database; if it returs MU_OK it will be delete, if returns * the database; if it returs MU_OK it will be delete, if returns
* MU_IGNORE, the message will be ignored. In other cases, stop the callback * MU_IGNORE, the message will be ignored. In other cases, stop the callback
@ -147,7 +145,7 @@ MuResult mu_index_stats (MuIndex *index, const char* path, MuIndexStats *stats,
typedef MuResult (*MuIndexCleanupDeleteCallback) (MuIndexStats *stats, typedef MuResult (*MuIndexCleanupDeleteCallback) (MuIndexStats *stats,
void *user_data); void *user_data);
/** /**
* cleanup the database; ie. remove entries for which no longer a corresponding * cleanup the database; ie. remove entries for which no longer a corresponding
* file exists in the maildir * file exists in the maildir
* *
@ -167,7 +165,7 @@ MuResult mu_index_cleanup (MuIndex *index, MuIndexStats *stats,
MuIndexCleanupDeleteCallback cb, MuIndexCleanupDeleteCallback cb,
void *user_data); void *user_data);
/** /**
* clear the stats structure * clear the stats structure
* *
* @param stats a MuIndexStats object * @param stats a MuIndexStats object