libcoap  4.3.0
coap_cache.h
Go to the documentation of this file.
1 /* coap_cache.h -- Caching of CoAP requests
2 *
3 * Copyright (C) 2020 Olaf Bergmann <bergmann@tzi.org>
4 *
5  * SPDX-License-Identifier: BSD-2-Clause
6  *
7 * This file is part of the CoAP library libcoap. Please see
8 * README for terms of use.
9 */
10 
16 #ifndef COAP_CACHE_H_
17 #define COAP_CACHE_H_
18 
19 #include "coap_forward_decls.h"
20 
33 typedef void (*coap_cache_app_data_free_callback_t)(void *data);
34 
39 
44 
70  const coap_pdu_t *pdu,
71  coap_cache_session_based_t session_based);
72 
100  const coap_pdu_t *pdu,
101  coap_cache_session_based_t session_based,
102  const uint16_t *ignore_options,
103  size_t ignore_count);
104 
110 void coap_delete_cache_key(coap_cache_key_t *cache_key);
111 
125  const uint16_t *options, size_t count);
126 
151  const coap_pdu_t *pdu,
152  coap_cache_record_pdu_t record_pdu,
153  coap_cache_session_based_t session_based,
154  unsigned int idle_time);
155 
164  coap_cache_entry_t *cache_entry);
165 
177  const coap_cache_key_t *cache_key);
178 
192  const coap_pdu_t *pdu,
193  coap_cache_session_based_t session_based);
194 
203 const coap_pdu_t *coap_cache_get_pdu(const coap_cache_entry_t *cache_entry);
204 
216 void coap_cache_set_app_data(coap_cache_entry_t *cache_entry, void *data,
218 
228 void *coap_cache_get_app_data(const coap_cache_entry_t *cache_entry);
229 
232 #endif /* COAP_CACHE_H */
COAP forward definitions.
void coap_delete_cache_entry(coap_context_t *context, coap_cache_entry_t *cache_entry)
Remove a cache-entry from the hash list and free off all the appropriate contents apart from app_data...
Definition: coap_cache.c:220
coap_cache_entry_t * coap_cache_get_by_pdu(coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based)
Searches for a cache-entry corresponding to pdu.
Definition: coap_cache.c:201
const coap_pdu_t * coap_cache_get_pdu(const coap_cache_entry_t *cache_entry)
Returns the PDU information stored in the coap_cache entry.
Definition: coap_cache.c:238
void coap_delete_cache_key(coap_cache_key_t *cache_key)
Delete the cache-key.
Definition: coap_cache.c:138
coap_cache_record_pdu_t
Definition: coap_cache.h:40
coap_cache_key_t * coap_cache_derive_key_w_ignore(const coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based, const uint16_t *ignore_options, size_t ignore_count)
Calculates a cache-key for the given CoAP PDU.
Definition: coap_cache.c:68
void(* coap_cache_app_data_free_callback_t)(void *data)
Callback to free off the app data when the cache-entry is being deleted / freed off.
Definition: coap_cache.h:33
coap_cache_key_t * coap_cache_derive_key(const coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based)
Calculates a cache-key for the given CoAP PDU.
Definition: coap_cache.c:129
coap_cache_entry_t * coap_cache_get_by_key(coap_context_t *context, const coap_cache_key_t *cache_key)
Searches for a cache-entry identified by cache_key.
Definition: coap_cache.c:186
int coap_cache_ignore_options(coap_context_t *context, const uint16_t *options, size_t count)
Define the CoAP options that are not to be included when calculating the cache-key.
Definition: coap_cache.c:42
coap_cache_entry_t * coap_new_cache_entry(coap_session_t *session, const coap_pdu_t *pdu, coap_cache_record_pdu_t record_pdu, coap_cache_session_based_t session_based, unsigned int idle_time)
Create a new cache-entry hash keyed by cache-key derived from the PDU.
Definition: coap_cache.c:143
void * coap_cache_get_app_data(const coap_cache_entry_t *cache_entry)
Returns any application-specific data that has been stored with cache_entry using the function coap_c...
Definition: coap_cache.c:251
void coap_cache_set_app_data(coap_cache_entry_t *cache_entry, void *data, coap_cache_app_data_free_callback_t callback)
Stores data with the given cache entry.
Definition: coap_cache.c:243
coap_cache_session_based_t
Definition: coap_cache.h:35
@ COAP_CACHE_RECORD_PDU
Definition: coap_cache.h:42
@ COAP_CACHE_NOT_RECORD_PDU
Definition: coap_cache.h:41
@ COAP_CACHE_NOT_SESSION_BASED
Definition: coap_cache.h:36
@ COAP_CACHE_IS_SESSION_BASED
Definition: coap_cache.h:37
The CoAP stack's global state is stored in a coap_context_t object.
structure for CoAP PDUs token, if any, follows the fixed size header, then options until payload mark...
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...