⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cache_storage.c

📁 Apache官方在今天放出产品系列2.2的最新版本2.2.11的源码包 最流行的HTTP服务器软件之一
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License.  You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */#define CORE_PRIVATE#include "mod_cache.h"extern APR_OPTIONAL_FN_TYPE(ap_cache_generate_key) *cache_generate_key;extern module AP_MODULE_DECLARE_DATA cache_module;/* -------------------------------------------------------------- *//* * delete all URL entities from the cache * */int cache_remove_url(cache_request_rec *cache, apr_pool_t *p){    cache_provider_list *list;    cache_handle_t *h;    list = cache->providers;    /* Remove the stale cache entry if present. If not, we're     * being called from outside of a request; remove the     * non-stalle handle.     */    h = cache->stale_handle ? cache->stale_handle : cache->handle;    if (!h) {       return OK;    }    ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL,                 "cache: Removing url %s from the cache", h->cache_obj->key);    /* for each specified cache type, delete the URL */    while(list) {        list->provider->remove_url(h, p);        list = list->next;    }    return OK;}/* * create a new URL entity in the cache * * It is possible to store more than once entity per URL. This * function will always create a new entity, regardless of whether * other entities already exist for the same URL. * * The size of the entity is provided so that a cache module can * decide whether or not it wants to cache this particular entity. * If the size is unknown, a size of -1 should be set. */int cache_create_entity(request_rec *r, apr_off_t size){    cache_provider_list *list;    cache_handle_t *h = apr_pcalloc(r->pool, sizeof(cache_handle_t));    char *key;    apr_status_t rv;    cache_request_rec *cache = (cache_request_rec *)                         ap_get_module_config(r->request_config, &cache_module);    rv = cache_generate_key(r, r->pool, &key);    if (rv != APR_SUCCESS) {        return rv;    }    list = cache->providers;    /* for each specified cache type, delete the URL */    while (list) {        switch (rv = list->provider->create_entity(h, r, key, size)) {        case OK: {            cache->handle = h;            cache->provider = list->provider;            cache->provider_name = list->provider_name;            return OK;        }        case DECLINED: {            list = list->next;            continue;        }        default: {            return rv;        }        }    }    return DECLINED;}static int set_cookie_doo_doo(void *v, const char *key, const char *val){    apr_table_addn(v, key, val);    return 1;}CACHE_DECLARE(void) ap_cache_accept_headers(cache_handle_t *h, request_rec *r,                                            int preserve_orig){    apr_table_t *cookie_table, *hdr_copy;    const char *v;    v = apr_table_get(h->resp_hdrs, "Content-Type");    if (v) {        ap_set_content_type(r, v);        apr_table_unset(h->resp_hdrs, "Content-Type");        /*         * Also unset possible Content-Type headers in r->headers_out and         * r->err_headers_out as they may be different to what we have received         * from the cache.         * Actually they are not needed as r->content_type set by         * ap_set_content_type above will be used in the store_headers functions         * of the storage providers as a fallback and the HTTP_HEADER filter         * does overwrite the Content-Type header with r->content_type anyway.         */        apr_table_unset(r->headers_out, "Content-Type");        apr_table_unset(r->err_headers_out, "Content-Type");    }    /* If the cache gave us a Last-Modified header, we can't just     * pass it on blindly because of restrictions on future values.     */    v = apr_table_get(h->resp_hdrs, "Last-Modified");    if (v) {        ap_update_mtime(r, apr_date_parse_http(v));        ap_set_last_modified(r);        apr_table_unset(h->resp_hdrs, "Last-Modified");    }    /* The HTTP specification says that it is legal to merge duplicate     * headers into one.  Some browsers that support Cookies don't like     * merged headers and prefer that each Set-Cookie header is sent     * separately.  Lets humour those browsers by not merging.     * Oh what a pain it is.     */    cookie_table = apr_table_make(r->pool, 2);    apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out,                 "Set-Cookie", NULL);    apr_table_do(set_cookie_doo_doo, cookie_table, h->resp_hdrs,                 "Set-Cookie", NULL);    apr_table_unset(r->err_headers_out, "Set-Cookie");    apr_table_unset(h->resp_hdrs, "Set-Cookie");    if (preserve_orig) {        hdr_copy = apr_table_copy(r->pool, h->resp_hdrs);        apr_table_overlap(hdr_copy, r->headers_out, APR_OVERLAP_TABLES_SET);        r->headers_out = hdr_copy;    }    else {        apr_table_overlap(r->headers_out, h->resp_hdrs, APR_OVERLAP_TABLES_SET);    }    if (!apr_is_empty_table(cookie_table)) {        r->err_headers_out = apr_table_overlay(r->pool, r->err_headers_out,                                               cookie_table);    }}/* * select a specific URL entity in the cache * * It is possible to store more than one entity per URL. Content * negotiation is used to select an entity. Once an entity is * selected, details of it are stored in the per request * config to save time when serving the request later. * * This function returns OK if successful, DECLINED if no * cached entity fits the bill. */int cache_select(request_rec *r){    cache_provider_list *list;    apr_status_t rv;    cache_handle_t *h;    char *key;    cache_request_rec *cache = (cache_request_rec *)                         ap_get_module_config(r->request_config, &cache_module);    rv = cache_generate_key(r, r->pool, &key);    if (rv != APR_SUCCESS) {        return rv;    }    /* go through the cache types till we get a match */    h = apr_palloc(r->pool, sizeof(cache_handle_t));    list = cache->providers;    while (list) {        switch ((rv = list->provider->open_entity(h, r, key))) {        case OK: {            char *vary = NULL;            int fresh;            if (list->provider->recall_headers(h, r) != APR_SUCCESS) {                /* TODO: Handle this error */                return DECLINED;            }            /*             * Check Content-Negotiation - Vary             *             * At this point we need to make sure that the object we found in             * the cache is the same object that would be delivered to the             * client, when the effects of content negotiation are taken into             * effect.             *             * In plain english, we want to make sure that a language-negotiated             * document in one language is not given to a client asking for a             * language negotiated document in a different language by mistake.             *             * This code makes the assumption that the storage manager will             * cache the req_hdrs if the response contains a Vary             * header.             *             * RFC2616 13.6 and 14.44 describe the Vary mechanism.             */            vary = apr_pstrdup(r->pool, apr_table_get(h->resp_hdrs, "Vary"));            while (vary && *vary) {                char *name = vary;                const char *h1, *h2;                /* isolate header name */                while (*vary && !apr_isspace(*vary) && (*vary != ','))                    ++vary;                while (*vary && (apr_isspace(*vary) || (*vary == ','))) {                    *vary = '\0';                    ++vary;                }                /*                 * is this header in the request and the header in the cached                 * request identical? If not, we give up and do a straight get                 */                h1 = apr_table_get(r->headers_in, name);                h2 = apr_table_get(h->req_hdrs, name);                if (h1 == h2) {                    /* both headers NULL, so a match - do nothing */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -