[svn-commits] kmoore: branch 1.8 r402645 - /branches/1.8/apps/app_queue.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Nov 11 09:31:14 CST 2013
Author: kmoore
Date: Mon Nov 11 09:31:04 2013
New Revision: 402645
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=402645
Log:
app_queue: Honor penalty limits of 0
In the current app_queue code from 1.8 up to trunk the upper and lower
penalties can be set to 0 but the value is interpreted to be disabled
instead of actually setting limits. This is especially evident if min
and max limits are set to 0 and members with penalties of 0 and 1 are
in the queue since the member with penalty 1 will still receive calls.
This patch adjusts the special disabled value to be INT_MAX instead of
0.
(closes issue ASTERISK-20862)
Review: https://reviewboard.asterisk.org/r/2995/
Reported by: Schmooze Com
Modified:
branches/1.8/apps/app_queue.c
Modified: branches/1.8/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_queue.c?view=diff&rev=402645&r1=402644&r2=402645
==============================================================================
--- branches/1.8/apps/app_queue.c (original)
+++ branches/1.8/apps/app_queue.c Mon Nov 11 09:31:04 2013
@@ -1406,7 +1406,7 @@
ao2_lock(q);
mem_iter = ao2_iterator_init(q->members, 0);
for (; (member = ao2_iterator_next(&mem_iter)); ao2_ref(member, -1)) {
- if ((max_penalty && (member->penalty > max_penalty)) || (min_penalty && (member->penalty < min_penalty))) {
+ if ((max_penalty != INT_MAX && member->penalty > max_penalty) || (min_penalty != INT_MAX && member->penalty < min_penalty)) {
if (conditions & QUEUE_EMPTY_PENALTY) {
ast_debug(4, "%s is unavailable because his penalty is not between %d and %d\n", member->membername, min_penalty, max_penalty);
continue;
@@ -4173,23 +4173,54 @@
*/
static void update_qe_rule(struct queue_ent *qe)
{
- int max_penalty = qe->pr->max_relative ? qe->max_penalty + qe->pr->max_value : qe->pr->max_value;
- int min_penalty = qe->pr->min_relative ? qe->min_penalty + qe->pr->min_value : qe->pr->min_value;
- char max_penalty_str[20], min_penalty_str[20];
- /* a relative change to the penalty could put it below 0 */
- if (max_penalty < 0)
- max_penalty = 0;
- if (min_penalty < 0)
- min_penalty = 0;
- if (min_penalty > max_penalty)
- min_penalty = max_penalty;
- snprintf(max_penalty_str, sizeof(max_penalty_str), "%d", max_penalty);
- snprintf(min_penalty_str, sizeof(min_penalty_str), "%d", min_penalty);
- pbx_builtin_setvar_helper(qe->chan, "QUEUE_MAX_PENALTY", max_penalty_str);
- pbx_builtin_setvar_helper(qe->chan, "QUEUE_MIN_PENALTY", min_penalty_str);
- qe->max_penalty = max_penalty;
- qe->min_penalty = min_penalty;
- ast_debug(3, "Setting max penalty to %d and min penalty to %d for caller %s since %d seconds have elapsed\n", qe->max_penalty, qe->min_penalty, qe->chan->name, qe->pr->time);
+ int max_penalty = INT_MAX;
+
+ if (qe->max_penalty != INT_MAX) {
+ char max_penalty_str[20];
+
+ if (qe->pr->max_relative) {
+ max_penalty = qe->max_penalty + qe->pr->max_value;
+ } else {
+ max_penalty = qe->pr->max_value;
+ }
+
+ /* a relative change to the penalty could put it below 0 */
+ if (max_penalty < 0) {
+ max_penalty = 0;
+ }
+
+ snprintf(max_penalty_str, sizeof(max_penalty_str), "%d", max_penalty);
+ pbx_builtin_setvar_helper(qe->chan, "QUEUE_MAX_PENALTY", max_penalty_str);
+ qe->max_penalty = max_penalty;
+ ast_debug(3, "Setting max penalty to %d for caller %s since %d seconds have elapsed\n",
+ qe->max_penalty, qe->chan->name, qe->pr->time);
+ }
+
+ if (qe->min_penalty != INT_MAX) {
+ char min_penalty_str[20];
+ int min_penalty;
+
+ if (qe->pr->min_relative) {
+ min_penalty = qe->min_penalty + qe->pr->min_value;
+ } else {
+ min_penalty = qe->pr->min_value;
+ }
+
+ if (min_penalty < 0) {
+ min_penalty = 0;
+ }
+
+ if (max_penalty != INT_MAX && min_penalty > max_penalty) {
+ min_penalty = max_penalty;
+ }
+
+ snprintf(min_penalty_str, sizeof(min_penalty_str), "%d", min_penalty);
+ pbx_builtin_setvar_helper(qe->chan, "QUEUE_MIN_PENALTY", min_penalty_str);
+ qe->min_penalty = min_penalty;
+ ast_debug(3, "Setting min penalty to %d for caller %s since %d seconds have elapsed\n",
+ qe->min_penalty, qe->chan->name, qe->pr->time);
+ }
+
qe->pr = AST_LIST_NEXT(qe->pr, list);
}
@@ -4334,8 +4365,8 @@
unsigned char usepenalty = (membercount <= q->penaltymemberslimit) ? 0 : 1;
if (usepenalty) {
- if ((qe->max_penalty && (mem->penalty > qe->max_penalty)) ||
- (qe->min_penalty && (mem->penalty < qe->min_penalty))) {
+ if ((qe->max_penalty != INT_MAX && mem->penalty > qe->max_penalty) ||
+ (qe->min_penalty != INT_MAX && mem->penalty < qe->min_penalty)) {
return -1;
}
} else {
@@ -6163,10 +6194,10 @@
} else {
ast_log(LOG_WARNING, "${QUEUE_MAX_PENALTY}: Invalid value (%s), channel %s.\n",
max_penalty_str, chan->name);
- max_penalty = 0;
+ max_penalty = INT_MAX;
}
} else {
- max_penalty = 0;
+ max_penalty = INT_MAX;
}
if ((min_penalty_str = pbx_builtin_getvar_helper(chan, "QUEUE_MIN_PENALTY"))) {
@@ -6175,10 +6206,10 @@
} else {
ast_log(LOG_WARNING, "${QUEUE_MIN_PENALTY}: Invalid value (%s), channel %s.\n",
min_penalty_str, chan->name);
- min_penalty = 0;
+ min_penalty = INT_MAX;
}
} else {
- min_penalty = 0;
+ min_penalty = INT_MAX;
}
ast_channel_unlock(chan);
More information about the svn-commits
mailing list