Tue Mar 2 17:31:44 2010

Asterisk developer's documentation


audiohook.c

Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (C) 1999 - 2007, Digium, Inc.
00005  *
00006  * Joshua Colp <jcolp@digium.com>
00007  *
00008  * See http://www.asterisk.org for more information about
00009  * the Asterisk project. Please do not directly contact
00010  * any of the maintainers of this project for assistance;
00011  * the project provides a web site, mailing lists and IRC
00012  * channels for your use.
00013  *
00014  * This program is free software, distributed under the terms of
00015  * the GNU General Public License Version 2. See the LICENSE file
00016  * at the top of the source tree.
00017  */
00018 
00019 /*! \file
00020  *
00021  * \brief Audiohooks Architecture
00022  *
00023  * \author Joshua 'file' Colp <jcolp@digium.com>
00024  */
00025 
00026 #include "asterisk.h"
00027 
00028 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 230586 $")
00029 
00030 #include <signal.h>
00031 
00032 #include "asterisk/channel.h"
00033 #include "asterisk/utils.h"
00034 #include "asterisk/lock.h"
00035 #include "asterisk/linkedlists.h"
00036 #include "asterisk/audiohook.h"
00037 #include "asterisk/slinfactory.h"
00038 #include "asterisk/frame.h"
00039 #include "asterisk/translate.h"
00040 
00041 struct ast_audiohook_translate {
00042    struct ast_trans_pvt *trans_pvt;
00043    int format;
00044 };
00045 
00046 struct ast_audiohook_list {
00047    struct ast_audiohook_translate in_translate[2];
00048    struct ast_audiohook_translate out_translate[2];
00049    AST_LIST_HEAD_NOLOCK(, ast_audiohook) spy_list;
00050    AST_LIST_HEAD_NOLOCK(, ast_audiohook) whisper_list;
00051    AST_LIST_HEAD_NOLOCK(, ast_audiohook) manipulate_list;
00052 };
00053 
00054 /*! \brief Initialize an audiohook structure
00055  * \param audiohook Audiohook structure
00056  * \param type
00057  * \param source
00058  * \return Returns 0 on success, -1 on failure
00059  */
00060 int ast_audiohook_init(struct ast_audiohook *audiohook, enum ast_audiohook_type type, const char *source)
00061 {
00062    /* Need to keep the type and source */
00063    audiohook->type = type;
00064    audiohook->source = source;
00065 
00066    /* Initialize lock that protects our audiohook */
00067    ast_mutex_init(&audiohook->lock);
00068    ast_cond_init(&audiohook->trigger, NULL);
00069 
00070    /* Setup the factories that are needed for this audiohook type */
00071    switch (type) {
00072    case AST_AUDIOHOOK_TYPE_SPY:
00073       ast_slinfactory_init(&audiohook->read_factory);
00074    case AST_AUDIOHOOK_TYPE_WHISPER:
00075       ast_slinfactory_init(&audiohook->write_factory);
00076       break;
00077    default:
00078       break;
00079    }
00080 
00081    /* Since we are just starting out... this audiohook is new */
00082    ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_NEW);
00083 
00084    return 0;
00085 }
00086 
00087 /*! \brief Destroys an audiohook structure
00088  * \param audiohook Audiohook structure
00089  * \return Returns 0 on success, -1 on failure
00090  */
00091 int ast_audiohook_destroy(struct ast_audiohook *audiohook)
00092 {
00093    /* Drop the factories used by this audiohook type */
00094    switch (audiohook->type) {
00095    case AST_AUDIOHOOK_TYPE_SPY:
00096       ast_slinfactory_destroy(&audiohook->read_factory);
00097    case AST_AUDIOHOOK_TYPE_WHISPER:
00098       ast_slinfactory_destroy(&audiohook->write_factory);
00099       break;
00100    default:
00101       break;
00102    }
00103 
00104    /* Destroy translation path if present */
00105    if (audiohook->trans_pvt)
00106       ast_translator_free_path(audiohook->trans_pvt);
00107 
00108    /* Lock and trigger be gone! */
00109    ast_cond_destroy(&audiohook->trigger);
00110    ast_mutex_destroy(&audiohook->lock);
00111 
00112    return 0;
00113 }
00114 
00115 /*! \brief Writes a frame into the audiohook structure
00116  * \param audiohook Audiohook structure
00117  * \param direction Direction the audio frame came from
00118  * \param frame Frame to write in
00119  * \return Returns 0 on success, -1 on failure
00120  */
00121 int ast_audiohook_write_frame(struct ast_audiohook *audiohook, enum ast_audiohook_direction direction, struct ast_frame *frame)
00122 {
00123    struct ast_slinfactory *factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_factory : &audiohook->write_factory);
00124    struct ast_slinfactory *other_factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->write_factory : &audiohook->read_factory);
00125    struct timeval *rwtime = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_time : &audiohook->write_time), previous_time = *rwtime;
00126    int our_factory_samples;
00127    int our_factory_ms;
00128    int other_factory_samples;
00129    int other_factory_ms;
00130 
00131    /* Update last feeding time to be current */
00132    *rwtime = ast_tvnow();
00133 
00134    our_factory_samples = ast_slinfactory_available(factory);
00135    our_factory_ms = ast_tvdiff_ms(*rwtime, previous_time) + (our_factory_samples / 8);
00136    other_factory_samples = ast_slinfactory_available(other_factory);
00137    other_factory_ms = other_factory_samples / 8;
00138 
00139    if (ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_SYNC) && other_factory_samples && (our_factory_ms - other_factory_ms > AST_AUDIOHOOK_SYNC_TOLERANCE)) {
00140       if (option_debug)
00141          ast_log(LOG_DEBUG, "Flushing audiohook %p so it remains in sync\n", audiohook);
00142       ast_slinfactory_flush(factory);
00143       ast_slinfactory_flush(other_factory);
00144    }
00145 
00146    if (ast_test_flag(audiohook, AST_AUDIOHOOK_SMALL_QUEUE) && (our_factory_samples > 640 || other_factory_samples > 640)) {
00147       if (option_debug) {
00148          ast_log(LOG_DEBUG, "Audiohook %p has stale audio in its factories. Flushing them both\n", audiohook);
00149       }
00150       ast_slinfactory_flush(factory);
00151       ast_slinfactory_flush(other_factory);
00152    }
00153 
00154    /* Write frame out to respective factory */
00155    ast_slinfactory_feed(factory, frame);
00156 
00157    /* If we need to notify the respective handler of this audiohook, do so */
00158    if ((ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_MODE) == AST_AUDIOHOOK_TRIGGER_READ) && (direction == AST_AUDIOHOOK_DIRECTION_READ)) {
00159       ast_cond_signal(&audiohook->trigger);
00160    } else if ((ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_MODE) == AST_AUDIOHOOK_TRIGGER_WRITE) && (direction == AST_AUDIOHOOK_DIRECTION_WRITE)) {
00161       ast_cond_signal(&audiohook->trigger);
00162    } else if (ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_SYNC)) {
00163       ast_cond_signal(&audiohook->trigger);
00164    }
00165 
00166    return 0;
00167 }
00168 
00169 static struct ast_frame *audiohook_read_frame_single(struct ast_audiohook *audiohook, size_t samples, enum ast_audiohook_direction direction)
00170 {
00171    struct ast_slinfactory *factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_factory : &audiohook->write_factory);
00172    int vol = (direction == AST_AUDIOHOOK_DIRECTION_READ ? audiohook->options.read_volume : audiohook->options.write_volume);
00173    short buf[samples];
00174    struct ast_frame frame = {
00175       .frametype = AST_FRAME_VOICE,
00176       .subclass = AST_FORMAT_SLINEAR,
00177       .data.ptr = buf,
00178       .datalen = sizeof(buf),
00179       .samples = samples,
00180    };
00181 
00182    /* Ensure the factory is able to give us the samples we want */
00183    if (samples > ast_slinfactory_available(factory))
00184       return NULL;
00185    
00186    /* Read data in from factory */
00187    if (!ast_slinfactory_read(factory, buf, samples))
00188       return NULL;
00189 
00190    /* If a volume adjustment needs to be applied apply it */
00191    if (vol)
00192       ast_frame_adjust_volume(&frame, vol);
00193 
00194    return ast_frdup(&frame);
00195 }
00196 
00197 static struct ast_frame *audiohook_read_frame_both(struct ast_audiohook *audiohook, size_t samples)
00198 {
00199    int i = 0, usable_read, usable_write;
00200    short buf1[samples], buf2[samples], *read_buf = NULL, *write_buf = NULL, *final_buf = NULL, *data1 = NULL, *data2 = NULL;
00201    struct ast_frame frame = {
00202       .frametype = AST_FRAME_VOICE,
00203       .subclass = AST_FORMAT_SLINEAR,
00204       .data.ptr = NULL,
00205       .datalen = sizeof(buf1),
00206       .samples = samples,
00207    };
00208 
00209    /* Make sure both factories have the required samples */
00210    usable_read = (ast_slinfactory_available(&audiohook->read_factory) >= samples ? 1 : 0);
00211    usable_write = (ast_slinfactory_available(&audiohook->write_factory) >= samples ? 1 : 0);
00212 
00213    if (!usable_read && !usable_write) {
00214       /* If both factories are unusable bail out */
00215       ast_debug(1, "Read factory %p and write factory %p both fail to provide %zd samples\n", &audiohook->read_factory, &audiohook->write_factory, samples);
00216       return NULL;
00217    }
00218 
00219    /* If we want to provide only a read factory make sure we aren't waiting for other audio */
00220    if (usable_read && !usable_write && (ast_tvdiff_ms(ast_tvnow(), audiohook->write_time) < (samples/8)*2)) {
00221       ast_debug(3, "Write factory %p was pretty quick last time, waiting for them.\n", &audiohook->write_factory);
00222       return NULL;
00223    }
00224 
00225    /* If we want to provide only a write factory make sure we aren't waiting for other audio */
00226    if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->read_time) < (samples/8)*2)) {
00227       ast_debug(3, "Read factory %p was pretty quick last time, waiting for them.\n", &audiohook->read_factory);
00228       return NULL;
00229    }
00230 
00231    /* Start with the read factory... if there are enough samples, read them in */
00232    if (usable_read) {
00233       if (ast_slinfactory_read(&audiohook->read_factory, buf1, samples)) {
00234          read_buf = buf1;
00235          /* Adjust read volume if need be */
00236          if (audiohook->options.read_volume) {
00237             int count = 0;
00238             short adjust_value = abs(audiohook->options.read_volume);
00239             for (count = 0; count < samples; count++) {
00240                if (audiohook->options.read_volume > 0)
00241                   ast_slinear_saturated_multiply(&buf1[count], &adjust_value);
00242                else if (audiohook->options.read_volume < 0)
00243                   ast_slinear_saturated_divide(&buf1[count], &adjust_value);
00244             }
00245          }
00246       }
00247    } else if (option_debug)
00248       ast_log(LOG_DEBUG, "Failed to get %d samples from read factory %p\n", (int)samples, &audiohook->read_factory);
00249 
00250    /* Move on to the write factory... if there are enough samples, read them in */
00251    if (usable_write) {
00252       if (ast_slinfactory_read(&audiohook->write_factory, buf2, samples)) {
00253          write_buf = buf2;
00254          /* Adjust write volume if need be */
00255          if (audiohook->options.write_volume) {
00256             int count = 0;
00257             short adjust_value = abs(audiohook->options.write_volume);
00258             for (count = 0; count < samples; count++) {
00259                if (audiohook->options.write_volume > 0)
00260                   ast_slinear_saturated_multiply(&buf2[count], &adjust_value);
00261                else if (audiohook->options.write_volume < 0)
00262                   ast_slinear_saturated_divide(&buf2[count], &adjust_value);
00263             }
00264          }
00265       }
00266    } else if (option_debug)
00267       ast_log(LOG_DEBUG, "Failed to get %d samples from write factory %p\n", (int)samples, &audiohook->write_factory);
00268 
00269    /* Basically we figure out which buffer to use... and if mixing can be done here */
00270    if (!read_buf && !write_buf)
00271       return NULL;
00272    else if (read_buf && write_buf) {
00273       for (i = 0, data1 = read_buf, data2 = write_buf; i < samples; i++, data1++, data2++)
00274          ast_slinear_saturated_add(data1, data2);
00275       final_buf = buf1;
00276    } else if (read_buf)
00277       final_buf = buf1;
00278    else if (write_buf)
00279       final_buf = buf2;
00280 
00281    /* Make the final buffer part of the frame, so it gets duplicated fine */
00282    frame.data.ptr = final_buf;
00283 
00284    /* Yahoo, a combined copy of the audio! */
00285    return ast_frdup(&frame);
00286 }
00287 
00288 /*! \brief Reads a frame in from the audiohook structure
00289  * \param audiohook Audiohook structure
00290  * \param samples Number of samples wanted
00291  * \param direction Direction the audio frame came from
00292  * \param format Format of frame remote side wants back
00293  * \return Returns frame on success, NULL on failure
00294  */
00295 struct ast_frame *ast_audiohook_read_frame(struct ast_audiohook *audiohook, size_t samples, enum ast_audiohook_direction direction, int format)
00296 {
00297    struct ast_frame *read_frame = NULL, *final_frame = NULL;
00298 
00299    if (!(read_frame = (direction == AST_AUDIOHOOK_DIRECTION_BOTH ? audiohook_read_frame_both(audiohook, samples) : audiohook_read_frame_single(audiohook, samples, direction))))
00300       return NULL;
00301 
00302    /* If they don't want signed linear back out, we'll have to send it through the translation path */
00303    if (format != AST_FORMAT_SLINEAR) {
00304       /* Rebuild translation path if different format then previously */
00305       if (audiohook->format != format) {
00306          if (audiohook->trans_pvt) {
00307             ast_translator_free_path(audiohook->trans_pvt);
00308             audiohook->trans_pvt = NULL;
00309          }
00310          /* Setup new translation path for this format... if we fail we can't very well return signed linear so free the frame and return nothing */
00311          if (!(audiohook->trans_pvt = ast_translator_build_path(format, AST_FORMAT_SLINEAR))) {
00312             ast_frfree(read_frame);
00313             return NULL;
00314          }
00315       }
00316       /* Convert to requested format, and allow the read in frame to be freed */
00317       final_frame = ast_translate(audiohook->trans_pvt, read_frame, 1);
00318    } else {
00319       final_frame = read_frame;
00320    }
00321 
00322    return final_frame;
00323 }
00324 
00325 /*! \brief Attach audiohook to channel
00326  * \param chan Channel
00327  * \param audiohook Audiohook structure
00328  * \return Returns 0 on success, -1 on failure
00329  */
00330 int ast_audiohook_attach(struct ast_channel *chan, struct ast_audiohook *audiohook)
00331 {
00332    ast_channel_lock(chan);
00333 
00334    if (!chan->audiohooks) {
00335       /* Whoops... allocate a new structure */
00336       if (!(chan->audiohooks = ast_calloc(1, sizeof(*chan->audiohooks)))) {
00337          ast_channel_unlock(chan);
00338          return -1;
00339       }
00340       AST_LIST_HEAD_INIT_NOLOCK(&chan->audiohooks->spy_list);
00341       AST_LIST_HEAD_INIT_NOLOCK(&chan->audiohooks->whisper_list);
00342       AST_LIST_HEAD_INIT_NOLOCK(&chan->audiohooks->manipulate_list);
00343    }
00344 
00345    /* Drop into respective list */
00346    if (audiohook->type == AST_AUDIOHOOK_TYPE_SPY)
00347       AST_LIST_INSERT_TAIL(&chan->audiohooks->spy_list, audiohook, list);
00348    else if (audiohook->type == AST_AUDIOHOOK_TYPE_WHISPER)
00349       AST_LIST_INSERT_TAIL(&chan->audiohooks->whisper_list, audiohook, list);
00350    else if (audiohook->type == AST_AUDIOHOOK_TYPE_MANIPULATE)
00351       AST_LIST_INSERT_TAIL(&chan->audiohooks->manipulate_list, audiohook, list);
00352 
00353    /* Change status over to running since it is now attached */
00354    ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_RUNNING);
00355 
00356    ast_channel_unlock(chan);
00357 
00358    return 0;
00359 }
00360 
00361 /*! \brief Update audiohook's status
00362  * \param audiohook status enum
00363  * \param audiohook Audiohook structure
00364  */
00365 void ast_audiohook_update_status(struct ast_audiohook *audiohook, enum ast_audiohook_status status)
00366 {
00367    ast_audiohook_lock(audiohook);
00368    if (audiohook->status != AST_AUDIOHOOK_STATUS_DONE) {
00369       audiohook->status = status;
00370       ast_cond_signal(&audiohook->trigger);
00371    }
00372    ast_audiohook_unlock(audiohook);
00373 }
00374 
00375 /*! \brief Detach audiohook from channel
00376  * \param audiohook Audiohook structure
00377  * \return Returns 0 on success, -1 on failure
00378  */
00379 int ast_audiohook_detach(struct ast_audiohook *audiohook)
00380 {
00381    if (audiohook->status == AST_AUDIOHOOK_STATUS_NEW || audiohook->status == AST_AUDIOHOOK_STATUS_DONE)
00382       return 0;
00383 
00384    ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_SHUTDOWN);
00385 
00386    while (audiohook->status != AST_AUDIOHOOK_STATUS_DONE)
00387       ast_audiohook_trigger_wait(audiohook);
00388 
00389    return 0;
00390 }
00391 
00392 /*! \brief Detach audiohooks from list and destroy said list
00393  * \param audiohook_list List of audiohooks
00394  * \return Returns 0 on success, -1 on failure
00395  */
00396 int ast_audiohook_detach_list(struct ast_audiohook_list *audiohook_list)
00397 {
00398    int i = 0;
00399    struct ast_audiohook *audiohook = NULL;
00400 
00401    /* Drop any spies */
00402    while ((audiohook = AST_LIST_REMOVE_HEAD(&audiohook_list->spy_list, list))) {
00403       ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00404    }
00405 
00406    /* Drop any whispering sources */
00407    while ((audiohook = AST_LIST_REMOVE_HEAD(&audiohook_list->whisper_list, list))) {
00408       ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00409    }
00410 
00411    /* Drop any manipulaters */
00412    while ((audiohook = AST_LIST_REMOVE_HEAD(&audiohook_list->manipulate_list, list))) {
00413       ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00414       audiohook->manipulate_callback(audiohook, NULL, NULL, 0);
00415    }
00416 
00417    /* Drop translation paths if present */
00418    for (i = 0; i < 2; i++) {
00419       if (audiohook_list->in_translate[i].trans_pvt)
00420          ast_translator_free_path(audiohook_list->in_translate[i].trans_pvt);
00421       if (audiohook_list->out_translate[i].trans_pvt)
00422          ast_translator_free_path(audiohook_list->out_translate[i].trans_pvt);
00423    }
00424    
00425    /* Free ourselves */
00426    ast_free(audiohook_list);
00427 
00428    return 0;
00429 }
00430 
00431 /*! \brief find an audiohook based on its source
00432  * \param audiohook_list The list of audiohooks to search in
00433  * \param source The source of the audiohook we wish to find
00434  * \return Return the corresponding audiohook or NULL if it cannot be found.
00435  */
00436 static struct ast_audiohook *find_audiohook_by_source(struct ast_audiohook_list *audiohook_list, const char *source)
00437 {
00438    struct ast_audiohook *audiohook = NULL;
00439 
00440    AST_LIST_TRAVERSE(&audiohook_list->spy_list, audiohook, list) {
00441       if (!strcasecmp(audiohook->source, source))
00442          return audiohook;
00443    }
00444 
00445    AST_LIST_TRAVERSE(&audiohook_list->whisper_list, audiohook, list) {
00446       if (!strcasecmp(audiohook->source, source))
00447          return audiohook;
00448    }
00449 
00450    AST_LIST_TRAVERSE(&audiohook_list->manipulate_list, audiohook, list) {
00451       if (!strcasecmp(audiohook->source, source))
00452          return audiohook;
00453    }
00454 
00455    return NULL;
00456 }
00457 
00458 void ast_audiohook_move_by_source(struct ast_channel *old_chan, struct ast_channel *new_chan, const char *source)
00459 {
00460    struct ast_audiohook *audiohook;
00461 
00462    if (!old_chan->audiohooks || !(audiohook = find_audiohook_by_source(old_chan->audiohooks, source))) {
00463       return;
00464    }
00465 
00466    /* By locking both channels and the audiohook, we can assure that
00467     * another thread will not have a chance to read the audiohook's status
00468     * as done, even though ast_audiohook_remove signals the trigger
00469     * condition
00470     */
00471    ast_audiohook_lock(audiohook);
00472    ast_audiohook_remove(old_chan, audiohook);
00473    ast_audiohook_attach(new_chan, audiohook);
00474    ast_audiohook_unlock(audiohook);
00475 }
00476 
00477 /*! \brief Detach specified source audiohook from channel
00478  * \param chan Channel to detach from
00479  * \param source Name of source to detach
00480  * \return Returns 0 on success, -1 on failure
00481  */
00482 int ast_audiohook_detach_source(struct ast_channel *chan, const char *source)
00483 {
00484    struct ast_audiohook *audiohook = NULL;
00485 
00486    ast_channel_lock(chan);
00487 
00488    /* Ensure the channel has audiohooks on it */
00489    if (!chan->audiohooks) {
00490       ast_channel_unlock(chan);
00491       return -1;
00492    }
00493 
00494    audiohook = find_audiohook_by_source(chan->audiohooks, source);
00495 
00496    ast_channel_unlock(chan);
00497 
00498    if (audiohook && audiohook->status != AST_AUDIOHOOK_STATUS_DONE)
00499       ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_SHUTDOWN);
00500 
00501    return (audiohook ? 0 : -1);
00502 }
00503 
00504 /*!
00505  * \brief Remove an audiohook from a specified channel
00506  *
00507  * \param chan Channel to remove from
00508  * \param audiohook Audiohook to remove
00509  *
00510  * \return Returns 0 on success, -1 on failure
00511  *
00512  * \note The channel does not need to be locked before calling this function
00513  */
00514 int ast_audiohook_remove(struct ast_channel *chan, struct ast_audiohook *audiohook)
00515 {
00516    ast_channel_lock(chan);
00517 
00518    if (!chan->audiohooks) {
00519       ast_channel_unlock(chan);
00520       return -1;
00521    }
00522 
00523    if (audiohook->type == AST_AUDIOHOOK_TYPE_SPY)
00524       AST_LIST_REMOVE(&chan->audiohooks->spy_list, audiohook, list);
00525    else if (audiohook->type == AST_AUDIOHOOK_TYPE_WHISPER)
00526       AST_LIST_REMOVE(&chan->audiohooks->whisper_list, audiohook, list);
00527    else if (audiohook->type == AST_AUDIOHOOK_TYPE_MANIPULATE)
00528       AST_LIST_REMOVE(&chan->audiohooks->manipulate_list, audiohook, list);
00529 
00530    ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00531 
00532    ast_channel_unlock(chan);
00533 
00534    return 0;
00535 }
00536 
00537 /*! \brief Pass a DTMF frame off to be handled by the audiohook core
00538  * \param chan Channel that the list is coming off of
00539  * \param audiohook_list List of audiohooks
00540  * \param direction Direction frame is coming in from
00541  * \param frame The frame itself
00542  * \return Return frame on success, NULL on failure
00543  */
00544 static struct ast_frame *dtmf_audiohook_write_list(struct ast_channel *chan, struct ast_audiohook_list *audiohook_list, enum ast_audiohook_direction direction, struct ast_frame *frame)
00545 {
00546    struct ast_audiohook *audiohook = NULL;
00547 
00548    AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->manipulate_list, audiohook, list) {
00549       ast_audiohook_lock(audiohook);
00550       if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
00551          AST_LIST_REMOVE_CURRENT(list);
00552          ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00553          ast_audiohook_unlock(audiohook);
00554          audiohook->manipulate_callback(audiohook, NULL, NULL, 0);
00555          continue;
00556       }
00557       if (ast_test_flag(audiohook, AST_AUDIOHOOK_WANTS_DTMF))
00558          audiohook->manipulate_callback(audiohook, chan, frame, direction);
00559       ast_audiohook_unlock(audiohook);
00560    }
00561    AST_LIST_TRAVERSE_SAFE_END;
00562 
00563    return frame;
00564 }
00565 
00566 /*! \brief Pass an AUDIO frame off to be handled by the audiohook core
00567  * \param chan Channel that the list is coming off of
00568  * \param audiohook_list List of audiohooks
00569  * \param direction Direction frame is coming in from
00570  * \param frame The frame itself
00571  * \return Return frame on success, NULL on failure
00572  */
00573 static struct ast_frame *audio_audiohook_write_list(struct ast_channel *chan, struct ast_audiohook_list *audiohook_list, enum ast_audiohook_direction direction, struct ast_frame *frame)
00574 {
00575    struct ast_audiohook_translate *in_translate = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook_list->in_translate[0] : &audiohook_list->in_translate[1]);
00576    struct ast_audiohook_translate *out_translate = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook_list->out_translate[0] : &audiohook_list->out_translate[1]);
00577    struct ast_frame *start_frame = frame, *middle_frame = frame, *end_frame = frame;
00578    struct ast_audiohook *audiohook = NULL;
00579    int samples = frame->samples;
00580 
00581    /* If the frame coming in is not signed linear we have to send it through the in_translate path */
00582    if (frame->subclass != AST_FORMAT_SLINEAR) {
00583       if (in_translate->format != frame->subclass) {
00584          if (in_translate->trans_pvt)
00585             ast_translator_free_path(in_translate->trans_pvt);
00586          if (!(in_translate->trans_pvt = ast_translator_build_path(AST_FORMAT_SLINEAR, frame->subclass)))
00587             return frame;
00588          in_translate->format = frame->subclass;
00589       }
00590       if (!(middle_frame = ast_translate(in_translate->trans_pvt, frame, 0)))
00591          return frame;
00592       samples = middle_frame->samples;
00593    }
00594 
00595    /* Queue up signed linear frame to each spy */
00596    AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->spy_list, audiohook, list) {
00597       ast_audiohook_lock(audiohook);
00598       if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
00599          AST_LIST_REMOVE_CURRENT(list);
00600          ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00601          ast_audiohook_unlock(audiohook);
00602          continue;
00603       }
00604       ast_audiohook_write_frame(audiohook, direction, middle_frame);
00605       ast_audiohook_unlock(audiohook);
00606    }
00607    AST_LIST_TRAVERSE_SAFE_END;
00608 
00609    /* If this frame is being written out to the channel then we need to use whisper sources */
00610    if (direction == AST_AUDIOHOOK_DIRECTION_WRITE && !AST_LIST_EMPTY(&audiohook_list->whisper_list)) {
00611       int i = 0;
00612       short read_buf[samples], combine_buf[samples], *data1 = NULL, *data2 = NULL;
00613       memset(&combine_buf, 0, sizeof(combine_buf));
00614       AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->whisper_list, audiohook, list) {
00615          ast_audiohook_lock(audiohook);
00616          if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
00617             AST_LIST_REMOVE_CURRENT(list);
00618             ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00619             ast_audiohook_unlock(audiohook);
00620             continue;
00621          }
00622          if (ast_slinfactory_available(&audiohook->write_factory) >= samples && ast_slinfactory_read(&audiohook->write_factory, read_buf, samples)) {
00623             /* Take audio from this whisper source and combine it into our main buffer */
00624             for (i = 0, data1 = combine_buf, data2 = read_buf; i < samples; i++, data1++, data2++)
00625                ast_slinear_saturated_add(data1, data2);
00626          }
00627          ast_audiohook_unlock(audiohook);
00628       }
00629       AST_LIST_TRAVERSE_SAFE_END;
00630       /* We take all of the combined whisper sources and combine them into the audio being written out */
00631       for (i = 0, data1 = middle_frame->data.ptr, data2 = combine_buf; i < samples; i++, data1++, data2++)
00632          ast_slinear_saturated_add(data1, data2);
00633       end_frame = middle_frame;
00634    }
00635 
00636    /* Pass off frame to manipulate audiohooks */
00637    if (!AST_LIST_EMPTY(&audiohook_list->manipulate_list)) {
00638       AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->manipulate_list, audiohook, list) {
00639          ast_audiohook_lock(audiohook);
00640          if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
00641             AST_LIST_REMOVE_CURRENT(list);
00642             ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
00643             ast_audiohook_unlock(audiohook);
00644             /* We basically drop all of our links to the manipulate audiohook and prod it to do it's own destructive things */
00645             audiohook->manipulate_callback(audiohook, chan, NULL, direction);
00646             continue;
00647          }
00648          /* Feed in frame to manipulation */
00649          if (audiohook->manipulate_callback(audiohook, chan, middle_frame, direction)) {
00650             ast_frfree(middle_frame);
00651             middle_frame = NULL;
00652          }
00653          ast_audiohook_unlock(audiohook);
00654       }
00655       AST_LIST_TRAVERSE_SAFE_END;
00656       if (middle_frame) {
00657          end_frame = middle_frame;
00658       }
00659    }
00660 
00661    /* Now we figure out what to do with our end frame (whether to transcode or not) */
00662    if (middle_frame == end_frame) {
00663       /* Middle frame was modified and became the end frame... let's see if we need to transcode */
00664       if (end_frame->subclass != start_frame->subclass) {
00665          if (out_translate->format != start_frame->subclass) {
00666             if (out_translate->trans_pvt)
00667                ast_translator_free_path(out_translate->trans_pvt);
00668             if (!(out_translate->trans_pvt = ast_translator_build_path(start_frame->subclass, AST_FORMAT_SLINEAR))) {
00669                /* We can't transcode this... drop our middle frame and return the original */
00670                ast_frfree(middle_frame);
00671                return start_frame;
00672             }
00673             out_translate->format = start_frame->subclass;
00674          }
00675          /* Transcode from our middle (signed linear) frame to new format of the frame that came in */
00676          if (!(end_frame = ast_translate(out_translate->trans_pvt, middle_frame, 0))) {
00677             /* Failed to transcode the frame... drop it and return the original */
00678             ast_frfree(middle_frame);
00679             return start_frame;
00680          }
00681          /* Here's the scoop... middle frame is no longer of use to us */
00682          ast_frfree(middle_frame);
00683       }
00684    } else {
00685       /* No frame was modified, we can just drop our middle frame and pass the frame we got in out */
00686       if (middle_frame) {
00687          ast_frfree(middle_frame);
00688       }
00689    }
00690 
00691    return end_frame;
00692 }
00693 
00694 /*! \brief Pass a frame off to be handled by the audiohook core
00695  * \param chan Channel that the list is coming off of
00696  * \param audiohook_list List of audiohooks
00697  * \param direction Direction frame is coming in from
00698  * \param frame The frame itself
00699  * \return Return frame on success, NULL on failure
00700  */
00701 struct ast_frame *ast_audiohook_write_list(struct ast_channel *chan, struct ast_audiohook_list *audiohook_list, enum ast_audiohook_direction direction, struct ast_frame *frame)
00702 {
00703    /* Pass off frame to it's respective list write function */
00704    if (frame->frametype == AST_FRAME_VOICE)
00705       return audio_audiohook_write_list(chan, audiohook_list, direction, frame);
00706    else if (frame->frametype == AST_FRAME_DTMF)
00707       return dtmf_audiohook_write_list(chan, audiohook_list, direction, frame);
00708    else
00709       return frame;
00710 }
00711          
00712 
00713 /*! \brief Wait for audiohook trigger to be triggered
00714  * \param audiohook Audiohook to wait on
00715  */
00716 void ast_audiohook_trigger_wait(struct ast_audiohook *audiohook)
00717 {
00718    struct timeval wait;
00719    struct timespec ts;
00720 
00721    wait = ast_tvadd(ast_tvnow(), ast_samp2tv(50000, 1000));
00722    ts.tv_sec = wait.tv_sec;
00723    ts.tv_nsec = wait.tv_usec * 1000;
00724    
00725    ast_cond_timedwait(&audiohook->trigger, &audiohook->lock, &ts);
00726    
00727    return;
00728 }
00729 
00730 /* Count number of channel audiohooks by type, regardless of type */
00731 int ast_channel_audiohook_count_by_source(struct ast_channel *chan, const char *source, enum ast_audiohook_type type)
00732 {
00733    int count = 0;
00734    struct ast_audiohook *ah = NULL;
00735 
00736    if (!chan->audiohooks)
00737       return -1;
00738 
00739    switch (type) {
00740       case AST_AUDIOHOOK_TYPE_SPY:
00741          AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->audiohooks->spy_list, ah, list) {
00742             if (!strcmp(ah->source, source)) {
00743                count++;
00744             }
00745          }
00746          AST_LIST_TRAVERSE_SAFE_END;
00747          break;
00748       case AST_AUDIOHOOK_TYPE_WHISPER:
00749          AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->audiohooks->whisper_list, ah, list) {
00750             if (!strcmp(ah->source, source)) {
00751                count++;
00752             }
00753          }
00754          AST_LIST_TRAVERSE_SAFE_END;
00755          break;
00756       case AST_AUDIOHOOK_TYPE_MANIPULATE:
00757          AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->audiohooks->manipulate_list, ah, list) {
00758             if (!strcmp(ah->source, source)) {
00759                count++;
00760             }
00761          }
00762          AST_LIST_TRAVERSE_SAFE_END;
00763          break;
00764       default:
00765          ast_log(LOG_DEBUG, "Invalid audiohook type supplied, (%d)\n", type);
00766          return -1;
00767    }
00768 
00769    return count;
00770 }
00771 
00772 /* Count number of channel audiohooks by type that are running */
00773 int ast_channel_audiohook_count_by_source_running(struct ast_channel *chan, const char *source, enum ast_audiohook_type type)
00774 {
00775    int count = 0;
00776    struct ast_audiohook *ah = NULL;
00777    if (!chan->audiohooks)
00778       return -1;
00779 
00780    switch (type) {
00781       case AST_AUDIOHOOK_TYPE_SPY:
00782          AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->audiohooks->spy_list, ah, list) {
00783             if ((!strcmp(ah->source, source)) && (ah->status == AST_AUDIOHOOK_STATUS_RUNNING))
00784                count++;
00785          }
00786          AST_LIST_TRAVERSE_SAFE_END;
00787          break;
00788       case AST_AUDIOHOOK_TYPE_WHISPER:
00789          AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->audiohooks->whisper_list, ah, list) {
00790             if ((!strcmp(ah->source, source)) && (ah->status == AST_AUDIOHOOK_STATUS_RUNNING))
00791                count++;
00792          }
00793          AST_LIST_TRAVERSE_SAFE_END;
00794          break;
00795       case AST_AUDIOHOOK_TYPE_MANIPULATE:
00796          AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->audiohooks->manipulate_list, ah, list) {
00797             if ((!strcmp(ah->source, source)) && (ah->status == AST_AUDIOHOOK_STATUS_RUNNING))
00798                count++;
00799          }
00800          AST_LIST_TRAVERSE_SAFE_END;
00801          break;
00802       default:
00803          ast_log(LOG_DEBUG, "Invalid audiohook type supplied, (%d)\n", type);
00804          return -1;
00805    }
00806    return count;
00807 }
00808 
00809 /*! \brief Audiohook volume adjustment structure */
00810 struct audiohook_volume {
00811    struct ast_audiohook audiohook; /*!< Audiohook attached to the channel */
00812    int read_adjustment;            /*!< Value to adjust frames read from the channel by */
00813    int write_adjustment;           /*!< Value to adjust frames written to the channel by */
00814 };
00815 
00816 /*! \brief Callback used to destroy the audiohook volume datastore
00817  * \param data Volume information structure
00818  * \return Returns nothing
00819  */
00820 static void audiohook_volume_destroy(void *data)
00821 {
00822    struct audiohook_volume *audiohook_volume = data;
00823 
00824    /* Destroy the audiohook as it is no longer in use */
00825    ast_audiohook_destroy(&audiohook_volume->audiohook);
00826 
00827    /* Finally free ourselves, we are of no more use */
00828    ast_free(audiohook_volume);
00829 
00830    return;
00831 }
00832 
00833 /*! \brief Datastore used to store audiohook volume information */
00834 static const struct ast_datastore_info audiohook_volume_datastore = {
00835    .type = "Volume",
00836    .destroy = audiohook_volume_destroy,
00837 };
00838 
00839 /*! \brief Helper function which actually gets called by audiohooks to perform the adjustment
00840  * \param audiohook Audiohook attached to the channel
00841  * \param chan Channel we are attached to
00842  * \param frame Frame of audio we want to manipulate
00843  * \param direction Direction the audio came in from
00844  * \return Returns 0 on success, -1 on failure
00845  */
00846 static int audiohook_volume_callback(struct ast_audiohook *audiohook, struct ast_channel *chan, struct ast_frame *frame, enum ast_audiohook_direction direction)
00847 {
00848    struct ast_datastore *datastore = NULL;
00849    struct audiohook_volume *audiohook_volume = NULL;
00850    int *gain = NULL;
00851 
00852    /* If the audiohook is shutting down don't even bother */
00853    if (audiohook->status == AST_AUDIOHOOK_STATUS_DONE) {
00854       return 0;
00855    }
00856 
00857    /* Try to find the datastore containg adjustment information, if we can't just bail out */
00858    if (!(datastore = ast_channel_datastore_find(chan, &audiohook_volume_datastore, NULL))) {
00859       return 0;
00860    }
00861 
00862    audiohook_volume = datastore->data;
00863 
00864    /* Based on direction grab the appropriate adjustment value */
00865    if (direction == AST_AUDIOHOOK_DIRECTION_READ) {
00866       gain = &audiohook_volume->read_adjustment;
00867    } else if (direction == AST_AUDIOHOOK_DIRECTION_WRITE) {
00868       gain = &audiohook_volume->write_adjustment;
00869    }
00870 
00871    /* If an adjustment value is present modify the frame */
00872    if (gain && *gain) {
00873       ast_frame_adjust_volume(frame, *gain);
00874    }
00875 
00876    return 0;
00877 }
00878 
00879 /*! \brief Helper function which finds and optionally creates an audiohook_volume_datastore datastore on a channel
00880  * \param chan Channel to look on
00881  * \param create Whether to create the datastore if not found
00882  * \return Returns audiohook_volume structure on success, NULL on failure
00883  */
00884 static struct audiohook_volume *audiohook_volume_get(struct ast_channel *chan, int create)
00885 {
00886    struct ast_datastore *datastore = NULL;
00887    struct audiohook_volume *audiohook_volume = NULL;
00888 
00889    /* If we are able to find the datastore return the contents (which is actually an audiohook_volume structure) */
00890    if ((datastore = ast_channel_datastore_find(chan, &audiohook_volume_datastore, NULL))) {
00891       return datastore->data;
00892    }
00893 
00894    /* If we are not allowed to create a datastore or if we fail to create a datastore, bail out now as we have nothing for them */
00895    if (!create || !(datastore = ast_datastore_alloc(&audiohook_volume_datastore, NULL))) {
00896       return NULL;
00897    }
00898 
00899    /* Create a new audiohook_volume structure to contain our adjustments and audiohook */
00900    if (!(audiohook_volume = ast_calloc(1, sizeof(*audiohook_volume)))) {
00901       ast_datastore_free(datastore);
00902       return NULL;
00903    }
00904 
00905    /* Setup our audiohook structure so we can manipulate the audio */
00906    ast_audiohook_init(&audiohook_volume->audiohook, AST_AUDIOHOOK_TYPE_MANIPULATE, "Volume");
00907    audiohook_volume->audiohook.manipulate_callback = audiohook_volume_callback;
00908 
00909    /* Attach the audiohook_volume blob to the datastore and attach to the channel */
00910    datastore->data = audiohook_volume;
00911    ast_channel_datastore_add(chan, datastore);
00912 
00913    /* All is well... put the audiohook into motion */
00914    ast_audiohook_attach(chan, &audiohook_volume->audiohook);
00915 
00916    return audiohook_volume;
00917 }
00918 
00919 /*! \brief Adjust the volume on frames read from or written to a channel
00920  * \param chan Channel to muck with
00921  * \param direction Direction to set on
00922  * \param volume Value to adjust the volume by
00923  * \return Returns 0 on success, -1 on failure
00924  */
00925 int ast_audiohook_volume_set(struct ast_channel *chan, enum ast_audiohook_direction direction, int volume)
00926 {
00927    struct audiohook_volume *audiohook_volume = NULL;
00928 
00929    /* Attempt to find the audiohook volume information, but only create it if we are not setting the adjustment value to zero */
00930    if (!(audiohook_volume = audiohook_volume_get(chan, (volume ? 1 : 0)))) {
00931       return -1;
00932    }
00933 
00934    /* Now based on the direction set the proper value */
00935    if (direction == AST_AUDIOHOOK_DIRECTION_READ || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
00936       audiohook_volume->read_adjustment = volume;
00937    }
00938    if (direction == AST_AUDIOHOOK_DIRECTION_WRITE || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
00939       audiohook_volume->write_adjustment = volume;
00940    }
00941 
00942    return 0;
00943 }
00944 
00945 /*! \brief Retrieve the volume adjustment value on frames read from or written to a channel
00946  * \param chan Channel to retrieve volume adjustment from
00947  * \param direction Direction to retrieve
00948  * \return Returns adjustment value
00949  */
00950 int ast_audiohook_volume_get(struct ast_channel *chan, enum ast_audiohook_direction direction)
00951 {
00952    struct audiohook_volume *audiohook_volume = NULL;
00953    int adjustment = 0;
00954 
00955    /* Attempt to find the audiohook volume information, but do not create it as we only want to look at the values */
00956    if (!(audiohook_volume = audiohook_volume_get(chan, 0))) {
00957       return 0;
00958    }
00959 
00960    /* Grab the adjustment value based on direction given */
00961    if (direction == AST_AUDIOHOOK_DIRECTION_READ) {
00962       adjustment = audiohook_volume->read_adjustment;
00963    } else if (direction == AST_AUDIOHOOK_DIRECTION_WRITE) {
00964       adjustment = audiohook_volume->write_adjustment;
00965    }
00966 
00967    return adjustment;
00968 }
00969 
00970 /*! \brief Adjust the volume on frames read from or written to a channel
00971  * \param chan Channel to muck with
00972  * \param direction Direction to increase
00973  * \param volume Value to adjust the adjustment by
00974  * \return Returns 0 on success, -1 on failure
00975  */
00976 int ast_audiohook_volume_adjust(struct ast_channel *chan, enum ast_audiohook_direction direction, int volume)
00977 {
00978    struct audiohook_volume *audiohook_volume = NULL;
00979 
00980    /* Attempt to find the audiohook volume information, and create an audiohook if none exists */
00981    if (!(audiohook_volume = audiohook_volume_get(chan, 1))) {
00982       return -1;
00983    }
00984 
00985    /* Based on the direction change the specific adjustment value */
00986    if (direction == AST_AUDIOHOOK_DIRECTION_READ || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
00987       audiohook_volume->read_adjustment += volume;
00988    }
00989    if (direction == AST_AUDIOHOOK_DIRECTION_WRITE || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
00990       audiohook_volume->write_adjustment += volume;
00991    }
00992 
00993    return 0;
00994 }

Generated on 2 Mar 2010 for Asterisk - the Open Source PBX by  doxygen 1.6.1