blob: 4ccb32753b665add76dbca1b5da467fd8971f510 [file] [log] [blame]
/*
* Copyright (c) 2017 Florian Schmitt 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
*/
package org.eclipse.mdm.api.odsadapter.search;
import org.eclipse.mdm.api.base.adapter.EntityType;
import org.eclipse.mdm.api.base.model.Channel;
import org.eclipse.mdm.api.base.model.ChannelGroup;
import org.eclipse.mdm.api.base.model.Measurement;
import org.eclipse.mdm.api.base.model.ParameterSet;
import org.eclipse.mdm.api.base.model.Test;
import org.eclipse.mdm.api.base.model.TestStep;
import org.eclipse.mdm.api.base.query.QueryService;
import org.eclipse.mdm.api.dflt.model.Pool;
import org.eclipse.mdm.api.dflt.model.Project;
import org.eclipse.mdm.api.odsadapter.query.ODSModelManager;
import org.eclipse.mdm.api.odsadapter.search.JoinTree.JoinConfig;
/**
* This class is used as a helper to the tests in org.eclipse.mdm.api.odsadapter.RelationTest
* It needs to be here, because BaseEntitySearchQuery is declared as protected
* in the org.eclipse.mdm.api.odsadapter.search package.
* It makes some sense to leave it protected in that way, because implementing a BaseEntitySearchQuery
* requires understanding of the underlying data model which
* The RelationTest requires that the related parametersets to a measurement are
* loaded. This class provides a JoinConfig which allows this to happen by defining
* the way the entities in question have to be joined.
* If we wouldn't join the ParameterSet in, the related
* entities would not be loaded, and it would be impossible to determine whether there
* are any related ParameterSets or not.
*
*/
public final class RelationSearchQuery extends BaseEntitySearchQuery {
/**
* Constructor.
*
* @param modelManager
* Used to load {@link EntityType}s.
* @param contextState
* The {@link ContextState}.
*/
public RelationSearchQuery(ODSModelManager modelManager, QueryService queryService) {
super(modelManager, queryService, ParameterSet.class, Project.class);
// layers
addJoinConfig(JoinConfig.up(Pool.class, Project.class));
addJoinConfig(JoinConfig.up(Test.class, Pool.class));
addJoinConfig(JoinConfig.up(TestStep.class, Test.class));
addJoinConfig(JoinConfig.up(Measurement.class, TestStep.class));
addJoinConfig(JoinConfig.up(ParameterSet.class, Measurement.class));
addJoinConfig(JoinConfig.down(Measurement.class, Channel.class));
addJoinConfig(JoinConfig.down(Measurement.class, ChannelGroup.class));
}
}