Java Doc for BaseRecordManager.java in  » Database-DBMS » JDBM » jdbm » recman » 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.recman 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   jdbm.recman.BaseRecordManager

BaseRecordManager
final public class BaseRecordManager implements RecordManager(Code)
This class manages records, which are uninterpreted blobs of data. The set of operations is simple and straightforward: you communicate with the class using long "rowids" and byte[] data blocks. Rowids are returned on inserts and you can stash them away someplace safe to be able to get back to them. Data blocks can be as long as you wish, and may have lengths different from the original when updating.

Operations are synchronized, so that only one of them will happen concurrently even if you hammer away from multiple threads. Operations are made atomic by keeping a transaction log which is recovered after a crash, so the operations specified by this interface all have ACID properties.

You identify a file by just the name. The package attaches .db for the database file, and .lg for the transaction log. The transaction log is synchronized regularly and then restarted, so don't worry if you see the size going up and down.
author:
   Alex Boisvert
author:
   Cees de Groot
version:
   $Id: BaseRecordManager.java,v 1.8 2005/06/25 23:12:32 doomdark Exp $



Field Summary
final public static  booleanDEBUG
    
final public static  intNAME_DIRECTORY_ROOT
     Reserved slot for name directory.

Constructor Summary
public  BaseRecordManager(String filename)
    

Method Summary
public synchronized  voidclose()
     Closes the record manager.
public synchronized  voidcommit()
     Commit (make persistent) all changes since beginning of transaction.
public synchronized  voiddelete(long recid)
     Deletes a record.
public synchronized  voiddisableTransactions()
     Switches off transactioning for the record manager.
public  Objectfetch(long recid)
     Fetches a record using standard java object serialization.
Parameters:
  recid - the recid for the record that must be fetched.
public synchronized  Objectfetch(long recid, Serializer serializer)
     Fetches a record using a custom serializer.
public  longgetNamedObject(String name)
     Obtain the record id of a named object.
public synchronized  longgetRoot(int id)
     Returns the indicated root rowid.
public  intgetRootCount()
     Returns the number of slots available for "root" rowids.
public synchronized  TransactionManagergetTransactionManager()
    
public  longinsert(Object obj)
     Inserts a new record using standard java object serialization.
Parameters:
  obj - the object for the new record.
public synchronized  longinsert(Object obj, Serializer serializer)
     Inserts a new record using a custom serializer.
public synchronized  voidrollback()
     Rollback (cancel) all changes since beginning of transaction.
public  voidsetNamedObject(String name, long recid)
     Set the record id of a named object.
public synchronized  voidsetRoot(int id, long rowid)
     Sets the indicated root rowid.
public  voidupdate(long recid, Object obj)
     Updates a record using standard java object serialization.
public synchronized  voidupdate(long recid, Object obj, Serializer serializer)
     Updates a record using a custom serializer.

Field Detail
DEBUG
final public static boolean DEBUG(Code)
Static debugging flag



NAME_DIRECTORY_ROOT
final public static int NAME_DIRECTORY_ROOT(Code)
Reserved slot for name directory.




Constructor Detail
BaseRecordManager
public BaseRecordManager(String filename) throws IOException(Code)
Creates a record manager for the indicated file
throws:
  IOException - when the file cannot be opened or is nota valid file content-wise.




Method Detail
close
public synchronized void close() throws IOException(Code)
Closes the record manager.
throws:
  IOException - when one of the underlying I/O operations fails.



commit
public synchronized void commit() throws IOException(Code)
Commit (make persistent) all changes since beginning of transaction.



delete
public synchronized void delete(long recid) throws IOException(Code)
Deletes a record.
Parameters:
  recid - the rowid for the record that should be deleted.
throws:
  IOException - when one of the underlying I/O operations fails.



disableTransactions
public synchronized void disableTransactions()(Code)
Switches off transactioning for the record manager. This means that a) a transaction log is not kept, and b) writes aren't synch'ed after every update. This is useful when batch inserting into a new database.

Only call this method directly after opening the file, otherwise the results will be undefined.




fetch
public Object fetch(long recid) throws IOException(Code)
Fetches a record using standard java object serialization.
Parameters:
  recid - the recid for the record that must be fetched. the object contained in the record.
throws:
  IOException - when one of the underlying I/O operations fails.



fetch
public synchronized Object fetch(long recid, Serializer serializer) throws IOException(Code)
Fetches a record using a custom serializer.
Parameters:
  recid - the recid for the record that must be fetched.
Parameters:
  serializer - a custom serializer the object contained in the record.
throws:
  IOException - when one of the underlying I/O operations fails.



getNamedObject
public long getNamedObject(String name) throws IOException(Code)
Obtain the record id of a named object. Returns 0 if named object doesn't exist.



getRoot
public synchronized long getRoot(int id) throws IOException(Code)
Returns the indicated root rowid.
See Also:   BaseRecordManager.getRootCount



getRootCount
public int getRootCount()(Code)
Returns the number of slots available for "root" rowids. These slots can be used to store special rowids, like rowids that point to other rowids. Root rowids are useful for bootstrapping access to a set of data.



getTransactionManager
public synchronized TransactionManager getTransactionManager()(Code)
Get the underlying Transaction Manager



insert
public long insert(Object obj) throws IOException(Code)
Inserts a new record using standard java object serialization.
Parameters:
  obj - the object for the new record. the rowid for the new record.
throws:
  IOException - when one of the underlying I/O operations fails.



insert
public synchronized long insert(Object obj, Serializer serializer) throws IOException(Code)
Inserts a new record using a custom serializer.
Parameters:
  obj - the object for the new record.
Parameters:
  serializer - a custom serializer the rowid for the new record.
throws:
  IOException - when one of the underlying I/O operations fails.



rollback
public synchronized void rollback() throws IOException(Code)
Rollback (cancel) all changes since beginning of transaction.



setNamedObject
public void setNamedObject(String name, long recid) throws IOException(Code)
Set the record id of a named object.



setRoot
public synchronized void setRoot(int id, long rowid) throws IOException(Code)
Sets the indicated root rowid.
See Also:   BaseRecordManager.getRootCount



update
public void update(long recid, Object obj) throws IOException(Code)
Updates a record using standard java object serialization.
Parameters:
  recid - the recid for the record that is to be updated.
Parameters:
  obj - the new object for the record.
throws:
  IOException - when one of the underlying I/O operations fails.



update
public synchronized void update(long recid, Object obj, Serializer serializer) throws IOException(Code)
Updates a record using a custom serializer.
Parameters:
  recid - the recid for the record that is to be updated.
Parameters:
  obj - the new object for the record.
Parameters:
  serializer - a custom serializer
throws:
  IOException - when one of the underlying I/O operations fails.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.