DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
BreakStatementNode.cs
Go to the documentation of this file.
1 //
2 // Copyright 2010-2015 Deveel
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 
17 using System;
18 
21 
22 namespace Deveel.Data.Sql.Parser {
24  public string Label { get; private set; }
25 
26  public IExpressionNode WhenExpression { get; private set; }
27 
28  protected override ISqlNode OnChildNode(ISqlNode node) {
29  if (node.NodeName.Equals("label_opt")) {
30  Label = node.FindNode<StringLiteralNode>().Value;
31  } else if (node.NodeName.Equals("when_opt")) {
32  WhenExpression = node.FindNode<IExpressionNode>();
33  }
34 
35  return base.OnChildNode(node);
36  }
37 
38  protected override void BuildStatement(StatementBuilder builder) {
39  SqlExpression exp = null;
40  if (WhenExpression != null)
41  exp = ExpressionBuilder.Build(WhenExpression);
42 
43  builder.Statements.Add(new LoopControlStatement(LoopControlType.Break, Label, exp));
44  }
45  }
46 }
Defines the contract for nodes in an AST model for a SQL grammar analysis and parsing.
Definition: ISqlNode.cs:25
override void BuildStatement(StatementBuilder builder)
string NodeName
Gets the name of the node analyzed from the parser.
Definition: ISqlNode.cs:29
static SqlExpression Build(IExpressionNode node)
override ISqlNode OnChildNode(ISqlNode node)
During the initialization of the node from the parser, this method is called for every child node add...
ICollection< IStatement > Statements
A node containing a constant literal string passed within an SQL command.
Defines the base class for instances that represent SQL expression tree nodes.
This interface acts like a marker that indicates if a ISqlNode represents a SQL expression.