1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #ifndef RESOURCE_H
30 #define RESOURCE_H
31
32 #include "webdav.h"
33 #include "crypto.h"
34 #include <cx/string.h>
35 #include <cx/hash_key.h>
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 typedef struct DavResourceData DavResourceData;
42
43 struct DavResourceData {
44 CxMap *properties;
45 CxList *set;
46 CxList *remove;
47 CxList *crypto_set;
48 CxList *crypto_remove;
49
50
51
52
53 CxMap *crypto_properties;
54
55
56
57
58 void *content;
59
60
61
62 dav_read_func read;
63
64
65
66 dav_seek_func seek;
67
68
69
70 size_t length;
71
72
73
74
75 char hash[
32];
76 };
77
78
79
80
81 typedef struct {
82 DAV_SHA_CTX *sha;
83 void *stream;
84 dav_read_func read;
85 dav_seek_func seek;
86 int error;
87 } HashStream;
88
89 struct DavInputStream {
90 DavResource *res;
91 CURLM *m;
92 CURL *c;
93 AESDecrypter *dec;
94 char *buffer;
95 size_t alloc;
96 size_t size;
97 size_t pos;
98 int eof;
99 };
100
101 struct DavOutputStream {
102 DavResource *res;
103 CURLM *m;
104 CURL *c;
105 AESEncrypter *enc;
106 HashStream *hstr;
107 const char *buffer;
108 size_t size;
109 size_t pos;
110 int eof;
111 };
112
113 DavResource* dav_resource_new_full(DavSession *sn,
const char *parent_path,
const char *name,
char *href);
114
115 void resource_free_properties(DavSession *sn, CxMap *properties);
116
117 void resource_set_href(DavResource *res, cxstring href);
118
119 void resource_set_info(DavResource *res,
const char *href_str);
120 DavResourceData* resource_data_new(DavSession *sn);
121 void resource_add_property(DavResource *res,
const char *ns,
const char *name, xmlNode *val);
122 void resource_set_crypto_properties(DavResource *res, CxMap *cprops);
123 DavXmlNode* resource_get_property(DavResource *res,
const char *ns,
const char *name);
124 DavXmlNode* resource_get_encrypted_property(DavResource *res,
const char *ns,
const char *name);
125 DavXmlNode* resource_get_property_k(DavResource *res, CxHashKey key);
126 DavXmlNode* resource_get_encrypted_property_k(DavResource *res, CxHashKey key);
127 void resource_add_child(DavResource *parent, DavResource *child);
128 void resource_add_ordered_child(DavResource *parent, DavResource *child, CxList *ordercr);
129 int resource_add_crypto_info(DavSession *sn,
const char *href,
const char *name,
const char *hash);
130
131 cxmutstr dav_property_key_a(
const CxAllocator *a,
const char *ns,
const char *name);
132
133 DavXmlNode* create_crypto_prop(DavSession *sn, CxMap *properties);
134 CxMap* parse_crypto_prop(DavSession *sn, DavKey *key, DavXmlNode *node);
135 CxMap* parse_crypto_prop_str(DavSession *sn, DavKey *key,
const char *content);
136
137 #ifdef __cplusplus
138 }
139 #endif
140
141 #endif
142
143