Skip to content
Snippets Groups Projects
sched.c 8.86 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mark Spencer's avatar
    Mark Spencer committed
    /*
    
    Russell Bryant's avatar
    Russell Bryant committed
     * Asterisk -- A telephony toolkit for Linux.
    
    Mark Spencer's avatar
    Mark Spencer committed
     * 
    
    Russell Bryant's avatar
    Russell Bryant committed
     * Mark Spencer <markster@digium.com>
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
    
    Mark Spencer's avatar
    Mark Spencer committed
     * Copyright(C) Mark Spencer
    
    Mark Spencer's avatar
    Mark Spencer committed
     * 
     * Distributed under the terms of the GNU General Public License (GPL) Version 2
     *
    
    Russell Bryant's avatar
    Russell Bryant committed
     * Scheduler Routines (from cheops-NG)
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
     */
    
    #ifdef DEBUG_SCHEDULER
    #define DEBUG(a) DEBUG_M(a)
    #else
    #define DEBUG(a) 
    #endif
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/time.h>
    #include <unistd.h>
    
    #include "asterisk.h"
    
    
    Kevin P. Fleming's avatar
    Kevin P. Fleming committed
    ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
    
    #include "asterisk/sched.h"
    #include "asterisk/logger.h"
    #include "asterisk/channel.h"
    #include "asterisk/lock.h"
    
    Mark Spencer's avatar
    Mark Spencer committed
    
    /* Determine if a is sooner than b */
    #define SOONER(a,b) (((b).tv_sec > (a).tv_sec) || \
    					 (((b).tv_sec == (a).tv_sec) && ((b).tv_usec > (a).tv_usec)))
    
    struct sched {
    
    Russell Bryant's avatar
    Russell Bryant committed
    	struct sched *next;		/* Next event in the list */
    	int id; 			/* ID number of event */
    	struct timeval when;		/* Absolute time event should take place */
    	int resched;			/* When to reschedule */
    	void *data; 			/* Data */
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_sched_cb callback;		/* Callback */
    };
    
    struct sched_context {
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_t lock;
    
    Mark Spencer's avatar
    Mark Spencer committed
    	/* Number of events processed */
    	int eventcnt;
    
    	/* Number of outstanding schedule events */
    	int schedcnt;
    
    	/* Schedule entry and main queue */
     	struct sched *schedq;
    
    #ifdef SCHED_MAX_CACHE
    	/* Cache of unused schedule structures and how many */
    	struct sched *schedc;
    	int schedccnt;
    #endif
    };
    
    struct sched_context *sched_context_create(void)
    {
    	struct sched_context *tmp;
    	tmp = malloc(sizeof(struct sched_context));
    	if (tmp) {
    
              	memset(tmp, 0, sizeof(struct sched_context));
    
    Mark Spencer's avatar
    Mark Spencer committed
    		ast_mutex_init(&tmp->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    		tmp->eventcnt = 1;
    		tmp->schedcnt = 0;
    		tmp->schedq = NULL;
    
    Mark Spencer's avatar
    Mark Spencer committed
    #ifdef SCHED_MAX_CACHE
    
    Mark Spencer's avatar
    Mark Spencer committed
    		tmp->schedc = NULL;
    		tmp->schedccnt = 0;
    
    Mark Spencer's avatar
    Mark Spencer committed
    #endif
    
    Mark Spencer's avatar
    Mark Spencer committed
    	}
    	return tmp;
    }
    
    void sched_context_destroy(struct sched_context *con)
    {
    	struct sched *s, *sl;
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_lock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    #ifdef SCHED_MAX_CACHE
    
    Mark Spencer's avatar
    Mark Spencer committed
    	/* Eliminate the cache */
    	s = con->schedc;
    	while(s) {
    		sl = s;
    		s = s->next;
    		free(sl);
    	}
    
    Mark Spencer's avatar
    Mark Spencer committed
    #endif
    
    Mark Spencer's avatar
    Mark Spencer committed
    	/* And the queue */
    	s = con->schedq;
    	while(s) {
    		sl = s;
    		s = s->next;
    		free(sl);
    	}
    	/* And the context */
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_unlock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	free(con);
    }
    
    static struct sched *sched_alloc(struct sched_context *con)
    {
    	/*
    	 * We keep a small cache of schedule entries
    	 * to minimize the number of necessary malloc()'s
    	 */
    	struct sched *tmp;
    #ifdef SCHED_MAX_CACHE
    	if (con->schedc) {
    		tmp = con->schedc;
    		con->schedc = con->schedc->next;
    		con->schedccnt--;
    	} else
    #endif
    		tmp = malloc(sizeof(struct sched));
    	return tmp;
    }
    
    static void sched_release(struct sched_context *con, struct sched *tmp)
    {
    	/*
    	 * Add to the cache, or just free() if we
    	 * already have too many cache entries
    	 */
    
    #ifdef SCHED_MAX_CACHE	 
    	if (con->schedccnt < SCHED_MAX_CACHE) {
    		tmp->next = con->schedc;
    		con->schedc = tmp;
    		con->schedccnt++;
    	} else
    #endif
    		free(tmp);
    }
    
    int ast_sched_wait(struct sched_context *con)
    {
    	/*
    	 * Return the number of milliseconds 
    	 * until the next scheduled event
    	 */
    	int ms;
    	DEBUG(ast_log(LOG_DEBUG, "ast_sched_wait()\n"));
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_lock(&con->lock);
    	if (!con->schedq) {
    		ms = -1;
    	} else {
    
    		ms = ast_tvdiff_ms(con->schedq->when, ast_tvnow());
    
    Mark Spencer's avatar
    Mark Spencer committed
    		if (ms < 0)
    			ms = 0;
    	}
    	ast_mutex_unlock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	return ms;
    	
    }
    
    
    static void schedule(struct sched_context *con, struct sched *s)
    {
    	/*
    	 * Take a sched structure and put it in the
    	 * queue, such that the soonest event is
    	 * first in the list. 
    	 */
    	 
    	struct sched *last=NULL;
    	struct sched *current=con->schedq;
    	while(current) {
    		if (SOONER(s->when, current->when))
    			break;
    		last = current;
    		current = current->next;
    	}
    	/* Insert this event into the schedule */
    	s->next = current;
    	if (last) 
    		last->next = s;
    	else
    		con->schedq = s;
    	con->schedcnt++;
    }
    
    
    /*
     * given the last event *tv and the offset in milliseconds 'when',
     * computes the next value,
     */
    static int sched_settime(struct timeval *tv, int when)
    
    Mark Spencer's avatar
    Mark Spencer committed
    {
    
    
    	/*ast_log(LOG_DEBUG, "TV -> %lu,%lu\n", tv->tv_sec, tv->tv_usec);*/
    
    	if (ast_tvzero(*tv))	/* not supplied, default to now */
    		*tv = now;
    	*tv = ast_tvadd(*tv, ast_samp2tv(when, 1000));
    	if (ast_tvcmp(*tv, now) < 0) {
    
    Mark Spencer's avatar
    Mark Spencer committed
    		ast_log(LOG_DEBUG, "Request to schedule in the past?!?!\n");
    
    Mark Spencer's avatar
    Mark Spencer committed
    	}
    	return 0;
    }
    
    int ast_sched_add(struct sched_context *con, int when, ast_sched_cb callback, void *data)
    {
    	/*
    	 * Schedule callback(data) to happen when ms into the future
    	 */
    	struct sched *tmp;
    
    Mark Spencer's avatar
    Mark Spencer committed
    	int res = -1;
    
    Mark Spencer's avatar
    Mark Spencer committed
    	DEBUG(ast_log(LOG_DEBUG, "ast_sched_add()\n"));
    	if (!when) {
    
    Mark Spencer's avatar
    Mark Spencer committed
    		ast_log(LOG_NOTICE, "Scheduled event in 0 ms?\n");
    
    Mark Spencer's avatar
    Mark Spencer committed
    		return -1;
    	}
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_lock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	if ((tmp = sched_alloc(con))) {
    		tmp->id = con->eventcnt++;
    		tmp->callback = callback;
    		tmp->data = data;
    		tmp->resched = when;
    
    Mark Spencer's avatar
    Mark Spencer committed
    		if (sched_settime(&tmp->when, when)) {
    			sched_release(con, tmp);
    
    Mark Spencer's avatar
    Mark Spencer committed
    		} else {
    
    Mark Spencer's avatar
    Mark Spencer committed
    			schedule(con, tmp);
    
    Mark Spencer's avatar
    Mark Spencer committed
    			res = tmp->id;
    		}
    	}
    
    #ifdef DUMP_SCHEDULER
    	/* Dump contents of the context while we have the lock so nothing gets screwed up by accident. */
    	ast_sched_dump(con);
    #endif
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_unlock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	return res;
    
    Mark Spencer's avatar
    Mark Spencer committed
    }
    
    int ast_sched_del(struct sched_context *con, int id)
    {
    	/*
    	 * Delete the schedule entry with number
    	 * "id".  It's nearly impossible that there
    	 * would be two or more in the list with that
    	 * id.
    	 */
    	struct sched *last=NULL, *s;
    	DEBUG(ast_log(LOG_DEBUG, "ast_sched_del()\n"));
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_lock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	s = con->schedq;
    	while(s) {
    		if (s->id == id) {
    			if (last)
    				last->next = s->next;
    			else
    				con->schedq = s->next;
    			con->schedcnt--;
    
    Mark Spencer's avatar
    Mark Spencer committed
    			sched_release(con, s);
    
    Mark Spencer's avatar
    Mark Spencer committed
    			break;
    
    Mark Spencer's avatar
    Mark Spencer committed
    		}
    		last = s;
    		s = s->next;
    	}
    
    #ifdef DUMP_SCHEDULER
    	/* Dump contents of the context while we have the lock so nothing gets screwed up by accident. */
    	ast_sched_dump(con);
    #endif
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_unlock(&con->lock);
    	if (!s) {
    
    		ast_log(LOG_NOTICE, "Attempted to delete nonexistent schedule entry %d!\n", id);
    
    Mark Spencer's avatar
    Mark Spencer committed
    #ifdef DO_CRASH
    
    Mark Spencer's avatar
    Mark Spencer committed
    		CRASH;
    
    Mark Spencer's avatar
    Mark Spencer committed
    #endif
    
    Mark Spencer's avatar
    Mark Spencer committed
    		return -1;
    	} else
    		return 0;
    
    void ast_sched_dump(const struct sched_context *con)
    
    Mark Spencer's avatar
    Mark Spencer committed
    {
    	/*
    	 * Dump the contents of the scheduler to
    	 * stderr
    	 */
    	struct sched *q;
    
    Mark Spencer's avatar
    Mark Spencer committed
    #ifdef SCHED_MAX_CACHE
    
    	ast_log(LOG_DEBUG, "Asterisk Schedule Dump (%d in Q, %d Total, %d Cache)\n", con->schedcnt, con->eventcnt - 1, con->schedccnt);
    
    Mark Spencer's avatar
    Mark Spencer committed
    #else
    
    	ast_log(LOG_DEBUG, "Asterisk Schedule Dump (%d in Q, %d Total)\n", con->schedcnt, con->eventcnt - 1);
    
    Mark Spencer's avatar
    Mark Spencer committed
    #endif
    
    
    	ast_log(LOG_DEBUG, "=============================================================\n");
    	ast_log(LOG_DEBUG, "|ID    Callback          Data              Time  (sec:ms)   |\n");
    	ast_log(LOG_DEBUG, "+-----+-----------------+-----------------+-----------------+\n");
    
     	for (q = con->schedq; q; q = q->next) {
     		struct timeval delta =  ast_tvsub(q->when, tv);
    
    
    		ast_log(LOG_DEBUG, "|%.4d | %-15p | %-15p | %.6ld : %.6ld |\n", 
    
    Mark Spencer's avatar
    Mark Spencer committed
    	}
    
    	ast_log(LOG_DEBUG, "=============================================================\n");
    
    Mark Spencer's avatar
    Mark Spencer committed
    	
    }
    
    int ast_sched_runq(struct sched_context *con)
    {
    	/*
    	 * Launch all events which need to be run at this time.
    	 */
    	struct sched *current;
    	struct timeval tv;
    	int x=0;
    
    Mark Spencer's avatar
    Mark Spencer committed
    	DEBUG(ast_log(LOG_DEBUG, "ast_sched_runq()\n"));
    		
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_lock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	for(;;) {
    		if (!con->schedq)
    			break;
    
    		
    		/* schedule all events which are going to expire within 1ms.
    		 * We only care about millisecond accuracy anyway, so this will
    		 * help us get more than one event at one time if they are very
    		 * close together.
    		 */
    		tv = ast_tvadd(ast_tvnow(), ast_tv(0, 1000));
    
    Mark Spencer's avatar
    Mark Spencer committed
    		if (SOONER(con->schedq->when, tv)) {
    			current = con->schedq;
    			con->schedq = con->schedq->next;
    			con->schedcnt--;
    
    			/*
    			 * At this point, the schedule queue is still intact.  We
    			 * have removed the first event and the rest is still there,
    			 * so it's permissible for the callback to add new events, but
    			 * trying to delete itself won't work because it isn't in
    			 * the schedule queue.  If that's what it wants to do, it 
    			 * should return 0.
    			 */
    
    			
    			ast_mutex_unlock(&con->lock);
    			res = current->callback(current->data);
    			ast_mutex_lock(&con->lock);
    			
    			if (res) {
    
    Mark Spencer's avatar
    Mark Spencer committed
    			 	/*
    				 * If they return non-zero, we should schedule them to be
    				 * run again.
    				 */
    				if (sched_settime(&current->when, current->resched)) {
    					sched_release(con, current);
    				} else
    					schedule(con, current);
    			} else {
    				/* No longer needed, so release it */
    			 	sched_release(con, current);
    			}
    			x++;
    		} else
    			break;
    	}
    
    Mark Spencer's avatar
    Mark Spencer committed
    	ast_mutex_unlock(&con->lock);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	return x;
    }
    
    
    long ast_sched_when(struct sched_context *con,int id)
    {
    	struct sched *s;
    	long secs;
    	DEBUG(ast_log(LOG_DEBUG, "ast_sched_when()\n"));
    
    	ast_mutex_lock(&con->lock);
    	s=con->schedq;
    	while (s!=NULL) {
    		if (s->id==id) break;
    		s=s->next;
    	}
    	secs=-1;
    	if (s!=NULL) {
    
    		struct timeval now = ast_tvnow();
    		secs=s->when.tv_sec-now.tv_sec;
    
    	}
    	ast_mutex_unlock(&con->lock);
    	return secs;
    }