GNUnet 0.21.1
gnunet_fs_service.h
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2004--2013 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 */
36#ifndef GNUNET_FS_LIB_H
37#define GNUNET_FS_LIB_H
38
39
40#include "gnunet_common.h"
41#include "gnunet_util_lib.h"
42
43#ifdef __cplusplus
44extern "C"
45{
46#if 0 /* keep Emacsens' auto-indent happy */
47}
48#endif
49#endif
50
72#define GNUNET_FS_VERSION 0x00090300
73
74#if GNUNET_FS_EXTRACTOR_ENABLED
75
76#include <extractor.h>
77
78#else
79
80/* definitions from extractor.h we need for the build */
81
86enum EXTRACTOR_MetaType
87{
88 EXTRACTOR_METATYPE_RESERVED = 0,
89 EXTRACTOR_METATYPE_MIMETYPE = 1,
90 EXTRACTOR_METATYPE_FILENAME = 2,
91 EXTRACTOR_METATYPE_COMMENT = 3,
92 EXTRACTOR_METATYPE_TITLE = 4,
93 EXTRACTOR_METATYPE_BOOK_TITLE = 5,
94 EXTRACTOR_METATYPE_JOURNAL_NAME = 8,
95 EXTRACTOR_METATYPE_AUTHOR_NAME = 13,
96 EXTRACTOR_METATYPE_PUBLICATION_DATE = 24,
97 EXTRACTOR_METATYPE_URL = 29,
98 EXTRACTOR_METATYPE_URI = 30,
99 EXTRACTOR_METATYPE_ISRC = 31,
100 EXTRACTOR_METATYPE_UNKNOWN = 45,
101 EXTRACTOR_METATYPE_DESCRIPTION = 46,
102 EXTRACTOR_METATYPE_KEYWORDS = 49,
103 EXTRACTOR_METATYPE_SUBJECT = 52,
104 EXTRACTOR_METATYPE_PACKAGE_NAME = 69,
105 EXTRACTOR_METATYPE_THUMBNAIL = 114,
106 EXTRACTOR_METATYPE_ALBUM = 129,
107 EXTRACTOR_METATYPE_ARTIST = 130,
108 EXTRACTOR_METATYPE_ORIGINAL_TITLE = 162,
109 EXTRACTOR_METATYPE_GNUNET_FULL_DATA = 174,
111};
112
116enum EXTRACTOR_MetaFormat
117{
121 EXTRACTOR_METAFORMAT_UNKNOWN = 0,
122
127 EXTRACTOR_METAFORMAT_UTF8 = 1,
128
132 EXTRACTOR_METAFORMAT_BINARY = 2,
133
138 EXTRACTOR_METAFORMAT_C_STRING = 3
139};
140
141
159typedef int (*EXTRACTOR_MetaDataProcessor) (void *cls,
160 const char *plugin_name,
161 enum EXTRACTOR_MetaType type,
162 enum EXTRACTOR_MetaFormat format,
163 const char *data_mime_type,
164 const char *data,
165 size_t data_len);
166
167#endif
168
169#ifndef EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME
170/* hack for LE < 0.6.3 */
171#define EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME 180
172#endif
173
174
175/* ******************** URI API *********************** */
176
177#define GNUNET_FS_URI_PREFIX "gnunet://fs/"
178#define GNUNET_FS_URI_KSK_INFIX "ksk/"
179#define GNUNET_FS_URI_SKS_INFIX "sks/"
180#define GNUNET_FS_URI_CHK_INFIX "chk/"
181#define GNUNET_FS_URI_LOC_INFIX "loc/"
182
183
188#define GNUNET_FS_PROBE_UPDATE_FREQUENCY GNUNET_TIME_relative_multiply ( \
189 GNUNET_TIME_UNIT_MILLISECONDS, 250)
190
194struct GNUNET_FS_Uri;
195
200struct GNUNET_FS_MetaData;
201
202
211typedef int
212(*GNUNET_FS_KeywordIterator) (void *cls,
213 const char *keyword,
214 int is_mandatory);
215
216
225int
227 struct GNUNET_HashCode *key);
228
229
236char *
238
239
247char *
249
250
259void
261 const char *keyword,
262 int is_mandatory);
263
264
272void
274 const char *keyword);
275
276
284struct GNUNET_FS_Uri *
285GNUNET_FS_uri_parse (const char *uri,
286 char **emsg);
287
288
294void
296
297
304unsigned int
306
307
317int
320 void *iterator_cls);
321
322
330int
332 struct GNUNET_PeerIdentity *peer);
333
334
341struct GNUNET_FS_Uri *
343
344
353
354
367struct GNUNET_FS_Uri *
368GNUNET_FS_uri_loc_create (const struct GNUNET_FS_Uri *base_uri,
369 const struct GNUNET_CRYPTO_EddsaPrivateKey *sign_key,
370 struct GNUNET_TIME_Absolute expiration_time);
371
372
380struct GNUNET_FS_Uri *
381GNUNET_FS_uri_ksk_merge (const struct GNUNET_FS_Uri *u1,
382 const struct GNUNET_FS_Uri *u2);
383
384
391struct GNUNET_FS_Uri *
392GNUNET_FS_uri_dup (const struct GNUNET_FS_Uri *uri);
393
394
412struct GNUNET_FS_Uri *
414 char **emsg);
415
416
434struct GNUNET_FS_Uri *
435GNUNET_FS_uri_ksk_create_from_args (unsigned int argc,
436 const char **argv);
437
438
446int
448 const struct GNUNET_FS_Uri *u2);
449
450
457int
459
460
468struct GNUNET_FS_Uri *
470 const char *id);
471
472
481int
484
485
492char *
494
495
502int
504
505
512int
514
515
523uint64_t
525
526
534const struct GNUNET_HashCode*
536
537
544int
546
547
556struct GNUNET_FS_Uri *
558 *md);
559
560
561/* ******************** command-line option parsing API *********************** */
562
574 const char *name,
575 const char *argumentHelp,
576 const char *description,
577 struct GNUNET_FS_Uri **topKeywords);
578
590 const char *name,
591 const char *argumentHelp,
592 const char *description,
593 struct GNUNET_FS_MetaData **meta);
594
607int
610 void *scls,
611 const char *option,
612 const char *value);
613
614
615/* ************************* sharing API ***************** */
616
617
630{
635
640
645
650
657
664
671
676
681
686
691
696
703
709
715
721
729
736
743
749
756
761
766
772
777
782
787
793
799
806
811
816
821
826
832
838
844
850
851
856
857
862
863
868
869
876
877
882
883
890
891
897{
901 union
902 {
906 struct GNUNET_FS_PublishStatusEvent
907 {
912
917
922 void *cctx;
923
928 void *pctx;
929
933 const char *filename;
934
941 uint64_t size;
942
949
955
959 uint64_t completed;
960
964 uint32_t anonymity;
965
969 union
970 {
975 struct GNUNET_FS_PublishProgressEvent
976 {
980 const void *data;
981
985 uint64_t offset;
986
990 uint64_t data_len;
991
996 unsigned int depth;
998
1003 struct GNUNET_FS_PublishProgressDirectoryEvent
1004 {
1008 uint64_t completed;
1009
1013 uint64_t total;
1014
1023
1028 struct GNUNET_FS_PublishResumeEvent
1029 {
1033 const char *message;
1034
1038 const struct GNUNET_FS_Uri *chk_uri;
1039
1043 const struct GNUNET_FS_Uri *sks_uri;
1045
1050 struct GNUNET_FS_PublishCompletedEvent
1051 {
1055 const struct GNUNET_FS_Uri *chk_uri;
1056
1060 const struct GNUNET_FS_Uri *sks_uri;
1062
1067 struct GNUNET_FS_PublishErrorEvent
1068 {
1072 const char *message;
1076
1077
1081 struct GNUNET_FS_DownloadStatusEvent
1082 {
1087
1093 void *cctx;
1094
1099 void *pctx;
1100
1107 void *sctx;
1108
1112 const struct GNUNET_FS_Uri *uri;
1113
1117 const char *filename;
1118
1124 uint64_t size;
1125
1132
1137
1141 uint64_t completed;
1142
1146 uint32_t anonymity;
1147
1152
1156 union
1157 {
1162 struct GNUNET_FS_DownloadProgressEvent
1163 {
1170 const void *data;
1171
1175 uint64_t offset;
1176
1180 uint64_t data_len;
1181
1187
1192 unsigned int depth;
1193
1201
1210
1215 struct GNUNET_FS_DownloadStartEvent
1216 {
1222
1227 struct GNUNET_FS_DownloadResumeEvent
1228 {
1232 const struct GNUNET_FS_MetaData *meta;
1233
1237 const char *message;
1239
1244 struct GNUNET_FS_DownloadErrorEvent
1245 {
1249 const char *message;
1253
1257 struct GNUNET_FS_SearchStatusEvent
1258 {
1266
1274 void *cctx;
1275
1283 void *pctx;
1284
1289 const struct GNUNET_FS_Uri *query;
1290
1297
1301 uint32_t anonymity;
1302
1306 union
1307 {
1312 struct GNUNET_FS_SearchResultEvent
1313 {
1317 const struct GNUNET_FS_MetaData *meta;
1318
1322 const struct GNUNET_FS_Uri *uri;
1323
1328
1335
1340 struct GNUNET_FS_SearchResumeResultEvent
1341 {
1345 const struct GNUNET_FS_MetaData *meta;
1346
1350 const struct GNUNET_FS_Uri *uri;
1351
1356
1362
1368
1374 uint32_t applicability_rank;
1376
1381 struct GNUNET_FS_SearchUpdateEvent
1382 {
1387 void *cctx;
1388
1392 const struct GNUNET_FS_MetaData *meta;
1393
1397 const struct GNUNET_FS_Uri *uri;
1398
1403 int32_t availability_rank;
1404
1409 uint32_t availability_certainty;
1410
1416 uint32_t applicability_rank;
1417
1423
1433 struct GNUNET_FS_SearchSuspendResultEvent
1434 {
1439 void *cctx;
1440
1444 const struct GNUNET_FS_MetaData *meta;
1445
1449 const struct GNUNET_FS_Uri *uri;
1451
1461 struct GNUNET_FS_SearchStoppedResultEvent
1462 {
1467 void *cctx;
1468
1472 const struct GNUNET_FS_MetaData *meta;
1473
1477 const struct GNUNET_FS_Uri *uri;
1479
1484 struct GNUNET_GS_SearchResumeEvent
1485 {
1489 const char *message;
1490
1496
1501 struct GNUNET_FS_SearchErrorEvent
1502 {
1506 const char *message;
1508
1512 struct GNUNET_GS_SearchResultNamespaceEvent
1513 {
1517 const char *name;
1518
1522 const char *root;
1523
1527 const struct GNUNET_FS_MetaData *meta;
1528
1536
1540 struct GNUNET_FS_UnindexEvent
1541 {
1546
1552 void *cctx;
1553
1557 const char *filename;
1558
1562 uint64_t size;
1563
1570
1576
1580 uint64_t completed;
1581
1585 union
1586 {
1591 struct GNUNET_FS_UnindexProgressEvent
1592 {
1596 const void *data;
1597
1601 uint64_t offset;
1602
1606 uint64_t data_len;
1607
1612 unsigned int depth;
1614
1619 struct GNUNET_FS_UnindexResumeEvent
1620 {
1624 const char *message;
1626
1631 struct GNUNET_FS_UnindexErrorEvent
1632 {
1636 const char *message;
1641
1646
1651};
1652
1653
1669typedef void *
1670(*GNUNET_FS_ProgressCallback) (void *cls,
1671 const struct GNUNET_FS_ProgressInfo *info);
1672
1673
1678{
1683
1689
1697
1698
1703{
1708
1715
1724
1725
1731{
1740
1746
1753
1766};
1767
1768
1772struct GNUNET_FS_Handle;
1773
1774
1786struct GNUNET_FS_Handle *
1788 const char *client_name,
1790 void *upcb_cls,
1792 ...);
1793
1794
1804void
1806
1807
1823typedef int
1825 struct GNUNET_FS_FileInformation *fi,
1826 uint64_t length,
1827 struct GNUNET_FS_MetaData *meta,
1828 struct GNUNET_FS_Uri **uri,
1829 struct GNUNET_FS_BlockOptions *bo,
1830 int *do_index,
1831 void **client_info);
1832
1833
1843const char *
1845
1846
1853const char *
1856
1857
1866void
1868 const char *filename);
1869
1870
1887 void *client_info,
1888 const char *filename,
1889 const struct
1891 const struct
1893 int do_index,
1894 const struct
1896
1897
1916 void *client_info,
1917 uint64_t length,
1918 void *data,
1919 const struct
1921 const struct
1923 int do_index,
1924 const struct
1926
1927
1948typedef size_t
1949(*GNUNET_FS_DataReader) (void *cls,
1950 uint64_t offset,
1951 size_t max,
1952 void *buf,
1953 char **emsg);
1954
1955
1974 void *client_info,
1975 uint64_t length,
1977 void *reader_cls,
1978 const struct GNUNET_FS_Uri
1979 *keywords,
1980 const struct
1982 int do_index,
1983 const struct
1985
1986
2001 void *client_info,
2002 const struct GNUNET_FS_Uri
2003 *keywords,
2004 const struct
2006 *meta,
2007 const struct
2009 const char *filename);
2010
2011
2018int
2020 *ent);
2021
2022
2034int
2036 struct GNUNET_FS_FileInformation *ent);
2037
2038
2053void
2056 void *proc_cls);
2057
2058
2069void
2072 void *cleaner_cls);
2073
2074
2080{
2085
2092
2093
2110 const struct GNUNET_CRYPTO_EcdsaPrivateKey *ns,
2111 const char *nid,
2112 const char *nuid,
2114
2115
2124void
2126
2127
2136typedef void
2137(*GNUNET_FS_PublishContinuation) (void *cls,
2138 const struct GNUNET_FS_Uri *uri,
2139 const char *emsg);
2140
2141
2146
2147
2163 const struct GNUNET_FS_Uri *ksk_uri,
2164 const struct GNUNET_FS_MetaData *meta,
2165 const struct GNUNET_FS_Uri *uri,
2166 const struct GNUNET_FS_BlockOptions *bo,
2169
2170
2176void
2178
2179
2184
2185
2203 const struct GNUNET_CRYPTO_EcdsaPrivateKey *ns,
2204 const char *identifier,
2205 const char *update,
2206 const struct GNUNET_FS_MetaData *meta,
2207 const struct GNUNET_FS_Uri *uri,
2208 const struct GNUNET_FS_BlockOptions *bo,
2211
2212
2218void
2220
2221
2230typedef int
2231(*GNUNET_FS_IndexedFileProcessor) (void *cls,
2232 const char *filename,
2233 const struct GNUNET_HashCode *file_id);
2234
2235
2240
2241
2253 void *iterator_cls);
2254
2255
2261void
2263
2264
2275 const char *filename,
2276 void *cctx);
2277
2278
2284void
2286
2287
2297typedef void (*GNUNET_FS_IdentifierProcessor) (void *cls,
2298 const char *last_id,
2299 const struct
2300 GNUNET_FS_Uri *last_uri,
2301 const struct
2303 last_meta,
2304 const char *next_id);
2305
2306
2328void
2330 const struct
2332 const char *next_id,
2334 void *ip_cls);
2335
2336
2342{
2347
2353
2354
2368 const struct GNUNET_FS_Uri *uri, uint32_t anonymity,
2369 enum GNUNET_FS_SearchOptions options, void *cctx);
2370
2371
2377void
2379
2380
2386void
2388
2389
2395void
2397
2398
2411 const struct GNUNET_FS_Uri *uri,
2412 const struct GNUNET_FS_MetaData *meta,
2413 void *client_info,
2414 uint32_t anonymity);
2415
2416
2424void *
2426
2427
2433{
2438
2443
2449
2455
2463 GNUNET_FS_DOWNLOAD_IS_PROBE = (1 << 31)
2465
2466
2499 const struct GNUNET_FS_Uri *uri,
2500 const struct GNUNET_FS_MetaData *meta,
2501 const char *filename, const char *tempname,
2502 uint64_t offset, uint64_t length, uint32_t anonymity,
2503 enum GNUNET_FS_DownloadOptions options, void *cctx,
2505
2506
2543 struct GNUNET_FS_SearchResult *sr,
2544 const char *filename,
2545 const char *tempname, uint64_t offset,
2546 uint64_t length, uint32_t anonymity,
2548 void *cctx);
2549
2550
2557void
2559
2560
2566void
2568
2569
2575void
2577
2578
2579/* ******************** Directory API *********************** */
2580
2581
2582#define GNUNET_FS_DIRECTORY_MIME "application/gnunet-directory"
2583#define GNUNET_FS_DIRECTORY_MAGIC "\211GND\r\n\032\n"
2584#define GNUNET_FS_DIRECTORY_EXT ".gnd"
2585
2593int
2595 *md);
2596
2597
2604void
2606
2607
2614char *
2616 GNUNET_FS_MetaData *md);
2617
2618
2634typedef void (*GNUNET_FS_DirectoryEntryProcessor) (void *cls,
2635 const char *filename,
2636 const struct GNUNET_FS_Uri *
2637 uri,
2638 const struct
2640 meta, size_t length,
2641 const void *data);
2642
2643
2663int
2664GNUNET_FS_directory_list_contents (size_t size, const void *data,
2665 uint64_t offset,
2667 void *dep_cls);
2668
2669
2674
2675
2683 *mdir);
2684
2685
2696void
2698 const struct GNUNET_FS_Uri *uri,
2699 const struct GNUNET_FS_MetaData *md,
2700 const void *data);
2701
2702
2713int
2715 size_t *rsize, void **rdata);
2716
2717
2718/* ******************** DirScanner API *********************** */
2719
2724{
2729
2735
2740
2745
2751
2757
2758
2770typedef void (*GNUNET_FS_DirScannerProgressCallback) (void *cls,
2771 const char *filename,
2772 int is_directory,
2773 enum
2775 reason);
2776
2777
2782{
2787
2792
2798
2804
2810
2815
2820
2825
2830
2835};
2836
2837
2842
2843
2855struct GNUNET_FS_DirScanner *
2858 const char *ex,
2860 void *cb_cls);
2861
2862
2869void
2871
2872
2883
2884
2891void
2893
2894
2900void
2902
2910/* ****************** metadata ******************* */
2911
2912
2919struct GNUNET_FS_MetaData *
2921
2922
2930struct GNUNET_FS_MetaData *
2932 const struct GNUNET_FS_MetaData *md);
2933
2934
2941void
2943
2944
2956int
2958 const struct GNUNET_FS_MetaData *md1,
2959 const struct GNUNET_FS_MetaData *md2);
2960
2961
2980int
2982 const char *plugin_name,
2983 enum EXTRACTOR_MetaType type,
2984 enum EXTRACTOR_MetaFormat format,
2985 const char *data_mime_type,
2986 const char *data,
2987 size_t data_size);
2988
2989
2998void
3000 const struct GNUNET_FS_MetaData *in);
3001
3002
3014int
3016 enum EXTRACTOR_MetaType type,
3017 const char *data,
3018 size_t data_size);
3019
3020
3027void
3029
3030
3038void
3040 struct GNUNET_FS_MetaData *md);
3041
3042
3053int
3055 EXTRACTOR_MetaDataProcessor iter,
3056 void *iter_cls);
3057
3058
3070char *
3072 const struct GNUNET_FS_MetaData *md,
3073 enum EXTRACTOR_MetaType type);
3074
3075
3088char *
3090 const struct GNUNET_FS_MetaData *md,
3091 ...);
3092
3103size_t
3105 const struct GNUNET_FS_MetaData *md,
3106 unsigned char **thumb);
3107
3108
3114{
3120
3127
3134
3135
3151ssize_t
3153 const struct GNUNET_FS_MetaData *md,
3154 char **target,
3155 size_t max,
3157
3158
3166ssize_t
3168 const struct GNUNET_FS_MetaData *md);
3169
3170
3180struct GNUNET_FS_MetaData *
3181GNUNET_FS_meta_data_deserialize (const char *input, size_t size);
3182
3193 const char *what,
3194 const struct GNUNET_FS_MetaData *m);
3195
3205 struct GNUNET_FS_MetaData **result);
3206
3207
3208
3218 const struct GNUNET_FS_MetaData *m);
3219
3230 const char *what,
3231 struct GNUNET_FS_MetaData **result);
3232
3233
3234#if 0 /* keep Emacsens' auto-indent happy */
3235{
3236#endif
3237#ifdef __cplusplus
3238}
3239#endif
3240
3241#endif
3242 /* end of group */
3244 /* end of group addition */
struct GNUNET_GETOPT_CommandLineOption options[]
Definition: 002.c:5
static struct GNUNET_ARM_MonitorHandle * m
Monitor connection with ARM.
Definition: gnunet-arm.c:104
static struct GNUNET_ARM_Handle * h
Connection with ARM.
Definition: gnunet-arm.c:99
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:109
static char * dir
Set to the directory where runtime files are stored.
Definition: gnunet-arm.c:89
static int disable_extractor
Disable extractor option to use for publishing.
static char * data
The data to insert into the dht.
struct GNUNET_HashCode key
The key used in the DHT.
static unsigned int anonymity
static struct GNUNET_FS_Handle * ctx
static struct GNUNET_FS_DownloadContext * dc
static char * filename
static struct GNUNET_FS_GetIndexedContext * gic
Handle for the index listing operation.
Definition: gnunet-fs.c:42
static char * name
Name (label) of the records to list.
static struct GNUNET_NAMECACHE_Handle * ns
Handle to the namecache.
static char * value
Value of the record to add/remove.
static uint32_t type
Type string converted to DNS type value.
static size_t data_size
Number of bytes in data.
static struct GNUNET_FS_Uri * uri
Value of URI provided on command-line (when not publishing a file but just creating UBlocks to refer ...
static struct GNUNET_FS_DirScanner * ds
Handle to the directory scanner (for recursive insertions).
static struct GNUNET_FS_MetaData * meta
Meta-data provided via command-line option.
static char * pseudonym
Command-line option identifying the pseudonym to use for the publication.
static struct GNUNET_FS_BlockOptions bo
Options we set for published blocks.
static char * next_id
Command-line option for namespace publishing: identifier for updates to this publication.
static struct GNUNET_FS_PublishContext * pc
Handle to FS-publishing operation.
static struct GNUNET_FS_Uri * topKeywords
Keywords provided via command-line option.
static int result
Global testing status.
#define info
static struct GNUNET_FS_SearchContext * sc
Definition: gnunet-search.c:87
static char * plugin_name
Name of our plugin.
static struct GNUNET_FS_UnindexContext * uc
commonly used definitions; globals in this file are exempt from the rule that the module name ("commo...
struct GNUNET_FS_Uri * GNUNET_FS_uri_dup(const struct GNUNET_FS_Uri *uri)
Duplicate URI.
Definition: fs_uri.c:987
#define EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME
GNUNET_FS_Flags
General (global) option flags for file-sharing.
GNUNET_FS_SearchOptions
Options for searching.
void GNUNET_FS_share_tree_free(struct GNUNET_FS_ShareTreeItem *toplevel)
Release memory of a share item tree.
Definition: fs_sharetree.c:437
struct GNUNET_TIME_Absolute GNUNET_FS_uri_loc_get_expiration(const struct GNUNET_FS_Uri *uri)
Obtain the expiration of the LOC URI.
Definition: fs_uri.c:829
int(* GNUNET_FS_KeywordIterator)(void *cls, const char *keyword, int is_mandatory)
Iterator over keywords.
const char * GNUNET_FS_file_information_get_filename(const struct GNUNET_FS_FileInformation *s)
Obtain the filename from the file information structure.
enum GNUNET_GenericReturnValue GNUNET_FS_write_meta_data(struct GNUNET_BIO_WriteHandle *h, const char *what, const struct GNUNET_FS_MetaData *m)
Write a metadata container.
Definition: meta_data.c:1110
struct GNUNET_FS_PublishContext * GNUNET_FS_publish_start(struct GNUNET_FS_Handle *h, struct GNUNET_FS_FileInformation *fi, const struct GNUNET_CRYPTO_EcdsaPrivateKey *ns, const char *nid, const char *nuid, enum GNUNET_FS_PublishOptions options)
Publish a file or directory.
Definition: fs_publish.c:1443
GNUNET_FS_DownloadOptions
Options for downloading.
int(* GNUNET_FS_FileInformationProcessor)(void *cls, struct GNUNET_FS_FileInformation *fi, uint64_t length, struct GNUNET_FS_MetaData *meta, struct GNUNET_FS_Uri **uri, struct GNUNET_FS_BlockOptions *bo, int *do_index, void **client_info)
Function called on entries in a struct GNUNET_FS_FileInformation iteration.
void GNUNET_FS_meta_data_make_directory(struct GNUNET_FS_MetaData *md)
Set the MIMETYPE information for the given metadata to "application/gnunet-directory".
Definition: fs_directory.c:81
int GNUNET_FS_directory_list_contents(size_t size, const void *data, uint64_t offset, GNUNET_FS_DirectoryEntryProcessor dep, void *dep_cls)
Iterate over all entries in a directory.
Definition: fs_directory.c:182
int GNUNET_FS_directory_builder_finish(struct GNUNET_FS_DirectoryBuilder *bld, size_t *rsize, void **rdata)
Finish building the directory.
Definition: fs_directory.c:578
void GNUNET_FS_uri_ksk_remove_keyword(struct GNUNET_FS_Uri *uri, const char *keyword)
Remove the given keyword from the set of keywords represented by the URI.
Definition: fs_uri.c:780
void GNUNET_FS_publish_ksk_cancel(struct GNUNET_FS_PublishKskContext *pkc)
Abort the KSK publishing operation.
struct GNUNET_FS_GetIndexedContext * GNUNET_FS_get_indexed_files(struct GNUNET_FS_Handle *h, GNUNET_FS_IndexedFileProcessor iterator, void *iterator_cls)
Iterate over all indexed files.
void GNUNET_FS_search_continue(struct GNUNET_FS_SearchContext *sc)
Continue paused search.
Definition: fs_search.c:1658
void GNUNET_FS_namespace_list_updateable(struct GNUNET_FS_Handle *h, const struct GNUNET_CRYPTO_EcdsaPrivateKey *ns, const char *next_id, GNUNET_FS_IdentifierProcessor ip, void *ip_cls)
List all of the identifiers in the namespace for which we could produce an update.
Definition: fs_namespace.c:667
void * GNUNET_FS_probe_stop(struct GNUNET_FS_SearchResult *sr)
Stop probe activity.
Definition: fs_search.c:540
char * GNUNET_FS_uri_sks_get_content_id(const struct GNUNET_FS_Uri *uri)
Get the content identifier of an SKS URI.
Definition: fs_uri.c:1306
uint64_t GNUNET_FS_uri_chk_get_file_size(const struct GNUNET_FS_Uri *uri)
What is the size of the file that this URI refers to?
Definition: fs_uri.c:1360
int GNUNET_FS_uri_test_ksk(const struct GNUNET_FS_Uri *uri)
Is this a keyword URI?
Definition: fs_uri.c:1324
struct GNUNET_FS_Uri * GNUNET_FS_uri_loc_create(const struct GNUNET_FS_Uri *base_uri, const struct GNUNET_CRYPTO_EddsaPrivateKey *sign_key, struct GNUNET_TIME_Absolute expiration_time)
Construct a location URI (this peer will be used for the location).
Definition: fs_uri.c:869
GNUNET_FS_OPTIONS
Options specified in the VARARGs portion of GNUNET_FS_start.
GNUNET_FS_Status
Possible status codes used in the callback for the various file-sharing operations.
size_t(* GNUNET_FS_DataReader)(void *cls, uint64_t offset, size_t max, void *buf, char **emsg)
Function that provides data.
struct GNUNET_FS_Uri * GNUNET_FS_uri_ksk_create(const char *keywords, char **emsg)
Create an FS URI from a single user-supplied string of keywords.
Definition: fs_uri.c:1049
void GNUNET_FS_get_indexed_files_cancel(struct GNUNET_FS_GetIndexedContext *gic)
Cancel iteration over all indexed files.
int(* GNUNET_FS_IndexedFileProcessor)(void *cls, const char *filename, const struct GNUNET_HashCode *file_id)
Type of a function called by GNUNET_FS_get_indexed_files.
int GNUNET_FS_file_information_add(struct GNUNET_FS_FileInformation *dir, struct GNUNET_FS_FileInformation *ent)
Add an entry to a directory in a publish-structure.
int GNUNET_FS_uri_test_equal(const struct GNUNET_FS_Uri *u1, const struct GNUNET_FS_Uri *u2)
Test if two URIs are equal.
Definition: fs_uri.c:1201
struct GNUNET_FS_PublishKskContext * GNUNET_FS_publish_ksk(struct GNUNET_FS_Handle *h, const struct GNUNET_FS_Uri *ksk_uri, const struct GNUNET_FS_MetaData *meta, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_BlockOptions *bo, enum GNUNET_FS_PublishOptions options, GNUNET_FS_PublishContinuation cont, void *cont_cls)
Publish a KBlock on GNUnet.
void GNUNET_FS_file_information_inspect(struct GNUNET_FS_FileInformation *dir, GNUNET_FS_FileInformationProcessor proc, void *proc_cls)
Inspect a file or directory in a publish-structure.
struct GNUNET_FS_DownloadContext * GNUNET_FS_download_start(struct GNUNET_FS_Handle *h, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_MetaData *meta, const char *filename, const char *tempname, uint64_t offset, uint64_t length, uint32_t anonymity, enum GNUNET_FS_DownloadOptions options, void *cctx, struct GNUNET_FS_DownloadContext *parent)
Download parts of a file.
Definition: fs_download.c:2099
enum GNUNET_GenericReturnValue GNUNET_FS_read_meta_data(struct GNUNET_BIO_ReadHandle *h, const char *what, struct GNUNET_FS_MetaData **result)
Read a metadata container.
Definition: meta_data.c:1051
void GNUNET_FS_unindex_stop(struct GNUNET_FS_UnindexContext *uc)
Clean up after completion of an unindex operation.
Definition: fs_unindex.c:838
int GNUNET_FS_uri_test_loc(const struct GNUNET_FS_Uri *uri)
Is this a location URI?
Definition: fs_uri.c:1401
void(* GNUNET_FS_DirectoryEntryProcessor)(void *cls, const char *filename, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_MetaData *meta, size_t length, const void *data)
Function used to process entries in a directory.
GNUNET_FS_PublishOptions
Options for publishing.
char * GNUNET_FS_uri_to_string(const struct GNUNET_FS_Uri *uri)
Convert a URI to a UTF-8 String.
Definition: fs_uri.c:2034
void GNUNET_FS_download_resume(struct GNUNET_FS_DownloadContext *dc)
Resume a suspended download.
Definition: fs_download.c:2226
struct GNUNET_FS_FileInformation * GNUNET_FS_file_information_create_empty_directory(struct GNUNET_FS_Handle *h, void *client_info, const struct GNUNET_FS_Uri *keywords, const struct GNUNET_FS_MetaData *meta, const struct GNUNET_FS_BlockOptions *bo, const char *filename)
Create an entry for an empty directory in a publish-structure.
struct GNUNET_FS_SearchResult * GNUNET_FS_probe(struct GNUNET_FS_Handle *h, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_MetaData *meta, void *client_info, uint32_t anonymity)
Start download probes for the given search result.
Definition: fs_search.c:489
struct GNUNET_FS_Handle * GNUNET_FS_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *client_name, GNUNET_FS_ProgressCallback upcb, void *upcb_cls, enum GNUNET_FS_Flags flags,...)
Setup a connection to the file-sharing service.
Definition: fs_api.c:3244
struct GNUNET_FS_Uri * GNUNET_FS_uri_ksk_create_from_args(unsigned int argc, const char **argv)
Create an FS URI from a user-supplied command line of keywords.
Definition: fs_uri.c:1144
void GNUNET_FS_search_stop(struct GNUNET_FS_SearchContext *sc)
Stop search for content.
Definition: fs_search.c:1766
struct GNUNET_FS_Uri * GNUNET_FS_uri_ksk_create_from_meta_data(const struct GNUNET_FS_MetaData *md)
Construct a keyword-URI from meta-data (take all entries in the meta-data and construct one large key...
Definition: fs_uri.c:1788
struct GNUNET_FS_ShareTreeItem * GNUNET_FS_directory_scan_get_result(struct GNUNET_FS_DirScanner *ds)
Obtain the result of the scan after the scan has signalled completion.
int GNUNET_FS_uri_ksk_get_keywords(const struct GNUNET_FS_Uri *uri, GNUNET_FS_KeywordIterator iterator, void *iterator_cls)
Iterate over all keywords in this keyword URI.
Definition: fs_uri.c:720
void GNUNET_FS_uri_destroy(struct GNUNET_FS_Uri *uri)
Free URI.
Definition: fs_uri.c:677
int GNUNET_FS_uri_sks_get_namespace(const struct GNUNET_FS_Uri *uri, struct GNUNET_CRYPTO_EcdsaPublicKey *pseudonym)
Get the public key of a namespace from the given namespace URI.
Definition: fs_uri.c:1286
int GNUNET_FS_uri_test_sks(const struct GNUNET_FS_Uri *uri)
Is this a namespace URI?
Definition: fs_uri.c:1271
struct GNUNET_FS_Uri * GNUNET_FS_uri_sks_create(const struct GNUNET_CRYPTO_EcdsaPublicKey *ns, const char *id)
Create an SKS URI from a namespace ID and an identifier.
Definition: fs_uri.c:908
struct GNUNET_FS_PublishSksContext * GNUNET_FS_publish_sks(struct GNUNET_FS_Handle *h, const struct GNUNET_CRYPTO_EcdsaPrivateKey *ns, const char *identifier, const char *update, const struct GNUNET_FS_MetaData *meta, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_BlockOptions *bo, enum GNUNET_FS_PublishOptions options, GNUNET_FS_PublishContinuation cont, void *cont_cls)
Publish an SBlock on GNUnet.
Definition: fs_namespace.c:428
void GNUNET_FS_file_information_set_filename(struct GNUNET_FS_FileInformation *s, const char *filename)
Set the filename in the file information structure.
int GNUNET_FS_getopt_set_metadata(struct GNUNET_GETOPT_CommandLineProcessorContext *ctx, void *scls, const char *option, const char *value)
Command-line option parser function that allows the user to specify one or more '-m' options with met...
struct GNUNET_FS_DownloadContext * GNUNET_FS_download_start_from_search(struct GNUNET_FS_Handle *h, struct GNUNET_FS_SearchResult *sr, const char *filename, const char *tempname, uint64_t offset, uint64_t length, uint32_t anonymity, enum GNUNET_FS_DownloadOptions options, void *cctx)
Download parts of a file based on a search result.
Definition: fs_download.c:2136
struct GNUNET_FS_DirScanner * GNUNET_FS_directory_scan_start(const char *filename, int disable_extractor, const char *ex, GNUNET_FS_DirScannerProgressCallback cb, void *cb_cls)
Start a directory scanner.
void GNUNET_FS_download_stop(struct GNUNET_FS_DownloadContext *dc, int do_delete)
Stop a download (aborts if download is incomplete).
Definition: fs_download.c:2253
struct GNUNET_FS_DirectoryBuilder * GNUNET_FS_directory_builder_create(const struct GNUNET_FS_MetaData *mdir)
Create a directory builder.
Definition: fs_directory.c:366
GNUNET_FS_DirScannerProgressUpdateReason
Progress reasons of the directory scanner.
struct GNUNET_FS_FileInformation * GNUNET_FS_file_information_create_from_data(struct GNUNET_FS_Handle *h, void *client_info, uint64_t length, void *data, const struct GNUNET_FS_Uri *keywords, const struct GNUNET_FS_MetaData *meta, int do_index, const struct GNUNET_FS_BlockOptions *bo)
Create an entry for a file in a publish-structure.
int GNUNET_FS_meta_data_test_for_directory(const struct GNUNET_FS_MetaData *md)
Does the meta-data claim that this is a directory? Checks if the mime-type is that of a GNUnet direct...
Definition: fs_directory.c:55
void(* GNUNET_FS_PublishContinuation)(void *cls, const struct GNUNET_FS_Uri *uri, const char *emsg)
Signature of a function called as the continuation of a KBlock or SBlock publication.
int GNUNET_FS_uri_test_chk(const struct GNUNET_FS_Uri *uri)
Is this a file (or directory) URI?
Definition: fs_uri.c:1346
void(* GNUNET_FS_IdentifierProcessor)(void *cls, const char *last_id, const struct GNUNET_FS_Uri *last_uri, const struct GNUNET_FS_MetaData *last_meta, const char *next_id)
Function called on updateable identifiers.
struct GNUNET_FS_FileInformation * GNUNET_FS_file_information_create_from_file(struct GNUNET_FS_Handle *h, void *client_info, const char *filename, const struct GNUNET_FS_Uri *keywords, const struct GNUNET_FS_MetaData *meta, int do_index, const struct GNUNET_FS_BlockOptions *bo)
Create an entry for a file in a publish-structure.
void GNUNET_FS_stop(struct GNUNET_FS_Handle *h)
Close our connection with the file-sharing service.
Definition: fs_api.c:3310
unsigned int GNUNET_FS_uri_ksk_get_keyword_count(const struct GNUNET_FS_Uri *uri)
How many keywords are ANDed in this keyword URI?
Definition: fs_uri.c:711
struct GNUNET_FS_Uri * GNUNET_FS_uri_parse(const char *uri, char **emsg)
Convert a UTF-8 String to a URI.
Definition: fs_uri.c:637
int GNUNET_FS_file_information_is_directory(const struct GNUNET_FS_FileInformation *ent)
Test if a given entry represents a directory.
char * GNUNET_FS_uri_ksk_to_string_fancy(const struct GNUNET_FS_Uri *uri)
Convert keyword URI to a human readable format (i.e.
Definition: fs_uri.c:148
struct GNUNET_GETOPT_CommandLineOption GNUNET_FS_GETOPT_METADATA(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_FS_MetaData **meta)
Allow user to specify metadata.
Definition: fs_getopt.c:254
struct GNUNET_BIO_ReadSpec GNUNET_FS_read_spec_meta_data(const char *what, struct GNUNET_FS_MetaData **result)
Create the specification to read a metadata container.
Definition: meta_data.c:1185
void GNUNET_FS_publish_stop(struct GNUNET_FS_PublishContext *pc)
Stop a publication.
Definition: fs_publish.c:1571
struct GNUNET_FS_UnindexContext * GNUNET_FS_unindex_start(struct GNUNET_FS_Handle *h, const char *filename, void *cctx)
Unindex a file.
Definition: fs_unindex.c:796
void GNUNET_FS_search_pause(struct GNUNET_FS_SearchContext *sc)
Pause search.
Definition: fs_search.c:1627
struct GNUNET_FS_FileInformation * GNUNET_FS_file_information_create_from_reader(struct GNUNET_FS_Handle *h, void *client_info, uint64_t length, GNUNET_FS_DataReader reader, void *reader_cls, const struct GNUNET_FS_Uri *keywords, const struct GNUNET_FS_MetaData *meta, int do_index, const struct GNUNET_FS_BlockOptions *bo)
Create an entry for a file in a publish-structure.
struct GNUNET_BIO_WriteSpec GNUNET_FS_write_spec_meta_data(const char *what, const struct GNUNET_FS_MetaData *m)
Create the specification to write a metadata container.
Definition: meta_data.c:1223
struct GNUNET_FS_Uri * GNUNET_FS_uri_loc_get_uri(const struct GNUNET_FS_Uri *uri)
Obtain the URI of the content itself.
Definition: fs_uri.c:843
char * GNUNET_FS_meta_data_suggest_filename(const struct GNUNET_FS_MetaData *md)
Suggest a filename based on given metadata.
Definition: fs_misc.c:39
int GNUNET_FS_uri_to_key(const struct GNUNET_FS_Uri *uri, struct GNUNET_HashCode *key)
Get a unique key from a URI.
Definition: fs_uri.c:96
void GNUNET_FS_directory_scan_abort(struct GNUNET_FS_DirScanner *ds)
Abort the scan.
const struct GNUNET_HashCode * GNUNET_FS_uri_chk_get_file_hash(const struct GNUNET_FS_Uri *uri)
What is the hash of the original file's content that this URI refers to?
Definition: fs_uri.c:1385
void GNUNET_FS_file_information_destroy(struct GNUNET_FS_FileInformation *fi, GNUNET_FS_FileInformationProcessor cleaner, void *cleaner_cls)
Destroy publish-structure.
void GNUNET_FS_download_suspend(struct GNUNET_FS_DownloadContext *dc)
Suspend a download.
Definition: fs_download.c:2214
void GNUNET_FS_share_tree_trim(struct GNUNET_FS_ShareTreeItem *toplevel)
Process a share item tree, moving frequent keywords up and copying frequent metadata up.
Definition: fs_sharetree.c:417
struct GNUNET_GETOPT_CommandLineOption GNUNET_FS_GETOPT_KEYWORDS(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_FS_Uri **topKeywords)
Allow user to specify keywords.
Definition: fs_getopt.c:129
struct GNUNET_FS_Uri * GNUNET_FS_uri_ksk_merge(const struct GNUNET_FS_Uri *u1, const struct GNUNET_FS_Uri *u2)
Merge the sets of keywords from two KSK URIs.
Definition: fs_uri.c:931
struct GNUNET_FS_SearchContext * GNUNET_FS_search_start(struct GNUNET_FS_Handle *h, const struct GNUNET_FS_Uri *uri, uint32_t anonymity, enum GNUNET_FS_SearchOptions options, void *cctx)
Start search for content.
Definition: fs_search.c:1607
void GNUNET_FS_directory_builder_add(struct GNUNET_FS_DirectoryBuilder *bld, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_MetaData *md, const void *data)
Add an entry to a directory.
Definition: fs_directory.c:392
int GNUNET_FS_uri_loc_get_peer_identity(const struct GNUNET_FS_Uri *uri, struct GNUNET_PeerIdentity *peer)
Obtain the identity of the peer offering the data.
Definition: fs_uri.c:812
void GNUNET_FS_publish_sks_cancel(struct GNUNET_FS_PublishSksContext *psc)
Abort the SKS publishing operation.
Definition: fs_namespace.c:491
void *(* GNUNET_FS_ProgressCallback)(void *cls, const struct GNUNET_FS_ProgressInfo *info)
Notification of FS to a client about the progress of an operation.
void(* GNUNET_FS_DirScannerProgressCallback)(void *cls, const char *filename, int is_directory, enum GNUNET_FS_DirScannerProgressUpdateReason reason)
Function called over time as the directory scanner makes progress on the job at hand.
const char * GNUNET_FS_file_information_get_id(struct GNUNET_FS_FileInformation *s)
Obtain the name under which this file information structure is stored on disk.
void GNUNET_FS_uri_ksk_add_keyword(struct GNUNET_FS_Uri *uri, const char *keyword, int is_mandatory)
Add the given keyword to the set of keywords represented by the URI.
Definition: fs_uri.c:752
@ GNUNET_FS_FLAGS_PERSISTENCE
Is persistence of operations desired? (will create SUSPEND/RESUME events).
@ GNUNET_FS_FLAGS_DO_PROBES
Should we automatically trigger probes for search results to determine availability?...
@ GNUNET_FS_FLAGS_NONE
No special flags set.
@ GNUNET_FS_SEARCH_OPTION_LOOPBACK_ONLY
Only search the local host, do not search remote systems (no P2P)
@ GNUNET_FS_SEARCH_OPTION_NONE
No options (use defaults for everything).
@ GNUNET_FS_DOWNLOAD_OPTION_NONE
No options (use defaults for everything).
@ GNUNET_FS_DOWNLOAD_IS_PROBE
Internal option used to flag this download as a 'probe' for a search result.
@ GNUNET_FS_DOWNLOAD_OPTION_RECURSIVE
Do a recursive download (that is, automatically trigger the download of files in directories).
@ GNUNET_FS_DOWNLOAD_OPTION_LOOPBACK_ONLY
Only download from the local host, do not access remote systems (no P2P)
@ GNUNET_FS_DOWNLOAD_NO_TEMPORARIES
Do not append temporary data to the target file (for the IBlocks).
@ GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM
Select the desired amount of parallelism (this option should be followed by an "unsigned int" giving ...
@ GNUNET_FS_OPTIONS_END
Last option in the VARARG list.
@ GNUNET_FS_OPTIONS_REQUEST_PARALLELISM
Maximum number of requests that should be pending at a given point in time (invidivual downloads may ...
@ GNUNET_FS_STATUS_UNINDEX_PROGRESS
Notification that we made progress unindexing a file.
@ GNUNET_FS_STATUS_SEARCH_UPDATE
We have additional data about the quality or availability of a search result.
@ GNUNET_FS_STATUS_DOWNLOAD_INACTIVE
Notification that this download is no longer actively being pursued (back in the queue).
@ GNUNET_FS_STATUS_SEARCH_RESULT_NAMESPACE
We have discovered a new namespace.
@ GNUNET_FS_STATUS_UNINDEX_RESUME
Notification that we resumed unindexing of a file.
@ GNUNET_FS_STATUS_DOWNLOAD_ERROR
Notification that this download encountered an error.
@ GNUNET_FS_STATUS_SEARCH_ERROR
Signals a problem with this search.
@ GNUNET_FS_STATUS_DOWNLOAD_COMPLETED
Notification that this download completed.
@ GNUNET_FS_STATUS_DOWNLOAD_RESUME
Notification that this download is being resumed.
@ GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED
Event generated for each search result when the respective search is stopped.
@ GNUNET_FS_STATUS_UNINDEX_START
Notification that we started to unindex a file.
@ GNUNET_FS_STATUS_SEARCH_SUSPEND
Last event when a search is being suspended; note that "GNUNET_FS_SEARCH_STOPPED" will not be generat...
@ GNUNET_FS_STATUS_SEARCH_RESUME
Last event when a search is being resumed; note that "GNUNET_FS_SEARCH_START" will not be generated i...
@ GNUNET_FS_STATUS_SEARCH_RESUME_RESULT
Event generated for each search result when the respective search is resumed.
@ GNUNET_FS_STATUS_PUBLISH_STOPPED
Notification that we have stopped the process of uploading a file structure; no further events will b...
@ GNUNET_FS_STATUS_PUBLISH_ERROR
Notification that an error was encountered sharing a file structure.
@ GNUNET_FS_STATUS_UNINDEX_STOPPED
Notification that the unindexing of this file was stopped (final event for this action).
@ GNUNET_FS_STATUS_DOWNLOAD_SUSPEND
Notification that this download was suspended.
@ GNUNET_FS_STATUS_SEARCH_RESULT
This search has yielded a result.
@ GNUNET_FS_STATUS_PUBLISH_SUSPEND
Notification that we have suspended sharing a file structure.
@ GNUNET_FS_STATUS_SEARCH_CONTINUED
Signals that this search was continued (unpaused).
@ GNUNET_FS_STATUS_PUBLISH_PROGRESS
Notification that we are making progress sharing a file structure.
@ GNUNET_FS_STATUS_DOWNLOAD_START
Notification that we have started this download.
@ GNUNET_FS_STATUS_UNINDEX_COMPLETED
Notification that the unindexing of this file was completed.
@ GNUNET_FS_STATUS_SEARCH_PAUSED
Signals that this search was paused.
@ GNUNET_FS_STATUS_DOWNLOAD_PROGRESS
Notification about progress with this download.
@ GNUNET_FS_STATUS_DOWNLOAD_LOST_PARENT
Notification that this download is no longer part of a recursive download or search but now a 'stand-...
@ GNUNET_FS_STATUS_UNINDEX_SUSPEND
Notification that we suspended unindexing a file.
@ GNUNET_FS_STATUS_UNINDEX_ERROR
Notification that we encountered an error unindexing a file.
@ GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY
Notification that we are making progress sharing a directory.
@ GNUNET_FS_STATUS_PUBLISH_START
Notification that we have started to publish a file structure.
@ GNUNET_FS_STATUS_PUBLISH_COMPLETED
Notification that we completed sharing a file structure.
@ GNUNET_FS_STATUS_PUBLISH_RESUME
Notification that we have resumed sharing a file structure.
@ GNUNET_FS_STATUS_SEARCH_START
First event generated when a client requests a search to begin or when a namespace result automatical...
@ GNUNET_FS_STATUS_SEARCH_RESULT_SUSPEND
Event generated for each search result when the respective search is suspended.
@ GNUNET_FS_STATUS_DOWNLOAD_ACTIVE
Notification that this download is now actively being pursued (as opposed to waiting in the queue).
@ GNUNET_FS_STATUS_DOWNLOAD_STOPPED
Notification that this download was stopped (final event with respect to this action).
@ GNUNET_FS_STATUS_SEARCH_STOPPED
Last message from a search; this signals that there will be no further events associated with this se...
@ GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY
Simulate publishing.
@ GNUNET_FS_PUBLISH_OPTION_NONE
No options (use defaults for everything).
@ GNUNET_FS_DIRSCANNER_INTERNAL_ERROR
There was an internal error.
@ GNUNET_FS_DIRSCANNER_FILE_IGNORED
We're having trouble accessing a file (soft-error); it will be ignored.
@ GNUNET_FS_DIRSCANNER_FINISHED
Last call to the progress function: we have finished scanning the directory.
@ GNUNET_FS_DIRSCANNER_EXTRACT_FINISHED
We've finished extracting meta data from a file.
@ GNUNET_FS_DIRSCANNER_ALL_COUNTED
We've found all files (in the pre-pass).
@ GNUNET_FS_DIRSCANNER_FILE_START
We've started processing a file or directory.
GNUNET_GenericReturnValue
Named constants for return values.
int GNUNET_FS_meta_data_iterate(const struct GNUNET_FS_MetaData *md, EXTRACTOR_MetaDataProcessor iter, void *iter_cls)
Iterate over MD entries.
Definition: meta_data.c:418
char * GNUNET_FS_meta_data_get_by_type(const struct GNUNET_FS_MetaData *md, enum EXTRACTOR_MetaType type)
Get the first MD entry of the given type.
Definition: meta_data.c:438
void GNUNET_FS_meta_data_add_publication_date(struct GNUNET_FS_MetaData *md)
Add the current time as the publication date to the meta-data.
Definition: meta_data.c:391
ssize_t GNUNET_FS_meta_data_get_serialized_size(const struct GNUNET_FS_MetaData *md)
Get the size of the full meta-data in serialized form.
Definition: meta_data.c:858
size_t GNUNET_FS_meta_data_get_thumbnail(const struct GNUNET_FS_MetaData *md, unsigned char **thumb)
Get a thumbnail from the meta-data (if present).
Definition: meta_data.c:490
GNUNET_FS_MetaDataSerializationOptions
Options for metadata serialization.
ssize_t GNUNET_FS_meta_data_serialize(const struct GNUNET_FS_MetaData *md, char **target, size_t max, enum GNUNET_FS_MetaDataSerializationOptions opt)
Serialize meta-data to target.
Definition: meta_data.c:637
struct GNUNET_FS_MetaData * GNUNET_FS_meta_data_create(void)
Create a fresh meta data container.
Definition: meta_data.c:127
void GNUNET_FS_meta_data_merge(struct GNUNET_FS_MetaData *md, const struct GNUNET_FS_MetaData *in)
Extend metadata.
Definition: meta_data.c:356
struct GNUNET_FS_MetaData * GNUNET_FS_meta_data_duplicate(const struct GNUNET_FS_MetaData *md)
Duplicate a MetaData token.
Definition: meta_data.c:527
int GNUNET_FS_meta_data_insert(struct GNUNET_FS_MetaData *md, const char *plugin_name, enum EXTRACTOR_MetaType type, enum EXTRACTOR_MetaFormat format, const char *data_mime_type, const char *data, size_t data_size)
Extend metadata.
Definition: meta_data.c:254
void GNUNET_FS_meta_data_destroy(struct GNUNET_FS_MetaData *md)
Free meta data.
Definition: meta_data.c:166
int GNUNET_FS_meta_data_test_equal(const struct GNUNET_FS_MetaData *md1, const struct GNUNET_FS_MetaData *md2)
Test if two MDs are equal.
Definition: meta_data.c:200
void GNUNET_FS_meta_data_clear(struct GNUNET_FS_MetaData *md)
Remove all items in the container.
Definition: meta_data.c:183
int GNUNET_FS_meta_data_delete(struct GNUNET_FS_MetaData *md, enum EXTRACTOR_MetaType type, const char *data, size_t data_size)
Remove an item.
Definition: meta_data.c:364
struct GNUNET_FS_MetaData * GNUNET_FS_meta_data_deserialize(const char *input, size_t size)
Deserialize meta-data.
Definition: meta_data.c:885
char * GNUNET_FS_meta_data_get_first_by_types(const struct GNUNET_FS_MetaData *md,...)
Get the first matching MD entry of the given types.
Definition: meta_data.c:456
@ GNUNET_FS_META_DATA_SERIALIZE_FULL
Serialize all of the data.
@ GNUNET_FS_META_DATA_SERIALIZE_PART
If not enough space is available, it is acceptable to only serialize some of the metadata.
@ GNUNET_FS_META_DATA_SERIALIZE_NO_COMPRESS
Speed is of the essence, do not allow compression.
#define max(x, y)
static unsigned int size
Size of the "table".
Definition: peer.c:68
Handle for buffered reading.
Definition: bio.c:69
Structure specifying a reading operation on an IO handle.
const char * what
What is being read (for error message creation)
Handle for buffered writing.
Definition: bio.c:466
Structure specifying a writing operation on an IO handle.
const char * what
What is being read (for error message creation)
Private ECC key encoded for transmission.
Public ECC key (always for Curve25519) encoded in a format suitable for network transmission and ECDS...
Private ECC key encoded for transmission.
Settings for publishing a block (which may of course also apply to an entire directory or file).
uint32_t anonymity_level
At which anonymity level should the block be shared? (0: no anonymity, 1: normal GAP,...
uint32_t content_priority
How important is it for us to store the block? If we run out of space, the highest-priority,...
uint32_t replication_level
How often should we try to migrate the block to other peers? Only used if "CONTENT_PUSHING" is set to...
struct GNUNET_TIME_Absolute expiration_time
At what time should the block expire? Data blocks (DBLOCKS and IBLOCKS) may still be used even if the...
An opaque structure a pointer to which is returned to the caller to be used to control the scanner.
Internal state of a directory builder.
Definition: fs_directory.c:342
Context for controlling a download.
Definition: fs_api.h:1744
uint64_t offset
What is the first offset that we're interested in?
Definition: fs_api.h:1878
uint64_t length
How many bytes starting from offset are desired? This is NOT the overall length of the file!
Definition: fs_api.h:1884
struct GNUNET_FS_DownloadContext * parent
Parent download (used when downloading files in directories).
Definition: fs_api.h:1764
Information for a file or directory that is about to be published.
Definition: fs_api.h:228
struct GNUNET_FS_Uri * keywords
Keywords to use for KBlocks.
Definition: fs_api.h:258
GNUNET_FS_DataReader reader
Function that can be used to read the data for the file.
Definition: fs_api.h:317
char * emsg
Error message (non-NULL if this operation failed).
Definition: fs_api.h:297
void * client_info
Pointer kept for the client.
Definition: fs_api.h:248
int do_index
Should the file be indexed or inserted?
Definition: fs_api.h:339
void * reader_cls
Closure for reader.
Definition: fs_api.h:322
Context for GNUNET_FS_get_indexed_files().
void * iterator_cls
Closure for iterator.
GNUNET_FS_IndexedFileProcessor iterator
Function to call for each indexed file.
Master context for most FS operations.
Definition: fs_api.h:1070
enum GNUNET_FS_Flags flags
General flags.
Definition: fs_api.h:1162
char * client_name
Name of our client.
Definition: fs_api.h:1079
void * upcb_cls
Closure for upcb.
Definition: fs_api.h:1089
GNUNET_FS_ProgressCallback upcb
Function to call with updates on our progress.
Definition: fs_api.h:1084
Meta data to associate with a file, directory or namespace.
Definition: meta_data.c:92
Argument given to the progress callback with information about what is going on.
struct GNUNET_FS_PublishContext * pc
Context for controlling the upload.
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_DownloadStatusEvent download
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_SearchStatusEvent::@24::GNUNET_FS_SearchUpdateEvent update
const char * root
Root identifier for the namespace, can be NULL.
void * cctx
Client context pointer (set the last time by the client for this operation; initially NULL on START/R...
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_SearchStatusEvent::@24::GNUNET_FS_SearchResumeResultEvent resume_result
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_SearchStatusEvent::@24::GNUNET_GS_SearchResultNamespaceEvent ns
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_PublishStatusEvent publish
unsigned int depth
Depth of the given block in the tree; 0 would be the lowest level (DBLOCKs).
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_PublishStatusEvent::@22::GNUNET_FS_PublishProgressEvent progress
int is_paused
Is this search currently paused?
const struct GNUNET_FS_MetaData * meta
Known metadata for the download.
struct GNUNET_FS_Handle * fsh
File-sharing handle that generated the event.
enum GNUNET_FS_Status status
Specific status code (determines the event type).
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_SearchStatusEvent::@24::GNUNET_FS_SearchStoppedResultEvent result_stopped
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_PublishStatusEvent::@22::GNUNET_FS_PublishResumeEvent resume
struct GNUNET_CRYPTO_EcdsaPublicKey pseudonym
Public key of the namespace.
struct GNUNET_TIME_Relative duration
How long has this upload been actively running (excludes times where the upload was suspended).
const void * data
Data block we just published.
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_PublishStatusEvent::@22::GNUNET_FS_PublishProgressDirectoryEvent progress_directory
void * sctx
Client context pointer for the associated search operation (specifically, context pointer for the spe...
void * pctx
Client context pointer for the parent operation (if this is a file in a directory or a subdirectory).
struct GNUNET_TIME_Relative eta
At what time do we expect to finish the upload? (will be a value in the past for completed uploads).
uint32_t anonymity
What anonymity level is used for this upload?
int32_t availability_rank
Current availability rank (negative: unavailable, positive: available)
uint32_t availability_certainty
On how many total queries is the given availability_rank based?
const char * filename
Name of the file being published; can be NULL.
uint64_t size
How large is the file overall? For directories, this is only the size of the directory itself,...
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_UnindexEvent unindex
union GNUNET_FS_ProgressInfo::@21::GNUNET_FS_PublishStatusEvent::@22 specifics
Additional values for specific events.
uint32_t num_transmissions
How often did we transmit the request? (estimate, because we might have the same request pending for ...
const struct GNUNET_FS_Uri * uri
URI used for this download.
const char * name
Short, human-readable name of the namespace.
uint64_t offset
At what offset in the file is "data"?
struct GNUNET_FS_DownloadContext * dc
Context for controlling the download.
struct GNUNET_FS_SearchContext * sc
Context for controlling the search, NULL for searches that were not explicitly triggered by the clien...
const struct GNUNET_FS_Uri * query
What query is used for this search (list of keywords or SKS identifier).
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_DownloadStatusEvent::@23::GNUNET_FS_DownloadStartEvent start
union GNUNET_FS_ProgressInfo::@21 value
Values that depend on the event type.
const char * message
Error message, NULL if no error was encountered so far.
struct GNUNET_TIME_Relative block_download_duration
How much time passed between us asking for this block and actually getting it? GNUNET_TIME_UNIT_FOREV...
int is_active
Is the download currently active.
uint64_t data_len
Length of the data block.
uint32_t applicability_rank
Applicability rank (the larger, the better the result fits the search criteria).
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_SearchStatusEvent search
uint64_t completed
How many bytes have we completed?
struct GNUNET_TIME_Relative current_probe_time
How long has the current probe been active?
const struct GNUNET_FS_FileInformation * fi
Information about the file that is being published.
uint64_t total
How big do we estimate the entire directory to be?
struct GNUNET_FS_UnindexContext * uc
Context for controlling the unindexing.
const struct GNUNET_FS_Uri * chk_uri
URI of the file (if the download had been completed)
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_SearchStatusEvent::@24::GNUNET_FS_SearchSuspendResultEvent result_suspend
struct GNUNET_FS_SearchResult * result
Handle to the result (for starting downloads).
struct GNUNET_FS_ProgressInfo::@21::GNUNET_FS_PublishStatusEvent::@22::GNUNET_FS_PublishErrorEvent error
const struct GNUNET_FS_Uri * sks_uri
SKS URI of the file (if the download had been completed)
uint32_t respect_offered
How much respect did we offer for downloading this block? (estimate, because we might have the same r...
Handle for controlling a publication process.
Definition: fs_api.h:1180
char * nuid
ID for future updates, NULL if we have no namespace or no updates.
Definition: fs_api.h:1209
struct GNUNET_FS_FileInformation * fi
File-structure that is being shared.
Definition: fs_api.h:1194
char * nid
ID of the content in the namespace, NULL if we have no namespace.
Definition: fs_api.h:1204
Context for the KSK publication.
struct GNUNET_FS_Uri * ksk_uri
Keywords to use.
void * cont_cls
Closure for cont.
GNUNET_FS_PublishContinuation cont
Function to call once we're done.
Context for the SKS publication.
Definition: fs_namespace.c:345
GNUNET_FS_PublishContinuation cont
Function to call once we're done.
Definition: fs_namespace.c:375
void * cont_cls
Closure for cont.
Definition: fs_namespace.c:380
Handle for controlling a search.
Definition: fs_api.h:1511
Information we store for each search result.
Definition: fs_api.h:499
void * client_info
Client info for this search result.
Definition: fs_api.h:534
A node of a directory tree (produced by dirscanner)
int is_directory
GNUNET_YES if this is a directory
struct GNUNET_FS_ShareTreeItem * parent
This is a doubly-linked tree NULL for top-level entries.
struct GNUNET_FS_ShareTreeItem * prev
This is a doubly-linked list.
struct GNUNET_FS_Uri * ksk_uri
Keywords for this file or directory (derived from metadata).
char * short_filename
Base name of the file/directory.
struct GNUNET_FS_ShareTreeItem * next
This is a doubly-linked list.
struct GNUNET_FS_ShareTreeItem * children_head
This is a doubly-linked tree NULL for files and empty directories.
struct GNUNET_FS_MetaData * meta
Metadata for this file or directory.
char * filename
Name of the file/directory.
struct GNUNET_FS_ShareTreeItem * children_tail
This is a doubly-linked tree NULL for files and empty directories.
Handle for controlling an unindexing operation.
Definition: fs_api.h:1351
A Universal Resource Identifier (URI), opaque.
Definition: fs_api.h:167
char ** keywords
Keywords start with a '+' if they are mandatory (in which case the '+' is NOT part of the keyword) an...
Definition: fs_api.h:186
Definition of a command line option.
const char * description
Help text for the option (description)
const char * argumentHelp
Name of the argument for the user in help text.
const char shortName
Short name of the option.
General context for command line processors.
A 512-bit hashcode.
The identity of the host (wraps the signing key of the peer).
Time for absolute times used by GNUnet, in microseconds.
Time for relative time used by GNUnet, in microseconds.