Search in sources :

Example 1 with Statistics

use of org.jipijapa.management.spi.Statistics in project wildfly by wildfly.

the class DynamicManagementStatisticsResource method getChildren.

@Override
public Set<ResourceEntry> getChildren(String childType) {
    try {
        Statistics statistics = getStatistics();
        if (statistics.getChildrenNames().contains(childType)) {
            Set<ResourceEntry> result = new HashSet<ResourceEntry>();
            Statistics childStatistics = statistics.getChild(childType);
            for (String name : childStatistics.getDynamicChildrenNames(entityManagerFactoryLookup, PathWrapper.path(puName))) {
                result.add(new PlaceholderResource.PlaceholderResourceEntry(childType, name));
            }
            return result;
        } else {
            return super.getChildren(childType);
        }
    } catch (IllegalStateException e) {
        // WFLY-2436 ignore unexpected exceptions (e.g. JIPI-27 may throw an IllegalStateException)
        ROOT_LOGGER.unexpectedStatisticsProblem(e);
        return Collections.emptySet();
    }
}
Also used : PlaceholderResource(org.jboss.as.controller.registry.PlaceholderResource) Statistics(org.jipijapa.management.spi.Statistics) HashSet(java.util.HashSet)

Example 2 with Statistics

use of org.jipijapa.management.spi.Statistics in project wildfly by wildfly.

the class DynamicManagementStatisticsResource method getChildTypes.

@Override
public Set<String> getChildTypes() {
    try {
        Set<String> result = new HashSet<String>(super.getChildTypes());
        Statistics statistics = getStatistics();
        result.addAll(statistics.getChildrenNames());
        return result;
    } catch (IllegalStateException e) {
        // WFLY-2436 ignore unexpected exceptions (e.g. JIPI-27 may throw an IllegalStateException)
        ROOT_LOGGER.unexpectedStatisticsProblem(e);
        return Collections.emptySet();
    }
}
Also used : Statistics(org.jipijapa.management.spi.Statistics) HashSet(java.util.HashSet)

Example 3 with Statistics

use of org.jipijapa.management.spi.Statistics in project wildfly by wildfly.

the class JPAService method createManagementStatisticsResource.

/**
     * Create single instance of management statistics resource per managementAdaptor version.
     *
     * ManagementAccess
     *
     * The persistence provider and jipijapa adapters will be in the same classloader,
     * either a static module or included directly in the application.  Those are the two supported use
     * cases for management of deployment persistence units also.
     *
     * From a management point of view, the requirements are:
     *   1.  show management statistics for static persistence provider modules and applications that have
     *       their own persistence provider module.
     *
     *   2.  persistence provider adapters will provide a unique key that identifies the management version of supported
     *       management statistics/operations.  For example, Hibernate 3.x might be 1.0, Hibernate 4.1/4.2 might
     *       be version 2.0 and Hibernate 4.3 could be 2.0 also as long as its compatible (same stats) with 4.1/4.2.
     *       Eventually, a Hibernate (later version) change in statistics is likely to happen, the management version
     *       will be incremented.
     *
     *
     * @param managementAdaptor the management adaptor that will provide statistics
     * @param scopedPersistenceUnitName name of the persistence unit
     * @param deploymentUnit deployment unit for the deployment requesting a resource
     * @return the management resource
     */
public static Resource createManagementStatisticsResource(final ManagementAdaptor managementAdaptor, final String scopedPersistenceUnitName, final DeploymentUnit deploymentUnit) {
    synchronized (existingResourceDescriptionResolver) {
        final EntityManagerFactoryLookup entityManagerFactoryLookup = new EntityManagerFactoryLookup();
        final Statistics statistics = managementAdaptor.getStatistics();
        if (false == existingResourceDescriptionResolver.contains(managementAdaptor.getVersion())) {
            // setup statistics (this used to be part of JPA subsystem startup)
            ResourceDescriptionResolver resourceDescriptionResolver = new StandardResourceDescriptionResolver(statistics.getResourceBundleKeyPrefix(), statistics.getResourceBundleName(), statistics.getClass().getClassLoader()) {

                private ResourceDescriptionResolver fallback = JPAExtension.getResourceDescriptionResolver();

                //add a fallback in case provider doesn't have all properties properly defined
                @Override
                public String getResourceAttributeDescription(String attributeName, Locale locale, ResourceBundle bundle) {
                    if (bundle.containsKey(getBundleKey(attributeName))) {
                        return super.getResourceAttributeDescription(attributeName, locale, bundle);
                    } else {
                        return fallback.getResourceAttributeDescription(attributeName, locale, fallback.getResourceBundle(locale));
                    }
                }
            };
            PathElement subsystemPE = PathElement.pathElement(ModelDescriptionConstants.SUBSYSTEM, JPAExtension.SUBSYSTEM_NAME);
            ManagementResourceRegistration deploymentResourceRegistration = deploymentUnit.getAttachment(DeploymentModelUtils.MUTABLE_REGISTRATION_ATTACHMENT);
            ManagementResourceRegistration deploymentSubsystemRegistration = deploymentResourceRegistration.getSubModel(PathAddress.pathAddress(subsystemPE));
            ManagementResourceRegistration subdeploymentSubsystemRegistration = deploymentResourceRegistration.getSubModel(PathAddress.pathAddress(PathElement.pathElement(ModelDescriptionConstants.SUBDEPLOYMENT), subsystemPE));
            ManagementResourceRegistration providerResource = deploymentSubsystemRegistration.registerSubModel(new ManagementResourceDefinition(PathElement.pathElement(managementAdaptor.getIdentificationLabel()), resourceDescriptionResolver, statistics, entityManagerFactoryLookup));
            providerResource.registerReadOnlyAttribute(PersistenceUnitServiceHandler.SCOPED_UNIT_NAME, null);
            providerResource = subdeploymentSubsystemRegistration.registerSubModel(new ManagementResourceDefinition(PathElement.pathElement(managementAdaptor.getIdentificationLabel()), resourceDescriptionResolver, statistics, entityManagerFactoryLookup));
            providerResource.registerReadOnlyAttribute(PersistenceUnitServiceHandler.SCOPED_UNIT_NAME, null);
            existingResourceDescriptionResolver.add(managementAdaptor.getVersion());
        }
        // create (per deployment) dynamic Resource implementation that can reflect the deployment specific names (e.g. jpa entity classname/Hibernate region name)
        return new DynamicManagementStatisticsResource(statistics, scopedPersistenceUnitName, managementAdaptor.getIdentificationLabel(), entityManagerFactoryLookup);
    }
}
Also used : Locale(java.util.Locale) ManagementResourceDefinition(org.jboss.as.jpa.management.ManagementResourceDefinition) PathElement(org.jboss.as.controller.PathElement) DynamicManagementStatisticsResource(org.jboss.as.jpa.management.DynamicManagementStatisticsResource) StandardResourceDescriptionResolver(org.jboss.as.controller.descriptions.StandardResourceDescriptionResolver) ResourceDescriptionResolver(org.jboss.as.controller.descriptions.ResourceDescriptionResolver) EntityManagerFactoryLookup(org.jboss.as.jpa.management.EntityManagerFactoryLookup) StandardResourceDescriptionResolver(org.jboss.as.controller.descriptions.StandardResourceDescriptionResolver) ResourceBundle(java.util.ResourceBundle) ManagementResourceRegistration(org.jboss.as.controller.registry.ManagementResourceRegistration) Statistics(org.jipijapa.management.spi.Statistics)

