Uses of Interface
se.liu.ida.hefquin.engine.queryplan.physical.PhysicalOperator
Packages that use PhysicalOperator
Package
Description
-
Uses of PhysicalOperator in se.liu.ida.hefquin.engine.queryplan.physical
Subinterfaces of PhysicalOperator in se.liu.ida.hefquin.engine.queryplan.physicalModifier and TypeInterfaceDescriptioninterface
An interface for any type ofPhysicalOperator
whose algorithm consumes two sequences of solution mappings as input.interface
An interface for any type ofPhysicalOperator
that directly implements a particular logical operator that has an arity of two.interface
An interface for any type ofPhysicalOperator
whose algorithm consumes an arbitrary number of sequences of solution mappings as input.interface
An interface for any type ofPhysicalOperator
that directly implements a particular logical operator that has an arbitrary arity.interface
An interface for any type ofPhysicalOperator
whose algorithm does not consume any input (but produces a sequence of solution mappings as output).interface
An interface for any type ofPhysicalOperator
that directly implements a particular logical operator that has an arity of zero.interface
An interface for any type ofPhysicalOperator
that directly implements a particular logical operator.interface
An interface for any type ofPhysicalOperator
whose algorithm consumes a single sequence of solution mappings as input.interface
An interface for any type ofPhysicalOperator
that directly implements a particular logical operator that has an arity of one.Methods in se.liu.ida.hefquin.engine.queryplan.physical that return PhysicalOperatorModifier and TypeMethodDescriptionPhysicalPlan.getRootOperator()
Returns the root operator of this plan. -
Uses of PhysicalOperator in se.liu.ida.hefquin.engine.queryplan.physical.impl
Classes in se.liu.ida.hefquin.engine.queryplan.physical.impl that implement PhysicalOperatorModifier and TypeClassDescriptionclass
Base class for physical operators that implement some form of a binary join algorithm; i.e., these algorithms consume two sequences of input solution mappings (produced by the two sub-plans under this operator) and join these the solution mappings from these two sequences locally (i.e., within in the engine rather than by interacting with any federation member).class
Base class for physical operators that implement some form of a multi-way join algorithm.class
Base class for physical operators that implement some form of a multi-way left join algorithm.class
Top-level base class for all implementations ofPhysicalOperator
.class
Base class for physical operators that implement some form of a join algorithm that consumes only one input and produces the other input as part of the algorithm itself.class
A physical operator that implements a binary union.class
A physical operator that implements (a batching version of) the bind join algorithm for cases in which the federation member accessed by the algorithm supports the brTPF interface.class
A physical operator that implements (a batching version of) the bind join algorithm using FILTERs to capture the potential join partners that are sent to the federation member.class
A physical operator that implements (a batching version of) the bind join algorithm using UNION.class
A physical operator that implements (a batching version of) the bind join algorithm using a VALUES clause to capture the potential join partners that are sent to the federation member.class
A physical operator that filters the input solution mappings.class
A physical operator that applies a given vocabulary mapping to all input solution mappings, converting them from using global vocabulary terms to using local vocabulary terms.class
A physical operator that implements the hash join algorithm to perform an inner join of two sequences of input solution mappings (produced by the two sub-plans under this operator).class
A physical operator that implements the hash join algorithm to perform a right outer join of two sequences of input solution mappings (produced by the two sub-plans under this operator).class
A physical operator that implements a version of the index nested loops join algorithm where the federation member is used as an index to request join partners for the input solution mappings.class
A physical operator that applies a given vocabulary mapping to all input solution mappings, converting them from using local vocabulary terms to using global vocabulary terms.class
A physical operator that implements a multi-way union.class
A physical operator that implements a local (!)class
A physical operator that implements a left-outer join for multiple optional parts; as a unary operator, the operator has a single input, which provides the solutions of the non-optional part.class
PhysicalOpRequest<ReqType extends DataRetrievalRequest,
MemberType extends FederationMember> A physical operator that performs a request at a federation member and, then, outputs the solution mappings obtained via this request.class
A physical operator that implements the symmetric hash join algorithm to perform an inner join of two sequences of input solution mappings (produced by the two sub-plans under this operator). -
Uses of PhysicalOperator in se.liu.ida.hefquin.engine.queryplan.utils
Methods in se.liu.ida.hefquin.engine.queryplan.utils that return PhysicalOperatorModifier and TypeMethodDescriptionstatic PhysicalOperator
LogicalToPhysicalOpConverter.convert
(LogicalOperator lop) Methods in se.liu.ida.hefquin.engine.queryplan.utils with parameters of type PhysicalOperatorModifier and TypeMethodDescriptionstatic UnaryLogicalOp
LogicalOpUtils.createLogicalAddOpFromPhysicalReqOp
(PhysicalOperator op) static UnaryLogicalOp
LogicalOpUtils.createLogicalOptAddOpFromPhysicalReqOp
(PhysicalOperator op) static PhysicalPlan
PhysicalPlanFactory.createPlan
(PhysicalOperator lop, PhysicalPlan... subplans) Creates a physical plan in which the root operator is the default physical operator for the given logical operator, as perLogicalToPhysicalOpConverter
.Method parameters in se.liu.ida.hefquin.engine.queryplan.utils with type arguments of type PhysicalOperatorModifier and TypeMethodDescriptionstatic PhysicalPlan
PhysicalPlanFactory.createPlanBasedOnTypeOfGivenPhysicalOp
(LogicalOpBGPAdd lop, Class<? extends PhysicalOperator> opClass, PhysicalPlan subplan) Creates a physical plan with a bgpAdd as root operator. -
Uses of PhysicalOperator in se.liu.ida.hefquin.engine.queryproc.impl.poptimizer.costmodel
Methods in se.liu.ida.hefquin.engine.queryproc.impl.poptimizer.costmodel with parameters of type PhysicalOperatorModifier and TypeMethodDescriptionprotected IllegalArgumentException
CFRBase.createIllegalArgumentException
(PhysicalOperator rootOp) -
Uses of PhysicalOperator in se.liu.ida.hefquin.engine.queryproc.impl.poptimizer.rewriting.rules
Methods in se.liu.ida.hefquin.engine.queryproc.impl.poptimizer.rewriting.rules with parameters of type PhysicalOperatorModifier and TypeMethodDescriptionstatic boolean
IdentifyLogicalOp.isBGPAdd
(PhysicalOperator op) static boolean
IdentifyLogicalOp.isBGPAddWithFm
(PhysicalOperator op, FederationMember fm) static boolean
IdentifyTypeOfRequestUsedForReq.isBGPRequest
(PhysicalOperator op) static boolean
IdentifyTypeOfRequestUsedForReq.isBGPRequestOverSPARQLEndpoint
(PhysicalOperator op) static boolean
IdentifyTypeOfRequestUsedForReq.isBGPRequestWithFm
(PhysicalOperator op, FederationMember fm) static boolean
IdentifyPhysicalOpUsedForTPAdd.isBindJoin
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForBGPAdd.isBindJoinFILTER
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForTPAdd.isBindJoinFILTER
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForBGPAdd.isBindJoinUNION
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForTPAdd.isBindJoinUNION
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForBGPAdd.isBindJoinVALUES
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForTPAdd.isBindJoinVALUES
(PhysicalOperator pop) static boolean
IdentifyTypeOfRequestUsedForReq.isGraphPatternReqWithFm
(PhysicalOperator op, FederationMember fm) static boolean
IdentifyPhysicalOpUsedForBGPAdd.isIndexNLJ
(PhysicalOperator pop) static boolean
IdentifyPhysicalOpUsedForTPAdd.isIndexNLJ
(PhysicalOperator pop) static boolean
IdentifyLogicalOp.isJoin
(PhysicalOperator op) static boolean
IdentifyLogicalOp.isMultiwayJoin
(PhysicalOperator op) static boolean
IdentifyLogicalOp.isMultiwayUnion
(PhysicalOperator op) static boolean
IdentifyLogicalOp.isTPAdd
(PhysicalOperator op) static boolean
IdentifyTypeOfRequestUsedForReq.isTriplePatternRequest
(PhysicalOperator op) static boolean
IdentifyTypeOfRequestUsedForReq.isTriplePatternRequestWithFm
(PhysicalOperator op, FederationMember fm) static boolean
IdentifyLogicalOp.isUnion
(PhysicalOperator op) static boolean
IdentifyTypeOfRequestUsedForReq.twoGraphPatternReqWithSameSPARQLEndpoint
(PhysicalOperator subPlanOp1, PhysicalOperator subPlanOp2)