Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 1 | #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 Sysoev | f60b1a5 | 2003-11-04 17:09:19 +0000 | [diff] [blame] | 7 | #include <ngx_http.h> |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 8 | |
| 9 | |
| 10 | typedef struct { |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 11 | 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 | |
| 30 | typedef struct { |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 31 | time_t expires; |
| 32 | time_t last_modified; |
Igor Sysoev | cf80a70 | 2003-11-03 22:20:44 +0000 | [diff] [blame] | 33 | time_t date; |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 34 | off_t length; |
Igor Sysoev | 9cc1ace | 2003-11-04 22:12:39 +0000 | [diff] [blame] | 35 | size_t key_len; |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 36 | char key[1]; |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 37 | } ngx_http_cache_header_t; |
| 38 | |
| 39 | |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 40 | #define NGX_HTTP_CACHE_HASH 7 |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 41 | #define NGX_HTTP_CACHE_NELTS 4 |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 42 | |
| 43 | typedef struct { |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 44 | ngx_http_cache_t *elts; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 45 | size_t hash; |
| 46 | size_t nelts; |
Igor Sysoev | 877df63 | 2003-11-28 08:40:40 +0000 | [diff] [blame^] | 47 | time_t life; |
| 48 | time_t update; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 49 | ngx_pool_t *pool; |
| 50 | } ngx_http_cache_hash_t; |
| 51 | |
| 52 | |
| 53 | typedef struct { |
| 54 | ngx_http_cache_hash_t *hash; |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 55 | ngx_http_cache_t *cache; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 56 | 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 Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 69 | } ngx_http_cache_ctx_t; |
| 70 | |
| 71 | |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 72 | typedef struct { |
| 73 | ngx_http_cache_hash_t *open_files; |
| 74 | } ngx_http_cache_conf_t; |
| 75 | |
| 76 | |
Igor Sysoev | 877df63 | 2003-11-28 08:40:40 +0000 | [diff] [blame^] | 77 | #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 Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 84 | #define NGX_HTTP_CACHE_STALE 1 |
| 85 | #define NGX_HTTP_CACHE_AGED 2 |
| 86 | #define NGX_HTTP_CACHE_THE_SAME 3 |
Igor Sysoev | a1512b1 | 2003-11-03 17:33:31 +0000 | [diff] [blame] | 87 | |
| 88 | |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 89 | int ngx_http_cache_get_file(ngx_http_request_t *r, ngx_http_cache_ctx_t *ctx); |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 90 | int ngx_http_cache_open_file(ngx_http_cache_ctx_t *ctx, ngx_file_uniq_t uniq); |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 91 | int ngx_http_cache_update_file(ngx_http_request_t *r,ngx_http_cache_ctx_t *ctx, |
| 92 | ngx_str_t *temp_file); |
| 93 | |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 94 | ngx_http_cache_t *ngx_http_cache_get(ngx_http_cache_hash_t *cache, |
| 95 | ngx_str_t *key, uint32_t *crc); |
| 96 | ngx_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 | |
| 100 | int ngx_garbage_collector_http_cache_handler(ngx_gc_t *gc, ngx_str_t *name, |
| 101 | ngx_dir_t *dir); |
| 102 | |
Igor Sysoev | 877df63 | 2003-11-28 08:40:40 +0000 | [diff] [blame^] | 103 | char *ngx_http_set_cache_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
| 104 | |
| 105 | |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 106 | extern ngx_module_t ngx_http_cache_module; |
| 107 | |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 108 | |
| 109 | |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 110 | #endif /* _NGX_HTTP_CACHE_H_INCLUDED_ */ |