WorkManagerUtil.java
/*
* IronJacamar, a Java EE Connector Architecture implementation
* Copyright 2014, Red Hat Inc, and individual contributors
* as indicated by the @author tags. See the copyright.txt file 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 Eclipse Public License 1.0 as
* published by the Free Software Foundation.
*
* 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 Eclipse
* Public License for more details.
*
* You should have received a copy of the Eclipse 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.ironjacamar.core.workmanager;
import org.ironjacamar.core.api.workmanager.DistributableContext;
import java.io.Serializable;
import java.util.Iterator;
import java.util.List;
import javax.resource.spi.work.DistributableWork;
import javax.resource.spi.work.HintsContext;
import javax.resource.spi.work.Work;
import javax.resource.spi.work.WorkContext;
import javax.resource.spi.work.WorkContextProvider;
/**
* Utility methods for the WorkManager
*
* @author <a href="stefano.maestri@ironjacamar.org">Stefano Maestri</a>
* @author <a href="jesper.pedersen@ironjacamar.org">Jesper Pedersen</a>
*/
public class WorkManagerUtil
{
/**
*
* Utility method to decide if a work will have to run under long running thread pool
*
* @param work the work
* @return true if long running thread pool is required
*/
public static boolean isLongRunning(Work work)
{
if (work != null && work instanceof WorkContextProvider)
{
WorkContextProvider wcProvider = (WorkContextProvider) work;
List<WorkContext> contexts = wcProvider.getWorkContexts();
if (contexts != null && !contexts.isEmpty())
{
boolean found = false;
Iterator<WorkContext> it = contexts.iterator();
while (!found && it.hasNext())
{
WorkContext wc = it.next();
if (wc instanceof HintsContext)
{
HintsContext hc = (HintsContext) wc;
if (hc.getHints().containsKey(HintsContext.LONGRUNNING_HINT))
{
Serializable value = hc.getHints().get(HintsContext.LONGRUNNING_HINT);
if (value != null)
{
if (value instanceof String)
{
return Boolean.valueOf((String)value);
}
else if (value instanceof Boolean)
{
return ((Boolean)value).booleanValue();
}
}
else
{
// Assume true
return true;
}
}
}
}
}
}
return false;
}
/**
* Get should distribute override
* @param work The work instance
* @return The override, if none return null
*/
public static Boolean getShouldDistribute(DistributableWork work)
{
if (work != null && work instanceof WorkContextProvider)
{
List<WorkContext> contexts = ((WorkContextProvider)work).getWorkContexts();
if (contexts != null)
{
for (WorkContext wc : contexts)
{
if (wc instanceof DistributableContext)
{
DistributableContext dc = (DistributableContext)wc;
return dc.getDistribute();
}
else if (wc instanceof HintsContext)
{
HintsContext hc = (HintsContext)wc;
if (hc.getHints().keySet().contains(DistributableContext.DISTRIBUTE))
{
Serializable value = hc.getHints().get(DistributableContext.DISTRIBUTE);
if (value != null && value instanceof Boolean)
{
return (Boolean)value;
}
}
}
}
}
}
return null;
}
/**
* Get explicit work manager override
* @param work The work instance
* @return The override, if none return null
*/
public static String getWorkManager(DistributableWork work)
{
if (work != null && work instanceof WorkContextProvider)
{
List<WorkContext> contexts = ((WorkContextProvider)work).getWorkContexts();
if (contexts != null)
{
for (WorkContext wc : contexts)
{
if (wc instanceof DistributableContext)
{
DistributableContext dc = (DistributableContext)wc;
return dc.getWorkManager();
}
else if (wc instanceof HintsContext)
{
HintsContext hc = (HintsContext)wc;
if (hc.getHints().keySet().contains(DistributableContext.WORKMANAGER))
{
Serializable value = hc.getHints().get(DistributableContext.WORKMANAGER);
if (value != null && value instanceof String)
{
return (String)value;
}
}
}
}
}
}
return null;
}
}