Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@apache.org Received: (qmail 88538 invoked from network); 1 Dec 2001 22:21:19 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 1 Dec 2001 22:21:19 -0000 Received: (qmail 9167 invoked by uid 97); 1 Dec 2001 22:21:14 -0000 Delivered-To: qmlist-jakarta-archive-tomcat-dev@jakarta.apache.org Received: (qmail 9121 invoked by uid 97); 1 Dec 2001 22:21:13 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 9110 invoked by uid 97); 1 Dec 2001 22:21:13 -0000 Date: 1 Dec 2001 22:03:20 -0000 Message-ID: <20011201220320.35802.qmail@icarus.apache.org> From: costin@apache.org To: jakarta-tomcat-connectors-cvs@apache.org Subject: cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_uriEnv.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N costin 01/12/01 14:03:20 Added: jk/native2/include jk_uriEnv.h Log: UriEnv is contain properties associated with a mapping. It used to be private in jk_uri_map, plus extra options that could be specified per location ( moved from the server adapter ) This also replaces/enhances the private structure used for autoconfiguration. Revision Changes Path 1.1 jakarta-tomcat-connectors/jk/native2/include/jk_uriEnv.h Index: jk_uriEnv.h =================================================================== /* ========================================================================= * * * * The Apache Software License, Version 1.1 * * * * Copyright (c) 1999-2001 The Apache Software Foundation. * * All rights reserved. * * * * ========================================================================= * * * * Redistribution and use in source and binary forms, with or without modi- * * fication, are permitted provided that the following conditions are met: * * * * 1. Redistributions of source code must retain the above copyright notice * * notice, this list of conditions and the following disclaimer. * * * * 2. Redistributions in binary form must reproduce the above copyright * * notice, this list of conditions and the following disclaimer in the * * documentation and/or other materials provided with the distribution. * * * * 3. The end-user documentation included with the redistribution, if any, * * must include the following acknowlegement: * * * * "This product includes software developed by the Apache Software * * Foundation ." * * * * Alternately, this acknowlegement may appear in the software itself, if * * and wherever such third-party acknowlegements normally appear. * * * * 4. The names "The Jakarta Project", "Jk", and "Apache Software * * Foundation" must not be used to endorse or promote products derived * * from this software without prior written permission. For written * * permission, please contact . * * * * 5. Products derived from this software may not be called "Apache" nor may * * "Apache" appear in their names without prior written permission of the * * Apache Software Foundation. * * * * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES * * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * * THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY * * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * * POSSIBILITY OF SUCH DAMAGE. * * * * ========================================================================= * * * * This software consists of voluntary contributions made by many indivi- * * duals on behalf of the Apache Software Foundation. For more information * * on the Apache Software Foundation, please see . * * * * ========================================================================= */ /** * URI enviroment. All properties associated with a particular URI will be * stored here. This coresponds to a per_dir structure in Apache. * * Replaces uri_worker_map, etc. * * Author: Costin Manolache */ #ifndef JK_URIENV_H #define JK_URIENV_H #include "jk_logger.h" #include "jk_endpoint.h" #include "jk_worker.h" #include "jk_map.h" #include "jk_uriMap.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ struct jk_worker; struct jk_endpoint; struct jk_env; struct jk_uri_worker_map; struct jk_map; #define MATCH_TYPE_EXACT (0) #define MATCH_TYPE_CONTEXT (1) #define MATCH_TYPE_SUFFIX (2) #define MATCH_TYPE_GENERAL_SUFFIX (3) /* match all URIs of the form *ext */ struct jk_uriEnv { struct jk_workerEnv *workerEnv; /* Generic name/value properties. Some workers may use it. */ struct jk_map *properties; /** Worker associated with this location. Inherited by virtual host, context ( i.e. you can override it if you want, the default will be the 'global' default worker, or the virtual host worker ). */ struct jk_worker *worker; /** worker name - allow this to be set before the worker is defined. * XXX do we need it ? */ char *workerName; /* Virtual server handled - "*" is all virtual. */ char *virtual; char *uri; /** Web application. No need to compute it again in tomcat. * The 'id' is the index in the context table ( todo ), it * reduce the ammount of trafic ( and string creation on java ) */ char *context; int contextId; /** Servlet. No need to compute it again in tomcat */ char *servlet; int servletId; /* ---------- For our internal mapper use ---------- */ char *suffix; unsigned int ctxt_len; int match_type; /** You can fine-tune the logging level per location */ int log_level; /** Different apps can have different loggers. */ jk_logger_t *l; /* SSL Support - you can fine tune this per application. * ( most likely you only do it per virtual host or globally ) * XXX shouldn't SSL be enabled by default ??? */ int ssl_enable; char *https_indicator; char *certs_indicator; char *cipher_indicator; char *session_indicator; char *key_size_indicator; /* Jk Options. Bitflag. */ int options; /* Environment variables support */ int envvars_in_use; jk_map_t * envvars; /* -------------------- Methods -------------------- */ /* get/setProperty */ }; typedef struct jk_uriEnv jk_uriEnv_t; #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* JK_URIENV_H */ -- To unsubscribe, e-mail: For additional commands, e-mail: