50ff4a2f9c7286358404720f8649ed3cf8d02ccd
[oweals/gnunet.git] / src / peerstore / peerstore_common.h
1 /*
2       This file is part of GNUnet
3       (C)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * @file peerstore/peerstore_common.h
23  * @brief Helper peerstore functions
24  * @author Omar Tarabai
25  */
26
27 #include "peerstore.h"
28
29 /**
30  * Creates a hash of the given key combination
31  *
32  */
33 void
34 PEERSTORE_hash_key(const char *sub_system,
35     const struct GNUNET_PeerIdentity *peer,
36     const char *key,
37     struct GNUNET_HashCode *ret);
38
39 /**
40  * Creates a record message ready to be sent
41  *
42  * @param sub_system sub system string
43  * @param peer Peer identity (can be NULL)
44  * @param key record key string (can be NULL)
45  * @param value record value BLOB (can be NULL)
46  * @param value_size record value size in bytes (set to 0 if value is NULL)
47  * @param expiry absolute time after which the record expires
48  * @param msg_type message type to be set in header
49  * @return pointer to record message struct
50  */
51 struct StoreRecordMessage *
52 PEERSTORE_create_record_message(const char *sub_system,
53     const struct GNUNET_PeerIdentity *peer,
54     const char *key,
55     const void *value,
56     size_t value_size,
57     struct GNUNET_TIME_Absolute *expiry,
58     uint16_t msg_type);
59
60 /**
61  * Creates a MQ envelope for a single record
62  *
63  * @param sub_system sub system string
64  * @param peer Peer identity (can be NULL)
65  * @param key record key string (can be NULL)
66  * @param value record value BLOB (can be NULL)
67  * @param value_size record value size in bytes (set to 0 if value is NULL)
68  * @param expiry time after which the record expires
69  * @param options options specific to the storage operation
70  * @param msg_type message type to be set in header
71  * @return pointer to record message struct
72  */
73 struct GNUNET_MQ_Envelope *
74 PEERSTORE_create_record_mq_envelope(const char *sub_system,
75                                     const struct GNUNET_PeerIdentity *peer,
76                                     const char *key,
77                                     const void *value,
78                                     size_t value_size,
79                                     struct GNUNET_TIME_Absolute *expiry,
80                                     enum GNUNET_PEERSTORE_StoreOption options,
81                                     uint16_t msg_type);
82
83 /**
84  * Parses a message carrying a record
85  *
86  * @param message the actual message
87  * @return Pointer to record or NULL if error
88  */
89 struct GNUNET_PEERSTORE_Record *
90 PEERSTORE_parse_record_message(const struct GNUNET_MessageHeader *message);
91
92 /**
93  * Free any memory allocated for this record
94  *
95  * @param record
96  */
97 void PEERSTORE_destroy_record(struct GNUNET_PEERSTORE_Record *record);