2 This file is part of GNUnet
3 (C) 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors)
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 2, or (at your
8 option) any later version.
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.
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.
22 * @file datastore/datastore.h
23 * @brief structs for communication between datastore service and API
24 * @author Christian Grothoff
30 #define DEBUG_DATASTORE GNUNET_NO
32 #include "gnunet_util_lib.h"
35 * Message from datastore service informing client about
36 * the current size of the datastore.
41 * Type is GNUNET_MESSAGE_TYPE_DATASTORE_RESERVE.
43 struct GNUNET_MessageHeader header;
46 * Number of items to reserve.
48 uint32_t entries GNUNET_PACKED;
51 * Number of bytes to reserve.
53 uint64_t amount GNUNET_PACKED;
58 * Message from datastore service informing client about
59 * the success or failure of a requested operation.
60 * This header is optionally followed by a variable-size,
61 * 0-terminated error message.
66 * Type is GNUNET_MESSAGE_TYPE_DATASTORE_STATUS.
68 struct GNUNET_MessageHeader header;
71 * Status code, -1 for errors.
73 int32_t status GNUNET_PACKED;
79 * Message from datastore client informing service that
80 * the remainder of the reserved bytes can now be released
83 struct ReleaseReserveMessage
86 * Type is GNUNET_MESSAGE_TYPE_DATASTORE_RELEASE_RESERVE.
88 struct GNUNET_MessageHeader header;
93 int32_t rid GNUNET_PACKED;
99 * Message to the datastore service asking about specific
105 * Type is GNUNET_MESSAGE_TYPE_DATASTORE_GET. Size
106 * can either be "sizeof(struct GetMessage)" or
107 * "sizeof(struct GetMessage) - sizeof(GNUNET_HashCode)"!
109 struct GNUNET_MessageHeader header;
112 * Desired content type.
114 uint32_t type GNUNET_PACKED;
117 * Desired key (optional). Check the "size" of the
118 * header to see if the key is actually present.
120 GNUNET_HashCode key GNUNET_PACKED;
126 * Message to the datastore service requesting an update
127 * to the priority or expiration for some content.
132 * Type is GNUNET_MESSAGE_TYPE_DATASTORE_UPDATE.
134 struct GNUNET_MessageHeader header;
137 * Desired priority increase.
139 int32_t priority GNUNET_PACKED;
142 * Desired new expiration time.
144 struct GNUNET_TIME_AbsoluteNBO expiration;
147 * Unique ID for the content.
155 * Message transmitting content from or to the datastore
161 * Type is either GNUNET_MESSAGE_TYPE_DATASTORE_PUT,
162 * GNUNET_MESSAGE_TYPE_DATASTORE_REMOVE or
163 * GNUNET_MESSAGE_TYPE_DATASTORE_DATA. Depending on the message
164 * type, some fields may simply have values of zero.
166 struct GNUNET_MessageHeader header;
169 * Reservation ID to use; use zero for none.
171 uint32_t rid GNUNET_PACKED;
174 * Number of bytes in the item (NBO).
176 uint32_t size GNUNET_PACKED;
179 * Type of the item (NBO), zero for remove.
181 uint32_t type GNUNET_PACKED;
184 * Priority of the item (NBO), zero for remove.
186 uint32_t priority GNUNET_PACKED;
189 * Desired anonymity level (NBO), zero for remove.
191 uint32_t anonymity GNUNET_PACKED;
194 * Unique ID for the content (can be used for UPDATE);
195 * can be zero for remove (which indicates that
196 * the datastore should use whatever UID matches
197 * the key and content).
202 * Expiration time (NBO); zero for remove.
204 struct GNUNET_TIME_AbsoluteNBO expiration;
207 * Key under which the item can be found.
209 GNUNET_HashCode key GNUNET_PACKED;