cache_storage.c revision 403b67b5d33c0b3f751f0ac7a66ddf8c0140fe1d
/* Copyright 2001-2005 The Apache Software Foundation or its licensors, as
* applicable.
*
* Licensed 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
*
*
* 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"
/* -------------------------------------------------------------- */
/*
* delete all URL entities from the cache
*
*/
{
cache_handle_t *h;
/* Remove the stale cache entry if present. If not, we're
* being called from outside of a request; remove the
* non-stalle handle.
*/
if (!h) {
return OK;
}
/* for each specified cache type, delete the URL */
while(list) {
}
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.
*/
{
char *key;
if (rv != APR_SUCCESS) {
return rv;
}
/* for each specified cache type, delete the URL */
while (list) {
case OK: {
return OK;
}
case DECLINED: {
continue;
}
default: {
return rv;
}
}
}
return DECLINED;
}
{
return 1;
}
int preserve_orig)
{
const char *v;
if (v) {
ap_set_content_type(r, v);
}
/* If the cache gave us a Last-Modified header, we can't just
* pass it on blindly because of restrictions on future values.
*/
if (v) {
ap_update_mtime(r, apr_date_parse_http(v));
}
/* 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.
*/
"Set-Cookie", NULL);
"Set-Cookie", NULL);
if (preserve_orig) {
r->headers_out = hdr_copy;
}
else {
}
if (!apr_is_empty_table(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.
*/
{
cache_handle_t *h;
char *key;
if (rv != APR_SUCCESS) {
return rv;
}
/* go through the cache types till we get a match */
while (list) {
case OK: {
int fresh;
/* 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.
*/
/* isolate header name */
++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
*/
/* both headers NULL, so a match - do nothing */
}
/* both headers exist and are equal - do nothing */
}
else {
/* headers do not match, so Vary failed */
r->server,
"cache_select_url(): Vary header mismatch.");
return DECLINED;
}
}
/* Is our cached response fresh enough? */
fresh = ap_cache_check_freshness(h, r);
if (!fresh) {
"conditional request headers.", r->uri);
/* Make response into a conditional */
r->headers_in);
/* We can only revalidate with our own conditionals: remove the
* conditions from the original request.
*/
* our own conditionals.
*/
if (etag) {
}
if (lastmod) {
lastmod);
}
cache->stale_handle = h;
}
return DECLINED;
}
/* Okay, this response looks okay. Merge in our stuff and go. */
ap_cache_accept_headers(h, r, 0);
return OK;
}
case DECLINED: {
/* try again with next cache type */
continue;
}
default: {
/* oo-er! an error */
return rv;
}
}
}
return DECLINED;
}
char**key)
{
if (r->hostname) {
}
else {
}
return APR_SUCCESS;
}