blob: 96a294c037824d582519331445bad678cc52e72b [file] [log] [blame]
/*
* Copyright (c) 2007-2012, 2019 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Simon McDuff - initial API and implementation
* Eike Stepper - maintenance
*/
package org.eclipse.emf.internal.cdo.analyzer;
import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.util.CDOFetchRule;
import org.eclipse.emf.cdo.session.CDOCollectionLoadingPolicy;
import org.eclipse.emf.cdo.view.CDOFetchRuleManager;
import java.util.Collection;
import java.util.List;
/**
* @author Simon McDuff
*/
public class CDOFetchRuleManagerThreadLocal implements CDOFetchRuleManager
{
private static final ThreadLocal<CDOFetchRuleManager> threadLocal = new ThreadLocal<>();
public CDOFetchRuleManagerThreadLocal()
{
}
public static CDOFetchRuleManager getCurrent()
{
return threadLocal.get();
}
public static void join(CDOFetchRuleManager fetchRulemanager)
{
threadLocal.set(fetchRulemanager);
}
public static void leave()
{
threadLocal.set(null);
}
@Override
public CDOID getContext()
{
CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
return analyzer != null ? analyzer.getContext() : null;
}
@Override
public List<CDOFetchRule> getFetchRules(Collection<CDOID> ids)
{
CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
return analyzer != null ? analyzer.getFetchRules(ids) : null;
}
@Override
public CDOCollectionLoadingPolicy getCollectionLoadingPolicy()
{
CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
return analyzer != null ? analyzer.getCollectionLoadingPolicy() : null;
}
}