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

com.liferay.commerce.internal.health.status.CommerceHealthStatusRegistryImpl Maven / Gradle / Ivy

/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.commerce.internal.health.status;

import com.liferay.commerce.health.status.CommerceHealthStatus;
import com.liferay.commerce.health.status.CommerceHealthStatusRegistry;
import com.liferay.commerce.internal.health.status.comparator.CommerceHealthStatusServiceWrapperDisplayOrderComparator;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerCustomizerFactory;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerCustomizerFactory.ServiceWrapper;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerMap;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerMapFactory;
import com.liferay.petra.function.transform.TransformUtil;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.ListUtil;
import com.liferay.portal.kernel.util.Validator;

import java.util.Comparator;
import java.util.List;

import org.osgi.framework.BundleContext;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;

/**
 * @author Alessio Antonio Rendina
 */
@Component(service = CommerceHealthStatusRegistry.class)
public class CommerceHealthStatusRegistryImpl
	implements CommerceHealthStatusRegistry {

	@Override
	public List getActiveCommerceHealthStatuses(
		int type) {

		return TransformUtil.transform(
			ListUtil.sort(
				ListUtil.fromCollection(_serviceTrackerMap.values()),
				_commerceHealthStatusServiceWrapperDisplayOrderComparator),
			commerceHealthStatusServiceWrapper -> {
				CommerceHealthStatus commerceHealthStatus =
					commerceHealthStatusServiceWrapper.getService();

				if ((type == commerceHealthStatus.getType()) &&
					commerceHealthStatus.isActive()) {

					return commerceHealthStatus;
				}

				return null;
			});
	}

	@Override
	public CommerceHealthStatus getCommerceHealthStatus(String key) {
		if (Validator.isNull(key)) {
			return null;
		}

		ServiceWrapper
			commerceHealthStatusServiceWrapper = _serviceTrackerMap.getService(
				key);

		if (commerceHealthStatusServiceWrapper == null) {
			if (_log.isDebugEnabled()) {
				_log.debug(
					"No commerce health status registered with key " + key);
			}

			return null;
		}

		return commerceHealthStatusServiceWrapper.getService();
	}

	@Override
	public List getCommerceHealthStatuses(int type) {
		return TransformUtil.transform(
			ListUtil.sort(
				ListUtil.fromCollection(_serviceTrackerMap.values()),
				_commerceHealthStatusServiceWrapperDisplayOrderComparator),
			commerceHealthStatusServiceWrapper -> {
				CommerceHealthStatus commerceHealthStatus =
					commerceHealthStatusServiceWrapper.getService();

				if (type == commerceHealthStatus.getType()) {
					return commerceHealthStatus;
				}

				return null;
			});
	}

	@Activate
	protected void activate(BundleContext bundleContext) {
		_serviceTrackerMap = ServiceTrackerMapFactory.openSingleValueMap(
			bundleContext, CommerceHealthStatus.class,
			"commerce.health.status.key",
			ServiceTrackerCustomizerFactory.
				serviceWrapper(bundleContext));
	}

	@Deactivate
	protected void deactivate() {
		_serviceTrackerMap.close();
	}

	private static final Log _log = LogFactoryUtil.getLog(
		CommerceHealthStatusRegistryImpl.class);

	private static final Comparator>
		_commerceHealthStatusServiceWrapperDisplayOrderComparator =
			new CommerceHealthStatusServiceWrapperDisplayOrderComparator();

	private ServiceTrackerMap>
		_serviceTrackerMap;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy