[asterisk-commits] russell: branch 1.4 r54066 - in /branches/1.4: apps/ include/asterisk/ main/

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Feb 12 10:58:44 MST 2007


Author: russell
Date: Mon Feb 12 11:58:43 2007
New Revision: 54066

URL: http://svn.digium.com/view/asterisk?view=rev&rev=54066
Log:
- Add the ability to register a callback to monitor state changes in an
  asynchronous dial operation.
- Rename the various references to "status" to "state" in the dial API

Modified:
    branches/1.4/apps/app_meetme.c
    branches/1.4/apps/app_page.c
    branches/1.4/include/asterisk/dial.h
    branches/1.4/main/dial.c

Modified: branches/1.4/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=54066&r1=54065&r2=54066
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Mon Feb 12 11:58:43 2007
@@ -3143,7 +3143,7 @@
 			ast_mutex_t cond_lock;
 			ast_cond_t cond;
 
-			switch ((dial_res = ast_dial_status(station_ref->station->dial))) {
+			switch ((dial_res = ast_dial_state(station_ref->station->dial))) {
 			case AST_DIAL_RESULT_HANGUP:
 			case AST_DIAL_RESULT_INVALID:
 			case AST_DIAL_RESULT_FAILED:
@@ -3286,7 +3286,7 @@
 
 	for (;;) {
 		unsigned int done = 0;
-		switch ((dial_res = ast_dial_status(dial))) {
+		switch ((dial_res = ast_dial_state(dial))) {
 		case AST_DIAL_RESULT_ANSWERED:
 			trunk->chan = ast_dial_answered(dial);
 		case AST_DIAL_RESULT_HANGUP:

Modified: branches/1.4/apps/app_page.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_page.c?view=diff&rev=54066&r1=54065&r2=54066
==============================================================================
--- branches/1.4/apps/app_page.c (original)
+++ branches/1.4/apps/app_page.c Mon Feb 12 11:58:43 2007
@@ -168,7 +168,7 @@
 		struct ast_dial *dial = dials[i];
 
 		/* If the dial is already answered, then they will/should get kicked out by Meetme */
-		if (ast_dial_status(dial) != AST_DIAL_RESULT_ANSWERED)
+		if (ast_dial_state(dial) != AST_DIAL_RESULT_ANSWERED)
 			ast_dial_join(dial);
 
 		/* Hangup all channels */

Modified: branches/1.4/include/asterisk/dial.h
URL: http://svn.digium.com/view/asterisk/branches/1.4/include/asterisk/dial.h?view=diff&rev=54066&r1=54065&r2=54066
==============================================================================
--- branches/1.4/include/asterisk/dial.h (original)
+++ branches/1.4/include/asterisk/dial.h Mon Feb 12 11:58:43 2007
@@ -32,6 +32,8 @@
 
 /*! \brief Dialing channel structure. Contains per-channel dialing options, asterisk channel, and more! */
 struct ast_dial_channel;
+
+typedef void (*ast_dial_state_callback)(struct ast_dial *);
 
 /*! \brief List of options that are applicable either globally or per dialed channel */
 enum ast_dial_option {
@@ -78,11 +80,11 @@
  */
 struct ast_channel *ast_dial_answered(struct ast_dial *dial);
 
-/*! \brief Return status of dial
- * \note Returns the status of the dial attempt
+/*! \brief Return state of dial
+ * \note Returns the state of the dial attempt
  * \param dial Dialing structure
  */
-enum ast_dial_result ast_dial_status(struct ast_dial *dial);
+enum ast_dial_result ast_dial_state(struct ast_dial *dial);
 
 /*! \brief Cancel async thread
  * \note Cancel a running async thread
@@ -135,6 +137,13 @@
  */
 int ast_dial_option_disable(struct ast_dial *dial, int num, enum ast_dial_option option);
 
+/*! \brief Set a callback for state changes
+ * \param dial The dial structure to watch for state changes
+ * \param callback the callback
+ * \return nothing
+ */
+void ast_set_state_callback(struct ast_dial *dial, ast_dial_state_callback callback);
+
 #if defined(__cplusplus) || defined(c_plusplus)
 }
 #endif

Modified: branches/1.4/main/dial.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/dial.c?view=diff&rev=54066&r1=54065&r2=54066
==============================================================================
--- branches/1.4/main/dial.c (original)
+++ branches/1.4/main/dial.c Mon Feb 12 11:58:43 2007
@@ -47,8 +47,9 @@
 /*! \brief Main dialing structure. Contains global options, channels being dialed, and more! */
 struct ast_dial {
 	int num;                                           /*! Current number to give to next dialed channel */
-	enum ast_dial_result status;                       /*! Status of dial */
+	enum ast_dial_result state;                       /*! Status of dial */
 	void *options[AST_DIAL_OPTION_MAX];                /*! Global options */
+	ast_dial_state_callback state_callback;          /*! Status callback */
 	AST_LIST_HEAD_NOLOCK(, ast_dial_channel) channels; /*! Channels being dialed */
 	pthread_t thread;                                  /*! Thread (if running in async) */
 };
@@ -288,6 +289,14 @@
 	return channel;
 }
 
+static void set_state(struct ast_dial *dial, enum ast_dial_result state)
+{
+	dial->state = state;
+
+	if (dial->state_callback)
+		dial->state_callback(dial);
+}
+
 /*! \brief Helper function that handles control frames WITH owner */
 static void handle_frame(struct ast_dial *dial, struct ast_dial_channel *channel, struct ast_frame *fr, struct ast_channel *chan)
 {
@@ -298,7 +307,7 @@
 				ast_verbose( VERBOSE_PREFIX_3 "%s answered %s\n", channel->owner->name, chan->name);
 			AST_LIST_REMOVE(&dial->channels, channel, list);
 			AST_LIST_INSERT_HEAD(&dial->channels, channel, list);
-			dial->status = AST_DIAL_RESULT_ANSWERED;
+			set_state(dial, AST_DIAL_RESULT_ANSWERED);
 			break;
 		case AST_CONTROL_BUSY:
 			if (option_verbose > 2)
@@ -360,7 +369,7 @@
 /*! \brief Helper function that handles control frames WITHOUT owner */
 static void handle_frame_ownerless(struct ast_dial *dial, struct ast_dial_channel *channel, struct ast_frame *fr)
 {
-	/* If we have no owner we can only update the status of the dial structure, so only look at control frames */
+	/* If we have no owner we can only update the state of the dial structure, so only look at control frames */
 	if (fr->frametype != AST_FRAME_CONTROL)
 		return;
 
@@ -370,7 +379,7 @@
 			ast_verbose( VERBOSE_PREFIX_3 "%s answered\n", channel->owner->name);
 		AST_LIST_REMOVE(&dial->channels, channel, list);
 		AST_LIST_INSERT_HEAD(&dial->channels, channel, list);
-		dial->status = AST_DIAL_RESULT_ANSWERED;
+		set_state(dial, AST_DIAL_RESULT_ANSWERED);
 		break;
 	case AST_CONTROL_BUSY:
 		if (option_verbose > 2)
@@ -387,17 +396,17 @@
 	case AST_CONTROL_RINGING:
 		if (option_verbose > 2)
 			ast_verbose(VERBOSE_PREFIX_3 "%s is ringing\n", channel->owner->name);
-		dial->status = AST_DIAL_RESULT_RINGING;
+		set_state(dial, AST_DIAL_RESULT_RINGING);
 		break;
 	case AST_CONTROL_PROGRESS:
 		if (option_verbose > 2)
 			ast_verbose (VERBOSE_PREFIX_3 "%s is making progress\n", channel->owner->name);
-		dial->status = AST_DIAL_RESULT_PROGRESS;
+		set_state(dial, AST_DIAL_RESULT_PROGRESS);
 		break;
 	case AST_CONTROL_PROCEEDING:
 		if (option_verbose > 2)
 			ast_verbose (VERBOSE_PREFIX_3 "%s is proceeding\n", channel->owner->name);
-		dial->status = AST_DIAL_RESULT_PROCEEDING;
+		set_state(dial, AST_DIAL_RESULT_PROCEEDING);
 		break;
 	default:
 		break;
@@ -414,18 +423,17 @@
 	struct ast_dial_channel *channel = NULL;
 	struct answer_exec_struct *answer_exec = NULL;
 
-	/* Switch dialing status to trying */
-	dial->status = AST_DIAL_RESULT_TRYING;
-
-	/* If the "always indicate ringing" option is set, change status to ringing and indicate to the owner if present */
+	set_state(dial, AST_DIAL_RESULT_TRYING);
+
+	/* If the "always indicate ringing" option is set, change state to ringing and indicate to the owner if present */
 	if (dial->options[AST_DIAL_OPTION_RINGING]) {
-		dial->status = AST_DIAL_RESULT_RINGING;
+		set_state(dial, AST_DIAL_RESULT_RINGING);
 		if (chan)
 			ast_indicate(chan, AST_CONTROL_RINGING);
 	}
 
 	/* Go into an infinite loop while we are trying */
-	while ((dial->status != AST_DIAL_RESULT_UNANSWERED) && (dial->status != AST_DIAL_RESULT_ANSWERED) && (dial->status != AST_DIAL_RESULT_HANGUP) && (dial->status != AST_DIAL_RESULT_TIMEOUT)) {
+	while ((dial->state != AST_DIAL_RESULT_UNANSWERED) && (dial->state != AST_DIAL_RESULT_ANSWERED) && (dial->state != AST_DIAL_RESULT_HANGUP) && (dial->state != AST_DIAL_RESULT_TIMEOUT)) {
 		int pos = 0;
 		struct ast_frame *fr = NULL;
 
@@ -442,9 +450,9 @@
 			}
 		}
 
-		/* If we have no outbound channels in progress, switch status to unanswered and stop */
+		/* If we have no outbound channels in progress, switch state to unanswered and stop */
 		if (!count) {
-			dial->status = AST_DIAL_RESULT_UNANSWERED;
+			set_state(dial, AST_DIAL_RESULT_UNANSWERED);
 			break;
 		}
 
@@ -469,9 +477,9 @@
 
 		/* Attempt to read in a frame */
 		if (!(fr = ast_read(who))) {
-			/* If this is the caller then we switch status to hangup and stop */
+			/* If this is the caller then we switch state to hangup and stop */
 			if (chan && IS_CALLER(chan, who)) {
-				dial->status = AST_DIAL_RESULT_HANGUP;
+				set_state(dial, AST_DIAL_RESULT_HANGUP);
 				break;
 			}
 			ast_hangup(who);
@@ -490,7 +498,7 @@
 	}
 
 	/* Do post-processing from loop */
-	if (dial->status == AST_DIAL_RESULT_ANSWERED) {
+	if (dial->state == AST_DIAL_RESULT_ANSWERED) {
 		/* Hangup everything except that which answered */
 		AST_LIST_TRAVERSE(&dial->channels, channel, list) {
 			if (!channel->owner || channel->owner == who)
@@ -501,7 +509,7 @@
 		/* If ANSWER_EXEC is enabled as an option, execute application on answered channel */
 		if ((channel = find_relative_dial_channel(dial, who)) && (answer_exec = FIND_RELATIVE_OPTION(dial, channel, AST_DIAL_OPTION_ANSWER_EXEC)))
 			answer_exec_run(who, answer_exec->app, answer_exec->args);
-	} else if (dial->status == AST_DIAL_RESULT_HANGUP) {
+	} else if (dial->state == AST_DIAL_RESULT_HANGUP) {
 		/* Hangup everything */
 		AST_LIST_TRAVERSE(&dial->channels, channel, list) {
 			if (!channel->owner)
@@ -511,7 +519,7 @@
 		}
 	}
 
-	return dial->status;
+	return dial->state;
 }
 
 /*! \brief Dial async thread function */
@@ -551,7 +559,7 @@
 
 	/* If we are running async spawn a thread and send it away... otherwise block here */
 	if (async) {
-		dial->status = AST_DIAL_RESULT_TRYING;
+		set_state(dial, AST_DIAL_RESULT_TRYING);
 		/* Try to create a thread */
 		if (ast_pthread_create(&dial->thread, NULL, async_dial, dial)) {
 			/* Failed to create the thread - hangup all dialed channels and return failed */
@@ -574,16 +582,16 @@
 	if (!dial)
 		return NULL;
 
-	return ((dial->status == AST_DIAL_RESULT_ANSWERED) ? AST_LIST_FIRST(&dial->channels)->owner : NULL);
-}
-
-/*! \brief Return status of dial
- * \note Returns the status of the dial attempt
+	return ((dial->state == AST_DIAL_RESULT_ANSWERED) ? AST_LIST_FIRST(&dial->channels)->owner : NULL);
+}
+
+/*! \brief Return state of dial
+ * \note Returns the state of the dial attempt
  * \param dial Dialing structure
  */
-enum ast_dial_result ast_dial_status(struct ast_dial *dial)
-{
-	return dial->status;
+enum ast_dial_result ast_dial_state(struct ast_dial *dial)
+{
+	return dial->state;
 }
 
 /*! \brief Cancel async thread
@@ -613,7 +621,7 @@
 	/* Yay thread is all gone */
 	dial->thread = AST_PTHREADT_NULL;
 
-	return dial->status;
+	return dial->state;
 }
 
 /*! \brief Hangup channels
@@ -809,3 +817,8 @@
 
 	return 0;
 }
+
+void ast_set_state_callback(struct ast_dial *dial, ast_dial_state_callback callback)
+{
+	dial->state_callback = callback;
+}



More information about the asterisk-commits mailing list