Example 4 with Statistics

use of org.jipijapa.management.spi.Statistics in project wildfly by wildfly.

the class DynamicManagementStatisticsResource method getChildrenNames.

@Override
public Set<String> getChildrenNames(String childType) {
    try {
        Statistics statistics = getStatistics();
        if (statistics.getChildrenNames().contains(childType)) {
            Statistics childStatistics = statistics.getChild(childType);
            Set<String> result = new HashSet<String>();
            for (String name : childStatistics.getDynamicChildrenNames(entityManagerFactoryLookup, PathWrapper.path(puName))) {
                result.add(name);
            }
            return result;
        } else {
            return super.getChildrenNames(childType);
        }
    } catch (IllegalStateException e) {
        // WFLY-2436 ignore unexpected exceptions (e.g. JIPI-27 may throw an IllegalStateException)
        ROOT_LOGGER.unexpectedStatisticsProblem(e);
        return Collections.emptySet();
    }
}
Also used : Statistics(org.jipijapa.management.spi.Statistics) HashSet(java.util.HashSet)

Example 5 with Statistics

use of org.jipijapa.management.spi.Statistics in project wildfly by wildfly.

the class ManagementResourceDefinition method registerChildren.

@Override
public void registerChildren(ManagementResourceRegistration resourceRegistration) {
    super.registerChildren(resourceRegistration);
    for (final String sublevelChildName : statistics.getChildrenNames()) {
        Statistics sublevelStatistics = statistics.getChild(sublevelChildName);
        ResourceDescriptionResolver sublevelResourceDescriptionResolver = new StandardResourceDescriptionResolver(sublevelChildName, sublevelStatistics.getResourceBundleName(), sublevelStatistics.getClass().getClassLoader());
        resourceRegistration.registerSubModel(new ManagementResourceDefinition(PathElement.pathElement(sublevelChildName), sublevelResourceDescriptionResolver, sublevelStatistics, entityManagerFactoryLookup));
    }
}
Also used : ResourceDescriptionResolver(org.jboss.as.controller.descriptions.ResourceDescriptionResolver) StandardResourceDescriptionResolver(org.jboss.as.controller.descriptions.StandardResourceDescriptionResolver) StandardResourceDescriptionResolver(org.jboss.as.controller.descriptions.StandardResourceDescriptionResolver) Statistics(org.jipijapa.management.spi.Statistics)

Aggregations

Statistics (org.jipijapa.management.spi.Statistics)5 HashSet (java.util.HashSet)3 ResourceDescriptionResolver (org.jboss.as.controller.descriptions.ResourceDescriptionResolver)2 StandardResourceDescriptionResolver (org.jboss.as.controller.descriptions.StandardResourceDescriptionResolver)2 Locale (java.util.Locale)1 ResourceBundle (java.util.ResourceBundle)1 PathElement (org.jboss.as.controller.PathElement)1 ManagementResourceRegistration (org.jboss.as.controller.registry.ManagementResourceRegistration)1 PlaceholderResource (org.jboss.as.controller.registry.PlaceholderResource)1 DynamicManagementStatisticsResource (org.jboss.as.jpa.management.DynamicManagementStatisticsResource)1 EntityManagerFactoryLookup (org.jboss.as.jpa.management.EntityManagerFactoryLookup)1 ManagementResourceDefinition (org.jboss.as.jpa.management.ManagementResourceDefinition)1