Abstract Class Zend_Search_Lucene_Storage_File

Description

Located in /Zend/Search/Lucene/Storage/File.php (line 28)


	
			
Direct descendents
Method Summary
 Zend_Search_Lucene_Storage_File __construct (mixed $filename, [mixed $mode = 'r'])
 string readBinary ()
 integer readByte ()
 string readBytes (integer $num)
 integer readInt ()
 integer readLong ()
 string readString ()
 integer readVInt ()
 integer seek (integer $offset, [integer $whence = SEEK_SET])
 integer tell ()
 void writeByte (integer $byte)
 void writeBytes (string $data, [integer $num = null])
 void writeInt (integer $value)
 void writeLong (integer $value)
 void writeString (string $str)
 void writeVInt (integer $value)
 string _fread ([integer $length = 1])
 void _fwrite (string $data, [integer $length = null])
Methods
Constructor __construct (line 34)

Class constructor. Open the file.

  • access: public
  • abstract:
Zend_Search_Lucene_Storage_File __construct (mixed $filename, [mixed $mode = 'r'])

Redefined in descendants as:
readBinary (line 372)

Reads binary data from the current position in the file and advances the file pointer.

  • access: public
string readBinary ()
readByte (line 88)

Reads a byte from the current position in the file and advances the file pointer.

  • access: public
integer readByte ()
readBytes (line 110)

Read num bytes from the current position in the file and advances the file pointer.

  • access: public
string readBytes (integer $num)
  • integer $num
readInt (line 134)

Reads an integer from the current position in the file and advances the file pointer.

  • access: public
integer readInt ()
readLong (line 166)

Returns a long integer from the current position in the file and advances the file pointer.

  • access: public
integer readLong ()
readString (line 249)

Reads a string from the current position in the file and advances the file pointer.

  • access: public
string readString ()
readVInt (line 215)

Returns a variable-length integer from the current position in the file and advances the file pointer.

  • access: public
integer readVInt ()
seek (line 63)

Sets the file position indicator and advances the file pointer.

The new position, measured in bytes from the beginning of the file, is obtained by adding offset to the position specified by whence, whose values are defined as follows: SEEK_SET - Set position equal to offset bytes. SEEK_CUR - Set position to current location plus offset. SEEK_END - Set position to end-of-file plus offset. (To move to a position before the end-of-file, you need to pass a negative value in offset.) Upon success, returns 0; otherwise, returns -1

  • access: public
  • abstract:
integer seek (integer $offset, [integer $whence = SEEK_SET])
  • integer $offset
  • integer $whence

Redefined in descendants as:
tell (line 70)

Get file position.

  • access: public
  • abstract:
integer tell ()

Redefined in descendants as:
writeByte (line 98)

Writes a byte to the end of the file.

  • access: public
void writeByte (integer $byte)
  • integer $byte
writeBytes (line 122)

Writes num bytes of data (all, if $num===null) to the end of the file.

  • access: public
void writeBytes (string $data, [integer $num = null])
  • string $data
  • integer $num
writeInt (line 150)

Writes an integer to the end of file.

  • access: public
void writeInt (integer $value)
  • integer $value
writeLong (line 191)

Writes long integer to the end of file

  • access: public
void writeLong (integer $value)
  • integer $value
writeString (line 306)

Writes a string to the end of file.

  • access: public
  • throws: Zend_Search_Lucene_Exception
void writeString (string $str)
  • string $str
writeVInt (line 232)

Writes a variable-length integer to the end of file.

  • access: public
void writeVInt (integer $value)
  • integer $value
_fread (line 44)

Reads $length number of bytes at the current position in the file and advances the file pointer.

  • access: protected
  • abstract:
string _fread ([integer $length = 1])
  • integer $length

Redefined in descendants as:
_fwrite (line 79)

Writes $length number of bytes (all, if $length===null) to the end of the file.

  • access: protected
  • abstract:
void _fwrite (string $data, [integer $length = null])
  • string $data
  • integer $length

Redefined in descendants as:

Documentation generated on Tue, 18 Apr 2006 11:55:00 -0700 by phpDocumentor 1.3.0RC3