blob: 532361d2bdba6ae36b9ec44afb862d3223b0f0c5 [file] [log] [blame]
/*
* 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.pulsar.tests;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.apache.commons.lang3.ClassUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This TestNG listener contains cleanup for some singletons or caches.
*/
public class SingletonCleanerListener extends BetweenTestClassesListenerAdapter {
private static final Logger LOG = LoggerFactory.getLogger(SingletonCleanerListener.class);
private static final Method OBJECTMAPPERFACTORY_CLEARCACHES_METHOD;
private static final Method JSONSCHEMA_CLEARCACHES_METHOD;
static {
Class<?> objectMapperFactoryClazz =
null;
try {
objectMapperFactoryClazz = ClassUtils.getClass("org.apache.pulsar.common.util.ObjectMapperFactory");
} catch (ClassNotFoundException e) {
LOG.warn("Cannot find ObjectMapperFactory class", e);
}
Method clearCachesMethod = null;
try {
if (objectMapperFactoryClazz != null) {
clearCachesMethod =
objectMapperFactoryClazz
.getMethod("clearCaches");
}
} catch (NoSuchMethodException e) {
LOG.warn("Cannot find method for clearing singleton ObjectMapper caches", e);
}
OBJECTMAPPERFACTORY_CLEARCACHES_METHOD = clearCachesMethod;
Class<?> jsonSchemaClazz = null;
try {
jsonSchemaClazz = ClassUtils.getClass("org.apache.pulsar.client.impl.schema.JSONSchema");
} catch (ClassNotFoundException e) {
LOG.warn("Cannot find JSONSchema class", e);
}
Method jsonSchemaCleanCachesMethod = null;
try {
if (jsonSchemaClazz != null) {
jsonSchemaCleanCachesMethod =
jsonSchemaClazz
.getMethod("clearCaches");
}
} catch (NoSuchMethodException e) {
LOG.warn("Cannot find method for clearing singleton JSONSchema caches", e);
}
JSONSCHEMA_CLEARCACHES_METHOD = jsonSchemaCleanCachesMethod;
}
@Override
protected void onBetweenTestClasses(Class<?> endedTestClass, Class<?> startedTestClass) {
objectMapperFactoryClearCaches();
jsonSchemaClearCaches();
}
// Call ObjectMapperFactory.clearCaches() using reflection to clear up classes held in
// the singleton Jackson ObjectMapper instances
private static void objectMapperFactoryClearCaches() {
if (OBJECTMAPPERFACTORY_CLEARCACHES_METHOD != null) {
try {
OBJECTMAPPERFACTORY_CLEARCACHES_METHOD.invoke(null);
} catch (IllegalAccessException | InvocationTargetException e) {
LOG.warn("Cannot clean singleton ObjectMapper caches", e);
}
}
}
// Call JSONSchema.clearCaches() using reflection to clear up classes held in
// the singleton Jackson ObjectMapper instance of JSONSchema class
private static void jsonSchemaClearCaches() {
if (JSONSCHEMA_CLEARCACHES_METHOD != null) {
try {
JSONSCHEMA_CLEARCACHES_METHOD.invoke(null);
} catch (IllegalAccessException | InvocationTargetException e) {
LOG.warn("Cannot clean singleton JSONSchema caches", e);
}
}
}
}