/* 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
*
*
* 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.
*/
/**
* @file cache_util.h
* @brief Cache Storage Functions
*
* @defgroup Cache_util Cache Utility Functions
* @ingroup MOD_CACHE
* @{
*/
#ifndef CACHE_UTIL_H
#define CACHE_UTIL_H
#ifdef __cplusplus
extern "C" {
#endif
#include "mod_cache.h"
#include "apr_hooks.h"
#include "apr.h"
#include "apr_lib.h"
#include "apr_strings.h"
#include "apr_buckets.h"
#include "apr_md5.h"
#include "apr_pools.h"
#include "apr_strings.h"
#include "apr_optional.h"
#define APR_WANT_STRFUNC
#include "apr_want.h"
#include "httpd.h"
#include "http_config.h"
#include "ap_config.h"
#include "http_core.h"
#include "http_protocol.h"
#include "http_request.h"
#include "http_vhost.h"
#include "http_main.h"
#include "http_log.h"
#include "http_connection.h"
#include "util_filter.h"
#include "apr_uri.h"
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#endif
#ifdef HAVE_NETINET_IN_H
#endif
#ifdef HAVE_ARPA_INET_H
#endif
#include "apr_atomic.h"
#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#define DEFAULT_CACHE_MINEXPIRE 0
#define DEFAULT_X_CACHE 0
#define DEFAULT_X_CACHE_DETAIL 0
/**
*/
struct cache_enable {
const char *type;
};
struct cache_disable {
};
/* static information about the local cache */
typedef struct {
/** store the headers that should not be stored in the cache */
/** store the identifiers that should not be used for key calculation */
const char *lockpath;
/** ignore client's requests for uncached responses */
/** ignore query-string when caching */
/** run within the quick handler */
/* thundering herd lock */
/* flag if CacheIgnoreHeader has been set */
#define CACHE_IGNORE_HEADERS_UNSET 0
/* flag if CacheIgnoreURLSessionIdentifiers has been set */
#define CACHE_IGNORE_SESSION_ID_UNSET 0
typedef struct {
/* Minimum time to keep cached files in msecs */
/* Maximum time to keep cached files in msecs */
/* default time to keep cached file in msecs */
/* factor for estimating expires date */
double factor;
/* cache enabled for this location */
/* cache disabled for this location */
/* set X-Cache headers */
/* serve stale on error */
/** ignore the last-modified header when deciding to cache this request */
/** ignore expiration date from server */
/** ignore Cache-Control: private header from server */
/** ignore Cache-Control: no-store header from client or server */
/* A linked-list of authn providers. */
struct cache_provider_list {
const char *provider_name;
};
/* per request cache information */
typedef struct {
* request
*/
/**
* Check the whether the request allows a cached object to be served as per RFC2616
* section 14.9.4 (Cache Revalidation and Reload Controls)
* @param cache cache_request_rec
* @param r request_rec
* @return 0 ==> cache object may not be served, 1 ==> cache object may be served
*/
/**
* Check the whether the request allows a cached object to be stored as per RFC2616
* section 14.9.2 (What May be Stored by Caches)
* @param cache cache_request_rec
* @param r request_rec
* @return 0 ==> cache object may not be served, 1 ==> cache object may be served
*/
/**
* Check the freshness of the cache object per RFC2616 section 13.2 (Expiration Model)
* @param h cache_handle_t
* @param cache cache_request_rec
* @param r request_rec
* @return 0 ==> cache object is stale, 1 ==> cache object is fresh
*/
request_rec *r);
/**
* Try obtain a cache wide lock on the given cache key.
*
* If we return APR_SUCCESS, we obtained the lock, and we are clear to
* proceed to the backend. If we return APR_EEXISTS, the the lock is
* already locked, someone else has gone to refresh the backend data
* already, so we must return stale data with a warning in the mean
* time. If we return anything else, then something has gone pear
* shaped, and we allow the request through to the backend regardless.
*
* This lock is created from the request pool, meaning that should
* something go wrong and the lock isn't deleted on return of the
* request headers from the backend for whatever reason, at worst the
* lock will be cleaned up when the request is dies or finishes.
*
* If something goes truly bananas and the lock isn't deleted when the
* request dies, the lock will be trashed when its max-age is reached,
* or when a request arrives containing a Cache-Control: no-cache. At
* no point is it possible for this lock to permanently deny access to
* the backend.
*/
request_rec *r);
/**
* Remove the cache lock, if present.
*
* First, try to close the file handle, whose delete-on-close should
* kill the file. Otherwise, just delete the file by name.
*
* If no lock name has yet been calculated, do the calculation of the
* lock name first before trying to delete the file.
*
* If an optional bucket brigade is passed, the lock will only be
* removed if the bucket brigade contains an EOS bucket.
*/
/**
* Get a value from a table, where the table may contain multiple
* values for a given key.
*
* When the table contains a single value, that value is returned
* unchanged.
*
* When the table contains two or more values for a key, all values
* for the key are returned, separated by commas.
*/
const char *key);
/**
* String tokenizer that ignores separator characters within quoted strings
* and escaped characters, as per RFC2616 section 2.2.
*/
/**
* Merge err_headers_out into headers_out and add request's Content-Type and
* Content-Encoding if available.
*/
#ifdef __cplusplus
}
#endif
#endif /* !CACHE_UTIL_H */
/** @} */