Java Doc for BlockBuffer.java in  » Search-Engine » Jofti » com » jofti » store » 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 » Search Engine » Jofti » com.jofti.store 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.jofti.store.BlockBuffer

BlockBuffer
class BlockBuffer (Code)

Each block contains a header, zero or more entries, and a footer.



Field Summary
 ByteBufferbuffer
    
final static  intbufferFooterSize
     The number of bytes to reserve for block footer information.
final static  intbufferHeaderSize
     size of a buffer header.
 intbufferSize
    
 intbytesUsed
     Number of used data bytes in the buffer.

This is different than buffer capacity().

final  intbytesUsedOffSet
    
 FileStorefile
    
 intinitCounter
     number of times this buffer was used.
 intnumberEntries
    
 FilePositionHolderpositionHolder
    
 intrecordSize
    

Constructor Summary
 BlockBuffer()
     default constructor calls super class constructor.

Method Summary
public  FileStoregetFileStore()
    
public  FilePositionHoldergetPositionHolder()
    
 StringgetStats()
     return statistics for this buffer.
public  voidinit(int bufferSize)
     initialize members for buffer reuse.
Parameters:
  bsn - Logic Block Sequence Number of the buffer.BufferManager maintains a list of block sequence numbersto ensure correct order of writes to disk.
 intput(ByteBuffer buf, int offset)
    
 voidput(ByteBuffer buf)
    
 BlockBufferread(FileStore store)
     Reads a block from FileStore lf and validates header and footer information.
public  intremaining()
    
public  voidreset()
    
public  voidsetFileStore(FileStore file)
    
public  voidsetPositionHolder(FilePositionHolder positionHolder)
    
 voidwrite()
     write ByteBuffer to the log file.
 voidwriteFooter()
    
 voidwriteFurniture(int numberRecords)
    

Field Detail
buffer
ByteBuffer buffer(Code)



bufferFooterSize
final static int bufferFooterSize(Code)
The number of bytes to reserve for block footer information.



bufferHeaderSize
final static int bufferHeaderSize(Code)
size of a buffer header.
 buffer Header format
 byte[]  HEADER_ID              [1] "H"
 short   size of bytes written  [2]
 short   total number of items  [2]
 byte[]  CRLF                   [2] to make it easier to read buffers in an editor
 



bufferSize
int bufferSize(Code)



bytesUsed
int bytesUsed(Code)
Number of used data bytes in the buffer.

This is different than buffer capacity(). The bytes used is the number of bytes of usable data in a buffer.

set by operations that read data from files into the buffer such as read().

checked by operations that retrieve logical records from the buffer get().




bytesUsedOffSet
final int bytesUsedOffSet(Code)



file
FileStore file(Code)



initCounter
int initCounter(Code)
number of times this buffer was used.

In general, should be about the same for all buffers in a pool.




numberEntries
int numberEntries(Code)



positionHolder
FilePositionHolder positionHolder(Code)



recordSize
int recordSize(Code)




Constructor Detail
BlockBuffer
BlockBuffer()(Code)
default constructor calls super class constructor.




Method Detail
getFileStore
public FileStore getFileStore()(Code)



getPositionHolder
public FilePositionHolder getPositionHolder()(Code)



getStats
String getStats()(Code)
return statistics for this buffer. String containing statistics as an XML node



init
public void init(int bufferSize) throws JoftiException(Code)
initialize members for buffer reuse.
Parameters:
  bsn - Logic Block Sequence Number of the buffer.BufferManager maintains a list of block sequence numbersto ensure correct order of writes to disk. Some implementationsof LogBuffer may include the BSN as part of a record orblock header.



put
int put(ByteBuffer buf, int offset) throws JoftiException(Code)



put
void put(ByteBuffer buf) throws JoftiException(Code)



read
BlockBuffer read(FileStore store) throws JoftiException(Code)
Reads a block from FileStore lf and validates header and footer information.
See Also:   LogBuffer.read(FileStorelong)
throws:
  IOException - if anything goes wrong during the file read.
throws:
  InvalidLogBufferException - if any of the block header or footer fields are invalid.



remaining
public int remaining()(Code)



reset
public void reset()(Code)



setFileStore
public void setFileStore(FileStore file)(Code)



setPositionHolder
public void setPositionHolder(FilePositionHolder positionHolder)(Code)



write
void write() throws IOException(Code)
write ByteBuffer to the log file.



writeFooter
void writeFooter()(Code)



writeFurniture
void writeFurniture(int numberRecords)(Code)



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.