Asterisk - The Open Source Telephony Project  21.4.1
Data Structures | Macros | Typedefs | Enumerations | Functions
bridge_features.h File Reference

Channel Bridging API. More...

#include "asterisk/channel.h"

Go to the source code of this file.

Data Structures

struct  ast_bridge_features
 Structure that contains features information. More...
 
struct  ast_bridge_features_attended_transfer
 Structure that contains configuration information for the attended transfer built in feature. More...
 
struct  ast_bridge_features_automixmonitor
 
struct  ast_bridge_features_blind_transfer
 Structure that contains configuration information for the blind transfer built in feature. More...
 
struct  ast_bridge_features_limits
 Structure that contains configuration information for the limits feature. More...
 
struct  ast_bridge_hook
 Structure that is the essence of a feature hook. More...
 
struct  ast_bridge_hook_dtmf
 
struct  ast_bridge_hook_dtmf_parms
 
struct  ast_bridge_hook_timer
 
struct  ast_bridge_hook_timer_parms
 

Macros

#define MAXIMUM_DTMF_FEATURE_STRING   (11 + 1)
 Maximum length of a DTMF feature string.
 

Typedefs

typedef int(* ast_bridge_builtin_set_limits_fn) (struct ast_bridge_features *features, struct ast_bridge_features_limits *limits, enum ast_bridge_hook_remove_flags remove_flags)
 Attach interval hooks to a bridge features structure. More...
 
typedef int(* ast_bridge_hook_callback) (struct ast_bridge_channel *bridge_channel, void *hook_pvt)
 Hook callback type. More...
 
typedef void(* ast_bridge_hook_pvt_destructor) (void *hook_pvt)
 Hook pvt destructor callback. More...
 
typedef int(* ast_bridge_move_indicate_callback) (struct ast_bridge_channel *bridge_channel, void *hook_pvt, struct ast_bridge *src, struct ast_bridge *dst)
 Move indicator callback. More...
 
typedef int(* ast_bridge_talking_indicate_callback) (struct ast_bridge_channel *bridge_channel, void *hook_pvt, int talking)
 Talking indicator callback. More...
 

Enumerations

enum  ast_bridge_builtin_feature {
  AST_BRIDGE_BUILTIN_BLINDTRANSFER, AST_BRIDGE_BUILTIN_ATTENDEDTRANSFER, AST_BRIDGE_BUILTIN_HANGUP, AST_BRIDGE_BUILTIN_PARKCALL,
  AST_BRIDGE_BUILTIN_AUTOMIXMON, AST_BRIDGE_BUILTIN_END
}
 Built in DTMF features. More...
 
enum  ast_bridge_builtin_interval { AST_BRIDGE_BUILTIN_INTERVAL_LIMITS, AST_BRIDGE_BUILTIN_INTERVAL_END }
 
enum  ast_bridge_channel_feature_flags { AST_BRIDGE_CHANNEL_FLAG_DISSOLVE_HANGUP = (1 << 0), AST_BRIDGE_CHANNEL_FLAG_LONELY = (1 << 1), AST_BRIDGE_CHANNEL_FLAG_IMMOVABLE = (1 << 2) }
 Flags used for per bridge channel features. More...
 
enum  ast_bridge_feature_flags {
  AST_BRIDGE_FLAG_DISSOLVE_HANGUP = (1 << 0), AST_BRIDGE_FLAG_DISSOLVE_EMPTY = (1 << 1), AST_BRIDGE_FLAG_SMART = (1 << 2), AST_BRIDGE_FLAG_MERGE_INHIBIT_FROM = (1 << 3),
  AST_BRIDGE_FLAG_MERGE_INHIBIT_TO = (1 << 4), AST_BRIDGE_FLAG_SWAP_INHIBIT_FROM = (1 << 5), AST_BRIDGE_FLAG_SWAP_INHIBIT_TO = (1 << 6), AST_BRIDGE_FLAG_MASQUERADE_ONLY = (1 << 7),
  AST_BRIDGE_FLAG_TRANSFER_PROHIBITED = (1 << 8), AST_BRIDGE_FLAG_TRANSFER_BRIDGE_ONLY = (1 << 9), AST_BRIDGE_FLAG_INVISIBLE = (1 << 10)
}
 Flags used for bridge features. More...
 
enum  ast_bridge_features_monitor { AUTO_MONITOR_TOGGLE, AUTO_MONITOR_START, AUTO_MONITOR_STOP }
 
enum  ast_bridge_hook_remove_flags { AST_BRIDGE_HOOK_REMOVE_ON_PULL = (1 << 0), AST_BRIDGE_HOOK_REMOVE_ON_PERSONALITY_CHANGE = (1 << 1) }
 
enum  ast_bridge_hook_timer_option { AST_BRIDGE_HOOK_TIMER_OPTION_MEDIA = (1 << 0) }
 
enum  ast_bridge_hook_type {
  AST_BRIDGE_HOOK_TYPE_NONE, AST_BRIDGE_HOOK_TYPE_DTMF, AST_BRIDGE_HOOK_TYPE_TIMER, AST_BRIDGE_HOOK_TYPE_HANGUP,
  AST_BRIDGE_HOOK_TYPE_JOIN, AST_BRIDGE_HOOK_TYPE_LEAVE, AST_BRIDGE_HOOK_TYPE_TALK, AST_BRIDGE_HOOK_TYPE_MOVE
}
 

Functions

