NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
Body Cache Callback API

Prototype for a mutt_bcache_list() callback function. More...

Functions

static int imap_bcache_delete (const char *id, struct BodyCache *bcache, void *data)
 Delete an entry from the message cache - Implements bcache_list_t -.
 
static int nntp_bcache_delete (const char *id, struct BodyCache *bcache, void *data)
 Delete an entry from the message cache - Implements bcache_list_t -.
 
static int pop_bcache_delete (const char *id, struct BodyCache *bcache, void *data)
 Delete an entry from the message cache - Implements bcache_list_t -.
 

Detailed Description

Prototype for a mutt_bcache_list() callback function.

Parameters
idCache id
bcacheBody Cache from mutt_bcache_open()
dataData to pass to the callback function
Return values
-1Failure
>=0count of matching items

mutt_bcache_list() will call this function once for each item in the cache.

Function Documentation

◆ imap_bcache_delete()

static int imap_bcache_delete ( const char *  id,
struct BodyCache bcache,
void *  data 
)
static

Delete an entry from the message cache - Implements bcache_list_t -.

Return values
0Always

Definition at line 170 of file message.c.

171{
172 uint32_t uv;
173 unsigned int uid;
174 struct ImapMboxData *mdata = data;
175
176 if (sscanf(id, "%u-%u", &uv, &uid) != 2)
177 return 0;
178
179 /* bad UID */
180 if ((uv != mdata->uidvalidity) || !mutt_hash_int_find(mdata->uid_hash, uid))
182
183 return 0;
184}
int mutt_bcache_del(struct BodyCache *bcache, const char *id)
Delete a file from the Body Cache.
Definition: bcache.c:266
void * mutt_hash_int_find(const struct HashTable *table, unsigned int intkey)
Find the HashElem data in a Hash Table element using a key.
Definition: hash.c:392
IMAP-specific Mailbox data -.
Definition: mdata.h:40
struct BodyCache * bcache
Email body cache.
Definition: mdata.h:61
void * mdata
Driver specific data.
Definition: mailbox.h:132
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ nntp_bcache_delete()

static int nntp_bcache_delete ( const char *  id,
struct BodyCache bcache,
void *  data 
)
static

Delete an entry from the message cache - Implements bcache_list_t -.

Return values
0Always

Definition at line 790 of file newsrc.c.

791{
792 struct NntpMboxData *mdata = data;
793 anum_t anum;
794 char c;
795
796 if (!mdata || (sscanf(id, ANUM_FMT "%c", &anum, &c) != 1) ||
797 (anum < mdata->first_message) || (anum > mdata->last_message))
798 {
799 if (mdata)
800 mutt_debug(LL_DEBUG2, "mutt_bcache_del %s\n", id);
802 }
803 return 0;
804}
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:44
#define ANUM_FMT
Definition: lib.h:61
#define anum_t
Definition: lib.h:60
NNTP-specific Mailbox data -.
Definition: mdata.h:34
struct BodyCache * bcache
Definition: mdata.h:50
anum_t first_message
Definition: mdata.h:37
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ pop_bcache_delete()

static int pop_bcache_delete ( const char *  id,
struct BodyCache bcache,
void *  data 
)
static

Delete an entry from the message cache - Implements bcache_list_t -.

Definition at line 256 of file pop.c.

257{
258 struct Mailbox *m = data;
259 if (!m)
260 return -1;
261
263 if (!adata)
264 return -1;
265
266#ifdef USE_HCACHE
267 /* keep hcache file if hcache == bcache */
268 if (mutt_str_equal(HC_FNAME "." HC_FEXT, id))
269 return 0;
270#endif
271
272 for (int i = 0; i < m->msg_count; i++)
273 {
274 struct PopEmailData *edata = pop_edata_get(m->emails[i]);
275 /* if the id we get is known for a header: done (i.e. keep in cache) */
276 if (edata->uid && mutt_str_equal(edata->uid, id))
277 return 0;
278 }
279
280 /* message not found in context -> remove it from cache
281 * return the result of bcache, so we stop upon its first error */
282 return mutt_bcache_del(bcache, cache_id(id));
283}
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:709
struct PopAccountData * pop_adata_get(struct Mailbox *m)
Get the Account data for this mailbox.
Definition: adata.c:73
struct PopEmailData * pop_edata_get(struct Email *e)
Get the private data for this Email.
Definition: edata.c:68
#define HC_FNAME
Definition: pop.c:70
static const char * cache_id(const char *id)
Make a message-cache-compatible id.
Definition: pop.c:82
#define HC_FEXT
Definition: pop.c:71
void * adata
Private data (for Mailbox backends)
Definition: account.h:42
void * edata
Driver-specific data.
Definition: email.h:74
A mailbox.
Definition: mailbox.h:79
int msg_count
Total number of messages.
Definition: mailbox.h:88
struct Email ** emails
Array of Emails.
Definition: mailbox.h:96
POP-specific Account data -.
Definition: adata.h:37
POP-specific Email data -.
Definition: edata.h:32
+ Here is the call graph for this function:
+ Here is the caller graph for this function: