2 * Asterisk -- A telephony toolkit for Linux.
4 * Translate via the use of pseudo channels
6 * Copyright (C) 1999, Mark Spencer
8 * Mark Spencer <markster@linux-support.net>
10 * This program is free software, distributed under the terms of
11 * the GNU General Public License
14 #include <asterisk/lock.h>
15 #include <asterisk/channel.h>
16 #include <asterisk/channel_pvt.h>
17 #include <asterisk/logger.h>
18 #include <asterisk/translate.h>
19 #include <asterisk/options.h>
20 #include <asterisk/frame.h>
21 #include <asterisk/sched.h>
22 #include <asterisk/cli.h>
23 #include <asterisk/term.h>
24 #include <sys/socket.h>
32 /* Uncomment the EXPERIMENTAL_TRANSLATION to enable a more complicated, but probably more
33 correct way of handling full duplex translation */
36 #define EXPERIMENTAL_TRANSLATION
39 /* This could all be done more efficiently *IF* we chained packets together
40 by default, but it would also complicate virtually every application. */
42 static pthread_mutex_t list_lock = AST_MUTEX_INITIALIZER;
43 static struct ast_translator *list = NULL;
45 struct ast_translator_dir {
46 struct ast_translator *step; /* Next step translator */
47 int cost; /* Complete cost to destination */
50 struct ast_frame_delivery {
52 struct ast_channel *chan;
54 struct translator_pvt *owner;
55 struct ast_frame_delivery *prev;
56 struct ast_frame_delivery *next;
59 static struct ast_translator_dir tr_matrix[MAX_FORMAT][MAX_FORMAT];
61 struct ast_trans_pvt {
62 struct ast_translator *step;
63 struct ast_translator_pvt *state;
64 struct ast_trans_pvt *next;
68 static int powerof(int d)
71 for (x = 0; x < 32; x++)
74 ast_log(LOG_WARNING, "Powerof %d: No power??\n", d);
78 void ast_translator_free_path(struct ast_trans_pvt *p)
80 struct ast_trans_pvt *pl;
84 if (pl->state && pl->step->destroy)
85 pl->step->destroy(pl->state);
90 struct ast_trans_pvt *ast_translator_build_path(int dest, int source)
92 struct ast_trans_pvt *tmpr = NULL, *tmp = NULL;
93 /* One of the hardest parts: Build a set of translators based upon
94 the given source and destination formats */
95 source = powerof(source);
97 while(source != dest) {
98 if (tr_matrix[source][dest].step) {
100 tmp->next = malloc(sizeof(struct ast_trans_pvt));
103 tmp = malloc(sizeof(struct ast_trans_pvt));
108 tmp->step = tr_matrix[source][dest].step;
109 tmp->state = tmp->step->new();
111 ast_log(LOG_WARNING, "Failed to build translator step from %d to %d\n", source, dest);
116 /* Set the root, if it doesn't exist yet... */
119 /* Keep going if this isn't the final destination */
120 source = tmp->step->dstfmt;
122 /* XXX This could leak XXX */
123 ast_log(LOG_WARNING, "Out of memory\n");
127 /* We shouldn't have allocated any memory */
128 ast_log(LOG_WARNING, "No translator path from %d to %d\n", source, dest);
135 struct ast_frame *ast_translate(struct ast_trans_pvt *path, struct ast_frame *f, int consume)
137 struct ast_trans_pvt *p;
138 struct ast_frame *out;
140 /* Feed the first frame into the first translator */
141 p->step->framein(p->state, f);
145 out = p->step->frameout(p->state);
146 /* If we get nothing out, return NULL */
149 /* If there is a next state, feed it in there. If not,
152 p->next->step->framein(p->next->state, out);
157 ast_log(LOG_WARNING, "I should never get here...\n");
161 static void rebuild_matrix()
163 struct ast_translator *t;
167 ast_log(LOG_DEBUG, "Reseting translation matrix\n");
168 /* Use the list of translators to build a translation matrix */
169 bzero(tr_matrix, sizeof(tr_matrix));
172 if (!tr_matrix[t->srcfmt][t->dstfmt].step ||
173 tr_matrix[t->srcfmt][t->dstfmt].cost > t->cost) {
174 tr_matrix[t->srcfmt][t->dstfmt].step = t;
175 tr_matrix[t->srcfmt][t->dstfmt].cost = t->cost;
181 /* Don't you just love O(N^3) operations? */
182 for (x=0; x< MAX_FORMAT; x++) /* For each source format */
183 for (y=0; y < MAX_FORMAT; y++) /* And each destination format */
184 if (x != y) /* Except ourselves, of course */
185 for (z=0; z < MAX_FORMAT; z++) /* And each format it might convert to */
186 if ((x!=z) && (y!=z)) /* Don't ever convert back to us */
187 if (tr_matrix[x][y].step && /* We can convert from x to y */
188 tr_matrix[y][z].step && /* And from y to z and... */
189 (!tr_matrix[x][z].step || /* Either there isn't an x->z conversion */
190 (tr_matrix[x][y].cost +
191 tr_matrix[y][z].cost < /* Or we're cheaper than the existing */
192 tr_matrix[x][z].cost) /* solution */
194 /* We can get from x to z via y with a cost that
195 is the sum of the transition from x to y and
198 tr_matrix[x][z].step = tr_matrix[x][y].step;
199 tr_matrix[x][z].cost = tr_matrix[x][y].cost +
200 tr_matrix[y][z].cost;
202 ast_log(LOG_DEBUG, "Discovered %d cost path from %d to %d, via %d\n", tr_matrix[x][z].cost, x, z, y);
209 static void calc_cost(struct ast_translator *t)
212 struct ast_translator_pvt *pvt;
213 struct ast_frame *f, *out;
214 struct timeval start, finish;
216 /* If they don't make samples, give them a terrible score */
218 ast_log(LOG_WARNING, "Translator '%s' does not produce sample frames.\n", t->name);
224 ast_log(LOG_WARNING, "Translator '%s' appears to be broken and will probably fail.\n", t->name);
228 gettimeofday(&start, NULL);
229 /* Call the encoder until we've processed one second of time */
230 while(sofar < 8000) {
233 ast_log(LOG_WARNING, "Translator '%s' failed to produce a sample frame.\n", t->name);
240 while((out = t->frameout(pvt))) {
241 sofar += out->samples;
245 gettimeofday(&finish, NULL);
247 cost = (finish.tv_sec - start.tv_sec) * 1000 + (finish.tv_usec - start.tv_usec) / 1000;
253 static int show_translation(int fd, int argc, char *argv[])
255 #define SHOW_TRANS 14
259 return RESULT_SHOWUSAGE;
260 ast_cli(fd, " Translation times between formats (in milliseconds)\n");
261 ast_cli(fd, " Destination Format\n");
262 ast_pthread_mutex_lock(&list_lock);
263 for (x=0;x<SHOW_TRANS; x++) {
265 strcpy(line, " Src ");
267 strcpy(line, " Fmt ");
270 for (y=0;y<SHOW_TRANS;y++) {
271 if (tr_matrix[x][y].step)
272 snprintf(line + strlen(line), sizeof(line) - strlen(line), " %4d", tr_matrix[x][y].cost);
274 snprintf(line + strlen(line), sizeof(line) - strlen(line), " n/a");
276 snprintf(line + strlen(line), sizeof(line) - strlen(line), "\n");
279 ast_pthread_mutex_unlock(&list_lock);
280 return RESULT_SUCCESS;
283 static int added_cli = 0;
285 static char show_trans_usage[] =
286 "Usage: show translation\n"
287 " Displays known codec translators and the cost associated\n"
288 "with each conversion.\n";
290 static struct ast_cli_entry show_trans =
291 { { "show", "translation", NULL }, show_translation, "Display translation matrix", show_trans_usage };
293 int ast_register_translator(struct ast_translator *t)
296 t->srcfmt = powerof(t->srcfmt);
297 t->dstfmt = powerof(t->dstfmt);
298 if ((t->srcfmt >= MAX_FORMAT) || (t->dstfmt >= MAX_FORMAT)) {
299 ast_log(LOG_WARNING, "Format %d is larger than MAX_FORMAT\n", t->srcfmt);
303 if (option_verbose > 1)
304 ast_verbose(VERBOSE_PREFIX_2 "Registered translator '%s' from format %d to %d, cost %d\n", term_color(tmp, t->name, COLOR_MAGENTA, COLOR_BLACK, sizeof(tmp)), t->srcfmt, t->dstfmt, t->cost);
305 ast_pthread_mutex_lock(&list_lock);
307 ast_cli_register(&show_trans);
313 ast_pthread_mutex_unlock(&list_lock);
317 int ast_unregister_translator(struct ast_translator *t)
319 struct ast_translator *u, *ul = NULL;
320 ast_pthread_mutex_lock(&list_lock);
334 ast_pthread_mutex_unlock(&list_lock);
338 int ast_translator_best_choice(int *dst, int *srcs)
340 /* Calculate our best source format, given costs, and a desired destination */
345 int besttime=999999999;
346 ast_pthread_mutex_lock(&list_lock);
347 for (y=0;y<MAX_FORMAT;y++) {
348 if ((cur & *dst) && (cur & *srcs)) {
349 /* This is a common format to both. Pick it if we don't have one already */
356 for (x=0;x<MAX_FORMAT;x++) {
357 if (tr_matrix[x][y].step && /* There's a step */
358 (tr_matrix[x][y].cost < besttime) && /* We're better than what exists now */
359 (*srcs & (1 << x))) /* x is a valid source format */
363 besttime = tr_matrix[x][y].cost;
373 ast_pthread_mutex_unlock(&list_lock);