GNUnet  0.20.0
gnunet-service-messenger_message_store.h
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2020--2021 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  */
26 #ifndef GNUNET_SERVICE_MESSENGER_MESSAGE_STORE_H
27 #define GNUNET_SERVICE_MESSENGER_MESSAGE_STORE_H
28 
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
31 
33 {
34  off_t offset;
35  uint16_t length;
36 };
37 
39 
41 {
42  uint8_t multiple;
43 
44  struct GNUNET_HashCode first;
45  struct GNUNET_HashCode second;
46 };
47 
49 {
51 
55 
58 };
59 
65 void
67 
73 void
75 
82 void
84  const char *directory);
85 
92 void
94  const char *directory);
95 
106 int
108  const struct GNUNET_HashCode *hash);
109 
121 const struct GNUNET_MESSENGER_Message*
123  const struct GNUNET_HashCode *hash);
124 
138 const struct GNUNET_MESSENGER_MessageLink*
140  const struct GNUNET_HashCode *hash,
141  int deleted_only);
142 
151 int
153  const struct GNUNET_HashCode *hash,
154  struct GNUNET_MESSENGER_Message *message);
155 
164 int
166  const struct GNUNET_HashCode *hash);
167 
168 #endif //GNUNET_SERVICE_MESSENGER_MESSAGE_STORE_H
void save_message_store(struct GNUNET_MESSENGER_MessageStore *store, const char *directory)
Saves messages from a message store into a directory.
const struct GNUNET_MESSENGER_Message * get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash)
Returns the message from a message store matching a given hash.
void clear_message_store(struct GNUNET_MESSENGER_MessageStore *store)
Clears a message store, wipes its content and deallocates its memory.
void init_message_store(struct GNUNET_MESSENGER_MessageStore *store)
Initializes a message store as fully empty.
int contains_store_message(const struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash)
Checks if a message matching a given hash is stored in a message store.
int delete_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash)
Deletes a message in the message store.
void load_message_store(struct GNUNET_MESSENGER_MessageStore *store, const char *directory)
Loads messages from a directory into a message store.
int put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message)
Stores a message into the message store.
const struct GNUNET_MESSENGER_MessageLink * get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, int deleted_only)
Returns the message link from a message store matching a given hash.
Internal representation of the hash map.
Handle used to access files (and pipes).
A 512-bit hashcode.
struct GNUNET_CONTAINER_MultiHashMap * links
struct GNUNET_DISK_FileHandle * storage_messages
struct GNUNET_CONTAINER_MultiHashMap * messages
struct GNUNET_CONTAINER_MultiHashMap * entries