openvrml::event_emitter Class Reference

#include <openvrml/event.h>

Inheritance diagram for openvrml::event_emitter:

Inheritance graph
[legend]
List of all members.

Detailed Description

Abstract base class of event emitters.


Public Types

typedef std::set< event_listener * > listener_set
 Set of event_listeners.

Public Member Functions

virtual ~event_emitter ()=0 throw ()
 Destroy.
const field_valuevalue () const throw ()
 A reference to the field_value for the event_emitter.
const std::string eventout_id () const throw ()
 The associated eventOut identifier.
const listener_setlisteners () const throw ()
double last_time () const throw ()
 The timestamp of the last event emitted.

Protected Member Functions

boost::recursive_mutex & mutex () const throw ()
 Get the mutex for the event_emitter.
listener_setlisteners () throw ()
 Registered listeners.
void last_time (double t) throw ()
 Set the timestamp of the last event emitted.
 event_emitter (const field_value &value) throw ()
 Construct.

Private Member Functions

virtual const std::string do_eventout_id () const=0 throw ()
 The associated eventOut identifier.
virtual void emit_event (double timestamp)=0 throw ( std::bad_alloc )
 Emit an event.

Private Attributes

boost::recursive_mutex mutex_
 Object mutex.
const field_valuevalue_
 A reference to the field_value for the event_emitter.
std::set< event_listener * > listeners_
 The listeners registered for this emitter.
double last_time_
 The timestamp of the last event emitted.

Friends

class node
 The implementation of node calls event_emitter::emit_event.

Member Typedef Documentation

Set of event_listeners.


Constructor & Destructor Documentation

openvrml::event_emitter::~event_emitter (  )  throw () [pure virtual]

openvrml::event_emitter::event_emitter ( const field_value value  )  throw () [explicit, protected]

Construct.

Parameters:
[in] value field_value associated with this emitter.


Member Function Documentation

const openvrml::field_value & openvrml::event_emitter::value (  )  const throw ()

A reference to the field_value for the event_emitter.

Returns:
a reference to the field_value for the event_emitter.

const std::string openvrml::event_emitter::eventout_id (  )  const throw ()

The associated eventOut identifier.

This function delegates to event_emitter::do_eventout_id.

Returns:
the associated eventOut identifier.

const openvrml::event_emitter::listener_set & openvrml::event_emitter::listeners (  )  const throw ()

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Returns:
the set of registered event_listeners.

double openvrml::event_emitter::last_time (  )  const throw ()

The timestamp of the last event emitted.

Returns:
the timestamp of the last event emitted.

boost::recursive_mutex & openvrml::event_emitter::mutex (  )  const throw () [protected]

Get the mutex for the event_emitter.

Returns:
a reference to the event_emitter's mutex.

openvrml::event_emitter::listener_set & openvrml::event_emitter::listeners (  )  throw () [protected]

Registered listeners.

Returns:
the set of registered event_listeners.

void openvrml::event_emitter::last_time ( double  t  )  throw () [protected]

Set the timestamp of the last event emitted.

Parameters:
[in] t the timestamp of the last event emitted.

const std::string openvrml::event_emitter::do_eventout_id (  )  const throw () [private, pure virtual]

The associated eventOut identifier.

Concrete subclasses must implement this function.

Returns:
the associated eventOut identifier.

Implemented in openvrml::node_impl_util::event_emitter_base< Node >, openvrml::script_node::url_changed_emitter, openvrml::script_node::metadata_changed_emitter, and openvrml::node_impl_util::event_emitter_base< Derived >.

void openvrml::event_emitter::emit_event ( double  timestamp  )  throw ( std::bad_alloc ) [private, pure virtual]

Emit an event.

Parameters:
[in] timestamp the current time.
Exceptions:
std::bad_alloc if memory allocation fails.
This function is called by node::emit_event.

Implemented in openvrml::field_value_emitter< FieldValue >, openvrml::field_value_emitter< mfstring >, and openvrml::field_value_emitter< sfnode >.


Friends And Related Function Documentation

class openvrml::event_emitter::node [friend]

The implementation of node calls event_emitter::emit_event.

The only things that should be emitting events are nodes. Subclasses of node should call node::emit_event to emit an event.


Member Data Documentation

boost::recursive_mutex openvrml::event_emitter::mutex_ [mutable, private]

Object mutex.

For internal use only.

A reference to the field_value for the event_emitter.

For internal use only.

The listeners registered for this emitter.

For internal use only.

When emit_event is called, each of the registered listeners will be sent an event.

The timestamp of the last event emitted.

For internal use only.