Source Code Cross Referenced for ConsistencyChecker.java in  » Database-DBMS » db-derby-10.2 » org » apache » derbyTesting » functionTests » util » 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.derbyTesting.functionTests.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:
003:           Derby - Class org.apache.derbyTesting.functionTests.util.ConsistencyChecker
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.derbyTesting.functionTests.util;
023:
024:        import org.apache.derby.iapi.error.StandardException;
025:
026:        import org.apache.derby.iapi.sql.dictionary.DataDictionaryContext;
027:        import org.apache.derby.iapi.sql.dictionary.DataDictionary;
028:        import org.apache.derby.iapi.sql.dictionary.SchemaDescriptor;
029:        import org.apache.derby.iapi.sql.dictionary.TableDescriptor;
030:        import org.apache.derby.iapi.sql.dictionary.ColumnDescriptor;
031:        import org.apache.derby.iapi.sql.dictionary.ConglomerateDescriptor;
032:
033:        import org.apache.derby.iapi.sql.depend.DependencyManager;
034:
035:        import org.apache.derby.iapi.sql.execute.ExecutionContext;
036:
037:        import org.apache.derby.iapi.types.DataValueFactory;
038:
039:        import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;
040:
041:        import org.apache.derby.iapi.store.access.TransactionController;
042:        import org.apache.derby.iapi.types.RowLocation;
043:        import org.apache.derby.iapi.store.access.ScanController;
044:        import org.apache.derby.iapi.store.access.ConglomerateController;
045:
046:        import org.apache.derby.iapi.services.context.ContextService;
047:
048:        import org.apache.derby.iapi.services.io.FormatableBitSet;
049:
050:        /**
051:         * This class provides static methods for checking the consistency of database
052:         * objects like tables.
053:         */
054:        public class ConsistencyChecker {
055:
056:            /**
057:             * Run all of the consistency checkers which do not take parameters.
058:             * Actually, just run the ones that "make sense" to run.  Today,
059:             * that is:
060:             *		countOpens()
061:             *
062:             * @return String		If an inconsistency is found, and if DEBUG is on, 
063:             *						then a string will be returned with more info.  
064:             *						If DEBUG is off, then a simple string will be 
065:             *						returned stating whether or not there are open scans.
066:             *
067:             * @exception StandardException		Thrown on error
068:             * @exception java.sql.SQLException		Thrown on error
069:             */
070:            public static String runConsistencyChecker()
071:                    throws StandardException, java.sql.SQLException {
072:                return countOpens() + countDependencies();
073:            }
074:
075:            /**
076:             * Check to make sure that there are no open conglomerates, scans or sorts.
077:             *
078:             * @return String		If an inconsistency is found, and if DEBUG is on, 
079:             *						then a string will be returned with more info.  
080:             *						If DEBUG is off, then a simple string will be 
081:             *						returned stating whether or not there are open scans.
082:             *
083:             * @exception StandardException		Thrown on error
084:             */
085:            public static String countOpens() throws StandardException {
086:                int numOpens = 0;
087:                LanguageConnectionContext lcc;
088:                String output = "No open scans, etc.\n";
089:                TransactionController tc;
090:
091:                lcc = (LanguageConnectionContext) ContextService
092:                        .getContext(LanguageConnectionContext.CONTEXT_ID);
093:                tc = lcc.getTransactionExecute();
094:
095:                numOpens = tc.countOpens(TransactionController.OPEN_TOTAL);
096:
097:                if (numOpens > 0) {
098:                    output = numOpens
099:                            + " conglomerates/scans/sorts found open\n";
100:
101:                }
102:
103:                return output;
104:            }
105:
106:            /**
107:             * Check to make sure that there are no active dependencies (stored or
108:             * in memory).
109:             *
110:             * @return String		If an inconsistency is found, and if DEBUG is on, 
111:             *						then a string will be returned with more info.  
112:             *						If DEBUG is off, then a simple string will be 
113:             *						returned stating whether or not there are open scans.
114:             *
115:             * @exception StandardException		Thrown on error
116:             * @exception java.sql.SQLException		Thrown on error
117:             */
118:            public static String countDependencies() throws StandardException,
119:                    java.sql.SQLException {
120:                int numDependencies = 0;
121:                DataDictionary dd;
122:                DataDictionaryContext ddc;
123:                DependencyManager dm;
124:                StringBuffer debugBuf = new StringBuffer();
125:
126:                ddc = (DataDictionaryContext) (ContextService
127:                        .getContext(DataDictionaryContext.CONTEXT_ID));
128:
129:                dd = ddc.getDataDictionary();
130:                dm = dd.getDependencyManager();
131:
132:                numDependencies = dm.countDependencies();
133:
134:                if (numDependencies > 0) {
135:                    debugBuf.append(numDependencies + " dependencies found");
136:                } else {
137:                    debugBuf.append("No outstanding dependencies.\n");
138:                }
139:
140:                return debugBuf.toString();
141:            }
142:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.