User Guide

From TBwiki
(Difference between revisions)
Jump to: navigation, search
m (fix link)
 
(31 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
This is the User Guide for the Toolpack software. It is intended to give system designers and software developers a clear understanding of the different modules available to easily build small and large, fault-tolerant, scaleable systems.
  
 +
The initial content presented here is copied from the documentation supplied with release 2.3 of Toolpack. Items marked with an asterisk are incomplete as copied from the manual.
  
 
== Toolpack Architecture ==
 
== Toolpack Architecture ==
 
*[[Overview]] *
 
*[[Overview]] *
 
*[[CMC library]]
 
*[[CMC library]]
*[[CMC Server]]
+
*[[Toolpack_Application:toolpack_engine|Toolpack Engine]]
*[[HA Manager]]
+
*[[Toolpack_Application:toolpack_sys_manager|Toolpack System Manager]]
*[[TCAP Control Library]] *
+
*[[TCAP Control Library]]
  
  
 
== Toolpack Concepts ==
 
== Toolpack Concepts ==
*[[Interfaces]] *
+
*[[Interfaces]]
 
*[[Classes]]
 
*[[Classes]]
 
*[[Services]]
 
*[[Services]]
 
*[[Behaviors]]
 
*[[Behaviors]]
 
  
  
 
== ToolPack Reference Applications ==
 
== ToolPack Reference Applications ==
 +
*[[Telephony Application]]
 +
*[[Bridging Service]]
 +
*[[Voicemail Service]]
  
*Telephony Application
 
*Bridging Service
 
*Voicemail Service
 
  
'''ToolPack Modules'''
+
== ToolPack Modules ==
*Callandlegmanagement
+
*Call and Leg management
:*CMC Call Leg class  
+
:*[[CMC Call Leg class]]*
:*CAF Call interface
+
:*[[CAF Call interface]]
:*CAF Bridge class.
+
:*[[CAF Bridge class]]
  
 
*CallBehaviors
 
*CallBehaviors
:*CAFCallRingbackTone
+
**CAFCallRingbackTone
:*CAFCallVoiceMailFallback ..
+
**CAFCallVoiceMailFallback
:*CAFCallFaxRelay
+
**CAFCallFaxRelay
:*CAFCallFollowMe
+
**CAFCallFollowMe
 
+
 
*[[CallRouting]]
 
*[[CallRouting]]
 
*[[IVR|Interactive Voice Response]] (IVR)
 
*[[IVR|Interactive Voice Response]] (IVR)
 
*[[Web OAM&P]]
 
*[[Web OAM&P]]
  
'''Database'''
+
== Database ==
 
+
 
*[[Framework database]]  
 
*[[Framework database]]  
 
*[[Application database]]
 
*[[Application database]]
*[[Data access objects]]
+
*Data access objects
 
+
 
*System Logging
 
*System Logging
 
 
  
 
== ToolPack Classes ==
 
== ToolPack Classes ==
 +
*CTBCMCCallLeg
 +
*TBCAF::ITBCAFCall
 +
*TBCAF::CTBCAFCallLeg
 +
*TBCAF::CTBCAFCallBehaviorFaxRelay
 +
*TBCAF::CTBCAFCallBehaviorFollowMe
 +
*TBCAF::CTBCAFCallBehaviorRbt
 +
*TBCAF::CTBCAFCallBehaviorVoiceMail
 +
*TBCAF::ITBCAFRouting
 +
*TBCAF::CTBCAFRoute
 +
*CTBCMC_CALL_LEG_ATTRIBUTE
 +
*TBCAF::CTBCAFIvr
 +
*TBCAF::CTBCAFVoiceMailMenu
 +
*TBCAF::CTBCAFDaoConnection
 +
*TBCAF::CTBCAFDaoConnMgr
 +
*TBCAF::ITBCAFLog
 +
*TBCAF::CTBCAFLog
 +
*TBCAF::ITBCAFLogDao
 +
*TBCAF::CTBCAFLogDao
 +
*TBCAF::CTBS2GWGateway
 +
*ITBCMCFreeListener
  
 
*[[CTBCMCCallLegClassReference]]
 
*[[TBCAF::ITBCAFCallClassReference]]
 
*[[TBCAF::CTBCAFCallLegClassReference]]
 
*[[TBCAF::CTBCAFCallBehaviorFaxRelay Class Reference]]
 
*[[TBCAF::CTBCAFCallBehaviorFollowMe Class Reference]]
 
*[[TBCAF::CTBCAFCallBehaviorRbt Class Reference]]
 
*[[TBCAF::CTBCAFCallBehaviorVoiceMail Class Reference]]
 
*[[TBCAF::ITBCAFRoutingClassReference]]
 
*[[TBCAF::CTBCAFRouteClassReference]]
 
*[[CTBCMC_CALL_LEG_ATTRIBUTEClassReference]]
 
*[[TBCAF::CTBCAFIvrClassReference]]
 
*[[TBCAF::CTBCAFVoiceMailMenuClassReference]]
 
*[[TBCAF::CTBCAFDaoConnectionClassReference]]
 
*[[TBCAF::CTBCAFDaoConnMgrClassReference]]
 
*[[TBCAF::ITBCAFLogClassReference]]
 
*[[TBCAF::CTBCAFLogClassReference]]
 
*[[TBCAF::ITBCAFLogDao Class Reference]]
 
*[[TBCAF::CTBCAFLogDaoClassReference]]
 
*[[TBCAF::CTBS2GWGatewayClassReference]]
 
*[[TBCAF::CTBCAFPoolOfBuffers<T>ClassTemplateReference]]
 
*[[ITBCMCFreeListener<T>ClassTemplateReference]]
 
  
 
== Annexes ==
 
== Annexes ==
Line 79: Line 73:
 
'''Advanced programming concepts'''
 
'''Advanced programming concepts'''
  
5.1.1 Factory objects and CTBCAFPoolOfBuffers template
+
*ITBCMCFreeListener interface template
5.1.2 ITBCMCFreeListenerinterfacetemplate
+
 
+
5.2 Internaldataflows
+
 
+
5.2.1 CTBCAFBridgeinternaldataflow 147
+
5.2.2 CTBCAFCallBehaviorRbt detailed internal dataflow
+
 
+
 
+
== Glossary ==
+
 
+
:'''Behavior''': A C++ class using a ITBCAFCall implementation and modifying the way it handles the call flow to achieve a new functionality (e.g. follow-me, ring-back-tone, etc).
+
 
+
:'''Call''': An agglomeration of two or more call legs.
+
 
+
:'''Call leg''': A full-duplex endpoint representing the media resource and its associated signaling (e.g. a Voip media resource with its associated SIP signaling call).
+
 
+
:'''DAO''': Data access object
+
 
+
:'''Interface''': C++ base class containing a set of member functions to be used as an application programming interface (API) by other classes inheriting from it.
+
 
+
:'''IVR''': Interactive voice response. This functions includes digit/tone play/collection and voice playing/recording.
+
 
+
:'''Leg''': A full-duplex endpoint representing the media resource (e.g. a TDM trunk/timeslot or a VoIP RTP media resource).
+
 
+
:'''NAP''': Network access point represents the entry point to another network or destination peer (e.g. SIP proxy, ISUP interface peer, etc).
+
 
+
 
+
 
+
 
+
  
----
+
'''Internal data flows'''
  
Return to the [[Main Page]]
+
*CTBCAFBridge internal data flow
 +
*CTBCAFCallBehaviorRbt detailed internal data flow

Latest revision as of 16:42, 15 February 2011

This is the User Guide for the Toolpack software. It is intended to give system designers and software developers a clear understanding of the different modules available to easily build small and large, fault-tolerant, scaleable systems.

The initial content presented here is copied from the documentation supplied with release 2.3 of Toolpack. Items marked with an asterisk are incomplete as copied from the manual.

Contents

Toolpack Architecture


Toolpack Concepts


ToolPack Reference Applications


ToolPack Modules

  • Call and Leg management

Database

ToolPack Classes

  • CTBCMCCallLeg
  • TBCAF::ITBCAFCall
  • TBCAF::CTBCAFCallLeg
  • TBCAF::CTBCAFCallBehaviorFaxRelay
  • TBCAF::CTBCAFCallBehaviorFollowMe
  • TBCAF::CTBCAFCallBehaviorRbt
  • TBCAF::CTBCAFCallBehaviorVoiceMail
  • TBCAF::ITBCAFRouting
  • TBCAF::CTBCAFRoute
  • CTBCMC_CALL_LEG_ATTRIBUTE
  • TBCAF::CTBCAFIvr
  • TBCAF::CTBCAFVoiceMailMenu
  • TBCAF::CTBCAFDaoConnection
  • TBCAF::CTBCAFDaoConnMgr
  • TBCAF::ITBCAFLog
  • TBCAF::CTBCAFLog
  • TBCAF::ITBCAFLogDao
  • TBCAF::CTBCAFLogDao
  • TBCAF::CTBS2GWGateway
  • ITBCMCFreeListener


Annexes

Advanced programming concepts

  • ITBCMCFreeListener interface template

Internal data flows

  • CTBCAFBridge internal data flow
  • CTBCAFCallBehaviorRbt detailed internal data flow
Personal tools