blob: 76c61c36c51e5dd99e1036926a6ceb7ee674ee77 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.compare.match.impl;
import org.eclipse.emf.compare.match.DefaultComparisonFactory;
import org.eclipse.emf.compare.match.DefaultEqualityHelperFactory;
import org.eclipse.emf.compare.match.DefaultMatchEngine;
import org.eclipse.emf.compare.match.IComparisonFactory;
import org.eclipse.emf.compare.match.IMatchEngine;
import org.eclipse.emf.compare.match.eobject.IEObjectMatcher;
import org.eclipse.emf.compare.scope.IComparisonScope;
import org.eclipse.emf.compare.utils.UseIdentifiers;
/**
* The default implementation of the {@link IMatchEngine.Factory.Registry}.
*
* @author <a href="mailto:axel.richard@obeo.fr">Axel Richard</a>
* @since 3.0
*/
public class MatchEngineFactoryImpl implements IMatchEngine.Factory {
/** The match engine created by this factory. */
protected IMatchEngine matchEngine;
/** Ranking of this match engine. */
private int ranking;
/**
* Constructor that instantiate a {@link DefaultMatchEngine}.
*/
public MatchEngineFactoryImpl() {
this(UseIdentifiers.WHEN_AVAILABLE);
}
/**
* Constructor that instantiate a {@link DefaultMatchEngine} that will use identifiers as specified by the
* given {@code useIDs} enumeration.
*
* @param useIDs
* the kinds of matcher to use.
*/
public MatchEngineFactoryImpl(UseIdentifiers useIDs) {
final IComparisonFactory comparisonFactory = new DefaultComparisonFactory(
new DefaultEqualityHelperFactory());
final IEObjectMatcher matcher = DefaultMatchEngine.createDefaultEObjectMatcher(useIDs);
matchEngine = new DefaultMatchEngine(matcher, comparisonFactory);
}
/**
* Constructor that instantiate a {@link DefaultMatchEngine} with the given parameters.
*
* @param matcher
* The matcher that will be in charge of pairing EObjects together for this comparison process.
* @param comparisonFactory
* factory that will be use to instantiate Comparison as return by match() methods.
*/
public MatchEngineFactoryImpl(IEObjectMatcher matcher, IComparisonFactory comparisonFactory) {
matchEngine = new DefaultMatchEngine(matcher, comparisonFactory);
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.compare.match.IMatchEngine.Factory#getMatchEngine()
*/
public IMatchEngine getMatchEngine() {
return matchEngine;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.compare.match.IMatchEngine.Factory#getRanking()
*/
public int getRanking() {
return ranking;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.compare.match.IMatchEngine.Factory#setRanking(int)
*/
public void setRanking(int r) {
ranking = r;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.compare.match.IMatchEngine.Factory#isMatchEngineFactoryFor(org.eclipse.emf.compare.scope.IComparisonScope)
*/
public boolean isMatchEngineFactoryFor(IComparisonScope scope) {
return true;
}
}