KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > monitor > registry > spi > reconfig > ConnectionPoolChangeHandler


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 /* ConnectionPoolChangeHandler.java
25  * $Id: ConnectionPoolChangeHandler.java,v 1.3 2005/12/25 03:43:38 tcfujii Exp $
26  * $Revision: 1.3 $
27  * $Date: 2005/12/25 03:43:38 $
28  * Indentation Information:
29  * 0. Please (try to) preserve these settings.
30  * 1. Tabs are preferred over spaces.
31  * 2. In vi/vim -
32  * :set tabstop=4 :set shiftwidth=4 :set softtabstop=4
33  * 3. In S1 Studio -
34  * 1. Tools->Options->Editor Settings->Java Editor->Tab Size = 4
35  * 2. Tools->Options->Indentation Engines->Java Indentation Engine->Expand Tabs to Spaces = False.
36  * 3. Tools->Options->Indentation Engines->Java Indentation Engine->Number of Spaces per Tab = 4.
37  */

38
39 package com.sun.enterprise.admin.monitor.registry.spi.reconfig;
40
41 import java.util.Iterator JavaDoc;
42 import java.util.Map JavaDoc;
43 import java.util.logging.Logger JavaDoc;
44 import com.sun.enterprise.admin.monitor.registry.MonitoringLevel;
45 import com.sun.enterprise.admin.monitor.registry.MonitoringLevelListener;
46 import com.sun.enterprise.admin.monitor.registry.MonitoredObjectType;
47 import com.sun.enterprise.admin.monitor.registry.StatsHolder;
48
49 import com.sun.enterprise.admin.monitor.registry.spi.ValueListMap;
50 import com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper;
51 import com.sun.enterprise.admin.common.constant.AdminConstants;
52
53 /**
54  * Provides for dynamic reconfiguration of all JDBC Connection Pool and Connector Connection Pool.
55  * This class decides the actions to take when there are
56  * changes to the monitoring level through administrative interfaces.
57  * @author <a HREF="mailto:Kedar.Mhaswade@sun.com">Kedar Mhaswade</a>
58  * @since S1AS8.0
59  * @version $Revision: 1.3 $
60  */

61 class ConnectionPoolChangeHandler implements ChangeHandler {
62     
63     private final ChangeHandler successor;
64     private final ValueListMap listeners;
65     private static final Logger JavaDoc logger = Logger.getLogger(AdminConstants.kLoggerName);
66     
67     ConnectionPoolChangeHandler(ChangeHandler successor, ValueListMap listeners) {
68         this.successor = successor;
69         this.listeners = listeners;
70     }
71     
72     public void handleChange(MonitoredObjectType t, MonitoringLevel from, MonitoringLevel to) {
73         if (isConnectionPoolType(t)) {
74             handleChange(from, to, t);
75         }
76         else {
77             successor.handleChange(t, from, to);
78         }
79     }
80     // now this will have to handle the jms-service and
81
// connector-service, in addition to connector-connection-pool
82
private boolean isConnectionPoolType(MonitoredObjectType t) {
83         return ( t == MonitoredObjectType.CONNECTOR_CONN_POOL ||
84                  t == MonitoredObjectType.JDBC_CONN_POOL ||
85                  t == MonitoredObjectType.CONNECTOR_SERVICE ||
86                  t == MonitoredObjectType.JMS_SERVICE);
87     }
88     
89     private void handleChange(MonitoringLevel from, MonitoringLevel to, MonitoredObjectType t) {
90         if (off2Low(from, to) || off2High(from, to)) {
91             notifyListeners(from, to, t);
92             registerMBeans(t);
93         }
94         if (low2Off(from, to) || high2Off(from, to)) {
95             unregisterMBeans(t);
96             notifyListeners(from, to, t);
97         }
98         if (low2High(from, to) || high2Low(from, to)) {
99             //currently do nothing.
100
}
101     }
102     
103     private void notifyListeners(MonitoringLevel from, MonitoringLevel to, MonitoredObjectType t) {
104         logger.finer("DynamicReconfigurator: Now notifying the listeners for connection-pool stats --- from = " + from.toString() + " to = " + to.toString());
105         assert ( t == MonitoredObjectType.JDBC_CONN_POOL ||
106                  t == MonitoredObjectType.CONNECTOR_CONN_POOL ||
107                  t == MonitoredObjectType.CONNECTOR_SERVICE ||
108                  t == MonitoredObjectType.JMS_SERVICE);
109         
110         final Map JavaDoc l = (Map JavaDoc)listeners.get(t); // map of listeners;
111
if (l == null)
112             return; //do nothing
113
final Iterator JavaDoc it = l.keySet().iterator();
114         while (it.hasNext()) {
115             final MonitoringLevelListener ml = (MonitoringLevelListener)it.next();
116             ml.changeLevel(from, to, t);
117         }
118     }
119     
120     private void registerMBeans(MonitoredObjectType t) {
121         final MonitoringRegistrationHelper registryImpl =
122             (MonitoringRegistrationHelper) MonitoringRegistrationHelper.getInstance();
123         //note that the above refers to the actual implementation rather than interface.
124
Iterator JavaDoc iter = null;
125         if(t == MonitoredObjectType.JDBC_CONN_POOL)
126             iter = registryImpl.getConnectionPoolNodes(t).iterator();
127         else
128             iter = registryImpl.getConnectorRelatedNodes().iterator();
129         while (iter.hasNext()) {
130             final StatsHolder c = (StatsHolder) iter.next();
131             c.registerMBean();
132             logger.finer("DynamicReconfigurator: Now Registering MBean for --- " + c.getName());
133         }
134     }
135     
136     private void unregisterMBeans(MonitoredObjectType t) {
137         final MonitoringRegistrationHelper registryImpl =
138             (MonitoringRegistrationHelper) MonitoringRegistrationHelper.getInstance();
139         //note that the above refers to the actual implementation rather than interface.
140

141         //unregister MBeans for ALL the connection pools
142
Iterator JavaDoc iter = null;
143         if(t == MonitoredObjectType.JDBC_CONN_POOL)
144             iter = registryImpl.getConnectionPoolNodes(t).iterator();
145         else
146             iter = registryImpl.getConnectorRelatedNodes().iterator();
147         while (iter.hasNext()) {
148             final StatsHolder c = (StatsHolder) iter.next();
149             c.unregisterMBean();
150             logger.finer("DynamicReconfigurator: Now UnRegistering MBean for --- " + c.getName());
151         }
152     }
153     private boolean off2Low(MonitoringLevel from, MonitoringLevel to) {
154         return ( from == MonitoringLevel.OFF && to == MonitoringLevel.LOW );
155     }
156     private boolean off2High(MonitoringLevel from, MonitoringLevel to) {
157         return ( from == MonitoringLevel.OFF && to == MonitoringLevel.HIGH );
158     }
159     private boolean low2Off(MonitoringLevel from, MonitoringLevel to) {
160         return ( from == MonitoringLevel.LOW && to == MonitoringLevel.OFF);
161     }
162     private boolean high2Off(MonitoringLevel from, MonitoringLevel to) {
163         return ( from == MonitoringLevel.HIGH && to == MonitoringLevel.OFF );
164     }
165     private boolean low2High(MonitoringLevel from, MonitoringLevel to) {
166         return ( from == MonitoringLevel.LOW && to == MonitoringLevel.HIGH);
167     }
168     private boolean high2Low(MonitoringLevel from, MonitoringLevel to) {
169         return ( from == MonitoringLevel.HIGH && to == MonitoringLevel.LOW );
170     }
171 }
172
Popular Tags