/************************************************************************************** * Copyright (C) 2008 EsperTech, Inc. All rights reserved. * * http://esper.codehaus.org * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * **************************************************************************************/ package com.espertech.esper.epl.join.plan; import com.espertech.esper.client.EventType; import com.espertech.esper.epl.join.assemble.BaseAssemblyNode; import com.espertech.esper.epl.join.exec.base.ExecNode; import com.espertech.esper.epl.join.exec.base.LookupInstructionExec; import com.espertech.esper.epl.join.exec.base.LookupInstructionExecNode; import com.espertech.esper.epl.join.table.EventTable; import com.espertech.esper.epl.join.table.HistoricalStreamIndexList; import com.espertech.esper.epl.virtualdw.VirtualDWView; import com.espertech.esper.util.IndentWriter; import com.espertech.esper.view.Viewable; import java.lang.annotation.Annotation; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Map; /** * Query plan for executing a set of lookup instructions and assembling an end result via * a set of assembly instructions. */ public class LookupInstructionQueryPlanNode extends QueryPlanNode { private final int rootStream; private final String rootStreamName; private final int numStreams; private final List<LookupInstructionPlan> lookupInstructions; private final boolean[] requiredPerStream; private final List<BaseAssemblyNode> assemblyInstructions; /** * Ctor. * @param rootStream is the stream supplying the lookup event * @param rootStreamName is the name of the stream supplying the lookup event * @param numStreams is the number of streams * @param lookupInstructions is a list of lookups to perform * @param requiredPerStream indicates which streams are required and which are optional in the lookup * @param assemblyInstructions is the bottom-up assembly nodes to assemble a lookup result nodes */ public LookupInstructionQueryPlanNode(int rootStream, String rootStreamName, int numStreams, boolean[] requiredPerStream, List<LookupInstructionPlan> lookupInstructions, List<BaseAssemblyNode> assemblyInstructions) { this.rootStream = rootStream; this.rootStreamName = rootStreamName; this.lookupInstructions = lookupInstructions; this.numStreams = numStreams; this.requiredPerStream = requiredPerStream; this.assemblyInstructions = assemblyInstructions; } public ExecNode makeExec(String statementName, String statementId, Annotation[] annotations, Map<String, EventTable>[] indexesPerStream, EventType[] streamTypes, Viewable[] streamViews, HistoricalStreamIndexList[] historicalStreamIndexLists, VirtualDWView[] viewExternal) { LookupInstructionExec execs[] = new LookupInstructionExec[lookupInstructions.size()]; int count = 0; for (LookupInstructionPlan instruction : lookupInstructions) { LookupInstructionExec exec = instruction.makeExec(statementName, statementId, annotations, indexesPerStream, streamTypes, streamViews, historicalStreamIndexLists, viewExternal); execs[count] = exec; count++; } return new LookupInstructionExecNode(rootStream, rootStreamName, numStreams, execs, requiredPerStream, assemblyInstructions.toArray(new BaseAssemblyNode[assemblyInstructions.size()])); } @Override public void addIndexes(HashSet<String> usedIndexes) { for (LookupInstructionPlan plan : lookupInstructions) { plan.addIndexes(usedIndexes); } } protected void print(IndentWriter writer) { writer.println("LookupInstructionQueryPlanNode" + " rootStream=" + rootStream + " requiredPerStream=" + Arrays.toString(requiredPerStream)); writer.incrIndent(); for (int i = 0; i < lookupInstructions.size(); i++) { writer.println("lookup step " + i); writer.incrIndent(); lookupInstructions.get(i).print(writer); writer.decrIndent(); } writer.decrIndent(); writer.incrIndent(); for (int i = 0; i < assemblyInstructions.size(); i++) { writer.println("assembly step " + i); writer.incrIndent(); assemblyInstructions.get(i).print(writer); writer.decrIndent(); } writer.decrIndent(); } }