Panda3D
Public Member Functions | Public Attributes | List of all members
BamFile Class Reference

The principle public interface to reading and writing Bam disk files. More...

#include "bamFile.h"

Inheritance diagram for BamFile:
BamEnums

Public Member Functions

void close ()
 Closes the input or output stream. More...
 
int get_current_major_ver ()
 Returns the system current major version number. More...
 
int get_current_minor_ver ()
 Returns the system current minor version number. More...
 
BamEndian get_file_endian () const
 
int get_file_major_ver ()
 Returns the major version number of the file currently being read, or the system current major version number if no file is currently open for reading. More...
 
int get_file_minor_ver ()
 Returns the minor version number of the file currently being read, or the system current minor version number if no file is currently open for reading. More...
 
bool get_file_stdfloat_double () const
 
BamReaderget_reader ()
 
BamWriterget_writer ()
 
bool is_eof () const
 Returns true if the reader has reached end-of-file, false otherwise. More...
 
bool is_valid_read () const
 Returns true if the Bam file is open and ready for reading with no errors so far detected, or false otherwise. More...
 
bool is_valid_write () const
 Returns true if the Bam file is open and ready for writing with no errors so far detected, or false otherwise. More...
 
bool open_read (const Filename &bam_filename, bool report_errors=true)
 Attempts to open the indicated filename for reading. More...
 
bool open_read (std::istream &in, const std::string &bam_filename="stream", bool report_errors=true)
 Attempts to open the indicated stream for reading. More...
 
bool open_write (const Filename &bam_filename, bool report_errors=true)
 Attempts to open the indicated file for writing. More...
 
