- ext/hash detection
[m6w6/ext-http] / php_http_cache_api.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_CACHE_API_H
16 #define PHP_HTTP_CACHE_API_H
17
18 #include "zend_ini.h"
19
20 #include "ext/standard/crc32.h"
21 #include "ext/standard/sha1.h"
22 #include "ext/standard/md5.h"
23
24 #include "php_http_std_defs.h"
25 #include "php_http.h"
26 #include "php_http_api.h"
27 #include "php_http_send_api.h"
28
29 #if defined(HTTP_HAVE_EXT_HASH)
30 # include "php_hash.h"
31 #elif defined(HTTP_HAVE_HASH_EXT_HASH)
32 # define HTTP_HAVE_EXT_HASH
33 # include "hash/php_hash.h"
34 #elif defined(HTTP_HAVE_EXT_HASH_EXT_HASH)
35 # define HTTP_HAVE_EXT_HASH
36 # include "ext/hash/php_hash.h"
37 #endif
38
39 ZEND_EXTERN_MODULE_GLOBALS(http);
40
41 #define http_etag_digest(d, l) _http_etag_digest((d), (l))
42 static inline char *_http_etag_digest(const unsigned char *digest, int len)
43 {
44 static const char hexdigits[16] = "0123456789abcdef";
45 int i;
46 char *hex = emalloc(len * 2 + 1);
47 char *ptr = hex;
48
49 for (i = 0; i < len; ++i) {
50 *ptr++ = hexdigits[digest[i] >> 4];
51 *ptr++ = hexdigits[digest[i] & 0xF];
52 }
53 *ptr = '\0';
54
55 return hex;
56 }
57
58 #define http_etag_init() _http_etag_init(TSRMLS_C)
59 static inline void *_http_etag_init(TSRMLS_D)
60 {
61 void *ctx = NULL;
62 char *mode = HTTP_G(etag).mode;
63
64 #ifdef HTTP_HAVE_EXT_HASH
65 php_hash_ops *eho = NULL;
66
67 if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) {
68 ctx = emalloc(eho->context_size);
69 eho->hash_init(ctx);
70 } else
71 #endif
72 if (mode && ((!strcasecmp(mode, "crc32")) || (!strcasecmp(mode, "crc32b")))) {
73 ctx = emalloc(sizeof(uint));
74 *((uint *) ctx) = ~0;
75 } else if (mode && !strcasecmp(mode, "sha1")) {
76 PHP_SHA1Init(ctx = emalloc(sizeof(PHP_SHA1_CTX)));
77 } else {
78 PHP_MD5Init(ctx = emalloc(sizeof(PHP_MD5_CTX)));
79 }
80
81 return ctx;
82 }
83
84 #define http_etag_finish(c) _http_etag_finish((c) TSRMLS_CC)
85 static inline char *_http_etag_finish(void *ctx TSRMLS_DC)
86 {
87 unsigned char digest[128] = {0};
88 char *etag = NULL, *mode = HTTP_G(etag).mode;
89
90 #ifdef HTTP_HAVE_EXT_HASH
91 php_hash_ops *eho = NULL;
92
93 if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) {
94 eho->hash_final(digest, ctx);
95 etag = http_etag_digest(digest, eho->digest_size);
96 } else
97 #endif
98 if (mode && ((!strcasecmp(mode, "crc32")) || (!strcasecmp(mode, "crc32b")))) {
99 *((uint *) ctx) = ~*((uint *) ctx);
100 etag = http_etag_digest((const unsigned char *) ctx, sizeof(uint));
101 } else if (mode && (!strcasecmp(mode, "sha1"))) {
102 PHP_SHA1Final(digest, ctx);
103 etag = http_etag_digest(digest, 20);
104 } else {
105 PHP_MD5Final(digest, ctx);
106 etag = http_etag_digest(digest, 16);
107 }
108 efree(ctx);
109
110 return etag;
111 }
112
113 #define http_etag_update(c, d, l) _http_etag_update((c), (d), (l) TSRMLS_CC)
114 static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t data_len TSRMLS_DC)
115 {
116 char *mode = HTTP_G(etag).mode;
117 #ifdef HTTP_HAVE_EXT_HASH
118 php_hash_ops *eho = NULL;
119
120 if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) {
121 eho->hash_update(ctx, (const unsigned char *) data_ptr, data_len);
122 } else
123 #endif
124 if (mode && ((!strcasecmp(mode, "crc32")) || (!strcasecmp(mode, "crc32b")))) {
125 uint i, c = *((uint *) ctx);
126 for (i = 0; i < data_len; ++i) {
127 c = CRC32(c, data_ptr[i]);
128 }
129 *((uint *)ctx) = c;
130 } else if (mode && (!strcasecmp(mode, "sha1"))) {
131 PHP_SHA1Update(ctx, (const unsigned char *) data_ptr, data_len);
132 } else {
133 PHP_MD5Update(ctx, (const unsigned char *) data_ptr, data_len);
134 }
135 }
136
137 #define http_ob_etaghandler(o, l, ho, hl, m) _http_ob_etaghandler((o), (l), (ho), (hl), (m) TSRMLS_CC)
138 extern void _http_ob_etaghandler(char *output, uint output_len, char **handled_output, uint *handled_output_len, int mode TSRMLS_DC);
139
140 #define http_etag(p, l, m) _http_etag((p), (l), (m) TSRMLS_CC)
141 PHP_HTTP_API char *_http_etag(const void *data_ptr, size_t data_len, http_send_mode data_mode TSRMLS_DC);
142
143 #define http_last_modified(p, m) _http_last_modified((p), (m) TSRMLS_CC)
144 PHP_HTTP_API time_t _http_last_modified(const void *data_ptr, http_send_mode data_mode TSRMLS_DC);
145
146 #define http_match_last_modified(entry, modified) _http_match_last_modified_ex((entry), (modified), 1 TSRMLS_CC)
147 #define http_match_last_modified_ex(entry, modified, ep) _http_match_last_modified_ex((entry), (modified), (ep) TSRMLS_CC)
148 PHP_HTTP_API zend_bool _http_match_last_modified_ex(const char *entry, time_t t, zend_bool enforce_presence TSRMLS_DC);
149
150 #define http_match_etag(entry, etag) _http_match_etag_ex((entry), (etag), 1 TSRMLS_CC)
151 #define http_match_etag_ex(entry, etag, ep) _http_match_etag_ex((entry), (etag), (ep) TSRMLS_CC)
152 PHP_HTTP_API zend_bool _http_match_etag_ex(const char *entry, const char *etag, zend_bool enforce_presence TSRMLS_DC);
153
154 #define http_cache_last_modified(l, s, cc, ccl) _http_cache_last_modified((l), (s), (cc), (ccl) TSRMLS_CC)
155 PHP_HTTP_API STATUS _http_cache_last_modified(time_t last_modified, time_t send_modified, const char *cache_control, size_t cc_len TSRMLS_DC);
156
157 #define http_cache_etag(e, el, cc, ccl) _http_cache_etag((e), (el), (cc), (ccl) TSRMLS_CC)
158 PHP_HTTP_API STATUS _http_cache_etag(const char *etag, size_t etag_len, const char *cache_control, size_t cc_len TSRMLS_DC);
159
160 #define http_start_ob_etaghandler() _http_start_ob_etaghandler(TSRMLS_C)
161 PHP_HTTP_API STATUS _http_start_ob_etaghandler(TSRMLS_D);
162 #define http_interrupt_ob_etaghandler() _http_interrupt_ob_etaghandler(TSRMLS_C)
163 PHP_HTTP_API zend_bool _http_interrupt_ob_etaghandler(TSRMLS_D);
164
165 #endif
166
167 /*
168 * Local variables:
169 * tab-width: 4
170 * c-basic-offset: 4
171 * End:
172 * vim600: noet sw=4 ts=4 fdm=marker
173 * vim<600: noet sw=4 ts=4
174 */
175