Class Hierarchy   Class Index   Method Index  

IGCsource Class Reference

#include <IGCsource.h>


Detailed Description

This class is used to implement an Iguana source plugin.

Source plugins connect to, and send messages to Iguana From-Plugin channel components.

Messages are sent to Iguana using a "polling" or "pull" approach (as opposed to a "push" approach). Iguana sends a message request to the IGCsource plugin, raising the IGCsource::OnMessageRequested event. The IGCsource plugin responds with the next available unacknowledged message. Once Iguana has received and enqueued the message, a message request completed notification is sent back to the IGCsource plugin, raising the IGCsource::OnMessageRequestCompleted event. The IGCsource plugin notes that the message has been acknowledged, and that it can advance to the next available message.

The message polling cycle repeats without delay while messages are available. Once all available messages have been transferred (indicated by the plugin responding to a message request with an empty message), the cycle repeats at an interval determined by the Polling Time configured in the channel's From-Plugin component.

See

http://www.interfaceware.com/manual/plugin_sending.html

for more information.


Public Member Functions

 IGCsource ()
 Constructor.
virtual ~IGCsource ()
 Destructor.
IGCsourceHandle GetHandle () const
 This method is part of the internal implementation of this class and should not be called.
IGCdisconnectReason DisconnectReason () const
 Describes the reason for the plugin's (most recent) disconnection from Iguana.
IGCint32 ConnectTimeout () const
 Time in milliseconds the plugin will wait to handshake with Iguana while executing the IGCsource::Connect operation (default 5000 milliseconds).
void SetConnectTimeout (IGCint32 Value)
 Set method for ConnectTimeout.
void EnableDebugLogging (const char *FileName)
 Enables logging of internal runtime debug information to the specified file.
void Connect (const char *HostName, IGCint32 PortNumber, const char *ChannelName)
 Connects to an Iguana From-Plugin channel component as a source plugin.
void Disconnect ()
 Disconnects the plugin from Iguana.
void WaitForDisconnect ()
 Waits until the plugin is disconnected from Iguana.
IGCboolean WaitForDisconnectWithTimeout (IGCint32 TimeoutInMilliseconds)
 Waits until either the plugin is disconnected from Iguana, or a specified timeout elapses.
virtual void OnMessageRequested (IGCsourceMessageRequestedEventInputs &Inputs, IGCsourceMessageRequestedEventOutputs &Outputs)=0
 Event raised upon receipt of a message request from Iguana.
virtual void OnMessageRequestCompleted (IGCsourceMessageRequestCompletedEventInputs &Inputs, IGCsourceMessageRequestCompletedEventOutputs &Outputs)=0
 Event raised upon receipt of a message request completed notification from Iguana.
virtual void OnDisconnected ()=0
 Event raised upon disconnection of the plugin from Iguana.


Constructor & Destructor Documentation

IGCsource::IGCsource  ) 
 

Constructor.

virtual IGCsource::~IGCsource  )  [virtual]
 

Destructor.


Member Function Documentation

void IGCsource::Connect const char *  HostName,
IGCint32  PortNumber,
const char *  ChannelName
 

Connects to an Iguana From-Plugin channel component as a source plugin.

Should be called only while the plugin is disconnected (for example, after a return from IGCsource::WaitForDisconnect).

May not be called from within an event handler (for example, may not be called from within the IGCsource::OnDisconnected handler).

If a connection is not established within the timeout period specified by IGCsource::ConnectTimeout, an exception will be thrown. The default timeout period of 5000 milliseconds should suffice for most plugins, and should only be adjusted if connection timeouts are observed.

Throws: Function throws an exception upon connection failure or timeout, or if called from within an event handler.

Parameters:
HostName Iguana machine hostname or IP address (typically 'localhost' if the plugin and Iguana are running on the same machine).
PortNumber Iguana Plugin Communication Server port number (typically 6123).
ChannelName Iguana channel name.

IGCint32 IGCsource::ConnectTimeout  )  const
 

Time in milliseconds the plugin will wait to handshake with Iguana while executing the IGCsource::Connect operation (default 5000 milliseconds).

For a heavily loaded Iguana server running on a slow machine this may need a higher value than the default value.

See also the IGCsource::SetConnectTimeout method.

void IGCsource::Disconnect  ) 
 

Disconnects the plugin from Iguana.

Results in IGCsource::DisconnectReason being set to DueToPlugin.

IGCdisconnectReason IGCsource::DisconnectReason  )  const
 

Describes the reason for the plugin's (most recent) disconnection from Iguana.

Only valid after the plugin has been disconnected, and before any subsequent connection attempts. Specifically, only valid within the IGCsource::OnDisconnected handler or after the return of a call to IGCsource::WaitForDisconnect or IGCsource::WaitForDisconnectWithTimeout, and before any subsequent calls to IGCsource::Connect.

void IGCsource::EnableDebugLogging const char *  FileName  ) 
 

Enables logging of internal runtime debug information to the specified file.

Must be called before any other methods, and may only be called once per Source instance.

This function should only be used at the request of iNTERFACEWARE Technical Support.

Parameters:
FileName Name of the file where debug information is to be logged.

IGCsourceHandle IGCsource::GetHandle  )  const [inline]
 

This method is part of the internal implementation of this class and should not be called.

virtual void IGCsource::OnDisconnected  )  [pure virtual]
 

Event raised upon disconnection of the plugin from Iguana.

Will not be raised for failed connection attempts. Specifically, will not be raised if IGCsource::Connect throws an exception as a result of a connection failure.

Exceptions should never be allowed to propagate out of the event handler. Event handlers should catch and handle all exceptions internally.

virtual void IGCsource::OnMessageRequestCompleted IGCsourceMessageRequestCompletedEventInputs Inputs,
IGCsourceMessageRequestCompletedEventOutputs Outputs
[pure virtual]
 

Event raised upon receipt of a message request completed notification from Iguana.

Exceptions should never be allowed to propagate out of the event handler. Event handlers should catch and handle all exceptions internally.

Parameters:
Inputs Input data from Iguana.
Outputs Output data to send back to Iguana.

virtual void IGCsource::OnMessageRequested IGCsourceMessageRequestedEventInputs Inputs,
IGCsourceMessageRequestedEventOutputs Outputs
[pure virtual]
 

Event raised upon receipt of a message request from Iguana.

The plugin should respond with either the next available unacknowledged message, or an empty message if no messages are available.

Exceptions should never be allowed to propagate out of the event handler. Event handlers should catch and handle all exceptions internally.

Parameters:
Inputs Input data from Iguana.
Outputs Output data to send back to Iguana.

void IGCsource::SetConnectTimeout IGCint32  Value  ) 
 

Set method for ConnectTimeout.

See IGCsource::ConnectTimeout.

Parameters:
Value Value to set ConnectTimeout to.

void IGCsource::WaitForDisconnect  ) 
 

Waits until the plugin is disconnected from Iguana.

May not be called from within an event handler (for example, may not be called from within the IGCsource::OnDisconnected handler).

IGCboolean IGCsource::WaitForDisconnectWithTimeout IGCint32  TimeoutInMilliseconds  ) 
 

Waits until either the plugin is disconnected from Iguana, or a specified timeout elapses.

May not be called from within an event handler (for example, may not be called from within the IGCsource::OnDisconnected handler).

Parameters:
TimeoutInMilliseconds Timeout (in milliseconds) to wait for disconnection.
Returns:
Returns true if the plugin disconnected from Iguana. Returns false if the timeout elapsed before the plugin was disconnected from Iguana.


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