001: /*
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: WebAppItem.java 8314 2006-05-03 09:43:47Z danesa $
023: * --------------------------------------------------------------------------
024: */
025:
026: package org.objectweb.jonas.webapp.jonasadmin.service.container;
027:
028: import javax.management.ObjectName;
029:
030: /**
031: * @author Michel-Ange ANTON
032: */
033: public class WebAppItem extends ContainerItem {
034:
035: // --------------------------------------------------------- Constants
036:
037: public final static String LABEL_ROOT_WEBMODULE = "ROOT";
038: public final static String APPEND_CHAR = "_";
039:
040: // --------------------------------------------------------- Properties Variables
041:
042: private String objectName = null;
043: private String pathContext = null;
044: private String labelPathContext = null;
045: private boolean deployed = false;
046:
047: // --------------------------------------------------------- Constructors
048:
049: public WebAppItem() {
050: }
051:
052: public WebAppItem(ObjectName p_ObjectName, String defaultHost) {
053: setObjectName(p_ObjectName.toString());
054: setName(p_ObjectName.getKeyProperty("name"));
055: setPathContext(extractPathContext(getName()));
056: setLabelPathContext(extractLabelPathContext(getName(),
057: defaultHost));
058: }
059:
060: /**
061: * Used for Jetty containers only
062: * @param p_PathContext
063: * @param p_ObjectName
064: */
065: public WebAppItem(String p_PathContext, String p_ObjectName) {
066: setPathContext(p_PathContext);
067: setObjectName(p_ObjectName);
068: setLabelPathContext(extractLabelPathContext(getPathContext(),
069: null));
070: }
071:
072: // --------------------------------------------------------- Public static Methods
073:
074: public static String extractLabelPathContext(String p_Name,
075: String defaultHost) {
076: String s = p_Name;
077: if ((s != null) && (s.length() > 0)) {
078: if (defaultHost == null) {
079: // Old way - delete HOST
080: s = extractPathContext(p_Name);
081: // Delete '/'
082: if (s.charAt(0) == '/') {
083: s = s.substring(1);
084: if (s.length() == 0) {
085: s = LABEL_ROOT_WEBMODULE;
086: }
087: }
088: } else {
089: // Extract HOST and use it to construct label if this is not
090: // the default host (localhost in default configuration)
091: int iPos = s.indexOf("//");
092: if (iPos > -1) {
093: s = s.substring(iPos + 2);
094: iPos = s.indexOf("/");
095: if (iPos > -1) {
096: String host = s.substring(0, iPos);
097: s = s.substring(iPos);
098: if (s.charAt(0) == '/') {
099: s = s.substring(1);
100: if (s.length() == 0) {
101: if (defaultHost.equals(host)) {
102: s = LABEL_ROOT_WEBMODULE;
103: } else {
104: s = host + APPEND_CHAR
105: + LABEL_ROOT_WEBMODULE;
106: }
107: }
108: }
109: }
110: }
111: }
112: }
113: return s;
114: }
115:
116: public static String extractPathContext(String p_Name) {
117: String s = p_Name;
118: // Delete //HOST
119: int iPos = s.indexOf("//");
120: if (iPos > -1) {
121: s = s.substring(iPos + 2);
122: iPos = s.indexOf("/");
123: if (iPos > -1) {
124: s = s.substring(iPos);
125: }
126: }
127: return s;
128: }
129:
130: // --------------------------------------------------------- Properties Methods
131:
132: public String getPathContext() {
133: return pathContext;
134: }
135:
136: public void setPathContext(String pathContext) {
137: this .pathContext = pathContext;
138: }
139:
140: public boolean isDeployed() {
141: return deployed;
142: }
143:
144: public String getLabelPathContext() {
145: return labelPathContext;
146: }
147:
148: /**
149: * Extend parent method to set the property <code>deployed</code>.
150: *
151: * @param p_Path The complete path (docBase) of the web application
152: */
153: public void setPath(String p_Path) {
154: super .setPath(p_Path);
155: if (getPath() != null) {
156: deployed = true;
157: }
158: }
159:
160: public void setLabelPathContext(String labelPathContext) {
161: this.labelPathContext = labelPathContext;
162: }
163: }
|