Class PhysicalOpRequest<ReqType extends DataRetrievalRequest,MemberType extends FederationMember>
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.physical.impl.BaseForPhysicalOps
se.liu.ida.hefquin.engine.queryplan.physical.impl.PhysicalOpRequest<ReqType,MemberType>
- All Implemented Interfaces:
NullaryPhysicalOp
,NullaryPhysicalOpForLogicalOp
,PhysicalOperator
,PhysicalOperatorForLogicalOperator
public class PhysicalOpRequest<ReqType extends DataRetrievalRequest,MemberType extends FederationMember>
extends BaseForPhysicalOps
implements NullaryPhysicalOpForLogicalOp
A physical operator that performs a request at a federation member
and, then, outputs the solution mappings obtained via this request.
The actual algorithm of this operator is implemented in the following
classes, where each of them is specific to a different type of request
and federation member.
-
Field Summary
FieldsFields inherited from class se.liu.ida.hefquin.engine.queryplan.physical.impl.BaseForPhysicalOps
id
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateExecOp
(boolean collectExceptions, ExpectedVariables... inputVars) Creates and returns the executable operator to be used for this physical operator.boolean
getExpectedVariables
(ExpectedVariables... inputVars) Returns the variables that can be expected in the solution mappings produced by this operator if the input(s) to this operator contain solutions mappings with the given set(s) of variables.Returns the logical operator implemented by this physical operator.int
hashCode()
toString()
void
visit
(PhysicalPlanVisitor visitor) Methods inherited from class se.liu.ida.hefquin.engine.queryplan.physical.impl.BaseForPhysicalOps
getID
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface se.liu.ida.hefquin.engine.queryplan.physical.PhysicalOperator
getID
-
Field Details
-
lop
protected final LogicalOpRequest<ReqType extends DataRetrievalRequest,MemberType extends FederationMember> lop
-
-
Constructor Details
-
PhysicalOpRequest
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
getLogicalOperator
Description copied from interface:PhysicalOperatorForLogicalOperator
Returns the logical operator implemented by this physical operator.- Specified by:
getLogicalOperator
in interfaceNullaryPhysicalOpForLogicalOp
- Specified by:
getLogicalOperator
in interfacePhysicalOperatorForLogicalOperator
-
createExecOp
Description copied from interface:PhysicalOperator
Creates and returns the executable operator to be used for this physical operator. The implementation of this method has to create a newExecutableOperator
object each time it is called. The given collectExceptions flag is passed to the executable operator and determines whether that operator collects its exceptions (seeExecutableOperator.getExceptionsCaughtDuringExecution()
) or throws them immediately. The number ofExpectedVariables
objects passed as arguments to this method must be in line with the degree of this operator (e.g., for a unary operator, exactly one such object must be passed).- Specified by:
createExecOp
in interfaceNullaryPhysicalOp
- Specified by:
createExecOp
in interfacePhysicalOperator
-
getExpectedVariables
Description copied from interface:PhysicalOperator
Returns the variables that can be expected in the solution mappings produced by this operator if the input(s) to this operator contain solutions mappings with the given set(s) of variables. The number ofExpectedVariables
objects passed to this method must be in line with the degree of this operator (e.g., for a unary operator, exactly one such object must be passed).- Specified by:
getExpectedVariables
in interfacePhysicalOperator
-
visit
- Specified by:
visit
in interfacePhysicalOperator
-
toString
-