Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Apache ZooKeeper 3.7.0 Server Source Code
Apache ZooKeeper is an open-source server which enables highly
reliable distributed coordination.
Apache ZooKeeper Server Source Code files are provided in the source packge (apache-zookeeper-3.7.0.tar.gz). You can download it at Apache ZooKeeper Website.
You can also browse Apache ZooKeeper Server Source Code below:
✍: FYIcenter.com
⏎ org/apache/zookeeper/jmx/MBeanRegistry.java
/* * 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 * * 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.zookeeper.jmx; import java.lang.management.ManagementFactory; import java.util.Collection; import java.util.HashSet; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import javax.management.JMException; import javax.management.MBeanServer; import javax.management.MBeanServerFactory; import javax.management.MalformedObjectNameException; import javax.management.ObjectName; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * This class provides a unified interface for registering/unregistering of * zookeeper MBeans with the platform MBean server. It builds a hierarchy of MBeans * where each MBean represented by a filesystem-like path. Eventually, this hierarchy * will be stored in the zookeeper data tree instance as a virtual data tree. */ public class MBeanRegistry { public static final String DOMAIN = "org.apache.ZooKeeperService"; private static final Logger LOG = LoggerFactory.getLogger(MBeanRegistry.class); private static volatile MBeanRegistry instance = new MBeanRegistry(); private final Object LOCK = new Object(); private Map<ZKMBeanInfo, String> mapBean2Path = new ConcurrentHashMap<ZKMBeanInfo, String>(); private MBeanServer mBeanServer; /** * Useful for unit tests. Change the MBeanRegistry instance * * @param instance new instance */ public static void setInstance(MBeanRegistry instance) { MBeanRegistry.instance = instance; } public static MBeanRegistry getInstance() { return instance; } public MBeanRegistry() { try { mBeanServer = ManagementFactory.getPlatformMBeanServer(); } catch (Error e) { // Account for running within IKVM and create a new MBeanServer // if the PlatformMBeanServer does not exist. mBeanServer = MBeanServerFactory.createMBeanServer(); } } /** * Return the underlying MBeanServer that is being * used to register MBean's. The returned MBeanServer * may be a new empty MBeanServer if running through IKVM. */ public MBeanServer getPlatformMBeanServer() { return mBeanServer; } /** * Registers a new MBean with the platform MBean server. * @param bean the bean being registered * @param parent if not null, the new bean will be registered as a child * node of this parent. */ public void register(ZKMBeanInfo bean, ZKMBeanInfo parent) throws JMException { assert bean != null; String path = null; if (parent != null) { path = mapBean2Path.get(parent); assert path != null; } path = makeFullPath(path, parent); if (bean.isHidden()) { return; } ObjectName oname = makeObjectName(path, bean); try { synchronized (LOCK) { mBeanServer.registerMBean(bean, oname); mapBean2Path.put(bean, path); } } catch (JMException e) { LOG.warn("Failed to register MBean {}", bean.getName()); throw e; } } /** * Unregister the MBean identified by the path. * @param path * @param bean */ private void unregister(String path, ZKMBeanInfo bean) throws JMException { if (path == null) { return; } if (!bean.isHidden()) { final ObjectName objName = makeObjectName(path, bean); LOG.debug("Unregister MBean [{}]", objName); synchronized (LOCK) { mBeanServer.unregisterMBean(objName); } } } /** * @return a {@link Collection} with the {@link ZKMBeanInfo} instances not * unregistered. Mainly for testing purposes. */ public Set<ZKMBeanInfo> getRegisteredBeans() { return new HashSet<ZKMBeanInfo>(mapBean2Path.keySet()); } /** * Unregister MBean. * @param bean */ public void unregister(ZKMBeanInfo bean) { if (bean == null) { return; } String path = mapBean2Path.remove(bean); try { unregister(path, bean); } catch (JMException e) { LOG.warn("Error during unregister of [{}]", bean.getName(), e); } catch (Throwable t) { LOG.error("Unexpected exception during unregister of [{}]. It should be reviewed and fixed.", bean.getName(), t); } } /** * Generate a filesystem-like path. * @param prefix path prefix * @param name path elements * @return absolute path */ public String makeFullPath(String prefix, String... name) { StringBuilder sb = new StringBuilder(prefix == null ? "/" : (prefix.equals("/") ? prefix : prefix + "/")); boolean first = true; for (String s : name) { if (s == null) { continue; } if (!first) { sb.append("/"); } else { first = false; } sb.append(s); } return sb.toString(); } protected String makeFullPath(String prefix, ZKMBeanInfo bean) { return makeFullPath(prefix, bean == null ? null : bean.getName()); } /** * This takes a path, such as /a/b/c, and converts it to * name0=a,name1=b,name2=c */ private int tokenize(StringBuilder sb, String path, int index) { String[] tokens = path.split("/"); for (String s : tokens) { if (s.length() == 0) { continue; } sb.append("name").append(index++).append("=").append(s).append(","); } return index; } /** * Builds an MBean path and creates an ObjectName instance using the path. * @param path MBean path * @param bean the MBean instance * @return ObjectName to be registered with the platform MBean server */ protected ObjectName makeObjectName(String path, ZKMBeanInfo bean) throws MalformedObjectNameException { if (path == null) { return null; } StringBuilder beanName = new StringBuilder(DOMAIN + ":"); int counter = 0; counter = tokenize(beanName, path, counter); tokenize(beanName, bean.getName(), counter); beanName.deleteCharAt(beanName.length() - 1); try { return new ObjectName(beanName.toString()); } catch (MalformedObjectNameException e) { LOG.warn("Invalid name \"{}\" for class {}", beanName, bean.getClass()); throw e; } } }
⏎ org/apache/zookeeper/jmx/MBeanRegistry.java
Or download all of them as a single archive file:
File name: zookeeper-server-3.7.0-fyi.zip File size: 871011 bytes Release date: 2021-05-17 Download
⇒ Apache ZooKeeper 3.7.0 Jute Source Code
⇐ Download Apache ZooKeeper 3.7.0 Source Package
2022-11-16, 25645👍, 0💬
Popular Posts:
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
Jettison is a collection of Java APIs (like STaX and DOM) which read and write JSON. This allows nea...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
JDK 11 jdk.internal.vm.compiler .jmodis the JMOD file for JDK 11 Internal VM Compiler module. JDK 11...