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

com.aspectran.core.service.CoreServiceHolder Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2024 The Aspectran Project
 *
 * Licensed 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 com.aspectran.core.service;

import com.aspectran.core.context.ActivityContext;
import com.aspectran.core.context.resource.SiblingClassLoader;
import com.aspectran.utils.Assert;
import com.aspectran.utils.annotation.jsr305.Nullable;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * 

Created: 01/10/2019

*/ public abstract class CoreServiceHolder { private static final Map servicesByLoader = new ConcurrentHashMap<>(); private static final Map, CoreService> servicesByClass = new ConcurrentHashMap<>(); private static volatile CoreService currentService; public static void hold(CoreService service) { Assert.notNull(service, "service must not be null"); Assert.state(service.getActivityContext() != null, "No ActivityContext"); ClassLoader classLoader = service.getServiceClassLoader(); if (classLoader != null) { if (classLoader == CoreServiceHolder.class.getClassLoader()) { currentService = service; } else { servicesByLoader.put(classLoader, service); } if (service.getAltClassLoader() != null) { hold(service, service.getAltClassLoader()); } } } public static void hold(CoreService service, ClassLoader classLoader) { Assert.notNull(service, "service must not be null"); Assert.notNull(classLoader, "classLoader must not be null"); Assert.state(currentService == service || servicesByLoader.containsValue(service), "Unregistered service: " + service); servicesByLoader.put(classLoader, service); } public static void hold(CoreService service, Class clazz) { Assert.notNull(service, "service must not be null"); Assert.notNull(clazz, "clazz must not be null"); Assert.state(currentService == service || servicesByLoader.containsValue(service), "Unregistered service: " + service); servicesByClass.put(clazz, service); } public static void release(CoreService service) { Assert.notNull(service, "service must not be null"); servicesByLoader.entrySet().removeIf(entry -> (service.equals(entry.getValue()))); servicesByClass.entrySet().removeIf(entry -> (service.equals(entry.getValue()))); if (currentService != null && currentService == service) { currentService = null; } } public static CoreService acquire() { ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); if (classLoader != null) { CoreService service = servicesByLoader.get(classLoader); if (service == null && !(classLoader instanceof SiblingClassLoader)) { service = servicesByLoader.get(classLoader.getParent()); } if (service != null) { return service; } } return currentService; } public static CoreService acquire(Class clazz) { CoreService service = servicesByClass.get(clazz); if (service == null) { service = acquire(); } return service; } @Nullable public static ActivityContext findActivityContext() { CoreService service = acquire(); return (service != null ? service.getActivityContext() : null); } @Nullable public static ActivityContext findActivityContext(Class clazz) { CoreService service = acquire(clazz); return (service != null ? service.getActivityContext() : null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy