alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
"); sb.append("<tr>"); sb.append("<tr>"); if (isValid()) { Enumeration envk = env.keys(); while (envk.hasMoreElements()) { String s = (String)envk.nextElement(); sb.append("<tr>"); } } sb.append("<tr>"); sb.append("<tr>"); sb.append("<tr>"); sb.append("</TABLE>

end."); return sb.toString(); } /** * Gets derived command string * @return command string */ public String getCommand() { return command; } /** * Sets the desired command string * @param command string as desired * @return command string */ protected String setCommand(String command) { return command; } /** * Gets this process' derived working directory * @return working directory */ public File getWorkingDirectory() { return workingDirectory; } /** * Gets process' environment * @return process' environment */ public Hashtable getEnvironment() { return env; } /** * Sets process' environment * @param env process' environment * @return Hashtable to which the process' environment was set */ public Hashtable setEnvironment(Hashtable env) { this.env = env; return this.env; } /** * Gets validity status * @return true if this environment is valid, false otherwise */ public boolean isValid() { return valid; } /** * Converts null strings to blank strings ("") * @param s string to be converted if necessary * @return a non-null string, either the original or the empty string * ("") if the original was <code>null */ protected String nullsToBlanks(String s) { return nullsToString(s, ""); } /** * Converts null strings to another string * @param couldBeNull string to be converted if necessary * @param subForNulls string to return instead of a null string * @return a non-null string, either the original or the substitute * string if the original was <code>null */ protected String nullsToString(String couldBeNull, String subForNulls) { return (couldBeNull == null ? subForNulls : couldBeNull); } /** * Converts blank strings to another string * @param couldBeBlank string to be converted if necessary * @param subForBlanks string to return instead of a blank string * @return a non-null string, either the original or the substitute * string if the original was <code>null or empty ("") */ protected String blanksToString(String couldBeBlank, String subForBlanks) { return (("".equals(couldBeBlank) || couldBeBlank == null) ? subForBlanks : couldBeBlank); } protected void log(String s) { if (log.isLoggable(Level.FINE)) log.fine(s); } /** * Constructs the Process environment to be supplied to the invoked * process. Defines an environment no environment variables. * <p> * Should be overriden by subclasses to perform useful setup. * </p> * * @param req HttpServletRequest request associated with the * Process' invocation * @return true if environment was set OK, false if there was a problem * and no environment was set */ protected boolean deriveProcessEnvironment(HttpServletRequest req) { Hashtable envp = new Hashtable(); command = getCommand(); if (command != null) { workingDirectory = new File(command.substring(0, command.lastIndexOf(File.separator))); envp.put("X_TOMCAT_COMMAND_PATH", command); //for kicks } this.env = envp; return true; } /** * Gets the root directory of the web application to which this process\ * belongs * @return root directory */ public String getWebAppRootDir() { return webAppRootDir; } public String getContextPath(){ return contextPath; } public ServletContext getContext(){ return context; } public String getServletPath(){ return servletPath; } }

Other Glassfish examples (source code examples)

Here is a short list of links related to this Glassfish ProcessEnvironment.java source code file:

Glassfish example source code file (ProcessEnvironment.java)

This example Glassfish source code file (ProcessEnvironment.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Glassfish tags/keywords

command, file, hashtable, hashtable, http, info, io, level, log, logging, processenvironment, processenvironment, servlet, servletcontext, servletcontext, string, string, stringbuilder, table, util

The Glassfish ProcessEnvironment.java source code

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 *
 *
 * This file incorporates work covered by the following copyright and
 * permission notice:
 *
 * Copyright 2004 The Apache Software Foundation
 *
 * 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
 *
 *     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.
 */

package org.apache.catalina.util;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.logging.Level;
import java.util.logging.Logger;
// import org.apache.catalina.util.StringManager;



/**
 * Encapsulates the Process environment and rules to derive
 * that environment from the servlet container and request information.
 * @author   Martin Dengler [root@martindengler.com]
 * @version  $Revision: 1.3 $, $Date: 2006/03/12 01:27:08 $
 * @since    Tomcat 4.0
 */
public class ProcessEnvironment {


    private static Logger log = Logger.getLogger(
        ProcessEnvironment.class.getName());

    /** context of the enclosing servlet */
    private ServletContext context = null;

    /** real file system directory of the enclosing servlet's web app */
    private String webAppRootDir = null;

    /** context path of enclosing servlet */
    private String contextPath = null;

    /** pathInfo for the current request */
    protected String pathInfo = null;

    /** servlet URI of the enclosing servlet */
    private String servletPath = null;

    /** derived process environment */
    protected Hashtable env = null;

    /** command to be invoked */
    protected String command = null;

    /** whether or not this object is valid or not */
    protected boolean valid = false;

    /** the debugging detail level for this instance. */
    protected int debug = 0;

    /** process' desired working directory */
    protected File workingDirectory = null;


    /**
     * Creates a ProcessEnvironment and derives the necessary environment,
     * working directory, command, etc.
     * @param  req       HttpServletRequest for information provided by
     *                   the Servlet API
     * @param  context   ServletContext for information provided by
     *                   the Servlet API
     */
    public ProcessEnvironment(HttpServletRequest req,
        ServletContext context) {
        this(req, context, 0);
    }


    /**
     * Creates a ProcessEnvironment and derives the necessary environment,
     * working directory, command, etc.
     * @param  req       HttpServletRequest for information provided by
     *                   the Servlet API
     * @param  context   ServletContext for information provided by
     *                   the Servlet API
     * @param  debug     int debug level (0 == none, 4 == medium, 6 == lots)
     */
    public ProcessEnvironment(HttpServletRequest req,
        ServletContext context, int debug) {
            this.debug = debug;
            setupFromContext(context);
            setupFromRequest(req);
            this.valid = deriveProcessEnvironment(req);
            log(this.getClass().getName() + "() ctor, debug level " + debug);
    }


    /**
     * Uses the ServletContext to set some process variables
     * @param  context   ServletContext for information provided by
     *                   the Servlet API
     */
    protected void setupFromContext(ServletContext context) {
        this.context = context;
        this.webAppRootDir = context.getRealPath("/");
    }


    /**
     * Uses the HttpServletRequest to set most process variables
     * @param  req   HttpServletRequest for information provided by
     *               the Servlet API
     */
    protected void setupFromRequest(HttpServletRequest req) {
        this.contextPath = req.getContextPath();
        this.pathInfo = req.getPathInfo();
        this.servletPath = req.getServletPath();
    }


    /**
     * Print important process environment information in an
     * easy-to-read HTML table
     * @return  HTML string containing process environment info
     */
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("<TABLE border=2>");
        sb.append("<tr>
"); sb.append("ProcessEnvironment Info</th>
Debug Level"); sb.append(debug); sb.append("</td>
Validity:"); sb.append(isValid()); sb.append("</td>
"); sb.append(s); sb.append("</td>"); sb.append(blanksToString((String)env.get(s), "[will be set to blank]")); sb.append("</td>

Derived Command"); sb.append(nullsToBlanks(command)); sb.append("</td>
Working Directory"); if (workingDirectory != null) { sb.append(workingDirectory.toString()); } sb.append("</td>
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.