bool open_write (std::ostream &out, const std::string &bam_filename="stream", bool report_errors=true)
 Attempts to open the indicated stream for writing. More...
 
 PT (PandaNode) read_node(bool report_errors
 
TypedWritableread_object ()
 Reads and returns the next object from the Bam file, or NULL if the end of the file has been reached, or if there is an error condition. More...
 
bool resolve ()
 This must be called after one or more objects have been read via calls to read_object() in order to resolve all internal pointer references in the objects read and make all the pointers valid. More...
 
bool write_object (const TypedWritable *object)
 Writes the indicated object to the Bam file. More...
 

Public Attributes

 get_file_endian
 Returns the endian preference indicated by the Bam file currently being read or written. More...
 
 get_file_stdfloat_double
 Returns true if the file stores all "standard" floats as 64-bit doubles, or false if they are 32-bit floats. More...
 
 get_reader
 Returns the BamReader in charge of performing the read operations. More...
 
 get_writer
 Returns the BamWriter in charge of performing the write operations. More...
 

Additional Inherited Members

- Public Types inherited from BamEnums
enum  BamEndian { BE_bigendian = 0, BE_littleendian = 1, BE_native = 1 }
 
enum  BamObjectCode {
  BOC_push, BOC_pop, BOC_adjunct, BOC_remove,
  BOC_file_data
}
 
enum  BamTextureMode {
  BTM_unchanged, BTM_fullpath, BTM_relative, BTM_basename,
  BTM_rawdata
}
 

Detailed Description

The principle public interface to reading and writing Bam disk files.

See also BamReader and BamWriter, the more general implementation of this class.

Bam files are most often used to store scene graphs or subgraphs, and by convention they are given filenames ending in the extension ".bam" when they are used for this purpose. However, a Bam file may store any arbitrary list of TypedWritable objects; in this more general usage, they are given filenames ending in ".boo" to differentiate them from the more common scene graph files.

Definition at line 41 of file bamFile.h.

Member Function Documentation

◆ close()

void BamFile::close ( )

Closes the input or output stream.

Definition at line 243 of file bamFile.cxx.

References DatagramInputFile::close(), and DatagramOutputFile::close().

Referenced by open_read(), open_write(), and write_object().

◆ get_current_major_ver()

int BamFile::get_current_major_ver ( )

Returns the system current major version number.

This is the version number that will be assigned to any generated Bam files.

Definition at line 321 of file bamFile.cxx.

◆ get_current_minor_ver()

int BamFile::get_current_minor_ver ( )

Returns the system current minor version number.

This is the version number that will be assigned to any generated Bam files.

Definition at line 330 of file bamFile.cxx.

◆ get_file_major_ver()

int BamFile::get_file_major_ver ( )

Returns the major version number of the file currently being read, or the system current major version number if no file is currently open for reading.

Definition at line 264 of file bamFile.cxx.

◆ get_file_minor_ver()

int BamFile::get_file_minor_ver ( )

Returns the minor version number of the file currently being read, or the system current minor version number if no file is currently open for reading.

Definition at line 277 of file bamFile.cxx.

◆ is_eof()

bool BamFile::is_eof ( ) const

Returns true if the reader has reached end-of-file, false otherwise.

This call is only valid after a call to read_object().

Definition at line 98 of file bamFile.cxx.

References BamReader::is_eof().

◆ is_valid_read()

bool BamFile::is_valid_read ( ) const
inline

Returns true if the Bam file is open and ready for reading with no errors so far detected, or false otherwise.

Definition at line 19 of file bamFile.I.

◆ is_valid_write()

bool BamFile::is_valid_write ( ) const
inline

Returns true if the Bam file is open and ready for writing with no errors so far detected, or false otherwise.

Definition at line 29 of file bamFile.I.

◆ open_read() [1/2]

bool BamFile::open_read ( const Filename bam_filename,
bool  report_errors = true 
)

Attempts to open the indicated filename for reading.

Returns true if successful, false on error.

Definition at line 51 of file bamFile.cxx.

References close(), and DatagramInputFile::open().

Referenced by WindowFramework::get_shuttle_controls_font(), and PT().

◆ open_read() [2/2]

bool BamFile::open_read ( std::istream &  in,
const std::string &  bam_filename = "stream",
bool  report_errors = true 
)

Attempts to open the indicated stream for reading.

The filename is just for information purposes only. Returns true if successful, false on error.

Definition at line 66 of file bamFile.cxx.

References close(), and DatagramInputFile::open().

◆ open_write() [1/2]

bool BamFile::open_write ( const Filename bam_filename,
bool  report_errors = true 
)

Attempts to open the indicated file for writing.

If another file by the same name already exists, it will be silently removed. Returns true if successful, false otherwise.

Definition at line 190 of file bamFile.cxx.

References close().

◆ open_write() [2/2]

bool BamFile::open_write ( std::ostream &  out,
const std::string &  bam_filename = "stream",
bool  report_errors = true 
)

Attempts to open the indicated stream for writing.

The filename is just for information purposes only. Returns true if successful, false on error.

Definition at line 210 of file bamFile.cxx.

References close(), and DatagramOutputFile::open().

◆ read_object()

TypedWritable * BamFile::read_object ( )

Reads and returns the next object from the Bam file, or NULL if the end of the file has been reached, or if there is an error condition.

Use is_eof() to differentiate these two cases.

The pointers returned by this method will not be valid for use until resolve() is subsequently called.

Definition at line 85 of file bamFile.cxx.

References BamReader::read_object().

Referenced by PT().

◆ resolve()

bool BamFile::resolve ( )

This must be called after one or more objects have been read via calls to read_object() in order to resolve all internal pointer references in the objects read and make all the pointers valid.

It returns true if all objects are successfully resolved, or false if some have not been (in which case you must call resolve() again later).

Definition at line 110 of file bamFile.cxx.

References BamReader::resolve().

◆ write_object()

bool BamFile::write_object ( const TypedWritable object)

Writes the indicated object to the Bam file.

Returns true if successful, false on error.

Definition at line 226 of file bamFile.cxx.

References close(), and BamWriter::write_object().

Member Data Documentation

◆ get_file_endian

BamFile::BamEndian BamFile::get_file_endian

Returns the endian preference indicated by the Bam file currently being read or written.

Definition at line 78 of file bamFile.h.

◆ get_file_stdfloat_double

bool BamFile::get_file_stdfloat_double

Returns true if the file stores all "standard" floats as 64-bit doubles, or false if they are 32-bit floats.

Definition at line 79 of file bamFile.h.

◆ get_reader

BamReader * BamFile::get_reader

Returns the BamReader in charge of performing the read operations.

This will return NULL unless open_read() was called.

Definition at line 81 of file bamFile.h.

◆ get_writer

BamWriter * BamFile::get_writer

Returns the BamWriter in charge of performing the write operations.

This will return NULL unless open_write() was called.

Definition at line 82 of file bamFile.h.


The documentation for this class was generated from the following files: