All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.system.metadata.ServiceDependencyValueMetaData Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2008, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.system.metadata;

import java.io.Serializable;

import javax.management.MBeanAttributeInfo;
import javax.management.MBeanServer;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;

import org.jboss.dependency.spi.ControllerState;
import org.jboss.mx.util.MBeanProxyExt;
import org.jboss.system.ConfigurationException;
import org.jboss.system.microcontainer.LifecycleDependencyItem;
import org.jboss.system.microcontainer.ServiceControllerContext;

/**
 * ServiceDependencyValueMetaData.
 * 
 * This class is based on the old ServiceConfigurator
 *
 * @author Marc Fleury
 * @author Hiram Chirino
 * @author David Jencks
 * @author Jason Dillon
 * @author Dimitris Andreadis
 * @author Adrian Brock
 * @version $Revision: 85120 $
 */
public class ServiceDependencyValueMetaData extends AbstractMetaDataVisitorNode
   implements ServiceValueMetaData, Serializable
{
   private static final long serialVersionUID = 1;

   /** The dependency */
   private String dependency;

   /** The dependency */
   private ObjectName objectName;

   /** The proxy type */
   private String proxyType;
   
   /**
    * Create a new ServiceDependencyValueMetaData.
    */
   public ServiceDependencyValueMetaData()
   {
   }
   
   /**
    * Create a new ServiceDependencyValueMetaData.
    * 
    * @param dependency the dependents object name
    */
   public ServiceDependencyValueMetaData(String dependency)
   {
      setDependency(dependency);
   }
   
   /**
    * Create a new ServiceDependencyValueMetaData.
    * 
    * @param dependency the dependents object name
    * @param proxyType the proxy type
    */
   public ServiceDependencyValueMetaData(String dependency, String proxyType)
   {
      setDependency(dependency);
      setProxyType(proxyType);
   }

   /**
    * Get the dependency.
    * 
    * @return the dependency.
    */
   public String getDependency()
   {
      if (dependency == null)
         return objectName.getCanonicalName();
      return dependency;
   }

   /**
    * Set the dependency.
    * 
    * @param dependency the dependency.
    */
   public void setDependency(String dependency)
   {
      if (dependency == null)
         throw new IllegalArgumentException("Null dependency");
      this.dependency = dependency;
      this.objectName = null;
   }

   /**
    * Get the object name.
    * 
    * @return the object name.
    * @throws MalformedObjectNameException if the string was set with an invalid object name
    */
   public ObjectName getObjectName() throws MalformedObjectNameException
   {
      if (objectName == null)
      {
         if (dependency == null || dependency.trim().length() == 0)
            throw new MalformedObjectNameException("Missing object name in depends");
         ObjectName name = new ObjectName(dependency);
         if (name.isPattern())
            throw new MalformedObjectNameException("ObjectName patterns are not allowed in depends: " + objectName);
         objectName = new ObjectName(dependency);
         dependency = null;
      }
      return objectName;
   }

   /**
    * Set the object name
    * 
    * @param objectName the object name
    */
   public void setObjectName(ObjectName objectName)
   {
      if (objectName == null)
         throw new IllegalArgumentException("Null objectName");
      this.objectName = objectName;
   }

   /**
    * Get the proxyType.
    * 
    * @return the proxyType.
    */
   public String getProxyType()
   {
      return proxyType;
   }

   /**
    * Set the proxyType.
    * 
    * @param proxyType the proxyType.
    */
   public void setProxyType(String proxyType)
   {
      this.proxyType = proxyType;
   }

   public Object getValue(ServiceValueContext valueContext) throws Exception
   {
      MBeanAttributeInfo attributeInfo = valueContext.getAttributeInfo();
      ClassLoader cl = valueContext.getClassloader();
      MBeanServer server = valueContext.getServer();

      ObjectName objectName = getObjectName();
      
      if (proxyType != null)
      {
         if (proxyType.equals("attribute"))
         {
            proxyType = attributeInfo.getType();
            if (proxyType == null)
               throw new ConfigurationException("AttributeInfo for " + attributeInfo.getName() + " has no type");
         }

         Class proxyClass = cl.loadClass(proxyType);
         return MBeanProxyExt.create(proxyClass, objectName, server, true);
      }
      
      return objectName;
   }

   public void visit(ServiceMetaDataVisitor visitor)
   {
      ServiceControllerContext context = visitor.getControllerContext();
      Object name = context.getName();
      Object other = dependency;
      try
      {
         other = getObjectName().getCanonicalName();
      }
      catch (MalformedObjectNameException ignored)
      {
      }
      // TODO visitor.addDependency(new LifecycleDependencyItem(name, other, ControllerState.CONFIGURED));
      visitor.addDependency(new LifecycleDependencyItem(name, other, ControllerState.CREATE));
      visitor.addDependency(new LifecycleDependencyItem(name, other, ControllerState.START));
      visitor.visit(this);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy