blob: aa9d28970451310ba3dac885e70c994b455fd4f7 [file] [log] [blame]
Igor Sysoev65977492003-11-02 22:56:18 +00001#ifndef _NGX_HTTP_CACHE_H_INCLUDED_
2#define _NGX_HTTP_CACHE_H_INCLUDED_
3
4
5#include <ngx_config.h>
6#include <ngx_core.h>
Igor Sysoevf60b1a52003-11-04 17:09:19 +00007#include <ngx_http.h>
Igor Sysoev65977492003-11-02 22:56:18 +00008
9
10typedef struct {
Igor Sysoev0e499db2003-11-27 07:45:22 +000011 uint32_t crc;
12 ngx_str_t key;
13 time_t accessed;
14
15 unsigned refs:20; /* 1048576 references */
16 unsigned count:2; /* lazy allocation: the 4 uses */
17 unsigned deleted:1;
18
19 ngx_fd_t fd;
20 time_t last_modified;
21 time_t updated;
22
23 union {
24 off_t size;
25 ngx_str_t value;
26 } data;
27} ngx_http_cache_t;
28
29
30typedef struct {
Igor Sysoev65977492003-11-02 22:56:18 +000031 time_t expires;
32 time_t last_modified;
Igor Sysoevcf80a702003-11-03 22:20:44 +000033 time_t date;
Igor Sysoev65977492003-11-02 22:56:18 +000034 off_t length;
Igor Sysoev9cc1ace2003-11-04 22:12:39 +000035 size_t key_len;
Igor Sysoev74e95c22003-11-09 20:03:38 +000036 char key[1];
Igor Sysoev65977492003-11-02 22:56:18 +000037} ngx_http_cache_header_t;
38
39
Igor Sysoev0e499db2003-11-27 07:45:22 +000040#define NGX_HTTP_CACHE_HASH 7
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000041#define NGX_HTTP_CACHE_NELTS 4
Igor Sysoev65977492003-11-02 22:56:18 +000042
43typedef struct {
Igor Sysoev0e499db2003-11-27 07:45:22 +000044 ngx_http_cache_t *elts;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000045 size_t hash;
46 size_t nelts;
Igor Sysoev877df632003-11-28 08:40:40 +000047 time_t life;
48 time_t update;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000049 ngx_pool_t *pool;
50} ngx_http_cache_hash_t;
51
52
53typedef struct {
54 ngx_http_cache_hash_t *hash;
Igor Sysoev0e499db2003-11-27 07:45:22 +000055 ngx_http_cache_t *cache;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000056 ngx_file_t file;
57 ngx_str_t key;
58 uint32_t crc;
59 u_char md5[16];
60 ngx_path_t *path;
61 ngx_hunk_t *buf;
62 time_t expires;
63 time_t last_modified;
64 time_t date;
65 off_t length;
66 ssize_t header_size;
67 size_t file_start;
68 ngx_log_t *log;
Igor Sysoev65977492003-11-02 22:56:18 +000069} ngx_http_cache_ctx_t;
70
71
Igor Sysoev0e499db2003-11-27 07:45:22 +000072typedef struct {
73 ngx_http_cache_hash_t *open_files;
74} ngx_http_cache_conf_t;
75
76
Igor Sysoev877df632003-11-28 08:40:40 +000077#define ngx_http_cache_unlock(ch, ce) \
78 ngx_mutex_lock(&ch->mutex); \
79 ce->refs--; \
80 ngx_mutex_unlock(&ch->mutex);
81
82
83
Igor Sysoev74e95c22003-11-09 20:03:38 +000084#define NGX_HTTP_CACHE_STALE 1
85#define NGX_HTTP_CACHE_AGED 2
86#define NGX_HTTP_CACHE_THE_SAME 3
Igor Sysoeva1512b12003-11-03 17:33:31 +000087
88
Igor Sysoev65977492003-11-02 22:56:18 +000089int ngx_http_cache_get_file(ngx_http_request_t *r, ngx_http_cache_ctx_t *ctx);
Igor Sysoev1b138ed2003-11-18 21:34:08 +000090int ngx_http_cache_open_file(ngx_http_cache_ctx_t *ctx, ngx_file_uniq_t uniq);
Igor Sysoev65977492003-11-02 22:56:18 +000091int ngx_http_cache_update_file(ngx_http_request_t *r,ngx_http_cache_ctx_t *ctx,
92 ngx_str_t *temp_file);
93
Igor Sysoev0e499db2003-11-27 07:45:22 +000094ngx_http_cache_t *ngx_http_cache_get(ngx_http_cache_hash_t *cache,
95 ngx_str_t *key, uint32_t *crc);
96ngx_http_cache_t *ngx_http_cache_alloc(ngx_http_cache_hash_t *cache,
97 ngx_str_t *key, uint32_t crc,
98 ngx_log_t *log);
99
100int ngx_garbage_collector_http_cache_handler(ngx_gc_t *gc, ngx_str_t *name,
101 ngx_dir_t *dir);
102
Igor Sysoev877df632003-11-28 08:40:40 +0000103char *ngx_http_set_cache_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
104
105
Igor Sysoev0e499db2003-11-27 07:45:22 +0000106extern ngx_module_t ngx_http_cache_module;
107
Igor Sysoev65977492003-11-02 22:56:18 +0000108
109
Igor Sysoev65977492003-11-02 22:56:18 +0000110#endif /* _NGX_HTTP_CACHE_H_INCLUDED_ */