Source Code Cross Referenced for HTree.java in  » Database-DBMS » JDBM » jdbm » htree » 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 » JDBM » jdbm.htree 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * JDBM LICENSE v1.00
003:         *
004:         * Redistribution and use of this software and associated documentation
005:         * ("Software"), with or without modification, are permitted provided
006:         * that the following conditions are met:
007:         *
008:         * 1. Redistributions of source code must retain copyright
009:         *    statements and notices.  Redistributions must also contain a
010:         *    copy of this document.
011:         *
012:         * 2. Redistributions in binary form must reproduce the
013:         *    above copyright notice, this list of conditions and the
014:         *    following disclaimer in the documentation and/or other
015:         *    materials provided with the distribution.
016:         *
017:         * 3. The name "JDBM" must not be used to endorse or promote
018:         *    products derived from this Software without prior written
019:         *    permission of Cees de Groot.  For written permission,
020:         *    please contact cg@cdegroot.com.
021:         *
022:         * 4. Products derived from this Software may not be called "JDBM"
023:         *    nor may "JDBM" appear in their names without prior written
024:         *    permission of Cees de Groot.
025:         *
026:         * 5. Due credit should be given to the JDBM Project
027:         *    (http://jdbm.sourceforge.net/).
028:         *
029:         * THIS SOFTWARE IS PROVIDED BY THE JDBM PROJECT AND CONTRIBUTORS
030:         * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
031:         * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
032:         * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
033:         * CEES DE GROOT OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
034:         * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
035:         * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
036:         * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
037:         * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
038:         * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
039:         * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
040:         * OF THE POSSIBILITY OF SUCH DAMAGE.
041:         *
042:         * Copyright 2000 (C) Cees de Groot. All Rights Reserved.
043:         * Contributions are (C) Copyright 2000 by their associated contributors.
044:         *
045:         */package jdbm.htree;
046:
047:        import jdbm.RecordManager;
048:        import jdbm.helper.FastIterator;
049:        import java.io.IOException;
050:
051:        /**
052:         *  Persistent hashtable implementation for PageManager.
053:         *  Implemented as an H*Tree structure.
054:         *
055:         *  WARNING!  If this instance is used in a transactional context, it
056:         *            *must* be discarded after a rollback.
057:         *
058:         *  @author <a href="mailto:boisvert@intalio.com">Alex Boisvert</a>
059:         *  @version $Id: HTree.java,v 1.3 2005/06/25 23:12:32 doomdark Exp $
060:         */
061:        public class HTree {
062:
063:            /**
064:             * Root hash directory.
065:             */
066:            private HashDirectory _root;
067:
068:            /**
069:             * Private constructor
070:             *
071:             * @param root Root hash directory.
072:             */
073:            private HTree(HashDirectory root) {
074:                _root = root;
075:            }
076:
077:            /**
078:             * Create a persistent hashtable.
079:             *
080:             * @param recman Record manager used for persistence.
081:             */
082:            public static HTree createInstance(RecordManager recman)
083:                    throws IOException {
084:                HashDirectory root;
085:                long recid;
086:
087:                root = new HashDirectory((byte) 0);
088:                recid = recman.insert(root);
089:                root.setPersistenceContext(recman, recid);
090:
091:                return new HTree(root);
092:            }
093:
094:            /**
095:             * Load a persistent hashtable
096:             *
097:             * @param recman RecordManager used to store the persistent hashtable
098:             * @param root_recid Record id of the root directory of the HTree
099:             */
100:            public static HTree load(RecordManager recman, long root_recid)
101:                    throws IOException {
102:                HTree tree;
103:                HashDirectory root;
104:
105:                root = (HashDirectory) recman.fetch(root_recid);
106:                root.setPersistenceContext(recman, root_recid);
107:                tree = new HTree(root);
108:                return tree;
109:            }
110:
111:            /**
112:             * Associates the specified value with the specified key.
113:             *
114:             * @param key key with which the specified value is to be assocated.
115:             * @param value value to be associated with the specified key.
116:             */
117:            public synchronized void put(Object key, Object value)
118:                    throws IOException {
119:                _root.put(key, value);
120:            }
121:
122:            /**
123:             * Returns the value which is associated with the given key. Returns
124:             * <code>null</code> if there is not association for this key.
125:             *
126:             * @param key key whose associated value is to be returned
127:             */
128:            public synchronized Object get(Object key) throws IOException {
129:                return _root.get(key);
130:            }
131:
132:            /**
133:             * Remove the value which is associated with the given key.  If the
134:             * key does not exist, this method simply ignores the operation.
135:             *
136:             * @param key key whose associated value is to be removed
137:             */
138:            public synchronized void remove(Object key) throws IOException {
139:                _root.remove(key);
140:            }
141:
142:            /**
143:             * Returns an enumeration of the keys contained in this
144:             */
145:            public synchronized FastIterator keys() throws IOException {
146:                return _root.keys();
147:            }
148:
149:            /**
150:             * Returns an enumeration of the values contained in this
151:             */
152:            public synchronized FastIterator values() throws IOException {
153:                return _root.values();
154:            }
155:
156:            /**
157:             * Get the record identifier used to load this hashtable.
158:             */
159:            public long getRecid() {
160:                return _root.getRecid();
161:            }
162:
163:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.