/** * Copyright 2011-2013 Akiban Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* The original from which this derives bore the following: */ /* Derby - Class org.apache.derby.impl.sql.compile.CreateTriggerNode Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.akiban.sql.parser; import com.akiban.sql.StandardException; import java.util.List; import java.util.Iterator; /** * A CreateTriggerNode is the root of a QueryTree * that represents a CREATE TRIGGER * statement. * */ public class CreateTriggerNode extends DDLStatementNode { public static final int TRIGGER_EVENT_UPDATE = 1; public static final int TRIGGER_EVENT_DELETE = 2; public static final int TRIGGER_EVENT_INSERT = 4; private TableName triggerName; private TableName tableName; private int triggerEventMask; private ResultColumnList triggerCols; private boolean isBefore; private boolean isRow; private boolean isEnabled; private List<TriggerReferencingStruct> refClause; private ValueNode whenClause; private String whenText; private int whenOffset; private StatementNode actionNode; private String actionText; private String originalActionText; // text w/o trim of spaces private int actionOffset; /** * Initializer for a CreateTriggerNode * * @param triggerName name of the trigger * @param tableName name of the table which the trigger is declared upon * @param triggerEventMask TRIGGER_EVENT_XXX * @param triggerCols columns trigger is to fire upon. Valid for UPDATE case only. * @param isBefore is before trigger (false for after) * @param isRow true for row trigger, false for statement * @param isEnabled true if enabled * @param refClause the referencing clause * @param whenClause the WHEN clause tree * @param whenText the text of the WHEN clause * @param whenOffset offset of start of WHEN clause * @param actionNode the trigger action tree * @param actionText the text of the trigger action * @param actionOffset offset of start of action clause * * @exception StandardException Thrown on error */ public void init (Object triggerName, Object tableName, Object triggerEventMask, Object triggerCols, Object isBefore, Object isRow, Object isEnabled, Object refClause, Object whenClause, Object whenText, Object whenOffset, Object actionNode, Object actionText, Object actionOffset) throws StandardException { initAndCheck(triggerName); this.triggerName = (TableName)triggerName; this.tableName = (TableName)tableName; this.triggerEventMask = ((Integer)triggerEventMask).intValue(); this.triggerCols = (ResultColumnList)triggerCols; this.isBefore = ((Boolean)isBefore).booleanValue(); this.isRow = ((Boolean)isRow).booleanValue(); this.isEnabled = ((Boolean)isEnabled).booleanValue(); this.refClause = (List<TriggerReferencingStruct>)refClause; this.whenClause = (ValueNode)whenClause; this.whenText = (whenText == null) ? null : ((String)whenText).trim(); this.whenOffset = ((Integer)whenOffset).intValue(); this.actionNode = (StatementNode)actionNode; this.originalActionText = (String)actionText; this.actionText = (actionText == null) ? null : ((String)actionText).trim(); this.actionOffset = ((Integer)actionOffset).intValue(); implicitCreateSchema = true; } /** * Fill this node with a deep copy of the given node. */ public void copyFrom(QueryTreeNode node) throws StandardException { super.copyFrom(node); CreateTriggerNode other = (CreateTriggerNode)node; this.triggerName = (TableName)getNodeFactory().copyNode(other.triggerName, getParserContext()); this.tableName = (TableName)getNodeFactory().copyNode(other.tableName, getParserContext()); this.triggerEventMask = other.triggerEventMask; this.triggerCols = (ResultColumnList)getNodeFactory().copyNode(other.triggerCols, getParserContext()); this.isBefore = other.isBefore; this.isRow = other.isRow; this.isEnabled = other.isEnabled; this.refClause = other.refClause; this.whenClause = (ValueNode)getNodeFactory().copyNode(other.whenClause, getParserContext()); this.whenText = other.whenText; this.whenOffset = other.whenOffset; this.actionNode = (StatementNode)getNodeFactory().copyNode(other.actionNode, getParserContext()); this.actionText = other.actionText; this.originalActionText = other.originalActionText; this.actionOffset = other.actionOffset; } public String statementToString() { return "CREATE TRIGGER"; } /** * Prints the sub-nodes of this object. See QueryTreeNode.java for * how tree printing is supposed to work. * * @param depth The depth of this node in the tree */ public void printSubNodes(int depth) { super.printSubNodes(depth); if (triggerCols != null) { printLabel(depth, "triggerColumns: "); triggerCols.treePrint(depth + 1); } if (whenClause != null) { printLabel(depth, "whenClause: "); whenClause.treePrint(depth + 1); } if (actionNode != null) { printLabel(depth, "actionNode: "); actionNode.treePrint(depth + 1); } } /** * Convert this object to a String. See comments in QueryTreeNode.java * for how this should be done for tree printing. * * @return This object as a String */ public String toString() { String refString = "null"; if (refClause != null) { StringBuffer buf = new StringBuffer(); for (TriggerReferencingStruct trn : refClause) { buf.append("\t"); buf.append(trn.toString()); buf.append("\n"); } refString = buf.toString(); } return super.toString() + "tableName: "+tableName+ "\ntriggerEventMask: "+triggerEventMask+ "\nisBefore: "+isBefore+ "\nisRow: "+isRow+ "\nisEnabled: "+isEnabled+ "\nwhenText: "+whenText+ "\nrefClause: "+refString+ "\nactionText: "+actionText+ "\n"; } }