aboutsummaryrefslogtreecommitdiff
path: root/src/service/messenger/messenger_api_contact_store.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/messenger/messenger_api_contact_store.h')
-rw-r--r--src/service/messenger/messenger_api_contact_store.h126
1 files changed, 126 insertions, 0 deletions
diff --git a/src/service/messenger/messenger_api_contact_store.h b/src/service/messenger/messenger_api_contact_store.h
new file mode 100644
index 000000000..6b61f3e4f
--- /dev/null
+++ b/src/service/messenger/messenger_api_contact_store.h
@@ -0,0 +1,126 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2024 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20/**
21 * @author Tobias Frisch
22 * @file src/messenger/messenger_api_contact_store.h
23 * @brief messenger api: client implementation of GNUnet MESSENGER service
24 */
25
26#ifndef GNUNET_MESSENGER_API_CONTACT_STORE_H
27#define GNUNET_MESSENGER_API_CONTACT_STORE_H
28
29#include "gnunet_util_lib.h"
30
31struct GNUNET_MESSENGER_Contact;
32
33struct GNUNET_MESSENGER_ContactStore
34{
35 struct GNUNET_CONTAINER_MultiHashMap *anonymous;
36 struct GNUNET_CONTAINER_MultiHashMap *contacts;
37
38 size_t counter;
39};
40
41/**
42 * Initializes a contact store as fully empty.
43 *
44 * @param[out] store Contact store
45 */
46void
47init_contact_store (struct GNUNET_MESSENGER_ContactStore *store);
48
49/**
50 * Clears a contact store, wipes its content and deallocates its memory.
51 *
52 * @param[in,out] store Contact store
53 */
54void
55clear_contact_store (struct GNUNET_MESSENGER_ContactStore *store);
56
57/**
58 * Returns a contact using the hash of a specific public key. In case the anonymous
59 * key gets used by the requested contact, it will use its provided member
60 * <i>context</i> to select the matching contact from the <i>store</i>.
61 *
62 * In case there is no contact stored which uses the given key or context,
63 * NULL gets returned.
64 *
65 * @param[in,out] store Contact store
66 * @param[in] context Member context
67 * @param[in] key_hash Hash of public key
68 */
69struct GNUNET_MESSENGER_Contact*
70get_store_contact_raw (struct GNUNET_MESSENGER_ContactStore *store,
71 const struct GNUNET_HashCode *context,
72 const struct GNUNET_HashCode *key_hash);
73
74/**
75 * Returns a contact using a specific public key. In case the anonymous
76 * key gets used by the requested contact, it will use its provided member
77 * <i>context</i> to select the matching contact from the <i>store</i>.
78 *
79 * In case there is no contact stored which uses the given key or context,
80 * a new contact will be created automatically.
81 *
82 * The function returns NULL if an error occurs during allocation
83 * or validation of the contacts key.
84 *
85 * @param[in,out] store Contact store
86 * @param[in] context Member context
87 * @param[in] pubkey Public key
88 */
89struct GNUNET_MESSENGER_Contact*
90get_store_contact (struct GNUNET_MESSENGER_ContactStore *store,
91 const struct GNUNET_HashCode *context,
92 const struct GNUNET_CRYPTO_PublicKey *pubkey);
93
94/**
95 * Moves a <i>contact</i> from the <i>store</i> to another location
96 * matching a given public key and member <i>context</i>.
97 *
98 * This function allows changes of keys or changes of member contexts!
99 *
100 * @param[in,out] store Contact store
101 * @param[in,out] contact Contact
102 * @param[in] context Member context
103 * @param[in] next_context Member context
104 * @param[in] pubkey Public key
105 */
106void
107update_store_contact (struct GNUNET_MESSENGER_ContactStore *store,
108 struct GNUNET_MESSENGER_Contact *contact,
109 const struct GNUNET_HashCode *context,
110 const struct GNUNET_HashCode *next_context,
111 const struct GNUNET_CRYPTO_PublicKey *pubkey);
112
113/**
114 * Removes a <i>contact</i> from the <i>store</i> which uses
115 * a given member <i>context</i>.
116 *
117 * @param[in,out] store Contact store
118 * @param[in,out] contact Contact
119 * @param[in] context Member context
120 */
121void
122remove_store_contact (struct GNUNET_MESSENGER_ContactStore *store,
123 struct GNUNET_MESSENGER_Contact *contact,
124 const struct GNUNET_HashCode *context);
125
126#endif //GNUNET_MESSENGER_API_CONTACT_STORE_H