/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2016, TeleStax Inc. and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation; either version 3 of * the License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> * * This file incorporates work covered by the following copyright and * permission notice: * * JBoss, Home of Professional Open Source * Copyright 2007-2011, Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt 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.jdiameter.common.impl.concurrent; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ExecutorService; import java.util.concurrent.ScheduledExecutorService; import org.jdiameter.api.Configuration; import org.jdiameter.client.impl.helpers.Parameters; import org.jdiameter.common.api.concurrent.IConcurrentEntityFactory; import org.jdiameter.common.api.concurrent.IConcurrentFactory; import org.jdiameter.common.api.statistic.IStatistic; import org.jdiameter.common.api.statistic.IStatisticManager; import org.jdiameter.common.api.statistic.IStatisticRecord; /** * * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a> * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> */ public class ConcurrentFactory implements IConcurrentFactory { private BaseThreadFactory threadFactory; private Map<String, CommonScheduledExecutorService> scheduledExecutorServices; private Configuration[] config; private IStatisticManager statisticFactory; private IStatistic statistic; private IConcurrentEntityFactory entityFactory; public ConcurrentFactory(Configuration config, IStatisticManager statisticFactory, IConcurrentEntityFactory entityFactory) { this.config = config.getChildren(Parameters.Concurrent.ordinal()); this.entityFactory = entityFactory; Configuration dgConfig = getConfigByName(BaseThreadFactory.ENTITY_NAME); String defThreadGroupName = dgConfig != null ? dgConfig.getStringValue(Parameters.ConcurrentEntityDescription.ordinal(), (String) Parameters.ConcurrentEntityDescription.defValue()) : (String) Parameters.ConcurrentEntityDescription.defValue(); threadFactory = (BaseThreadFactory) entityFactory.newThreadFactory(defThreadGroupName); scheduledExecutorServices = new ConcurrentHashMap<String, CommonScheduledExecutorService>(); IStatisticRecord threadCount = statisticFactory.newCounterRecord( IStatisticRecord.Counters.ConcurrentThread, new IStatisticRecord.IntegerValueHolder() { @Override public String getValueAsString() { return getValueAsInt() + ""; } @Override public int getValueAsInt() { return getThreadGroup().activeCount(); } }); //TODO: make use of this stat.... IStatisticRecord schedExeServiceCount = statisticFactory.newCounterRecord( IStatisticRecord.Counters.ConcurrentScheduledExecutedServices, new IStatisticRecord.IntegerValueHolder() { @Override public String getValueAsString() { return getValueAsInt() + ""; } @Override public int getValueAsInt() { return scheduledExecutorServices.size(); } }); statistic = statisticFactory.newStatistic("scheduled", IStatistic.Groups.Concurrent, threadCount, schedExeServiceCount); this.statisticFactory = statisticFactory; } /** * fetch configuration for executor * @param name * @return */ private Configuration getConfigByName(String name) { if (config != null) { for (Configuration c : config) { if (c != null && c.getStringValue(Parameters.ConcurrentEntityName.ordinal(), "").equals(name)) { return c; } } } return null; } @Override public Thread getThread(Runnable runnable) { return threadFactory.newThread(runnable); } @Override public Thread getThread(String namePrefix, Runnable runnuble) { return threadFactory.newThread(namePrefix, runnuble); } @Override public List<Thread> getThreads() { Thread[] threads = new Thread[threadFactory.getThreadGroup().activeCount()]; threadFactory.getThreadGroup().enumerate(threads); return Arrays.asList(threads); } @Override public ThreadGroup getThreadGroup() { return threadFactory.getThreadGroup(); } @Override public ScheduledExecutorService getScheduledExecutorService(String name) { CommonScheduledExecutorService service = null; if (!scheduledExecutorServices.containsKey(name)) { //ZhixiaoLuo: fix StatisticManagerImpl.IllegalArgumentException if 2 sessions try to get ApplicationSession service synchronized (ConcurrentFactory.class) { if (!scheduledExecutorServices.containsKey(name)) { service = new CommonScheduledExecutorService(name, getConfigByName(name), this.entityFactory, statisticFactory); scheduledExecutorServices.put(name, service); } } } else { service = scheduledExecutorServices.get(name); } return service; } @Override public Collection<ScheduledExecutorService> getScheduledExecutorServices() { List<ScheduledExecutorService> external = new ArrayList<ScheduledExecutorService>(scheduledExecutorServices.values()); return external; } @Override public void shutdownNow(ScheduledExecutorService service) { for (String name : scheduledExecutorServices.keySet()) { ExecutorService e = scheduledExecutorServices.get(name); if (e == service) { e.shutdownNow(); scheduledExecutorServices.remove(name); break; } } } @Override public IStatistic getStatistic() { return statistic; } @Override public List<IStatistic> getStatistics() { List<IStatistic> statistics = new ArrayList<IStatistic>(); for (CommonScheduledExecutorService e : scheduledExecutorServices.values()) { statistics.add(e.getStatistic()); } return statistics; } @Override public void shutdownAllNow() { for (String name : scheduledExecutorServices.keySet()) { ExecutorService e = scheduledExecutorServices.remove(name); e.shutdownNow(); } } }