int ast_bridge_dtmf_hook (struct ast_bridge_features *features, const char *dtmf, ast_bridge_hook_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach a DTMF hook to a bridge features structure. More...
 
void ast_bridge_features_cleanup (struct ast_bridge_features *features)
 Clean up the contents of a bridge features structure. More...
 
void ast_bridge_features_destroy (struct ast_bridge_features *features)
 Destroy an allocated bridge features struct. More...
 
int ast_bridge_features_do (enum ast_bridge_builtin_feature feature, struct ast_bridge_channel *bridge_channel, void *hook_pvt)
 Invoke a built in feature hook now. More...
 
int ast_bridge_features_enable (struct ast_bridge_features *features, enum ast_bridge_builtin_feature feature, const char *dtmf, void *config, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Enable a built in feature on a bridge features structure. More...
 
int ast_bridge_features_init (struct ast_bridge_features *features)
 Initialize bridge features structure. More...
 
int ast_bridge_features_limits_construct (struct ast_bridge_features_limits *limits)
 Constructor function for ast_bridge_features_limits. More...
 
void ast_bridge_features_limits_destroy (struct ast_bridge_features_limits *limits)
 Destructor function for ast_bridge_features_limits. More...
 
void ast_bridge_features_merge (struct ast_bridge_features *into, const struct ast_bridge_features *from)
 Merge one ast_bridge_features into another. More...
 
struct ast_bridge_featuresast_bridge_features_new (void)
 Allocate a new bridge features struct. More...
 
int ast_bridge_features_register (enum ast_bridge_builtin_feature feature, ast_bridge_hook_callback callback, const char *dtmf)
 Register a handler for a built in feature. More...
 
void ast_bridge_features_set_flag (struct ast_bridge_features *features, unsigned int flag)
 Set a flag on a bridge channel features structure. More...
 
int ast_bridge_features_set_limits (struct ast_bridge_features *features, struct ast_bridge_features_limits *limits, enum ast_bridge_hook_remove_flags remove_flags)
 Limit the amount of time a channel may stay in the bridge and optionally play warning messages as time runs out. More...
 
int ast_bridge_features_unregister (enum ast_bridge_builtin_feature feature)
 Unregister a handler for a built in feature. More...
 
int ast_bridge_hangup_hook (struct ast_bridge_features *features, ast_bridge_hook_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach a hangup hook to a bridge features structure. More...
 
int ast_bridge_interval_hook (struct ast_bridge_features *features, enum ast_bridge_hook_timer_option flags, unsigned int interval, ast_bridge_hook_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach an interval hook to a bridge features structure. More...
 
int ast_bridge_interval_register (enum ast_bridge_builtin_interval interval, ast_bridge_builtin_set_limits_fn callback)
 Register a handler for a built in interval feature. More...
 
int ast_bridge_interval_unregister (enum ast_bridge_builtin_interval interval)
 Unregisters a handler for a built in interval feature. More...
 
int ast_bridge_join_hook (struct ast_bridge_features *features, ast_bridge_hook_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach a bridge channel join hook to a bridge features structure. More...
 
int ast_bridge_leave_hook (struct ast_bridge_features *features, ast_bridge_hook_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach a bridge channel leave hook to a bridge features structure. More...
 
int ast_bridge_move_hook (struct ast_bridge_features *features, ast_bridge_move_indicate_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach a bridge channel move detection hook to a bridge features structure. More...
 
int ast_bridge_talk_detector_hook (struct ast_bridge_features *features, ast_bridge_talking_indicate_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
 Attach a bridge channel talk detection hook to a bridge features structure. More...
 

Detailed Description

Channel Bridging API.

Author
Joshua Colp jcolp.nosp@m.@dig.nosp@m.ium.c.nosp@m.om

Definition in file bridge_features.h.

Typedef Documentation

typedef int(* ast_bridge_builtin_set_limits_fn) (struct ast_bridge_features *features, struct ast_bridge_features_limits *limits, enum ast_bridge_hook_remove_flags remove_flags)

Attach interval hooks to a bridge features structure.

Parameters
featuresBridge features structure
limitsConfigured limits applicable to the channel
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure

Definition at line 408 of file bridge_features.h.

typedef int(* ast_bridge_hook_callback) (struct ast_bridge_channel *bridge_channel, void *hook_pvt)

Hook callback type.

Parameters
bridge_channelChannel executing the feature
hook_pvtPrivate data passed in when the hook was created
Return values
0for interval hooks: setup to fire again at the last interval. for other hooks: keep the callback hook.
positivefor interval hooks: Setup to fire again at the new interval returned. for other hooks: n/a
-1for all hooks: remove the callback hook.

Definition at line 127 of file bridge_features.h.

typedef void(* ast_bridge_hook_pvt_destructor) (void *hook_pvt)

Hook pvt destructor callback.

Parameters
hook_pvtPrivate data passed in when the hook was created to destroy

Definition at line 134 of file bridge_features.h.

typedef int(* ast_bridge_move_indicate_callback) (struct ast_bridge_channel *bridge_channel, void *hook_pvt, struct ast_bridge *src, struct ast_bridge *dst)

Move indicator callback.

This callback can be registered with the bridge channel in order to be notified when the bridge channel is being moved from one bridge to another.

Parameters
bridge_channelThe channel executing the feature
hook_pvtPrivate data passed in when the hook was created
srcThe bridge from which the bridge channel is moving
dstThe bridge into which the bridge channel is moving
Return values
0Keep the callback hook.
-1Remove the callback hook.

Definition at line 169 of file bridge_features.h.

typedef int(* ast_bridge_talking_indicate_callback) (struct ast_bridge_channel *bridge_channel, void *hook_pvt, int talking)

Talking indicator callback.

This callback can be registered with the bridge channel in order to receive updates when the bridge_channel has started and stopped talking.

Parameters
bridge_channelChannel executing the feature
hook_pvtPrivate data passed in when the hook was created
talkingTRUE if the channel is now talking
Return values
0Keep the callback hook.
-1Remove the callback hook.

Definition at line 151 of file bridge_features.h.

Enumeration Type Documentation

Built in DTMF features.

Enumerator
AST_BRIDGE_BUILTIN_BLINDTRANSFER 

DTMF based Blind Transfer

AST_BRIDGE_BUILTIN_ATTENDEDTRANSFER 

DTMF based Attended Transfer

AST_BRIDGE_BUILTIN_HANGUP 

DTMF based depart bridge feature

Note
Imparted channels are optionally hangup depending upon how it was imparted.
Joined channels exit the bridge with BRIDGE_CHANNEL_STATE_END_WITH_DISSOLVE.
AST_BRIDGE_BUILTIN_PARKCALL 

DTMF based Park

The bridge is parked and the channel hears the parking slot to which it was parked.

AST_BRIDGE_BUILTIN_AUTOMIXMON 

DTMF one-touch-record toggle using MixMonitor app.

Note
Only valid on two party bridges.
AST_BRIDGE_BUILTIN_END 

End terminator for list of built in features. Must remain last.

Definition at line 71 of file bridge_features.h.

71  {
72  /*! DTMF based Blind Transfer */
74  /*! DTMF based Attended Transfer */
76  /*!
77  * DTMF based depart bridge feature
78  *
79  * \note Imparted channels are optionally hangup depending upon
80  * how it was imparted.
81  *
82  * \note Joined channels exit the bridge with
83  * BRIDGE_CHANNEL_STATE_END_WITH_DISSOLVE.
84  */
86  /*!
87  * DTMF based Park
88  *
89  * \details The bridge is parked and the channel hears the
90  * parking slot to which it was parked.
91  */
93  /*!
94  * DTMF one-touch-record toggle using MixMonitor app.
95  *
96  * \note Only valid on two party bridges.
97  */
99 
100  /*! End terminator for list of built in features. Must remain last. */
102 };
Enumerator
AST_BRIDGE_BUILTIN_INTERVAL_LIMITS 

Apply Call Duration Limits

AST_BRIDGE_BUILTIN_INTERVAL_END 

End terminator for list of built in interval features. Must remain last.

Definition at line 104 of file bridge_features.h.

104  {
105  /*! Apply Call Duration Limits */
107 
108  /*! End terminator for list of built in interval features. Must remain last. */
110 };

Flags used for per bridge channel features.

Enumerator
AST_BRIDGE_CHANNEL_FLAG_DISSOLVE_HANGUP 

Upon channel hangup all bridge participants should be kicked out.

AST_BRIDGE_CHANNEL_FLAG_LONELY 

This channel leaves the bridge if all participants have this flag set.

AST_BRIDGE_CHANNEL_FLAG_IMMOVABLE 

This channel cannot be moved to another bridge.

Definition at line 61 of file bridge_features.h.

61  {
62  /*! Upon channel hangup all bridge participants should be kicked out. */
64  /*! This channel leaves the bridge if all participants have this flag set. */
66  /*! This channel cannot be moved to another bridge. */
68 };

Flags used for bridge features.

Enumerator
AST_BRIDGE_FLAG_DISSOLVE_HANGUP 

Upon channel hangup all bridge participants should be kicked out.

AST_BRIDGE_FLAG_DISSOLVE_EMPTY 

The last channel to leave the bridge dissolves it.

AST_BRIDGE_FLAG_SMART 

Move between bridging technologies as needed.

AST_BRIDGE_FLAG_MERGE_INHIBIT_FROM 

Bridge channels cannot be merged from this bridge.

AST_BRIDGE_FLAG_MERGE_INHIBIT_TO 

Bridge channels cannot be merged to this bridge.

AST_BRIDGE_FLAG_SWAP_INHIBIT_FROM 

Bridge channels cannot be local channel swap optimized from this bridge.

AST_BRIDGE_FLAG_SWAP_INHIBIT_TO 

Bridge channels cannot be local channel swap optimized to this bridge.

AST_BRIDGE_FLAG_MASQUERADE_ONLY 

Bridge channels can be moved to another bridge only by masquerade (ConfBridge)

AST_BRIDGE_FLAG_TRANSFER_PROHIBITED 

Bridge does not allow transfers of channels out

AST_BRIDGE_FLAG_TRANSFER_BRIDGE_ONLY 

Bridge transfers require transfer of entire bridge rather than individual channels

AST_BRIDGE_FLAG_INVISIBLE 

Bridge is invisible to AMI/CLI/ARI/etc.

Definition at line 35 of file bridge_features.h.

35  {
36  /*! Upon channel hangup all bridge participants should be kicked out. */
38  /*! The last channel to leave the bridge dissolves it. */
40  /*! Move between bridging technologies as needed. */
41  AST_BRIDGE_FLAG_SMART = (1 << 2),
42  /*! Bridge channels cannot be merged from this bridge. */
44  /*! Bridge channels cannot be merged to this bridge. */
46  /*! Bridge channels cannot be local channel swap optimized from this bridge. */
48  /*! Bridge channels cannot be local channel swap optimized to this bridge. */
50  /*! Bridge channels can be moved to another bridge only by masquerade (ConfBridge) */
52  /*! Bridge does not allow transfers of channels out */
54  /*! Bridge transfers require transfer of entire bridge rather than individual channels */
56  /*! Bridge is invisible to AMI/CLI/ARI/etc. */
57  AST_BRIDGE_FLAG_INVISIBLE = (1 << 10),
58 };
Enumerator
AUTO_MONITOR_TOGGLE 

Toggle start/stop of MixMonitor.

AUTO_MONITOR_START 

Start MixMonitor if not already started.

AUTO_MONITOR_STOP 

Stop MixMonitor if not already stopped.

Definition at line 301 of file bridge_features.h.

301  {
302  /*! Toggle start/stop of MixMonitor. */
304  /*! Start MixMonitor if not already started. */
306  /*! Stop MixMonitor if not already stopped. */
308 };
Enumerator
AST_BRIDGE_HOOK_REMOVE_ON_PULL 

The hook is removed when the channel is pulled from the bridge.

AST_BRIDGE_HOOK_REMOVE_ON_PERSONALITY_CHANGE 

The hook is removed when the bridge's personality changes.

Definition at line 172 of file bridge_features.h.

172  {
173  /*! The hook is removed when the channel is pulled from the bridge. */
175  /*! The hook is removed when the bridge's personality changes. */
177 };
Enumerator
AST_BRIDGE_HOOK_TIMER_OPTION_MEDIA 

The timer temporarily affects media. (Like a custom playfile.)

Definition at line 224 of file bridge_features.h.

224  {
225  /*! The timer temporarily affects media. (Like a custom playfile.) */
227 };
Enumerator
AST_BRIDGE_HOOK_TYPE_NONE 

The hook type has not been specified.

Definition at line 179 of file bridge_features.h.

179  {
180  /*! The hook type has not been specified. */
182  AST_BRIDGE_HOOK_TYPE_DTMF,
183  AST_BRIDGE_HOOK_TYPE_TIMER,
184  AST_BRIDGE_HOOK_TYPE_HANGUP,
185  AST_BRIDGE_HOOK_TYPE_JOIN,
186  AST_BRIDGE_HOOK_TYPE_LEAVE,
187  AST_BRIDGE_HOOK_TYPE_TALK,
188  AST_BRIDGE_HOOK_TYPE_MOVE,
189 };

Function Documentation

int ast_bridge_dtmf_hook ( struct ast_bridge_features features,
const char *  dtmf,
ast_bridge_hook_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach a DTMF hook to a bridge features structure.

Parameters
featuresBridge features structure
dtmfDTMF string to be activated upon
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_dtmf_hook(&features, "#", pound_callback, NULL, NULL, 0);

This makes the bridging core call pound_callback if a channel that has this feature structure inputs the DTMF string '#'. A pointer to useful data may be provided to the hook_pvt parameter.

Definition at line 3182 of file bridge.c.

References ao2_link, ao2_ref, ast_copy_string(), ast_bridge_hook_dtmf_parms::code, ast_bridge_hook::destructor, ast_bridge_hook_dtmf::dtmf, ast_bridge_features::dtmf_hooks, ast_bridge_hook_dtmf::generic, and ast_bridge_hook::type.

Referenced by ast_bridge_features_enable(), and bridge_agent_hold_push().

3188 {
3189  struct ast_bridge_hook_dtmf *hook;
3190  int res;
3191 
3192  /* Allocate new hook and setup it's various variables */
3193  hook = (struct ast_bridge_hook_dtmf *) bridge_hook_generic(sizeof(*hook), callback,
3194  hook_pvt, destructor, remove_flags);
3195  if (!hook) {
3196  return -1;
3197  }
3198  hook->generic.type = AST_BRIDGE_HOOK_TYPE_DTMF;
3199  ast_copy_string(hook->dtmf.code, dtmf, sizeof(hook->dtmf.code));
3200 
3201  /* Once done we put it in the container. */
3202  res = ao2_link(features->dtmf_hooks, hook) ? 0 : -1;
3203  if (res) {
3204  /*
3205  * Could not link the hook into the container.
3206  *
3207  * Remove the hook_pvt destructor call from the hook since we
3208  * are returning failure to install the hook.
3209  */
3210  hook->generic.destructor = NULL;
3211  }
3212  ao2_ref(hook, -1);
3213 
3214  return res;
3215 }
ast_bridge_hook_pvt_destructor destructor
struct ao2_container * dtmf_hooks
enum ast_bridge_hook_type type
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
struct ast_bridge_hook_dtmf_parms dtmf
struct ast_bridge_hook generic
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Definition: strings.h:425
char code[MAXIMUM_DTMF_FEATURE_STRING]
#define ao2_link(container, obj)
Add an object to a container.
Definition: astobj2.h:1532
void ast_bridge_features_cleanup ( struct ast_bridge_features features)

Clean up the contents of a bridge features structure.

Parameters
featuresBridge features structure

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_features_cleanup(&features);

This cleans up the feature structure 'features'.

Note
This MUST be called after the features structure is done being used or a memory leak may occur.

Definition at line 3653 of file bridge.c.

References ao2_ref, ast_heap_destroy(), ast_heap_pop(), ast_bridge_features::dtmf_hooks, ast_bridge_features::interval_hooks, and ast_bridge_features::other_hooks.

Referenced by agent_request_exec(), ast_bridge_call_with_flags(), ast_bridge_features_destroy(), bridge_exec(), and confbridge_exec().

3654 {
3655  struct ast_bridge_hook_timer *hook;
3656 
3657  /* Destroy the interval hooks heap. */
3658  if (features->interval_hooks) {
3659  while ((hook = ast_heap_pop(features->interval_hooks))) {
3660  ao2_ref(hook, -1);
3661  }
3662  features->interval_hooks = ast_heap_destroy(features->interval_hooks);
3663  }
3664 
3665  /* Destroy the miscellaneous other hooks container. */
3666  ao2_cleanup(features->other_hooks);
3667  features->other_hooks = NULL;
3668 
3669  /* Destroy the DTMF hooks container. */
3670  ao2_cleanup(features->dtmf_hooks);
3671  features->dtmf_hooks = NULL;
3672 }
struct ast_heap * ast_heap_destroy(struct ast_heap *h)
Destroy a max heap.
Definition: heap.c:146
struct ao2_container * dtmf_hooks
void * ast_heap_pop(struct ast_heap *h)
Pop the max element off of the heap.
Definition: heap.c:262
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
struct ast_heap * interval_hooks
struct ao2_container * other_hooks
void ast_bridge_features_destroy ( struct ast_bridge_features features)

Destroy an allocated bridge features struct.

Since
12.0.0
Parameters
featuresBridge features structure

Example usage:

1 struct ast_bridge_features *features;
2 features = ast_bridge_features_new();
3 ast_bridge_features_destroy(features);

Definition at line 3674 of file bridge.c.

References ast_bridge_features_cleanup().

Referenced by ast_bridge_add_channel(), ast_bridge_call_with_flags(), ast_bridge_features_new(), ast_local_setup_bridge(), bridge_channel_depart_thread(), bridge_channel_ind_thread(), and bridge_exec().

3675 {
3676  if (!features) {
3677  return;
3678  }
3679  ast_bridge_features_cleanup(features);
3680  ast_free(features);
3681 }
void ast_bridge_features_cleanup(struct ast_bridge_features *features)
Clean up the contents of a bridge features structure.
Definition: bridge.c:3653
int ast_bridge_features_do ( enum ast_bridge_builtin_feature  feature,
struct ast_bridge_channel bridge_channel,
void *  hook_pvt 
)

Invoke a built in feature hook now.

Parameters
featureThe feature to invoke
bridge_channelChannel executing the feature
hook_pvtPrivate data passed in when the hook was created
Note
This API call is only meant to be used by bridge subclasses and hook callbacks to request a builtin feature hook to be executed.
Return values
0on success
-1on failure

Example usage:

1 ast_bridge_features_do(AST_BRIDGE_BUILTIN_ATTENDED_TRANSFER, bridge_channel, hook_pvt);

Definition at line 3090 of file bridge.c.

References builtin_features_handlers.

3091 {
3092  ast_bridge_hook_callback callback;
3093 
3094  if (ARRAY_LEN(builtin_features_handlers) <= feature) {
3095  return -1;
3096  }
3097 
3098  callback = builtin_features_handlers[feature];
3099  if (!callback) {
3100  return -1;
3101  }
3102  callback(bridge_channel, hook_pvt);
3103 
3104  return 0;
3105 }
static ast_bridge_hook_callback builtin_features_handlers[AST_BRIDGE_BUILTIN_END]
Definition: bridge.c:147
int(* ast_bridge_hook_callback)(struct ast_bridge_channel *bridge_channel, void *hook_pvt)
Hook callback type.
int ast_bridge_features_enable ( struct ast_bridge_features features,
enum ast_bridge_builtin_feature  feature,
const char *  dtmf,
void *  config,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Enable a built in feature on a bridge features structure.

Parameters
featuresBridge features structure
featureFeature to enable
dtmfOptionally the DTMF stream to trigger the feature, if not specified it will be the default
configConfiguration structure unique to the built in type
destructorOptional destructor callback for config data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_features_enable(&features, AST_BRIDGE_BUILTIN_ATTENDEDTRANSFER, NULL, NULL, 0);

This enables the attended transfer DTMF option using the default DTMF string. An alternate string may be provided using the dtmf parameter. Internally this is simply setting up a hook to a built in feature callback function.

Definition at line 3365 of file bridge.c.

References ast_bridge_dtmf_hook(), ast_debug, builtin_features_dtmf, and builtin_features_handlers.

3371 {
3372  if (ARRAY_LEN(builtin_features_handlers) <= feature
3373  || !builtin_features_handlers[feature]) {
3374  return -1;
3375  }
3376 
3377  /* If no alternate DTMF stream was provided use the default one */
3378  if (ast_strlen_zero(dtmf)) {
3379  dtmf = builtin_features_dtmf[feature];
3380  /* If no DTMF is still available (ie: it has been disabled) then error out now */
3381  if (ast_strlen_zero(dtmf)) {
3382  ast_debug(1, "Failed to enable built in feature %u on %p, no DTMF string is available for it.\n",
3383  feature, features);
3384  return -1;
3385  }
3386  }
3387 
3388  /*
3389  * The rest is basically pretty easy. We create another hook
3390  * using the built in feature's DTMF callback. Easy as pie.
3391  */
3392  return ast_bridge_dtmf_hook(features, dtmf, builtin_features_handlers[feature],
3393  config, destructor, remove_flags);
3394 }
static ast_bridge_hook_callback builtin_features_handlers[AST_BRIDGE_BUILTIN_END]
Definition: bridge.c:147
static char builtin_features_dtmf[AST_BRIDGE_BUILTIN_END][MAXIMUM_DTMF_FEATURE_STRING]
Definition: bridge.c:144
int ast_bridge_dtmf_hook(struct ast_bridge_features *features, const char *dtmf, ast_bridge_hook_callback callback, void *hook_pvt, ast_bridge_hook_pvt_destructor destructor, enum ast_bridge_hook_remove_flags remove_flags)
Attach a DTMF hook to a bridge features structure.
Definition: bridge.c:3182
#define ast_debug(level,...)
Log a DEBUG message.
int ast_bridge_features_init ( struct ast_bridge_features features)

Initialize bridge features structure.

Parameters
featuresBridge featues structure
Return values
0on success
-1on failure

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);

This initializes the feature structure 'features' to have nothing enabled.

Note
This MUST be called before enabling features or flags. Failure to do so may result in a crash.

Definition at line 3620 of file bridge.c.

References AO2_ALLOC_OPT_LOCK_MUTEX, ao2_container_alloc_list, AO2_CONTAINER_ALLOC_OPT_DUPS_REPLACE, ast_heap_create, ast_bridge_features::dtmf_hooks, ast_bridge_features::dtmf_passthrough, ast_bridge_hook_timer_parms::heap_index, ast_bridge_features::interval_hooks, ast_bridge_features::other_hooks, ast_bridge_features::text_messaging, and ast_bridge_hook_timer::timer.

Referenced by agent_request_exec(), ast_bridge_call_with_flags(), ast_bridge_features_new(), bridge_exec(), and confbridge_exec().

3621 {
3622  /* Zero out the structure */
3623  memset(features, 0, sizeof(*features));
3624 
3625  /* Initialize the DTMF hooks container */
3627  AO2_CONTAINER_ALLOC_OPT_DUPS_REPLACE, bridge_dtmf_hook_sort, NULL);
3628  if (!features->dtmf_hooks) {
3629  return -1;
3630  }
3631 
3632  /* Initialize the miscellaneous other hooks container */
3634  NULL);
3635  if (!features->other_hooks) {
3636  return -1;
3637  }
3638 
3639  /* Initialize the interval hooks heap */
3640  features->interval_hooks = ast_heap_create(8, interval_hook_time_cmp,
3641  offsetof(struct ast_bridge_hook_timer, timer.heap_index));
3642  if (!features->interval_hooks) {
3643  return -1;
3644  }
3645 
3646  features->dtmf_passthrough = 1;
3647  features->text_messaging = 1;
3648 
3649  return 0;
3650 }
#define ao2_container_alloc_list(ao2_options, container_options, sort_fn, cmp_fn)
Allocate and initialize a list container.
Definition: astobj2.h:1327
struct ao2_container * dtmf_hooks
unsigned int text_messaging
struct ast_heap * interval_hooks
unsigned int dtmf_passthrough
struct ast_bridge_hook_timer_parms timer
#define ast_heap_create(init_height, cmp_fn, index_offset)
Create a max heap.
Definition: heap.h:100
Replace objects with duplicate keys in container.
Definition: astobj2.h:1211
struct ao2_container * other_hooks
int ast_bridge_features_limits_construct ( struct ast_bridge_features_limits limits)

Constructor function for ast_bridge_features_limits.

Parameters
limitspointer to a ast_bridge_features_limits struct that has been allocated, but not initialized
Return values
0on success
-1on failure

Definition at line 3396 of file bridge.c.

References ast_string_field_init.

3397 {
3398  memset(limits, 0, sizeof(*limits));
3399 
3400  if (ast_string_field_init(limits, 256)) {
3401  return -1;
3402  }
3403 
3404  return 0;
3405 }
#define ast_string_field_init(x, size)
Initialize a field pool and fields.
Definition: stringfields.h:359
void ast_bridge_features_limits_destroy ( struct ast_bridge_features_limits limits)

Destructor function for ast_bridge_features_limits.

Parameters
limitspointer to an ast_bridge_features_limits struct that needs to be destroyed

This function does not free memory allocated to the ast_bridge_features_limits struct, it only frees elements within the struct. You must still call ast_free on the struct if you allocated it with malloc.

Definition at line 3407 of file bridge.c.

References ast_string_field_free_memory.

3408 {
3410 }
#define ast_string_field_free_memory(x)
free all memory - to be called before destroying the object
Definition: stringfields.h:374
void ast_bridge_features_merge ( struct ast_bridge_features into,
const struct ast_bridge_features from 
)

Merge one ast_bridge_features into another.

Parameters
intoThe ast_bridge_features that will be merged into
fromThe ast_bridge_features that will be merged from

Definition at line 3595 of file bridge.c.

References ao2_callback, ast_heap_peek(), ast_bridge_features::dtmf_hooks, ast_bridge_features::dtmf_passthrough, ast_bridge_features::feature_flags, ast_bridge_features::interval_hooks, merge_container_cb(), ast_bridge_features::mute, ast_bridge_features::other_hooks, ast_bridge_features::usable, and wrap_hook().

3596 {
3597  struct ast_bridge_hook_timer *hook;
3598  int idx;
3599 
3600  /* Merge hook containers */
3603 
3604  /* Merge hook heaps */
3605  ast_heap_wrlock(from->interval_hooks);
3606  for (idx = 1; (hook = ast_heap_peek(from->interval_hooks, idx)); idx++) {
3607  wrap_hook(into, hook);
3608  }
3609  ast_heap_unlock(from->interval_hooks);
3610 
3611  /* Merge feature flags */
3612  into->feature_flags.flags |= from->feature_flags.flags;
3613  into->usable |= from->usable;
3614 
3615  into->mute |= from->mute;
3616  into->dtmf_passthrough |= from->dtmf_passthrough;
3617 }
#define ao2_callback(c, flags, cb_fn, arg)
ao2_callback() is a generic function that applies cb_fn() to all objects in a container, as described below.
Definition: astobj2.h:1693
struct ao2_container * dtmf_hooks
static int merge_container_cb(void *obj, void *data, int flags)
Callback for merging hook ao2_containers.
Definition: bridge.c:3562
struct ast_flags feature_flags
struct ast_heap * interval_hooks
unsigned int dtmf_passthrough
static void wrap_hook(struct ast_bridge_features *features, struct ast_bridge_hook_timer *hook)
Wrap the provided interval hook and add it to features.
Definition: bridge.c:3583
struct ao2_container * other_hooks
void * ast_heap_peek(struct ast_heap *h, unsigned int index)
Peek at an element on a heap.
Definition: heap.c:267
struct ast_bridge_features* ast_bridge_features_new ( void  )

Allocate a new bridge features struct.

Since
12.0.0

Example usage:

1 struct ast_bridge_features *features;
2 features = ast_bridge_features_new();
3 ast_bridge_features_destroy(features);
Returns
features New allocated features struct.
Return values
NULLon error.

Definition at line 3683 of file bridge.c.

References ast_bridge_features_destroy(), ast_bridge_features_init(), and ast_malloc.

Referenced by ast_bridge_call_with_flags(), ast_unreal_channel_push_to_bridge(), bridge_exec(), conf_announce_channel_push(), and stasis_app_control_bridge_features_init().

3684 {
3685  struct ast_bridge_features *features;
3686 
3687  features = ast_malloc(sizeof(*features));
3688  if (features) {
3689  if (ast_bridge_features_init(features)) {
3690  ast_bridge_features_destroy(features);
3691  features = NULL;
3692  }
3693  }
3694 
3695  return features;
3696 }
Structure that contains features information.
#define ast_malloc(len)
A wrapper for malloc()
Definition: astmm.h:191
int ast_bridge_features_init(struct ast_bridge_features *features)
Initialize bridge features structure.
Definition: bridge.c:3620
void ast_bridge_features_destroy(struct ast_bridge_features *features)
Destroy an allocated bridge features struct.
Definition: bridge.c:3674
int ast_bridge_features_register ( enum ast_bridge_builtin_feature  feature,
ast_bridge_hook_callback  callback,
const char *  dtmf 
)

Register a handler for a built in feature.

Parameters
featureThe feature that the handler will be responsible for
callbackThe callback function that will handle it
dtmfDefault DTMF string used to activate the feature
Return values
0on success
-1on failure

Example usage:

1 ast_bridge_features_register(AST_BRIDGE_BUILTIN_ATTENDED_TRANSFER, bridge_builtin_attended_transfer, "*1");

This registers the function bridge_builtin_attended_transfer as the function responsible for the built in attended transfer feature.

Definition at line 3062 of file bridge.c.

References ast_copy_string(), builtin_features_dtmf, and builtin_features_handlers.

Referenced by ast_bridging_init_basic(), and load_parking_bridge_features().

3063 {
3064  if (ARRAY_LEN(builtin_features_handlers) <= feature
3065  || builtin_features_handlers[feature]) {
3066  return -1;
3067  }
3068 
3069  if (!ast_strlen_zero(dtmf)) {
3070  ast_copy_string(builtin_features_dtmf[feature], dtmf, sizeof(builtin_features_dtmf[feature]));
3071  }
3072 
3073  builtin_features_handlers[feature] = callback;
3074 
3075  return 0;
3076 }
static ast_bridge_hook_callback builtin_features_handlers[AST_BRIDGE_BUILTIN_END]
Definition: bridge.c:147
static char builtin_features_dtmf[AST_BRIDGE_BUILTIN_END][MAXIMUM_DTMF_FEATURE_STRING]
Definition: bridge.c:144
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Definition: strings.h:425
void ast_bridge_features_set_flag ( struct ast_bridge_features features,
unsigned int  flag 
)

Set a flag on a bridge channel features structure.

Parameters
featuresBridge channel features structure
flagFlag to enable

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_features_set_flag(&features, AST_BRIDGE_CHANNEL_FLAG_DISSOLVE_HANGUP);

This sets the AST_BRIDGE_CHANNEL_FLAG_DISSOLVE_HANGUP feature to be enabled on the features structure 'features'.

Definition at line 3427 of file bridge.c.

References ast_bridge_features::feature_flags, and ast_bridge_features::usable.

3428 {
3429  ast_set_flag(&features->feature_flags, flag);
3430  features->usable = 1;
3431 }
struct ast_flags feature_flags
int ast_bridge_features_set_limits ( struct ast_bridge_features features,
struct ast_bridge_features_limits limits,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Limit the amount of time a channel may stay in the bridge and optionally play warning messages as time runs out.

Parameters
featuresBridge features structure
limitsConfigured limits applicable to the channel
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure

Example usage:

1 struct ast_bridge_features features;
2 struct ast_bridge_features_limits limits;
3 ast_bridge_features_init(&features);
4 ast_bridge_features_limits_construct(&limits);
5 ast_bridge_features_set_limits(&features, &limits, 0);
6 ast_bridge_features_limits_destroy(&limits);

This sets the maximum time the channel can be in the bridge to 10 seconds and does not play any warnings.

Note
This API call can only be used on a features structure that will be used in association with a bridge channel.
The ast_bridge_features_limits structure must remain accessible for the lifetime of the features structure.

Definition at line 3412 of file bridge.c.

References AST_BRIDGE_BUILTIN_INTERVAL_LIMITS, and builtin_interval_handlers.

3415 {
3418 
3420  return callback(features, limits, remove_flags);
3421  }
3422 
3423  ast_log(LOG_ERROR, "Attempted to set limits without an AST_BRIDGE_BUILTIN_INTERVAL_LIMITS callback registered.\n");
3424  return -1;
3425 }
int(* ast_bridge_builtin_set_limits_fn)(struct ast_bridge_features *features, struct ast_bridge_features_limits *limits, enum ast_bridge_hook_remove_flags remove_flags)
Attach interval hooks to a bridge features structure.
static ast_bridge_builtin_set_limits_fn builtin_interval_handlers[AST_BRIDGE_BUILTIN_INTERVAL_END]
Definition: bridge.c:150
int ast_bridge_features_unregister ( enum ast_bridge_builtin_feature  feature)

Unregister a handler for a built in feature.

Parameters
featureThe feature to unregister
Return values
0on success
-1on failure

Example usage:

1 ast_bridge_features_unregister(AST_BRIDGE_BUILTIN_ATTENDED_TRANSFER);

This unregisters the function that is handling the built in attended transfer feature.

Definition at line 3078 of file bridge.c.

References builtin_features_handlers.

Referenced by unload_parking_bridge_features().

3079 {
3080  if (ARRAY_LEN(builtin_features_handlers) <= feature
3081  || !builtin_features_handlers[feature]) {
3082  return -1;
3083  }
3084 
3085  builtin_features_handlers[feature] = NULL;
3086 
3087  return 0;
3088 }
static ast_bridge_hook_callback builtin_features_handlers[AST_BRIDGE_BUILTIN_END]
Definition: bridge.c:147
int ast_bridge_hangup_hook ( struct ast_bridge_features features,
ast_bridge_hook_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach a hangup hook to a bridge features structure.

Parameters
featuresBridge features structure
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_hangup_hook(&features, hangup_callback, NULL, NULL, 0);

This makes the bridging core call hangup_callback if a channel that has this hook hangs up. A pointer to useful data may be provided to the hook_pvt parameter.

Definition at line 3265 of file bridge.c.

3270 {
3271  return bridge_other_hook(features, callback, hook_pvt, destructor, remove_flags,
3272  AST_BRIDGE_HOOK_TYPE_HANGUP);
3273 }
int ast_bridge_interval_hook ( struct ast_bridge_features features,
enum ast_bridge_hook_timer_option  flags,
unsigned int  interval,
ast_bridge_hook_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach an interval hook to a bridge features structure.

Parameters
featuresBridge features structure
flagsInterval timer callback option flags.
intervalThe interval that the hook should execute at in milliseconds
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)
1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_interval_hook(&features, 1000, playback_callback, NULL, NULL, 0);

This makes the bridging core call playback_callback every second. A pointer to useful data may be provided to the hook_pvt parameter.

Definition at line 3319 of file bridge.c.

References ao2_ref, ast_atomic_fetchadd_int(), ast_debug, ast_heap_push, ast_samp2tv(), ast_tvadd(), ast_tvnow(), ast_bridge_hook::destructor, ast_bridge_hook_timer_parms::flags, ast_bridge_hook_timer::generic, ast_bridge_hook_timer_parms::interval, ast_bridge_features::interval_hooks, ast_bridge_features::interval_sequence, ast_bridge_hook_timer_parms::seqno, ast_bridge_hook_timer::timer, ast_bridge_hook_timer_parms::trip_time, and ast_bridge_hook::type.

Referenced by agent_request_exec(), bridge_agent_hold_push(), confbridge_exec(), parking_set_duration(), set_interval_hook(), and wrap_hook().

3326 {
3327  struct ast_bridge_hook_timer *hook;
3328  int res;
3329 
3330  if (!features ||!interval || !callback) {
3331  return -1;
3332  }
3333 
3334  /* Allocate new hook and setup it's various variables */
3335  hook = (struct ast_bridge_hook_timer *) bridge_hook_generic(sizeof(*hook), callback,
3336  hook_pvt, destructor, remove_flags);
3337  if (!hook) {
3338  return -1;
3339  }
3340  hook->generic.type = AST_BRIDGE_HOOK_TYPE_TIMER;
3341  hook->timer.interval = interval;
3342  hook->timer.trip_time = ast_tvadd(ast_tvnow(), ast_samp2tv(interval, 1000));
3343  hook->timer.seqno = ast_atomic_fetchadd_int((int *) &features->interval_sequence, +1);
3344  hook->timer.flags = flags;
3345 
3346  ast_debug(1, "Putting interval hook %p with interval %u in the heap on features %p\n",
3347  hook, hook->timer.interval, features);
3348  ast_heap_wrlock(features->interval_hooks);
3349  res = ast_heap_push(features->interval_hooks, hook);
3350  ast_heap_unlock(features->interval_hooks);
3351  if (res) {
3352  /*
3353  * Could not push the hook into the heap
3354  *
3355  * Remove the hook_pvt destructor call from the hook since we
3356  * are returning failure to install the hook.
3357  */
3358  hook->generic.destructor = NULL;
3359  ao2_ref(hook, -1);
3360  }
3361 
3362  return res ? -1 : 0;
3363 }
struct ast_bridge_hook generic
ast_bridge_hook_pvt_destructor destructor
struct timeval ast_tvnow(void)
Returns current timeval. Meant to replace calls to gettimeofday().
Definition: time.h:159
int ast_atomic_fetchadd_int(volatile int *p, int v)
Atomically add v to *p and return the previous value of *p.
Definition: lock.h:757
#define ast_heap_push(h, elm)
Push an element on to a heap.
Definition: heap.h:125
enum ast_bridge_hook_type type
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
struct timeval ast_samp2tv(unsigned int _nsamp, unsigned int _rate)
Returns a timeval corresponding to the duration of n samples at rate r. Useful to convert samples to ...
Definition: time.h:282
#define ast_debug(level,...)
Log a DEBUG message.
struct ast_heap * interval_hooks
struct timeval ast_tvadd(struct timeval a, struct timeval b)
Returns the sum of two timevals a + b.
Definition: extconf.c:2282
struct ast_bridge_hook_timer_parms timer
unsigned int interval_sequence
int ast_bridge_interval_register ( enum ast_bridge_builtin_interval  interval,
ast_bridge_builtin_set_limits_fn  callback 
)

Register a handler for a built in interval feature.

Parameters
intervalThe interval feature that the handler will be responsible for
callbackthe Callback function that will handle it
Return values
0on success
-1on failure

Example usage:

1 ast_bridge_interval_register(AST_BRIDGE_BUILTIN_INTERVAL_LIMITS, bridge_builtin_set_limits);

This registers the function bridge_builtin_set_limits as the function responsible for the built in duration limit feature.

Definition at line 3107 of file bridge.c.

References builtin_interval_handlers.

3108 {
3109  if (ARRAY_LEN(builtin_interval_handlers) <= interval
3110  || builtin_interval_handlers[interval]) {
3111  return -1;
3112  }
3113 
3114  builtin_interval_handlers[interval] = callback;
3115 
3116  return 0;
3117 }
static ast_bridge_builtin_set_limits_fn builtin_interval_handlers[AST_BRIDGE_BUILTIN_INTERVAL_END]
Definition: bridge.c:150
int ast_bridge_interval_unregister ( enum ast_bridge_builtin_interval  interval)

Unregisters a handler for a built in interval feature.

Parameters
intervalthe interval feature to unregister
Return values
0on success
-1on failure

Example usage:

1 ast_bridge_interval_unregister(AST_BRIDGE_BULTIN_INTERVAL_LIMITS)

This unregisters the function that is handling the built in duration limit feature.

Definition at line 3119 of file bridge.c.

References builtin_interval_handlers.

3120 {
3121  if (ARRAY_LEN(builtin_interval_handlers) <= interval
3122  || !builtin_interval_handlers[interval]) {
3123  return -1;
3124  }
3125 
3126  builtin_interval_handlers[interval] = NULL;
3127 
3128  return 0;
3129 
3130 }
static ast_bridge_builtin_set_limits_fn builtin_interval_handlers[AST_BRIDGE_BUILTIN_INTERVAL_END]
Definition: bridge.c:150
int ast_bridge_join_hook ( struct ast_bridge_features features,
ast_bridge_hook_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach a bridge channel join hook to a bridge features structure.

Parameters
featuresBridge features structure
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_join_hook(&features, join_callback, NULL, NULL, 0);

This makes the bridging core call join_callback when a channel successfully joins the bridging system. A pointer to useful data may be provided to the hook_pvt parameter.

Definition at line 3275 of file bridge.c.

Referenced by agent_request_exec(), and confbridge_exec().

3280 {
3281  return bridge_other_hook(features, callback, hook_pvt, destructor, remove_flags,
3282  AST_BRIDGE_HOOK_TYPE_JOIN);
3283 }
int ast_bridge_leave_hook ( struct ast_bridge_features features,
ast_bridge_hook_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach a bridge channel leave hook to a bridge features structure.

Parameters
featuresBridge features structure
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_leave_hook(&features, leave_callback, NULL, NULL, 0);

This makes the bridging core call leave_callback when a channel successfully leaves the bridging system. A pointer to useful data may be provided to the hook_pvt parameter.

Definition at line 3285 of file bridge.c.

Referenced by confbridge_exec().

3290 {
3291  return bridge_other_hook(features, callback, hook_pvt, destructor, remove_flags,
3292  AST_BRIDGE_HOOK_TYPE_LEAVE);
3293 }
int ast_bridge_move_hook ( struct ast_bridge_features features,
ast_bridge_move_indicate_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach a bridge channel move detection hook to a bridge features structure.

Parameters
featuresBridge features structure
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_move_hook(&features, move_callback, NULL, NULL, 0);

This makes the bridging core call callback when a channel is moved from one bridge to another. A pointer to useful data may be provided to the hook_pvt parameter.

Definition at line 3307 of file bridge.c.

3312 {
3314 
3315  return bridge_other_hook(features, hook_cb, hook_pvt, destructor, remove_flags,
3316  AST_BRIDGE_HOOK_TYPE_MOVE);
3317 }
int(* ast_bridge_hook_callback)(struct ast_bridge_channel *bridge_channel, void *hook_pvt)
Hook callback type.
int ast_bridge_talk_detector_hook ( struct ast_bridge_features features,
ast_bridge_talking_indicate_callback  callback,
void *  hook_pvt,
ast_bridge_hook_pvt_destructor  destructor,
enum ast_bridge_hook_remove_flags  remove_flags 
)

Attach a bridge channel talk detection hook to a bridge features structure.

Parameters
featuresBridge features structure
callbackFunction to execute upon activation
hook_pvtUnique data
destructorOptional destructor callback for hook_pvt data
remove_flagsDictates what situations the hook should be removed.
Return values
0on success
-1on failure (The caller must cleanup any hook_pvt resources.)

Example usage:

1 struct ast_bridge_features features;
2 ast_bridge_features_init(&features);
3 ast_bridge_talk_hook(&features, talk_callback, NULL, NULL, 0);

This makes the bridging technology call talk_callback when a channel is recognized as starting and stopping talking. A pointer to useful data may be provided to the hook_pvt parameter.

Note
This hook is currently only supported by softmix.

Definition at line 3295 of file bridge.c.

Referenced by confbridge_exec().

3300 {
3302 
3303  return bridge_other_hook(features, hook_cb, hook_pvt, destructor, remove_flags,
3304  AST_BRIDGE_HOOK_TYPE_TALK);
3305 }
int(* ast_bridge_hook_callback)(struct ast_bridge_channel *bridge_channel, void *hook_pvt)
Hook callback type.