Source Code Cross Referenced for ParserImpl.java in  » Database-DBMS » db-derby-10.2 » org » apache » derby » impl » sql » compile » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database DBMS » db derby 10.2 » org.apache.derby.impl.sql.compile 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:
003:           Derby - Class org.apache.derby.impl.sql.compile.ParserImpl
004:
005:           Licensed to the Apache Software Foundation (ASF) under one or more
006:           contributor license agreements.  See the NOTICE file distributed with
007:           this work for additional information regarding copyright ownership.
008:           The ASF licenses this file to you under the Apache License, Version 2.0
009:           (the "License"); you may not use this file except in compliance with
010:           the License.  You may obtain a copy of the License at
011:
012:              http://www.apache.org/licenses/LICENSE-2.0
013:
014:           Unless required by applicable law or agreed to in writing, software
015:           distributed under the License is distributed on an "AS IS" BASIS,
016:           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017:           See the License for the specific language governing permissions and
018:           limitations under the License.
019:
020:         */
021:
022:        package org.apache.derby.impl.sql.compile;
023:
024:        import org.apache.derby.impl.sql.compile.QueryTreeNode;
025:        import org.apache.derby.iapi.sql.compile.Parser;
026:        import org.apache.derby.iapi.sql.Statement;
027:        import org.apache.derby.iapi.sql.compile.CompilerContext;
028:
029:        import org.apache.derby.iapi.reference.SQLState;
030:        import org.apache.derby.iapi.error.StandardException;
031:        import org.apache.derby.iapi.services.sanity.SanityManager;
032:
033:        public class ParserImpl implements  Parser {
034:            /*
035:             ** We will use the following constant to pass in to
036:             ** our CharStream.  It is the size of the internal
037:             ** buffers that are used to buffer tokens.  It
038:             ** should be set to what is typically around the
039:             ** largest token that is likely to be hit.  Note
040:             ** that if the size is exceeded, the buffer will
041:             ** automatically be expanded by 2048, so it is ok
042:             ** to choose something that is smaller than the
043:             ** max token supported.
044:             **
045:             ** Since, JavaCC generates parser and tokenmanagers classes
046:             ** tightly connected, to use another parser or tokenmanager
047:             ** inherit this class, override the following methods
048:             ** to use specific instances:<ul>
049:             ** <li>getTokenManager()</li>
050:             ** <li>getParser()</li>
051:             ** <li>parseGoalProduction(...)</li>
052:             ** </ul>
053:             **
054:             */
055:            static final int LARGE_TOKEN_SIZE = 128;
056:
057:            /* Don't ever access these objects directly, call getParser(), and getTokenManager() */
058:            protected Object cachedParser;
059:            protected Object cachedTokenManager;
060:
061:            protected CharStream charStream;
062:            protected String SQLtext;
063:
064:            protected final CompilerContext cc;
065:
066:            /**
067:             * Constructor for Parser
068:             */
069:
070:            public ParserImpl(CompilerContext cc) {
071:                this .cc = cc;
072:            }
073:
074:            public QueryTreeNode parseStatement(String statementSQLText)
075:                    throws StandardException {
076:                return parseStatement(statementSQLText, (Object[]) null);
077:            }
078:
079:            /**
080:             * Returns a initialized (clean) TokenManager, paired w. the Parser in getParser,
081:             * Appropriate for this ParserImpl object.
082:             */
083:            protected Object getTokenManager() {
084:                /* returned a cached tokenmanager if already exists, otherwise create */
085:                SQLParserTokenManager tm = (SQLParserTokenManager) cachedTokenManager;
086:                if (tm == null) {
087:                    tm = new SQLParserTokenManager(charStream);
088:                    cachedTokenManager = tm;
089:                } else {
090:                    tm.ReInit(charStream);
091:                }
092:                return tm;
093:            }
094:
095:            /**
096:             * new parser, appropriate for the ParserImpl object.
097:             */
098:            protected Object getParser() {
099:                SQLParserTokenManager tm = (SQLParserTokenManager) getTokenManager();
100:                /* returned a cached Parser if already exists, otherwise create */
101:                SQLParser p = (SQLParser) cachedParser;
102:                if (p == null) {
103:                    p = new SQLParser(tm);
104:                    p.setCompilerContext(cc);
105:                    cachedParser = p;
106:                } else {
107:                    p.ReInit(tm);
108:                }
109:                return p;
110:            }
111:
112:            /**
113:             * Parse a statement and return a query tree.  Implements the Parser
114:             * interface
115:             *
116:             * @param statementSQLText	Statement to parse
117:             * @param paramDefaults	parameter defaults. Passed around as an array
118:             *                      of objects, but is really an array of StorableDataValues
119:             * @return	A QueryTree representing the parsed statement
120:             *
121:             * @exception StandardException	Thrown on error
122:             */
123:
124:            public QueryTreeNode parseStatement(String statementSQLText,
125:                    Object[] paramDefaults) throws StandardException {
126:
127:                java.io.Reader sqlText = new java.io.StringReader(
128:                        statementSQLText);
129:
130:                /* Get a char stream if we don't have one already */
131:                if (charStream == null) {
132:                    charStream = new UCode_CharStream(sqlText, 1, 1,
133:                            LARGE_TOKEN_SIZE);
134:                } else {
135:                    charStream.ReInit(sqlText, 1, 1, LARGE_TOKEN_SIZE);
136:                }
137:
138:                /* remember the string that we're parsing */
139:                SQLtext = statementSQLText;
140:
141:                /* Parse the statement, and return the QueryTree */
142:                try {
143:                    return parseGoalProduction(statementSQLText, paramDefaults);
144:                } catch (ParseException e) {
145:                    throw StandardException.newException(
146:                            SQLState.LANG_SYNTAX_ERROR, e.getMessage());
147:                } catch (TokenMgrError e) {
148:                    throw StandardException.newException(
149:                            SQLState.LANG_LEXICAL_ERROR, e.getMessage());
150:                }
151:            }
152:
153:            /**
154:             * Parse the goal production, e.g. "statement" for the normal SQL parser.
155:             *
156:             * @param statementSQLText The Statement to parse
157:             * @param paramDefaults	parameter defaults.  Passed around as an array
158:             *						of objects, but is really an array of StorableDataValues
159:             *
160:             * @return	A QueryTree representing the parsed statement
161:             *
162:             * @exception ParseException
163:             * @exception TokenMgrError
164:             */
165:            protected QueryTreeNode parseGoalProduction(
166:                    String statementSQLText, Object[] paramDefaults)
167:                    throws ParseException, TokenMgrError, StandardException {
168:                SQLParser p = (SQLParser) getParser();
169:                return p.Statement(statementSQLText, paramDefaults);
170:            } // End of parseGoalProduction
171:
172:            /**
173:             * Returns the current SQL text string that is being parsed.
174:             *
175:             * @return	Current SQL text string.
176:             *
177:             */
178:            public String getSQLtext() {
179:                return SQLtext;
180:            }
181:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.