Asterisk - The Open Source Telephony Project GIT-master-754dea3
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
file.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 1999 - 2006, Digium, Inc.
5 *
6 * Mark Spencer <markster@digium.com>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*! \file
20 *
21 * \brief Generic File Format Support.
22 *
23 * \author Mark Spencer <markster@digium.com>
24 */
25
26/*** MODULEINFO
27 <support_level>core</support_level>
28 ***/
29
30#include "asterisk.h"
31
32#include <dirent.h>
33#include <sys/stat.h>
34#include <sys/wait.h>
35#include <math.h>
36
37#include "asterisk/_private.h" /* declare ast_file_init() */
38#include "asterisk/paths.h" /* use ast_config_AST_DATA_DIR */
39#include "asterisk/mod_format.h"
40#include "asterisk/cli.h"
41#include "asterisk/channel.h"
42#include "asterisk/sched.h"
43#include "asterisk/translate.h"
44#include "asterisk/utils.h"
45#include "asterisk/lock.h"
46#include "asterisk/app.h"
47#include "asterisk/pbx.h"
49#include "asterisk/module.h"
50#include "asterisk/astobj2.h"
51#include "asterisk/test.h"
52#include "asterisk/stasis.h"
53#include "asterisk/json.h"
56
57/*! \brief
58 * The following variable controls the layout of localized sound files.
59 * If 0, use the historical layout with prefix just before the filename
60 * (i.e. digits/en/1.gsm , digits/it/1.gsm or default to digits/1.gsm),
61 * if 1 put the prefix at the beginning of the filename
62 * (i.e. en/digits/1.gsm, it/digits/1.gsm or default to digits/1.gsm).
63 * The latter permits a language to be entirely in one directory.
64 *
65 * This is settable in asterisk.conf.
66 */
68
70
73
74static struct ast_json *json_array_from_list(const char *list, const char *sep)
75{
77 char *stringp, *ext;
78
79 stringp = ast_strdupa(list); /* this is in the stack so does not need to be freed */
80 if (!array || !stringp) {
81 return NULL;
82 }
83
84 while ((ext = strsep(&stringp, sep))) {
86 return NULL;
87 }
88 }
89
90 return ast_json_ref(array);
91}
92
94{
95 RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);
96 RAII_VAR(struct ast_json_payload *, json_payload, NULL, ao2_cleanup);
97 RAII_VAR(struct ast_json *, json_object, NULL, ast_json_unref);
98
99 if (!type) {
100 return -1;
101 }
102
103 json_object = ast_json_pack("{s: s, s: o}",
104 "format", f->name,
105 "extensions", json_array_from_list(f->exts, "|"));
106 if (!json_object) {
107 return -1;
108 }
109
110 json_payload = ast_json_payload_create(json_object);
111 if (!json_payload) {
112 return -1;
113 }
114
115 msg = stasis_message_create(type, json_payload);
116 if (!msg) {
117 return -1;
118 }
119
121 return 0;
122}
123
124int __ast_format_def_register(const struct ast_format_def *f, struct ast_module *mod)
125{
126 struct ast_format_def *tmp;
127
130 if (!strcasecmp(f->name, tmp->name)) {
132 ast_log(LOG_WARNING, "Tried to register '%s' format, already registered\n", f->name);
133 return -1;
134 }
135 }
136 if (!(tmp = ast_calloc(1, sizeof(*tmp)))) {
138 return -1;
139 }
140 *tmp = *f;
141 tmp->module = mod;
142 if (tmp->buf_size) {
143 /*
144 * Align buf_size properly, rounding up to the machine-specific
145 * alignment for pointers.
146 */
147 struct _test_align { void *a, *b; } p;
148 int align = (char *)&p.b - (char *)&p.a;
149 tmp->buf_size = ((f->buf_size + align - 1) / align) * align;
150 }
151
152 memset(&tmp->list, 0, sizeof(tmp->list));
153
154 AST_RWLIST_INSERT_HEAD(&formats, tmp, list);
156 ast_verb(5, "Registered file format %s, extension(s) %s\n", f->name, f->exts);
158
159 return 0;
160}
161
163{
164 struct ast_format_def *tmp;
165 int res = -1;
166
169 if (!strcasecmp(name, tmp->name)) {
172 ast_free(tmp);
173 res = 0;
174 }
175 }
178
179 if (!res)
180 ast_verb(5, "Unregistered format %s\n", name);
181 else
182 ast_log(LOG_WARNING, "Tried to unregister format %s, already unregistered\n", name);
183
184 return res;
185}
186
187FILE *ast_file_mkftemp(char *template_name, mode_t mode)
188{
189 FILE *p = NULL;
190 int pfd = mkstemp(template_name);
191 chmod(template_name, mode);
192 if (pfd > -1) {
193 p = fdopen(pfd, "w+");
194 if (!p) {
195 close(pfd);
196 pfd = -1;
197 }
198 }
199 return p;
200}
201
202int ast_file_fdtemp(const char *path, char **filename, const char *template_name)
203{
204 int fd;
205
206 if (ast_asprintf(filename, "%s/%s", path, template_name) < 0) {
207 ast_log(LOG_ERROR, "Failed to set up temporary file path\n");
208 return -1;
209 }
210
211 ast_mkdir(path, 0644);
212
213 if ((fd = mkstemp(*filename)) < 0) {
214 ast_log(LOG_NOTICE, "Failed to create temporary file\n");
215 ast_free(*filename);
216 return -1;
217 }
218
219 return fd;
220}
221
223{
224 ast_channel_lock(tmp);
225
226 /* Stop a running stream if there is one */
227 if (ast_channel_stream(tmp)) {
231 ast_log(LOG_WARNING, "Unable to restore format back to %s\n", ast_format_get_name(ast_channel_oldwriteformat(tmp)));
232 }
233 /* Stop the video stream too */
234 if (ast_channel_vstream(tmp) != NULL) {
237 }
238
240
241 return 0;
242}
243
244int ast_writestream(struct ast_filestream *fs, struct ast_frame *f)
245{
246 int res = -1;
247 if (f->frametype == AST_FRAME_VIDEO) {
249 /* This is the audio portion. Call the video one... */
250 if (!fs->vfs && fs->filename) {
251 const char *type = ast_format_get_name(f->subclass.format);
252 fs->vfs = ast_writefile(fs->filename, type, NULL, fs->flags, 0, fs->mode);
253 ast_debug(1, "Opened video output file\n");
254 }
255 if (fs->vfs)
256 return ast_writestream(fs->vfs, f);
257 /* else ignore */
258 return 0;
259 }
260 } else if (f->frametype != AST_FRAME_VOICE) {
261 ast_log(LOG_WARNING, "Tried to write non-voice frame\n");
262 return -1;
263 }
265 res = fs->fmt->write(fs, f);
266 if (res < 0)
267 ast_log(LOG_WARNING, "Natural write failed\n");
268 else if (res > 0)
269 ast_log(LOG_WARNING, "Huh??\n");
270 } else {
271 /* XXX If they try to send us a type of frame that isn't the normal frame, and isn't
272 the one we've setup a translator for, we do the "wrong thing" XXX */
275 fs->trans = NULL;
276 }
277 if (!fs->trans) {
279 }
280 if (!fs->trans) {
281 ast_log(LOG_WARNING, "Unable to translate to format %s, source format %s\n",
283 } else {
284 struct ast_frame *trf;
286 /* Get the translated frame but don't consume the original in case they're using it on another stream */
287 if ((trf = ast_translate(fs->trans, f, 0))) {
288 struct ast_frame *cur;
289
290 /* the translator may have returned multiple frames, so process them */
291 for (cur = trf; cur; cur = AST_LIST_NEXT(cur, frame_list)) {
292 if ((res = fs->fmt->write(fs, trf))) {
293 ast_log(LOG_WARNING, "Translated frame write failed\n");
294 break;
295 }
296 }
297 ast_frfree(trf);
298 } else {
299 res = 0;
300 }
301 }
302 }
303 return res;
304}
305
306static int copy(const char *infile, const char *outfile)
307{
308 int ifd, ofd, len;
309 char buf[4096]; /* XXX make it larger. */
310
311 if ((ifd = open(infile, O_RDONLY)) < 0) {
312 ast_log(LOG_WARNING, "Unable to open %s in read-only mode\n", infile);
313 return -1;
314 }
315 if ((ofd = open(outfile, O_WRONLY | O_TRUNC | O_CREAT, AST_FILE_MODE)) < 0) {
316 ast_log(LOG_WARNING, "Unable to open %s in write-only mode\n", outfile);
317 close(ifd);
318 return -1;
319 }
320 while ( (len = read(ifd, buf, sizeof(buf)) ) ) {
321 int res;
322 if (len < 0) {
323 ast_log(LOG_WARNING, "Read failed on %s: %s\n", infile, strerror(errno));
324 break;
325 }
326 /* XXX handle partial writes */
327 res = write(ofd, buf, len);
328 if (res != len) {
329 ast_log(LOG_WARNING, "Write failed on %s (%d of %d): %s\n", outfile, res, len, strerror(errno));
330 len = -1; /* error marker */
331 break;
332 }
333 }
334 close(ifd);
335 close(ofd);
336 if (len < 0) {
337 unlink(outfile);
338 return -1; /* error */
339 }
340 return 0; /* success */
341}
342
343/*!
344 * \brief construct a filename. Absolute pathnames are preserved,
345 * relative names are prefixed by the sounds/ directory.
346 * The wav49 suffix is replaced by 'WAV'.
347 * Returns a malloc'ed string to be freed by the caller.
348 */
349static char *build_filename(const char *filename, const char *ext)
350{
351 char *fn = NULL;
352
353 /* The wav49 -> WAV translation is duplicated in apps/app_mixmonitor.c, so
354 if you change it here you need to change it there as well */
355 if (!strcmp(ext, "wav49"))
356 ext = "WAV";
357
358 if (filename[0] == '/') {
359 if (ast_asprintf(&fn, "%s.%s", filename, ext) < 0) {
360 fn = NULL;
361 }
362 } else {
363 if (ast_asprintf(&fn, "%s/sounds/%s.%s",
364 ast_config_AST_DATA_DIR, filename, ext) < 0) {
365 fn = NULL;
366 }
367 }
368 return fn;
369}
370
371/* compare type against the list 'exts' */
372/* XXX need a better algorithm */
373static int type_in_list(const char *list, const char *type, int (*cmp)(const char *s1, const char *s2))
374{
375 char *stringp = ast_strdupa(list), *item;
376
377 while ((item = strsep(&stringp, "|"))) {
378 if (!cmp(item, type)) {
379 return 1;
380 }
381 }
382
383 return 0;
384}
385
386#define exts_compare(list, type) (type_in_list((list), (type), strcmp))
387
388/*!
389 * \internal
390 * \brief Close the file stream by canceling any pending read / write callbacks
391 */
392static void filestream_close(struct ast_filestream *f)
393{
394 enum ast_media_type format_type = ast_format_get_type(f->fmt->format);
395
396 if (!f->owner) {
397 return;
398 }
399
400 /* Stop a running stream if there is one */
401 switch (format_type)
402 {
406 ast_settimeout(f->owner, 0, NULL, NULL);
407 break;
411 break;
412 default:
413 ast_log(AST_LOG_WARNING, "Unable to schedule deletion of filestream with unsupported type %s\n", f->fmt->name);
414 break;
415 }
416}
417
418static void filestream_destructor(void *arg)
419{
420 struct ast_filestream *f = arg;
421 int status;
422 int pid = -1;
423
424 /* Stop a running stream if there is one */
426
427 /* destroy the translator on exit */
428 if (f->trans)
430
431 if (f->fmt->close) {
432 void (*closefn)(struct ast_filestream *) = f->fmt->close;
433 closefn(f);
434 }
435
436 if (f->f) {
437 fclose(f->f);
438 }
439
440 if (f->realfilename && f->filename) {
441 pid = ast_safe_fork(0);
442 if (!pid) {
443 execl("/bin/mv", "mv", "-f", f->filename, f->realfilename, SENTINEL);
444 _exit(1);
445 }
446 else if (pid > 0) {
447 /* Block the parent until the move is complete.*/
448 waitpid(pid, &status, 0);
449 }
450 }
451
452 ast_free(f->filename);
453 ast_free(f->realfilename);
454 if (f->vfs)
455 ast_closestream(f->vfs);
456 ast_free(f->write_buffer);
457 ast_free((void *)f->orig_chan_name);
458 ao2_cleanup(f->lastwriteformat);
459 ao2_cleanup(f->fr.subclass.format);
460 ast_module_unref(f->fmt->module);
461}
462
463static struct ast_filestream *get_filestream(struct ast_format_def *fmt, FILE *bfile)
464{
465 struct ast_filestream *s;
466 int l = sizeof(*s) + fmt->buf_size + fmt->desc_size; /* total allocation size */
467
469 return NULL;
470 }
471
473 if (!s) {
475 return NULL;
476 }
477 s->fmt = fmt;
478 s->f = bfile;
479
480 if (fmt->desc_size)
481 s->_private = ((char *)(s + 1)) + fmt->buf_size;
482 if (fmt->buf_size)
483 s->buf = (char *)(s + 1);
484 s->fr.src = fmt->name;
485
490 }
491 s->fr.mallocd = 0;
493
494 return s;
495}
496
497/*
498 * Default implementations of open and rewrite.
499 * Only use them if you don't have expensive stuff to do.
500 */
502
503static int fn_wrapper(struct ast_filestream *s, const char *comment, enum wrap_fn mode)
504{
505 struct ast_format_def *f = s->fmt;
506 int ret = -1;
507 int (*openfn)(struct ast_filestream *s);
508
509 if (mode == WRAP_OPEN && (openfn = f->open) && openfn(s))
510 ast_log(LOG_WARNING, "Unable to open format %s\n", f->name);
511 else if (mode == WRAP_REWRITE && f->rewrite && f->rewrite(s, comment))
512 ast_log(LOG_WARNING, "Unable to rewrite format %s\n", f->name);
513 else {
514 /* preliminary checks succeed. */
515 ret = 0;
516 }
517 return ret;
518}
519
520static int rewrite_wrapper(struct ast_filestream *s, const char *comment)
521{
522 return fn_wrapper(s, comment, WRAP_REWRITE);
523}
524
525static int open_wrapper(struct ast_filestream *s)
526{
527 return fn_wrapper(s, NULL, WRAP_OPEN);
528}
529
531 ACTION_EXISTS = 1, /* return matching format if file exists, 0 otherwise */
532 ACTION_DELETE, /* delete file, return 0 on success, -1 on error */
533 ACTION_RENAME, /* rename file. return 0 on success, -1 on error */
535 ACTION_COPY /* copy file. return 0 on success, -1 on error */
537
538/*!
539 * \internal
540 * \brief perform various actions on a file. Second argument
541 * \note arg2 depends on the command:
542 * unused for DELETE
543 * optional ast_format_cap holding all the formats found for a file, for EXISTS.
544 * destination file name (const char *) for COPY and RENAME
545 * struct ast_channel * for OPEN
546 * if fmt is NULL, OPEN will return the first matching entry,
547 * whereas other functions will run on all matching entries.
548 */
549static int filehelper(const char *filename, const void *arg2, const char *fmt, const enum file_action action)
550{
551 struct ast_format_def *f;
552 int res = (action == ACTION_EXISTS) ? 0 : -1;
553
555 /* Check for a specific format */
557 char *ext = NULL;
558 char storage[strlen(f->exts) + 1];
559 char *stringp;
560
561 if (fmt && !exts_compare(f->exts, fmt))
562 continue;
563
564 /* Look for a file matching the supported extensions.
565 * The file must exist, and for OPEN, must match
566 * one of the formats supported by the channel.
567 */
568 strcpy(storage, f->exts); /* safe - this is in the stack so does not need to be freed */
569 stringp = storage;
570 while ( (ext = strsep(&stringp, "|")) ) {
571 struct stat st;
572 char *fn = build_filename(filename, ext);
573
574 if (fn == NULL)
575 continue;
576
577 if ( stat(fn, &st) ) { /* file not existent */
578 ast_free(fn);
579 continue;
580 }
581 /* for 'OPEN' we need to be sure that the format matches
582 * what the channel can process
583 */
584 if (action == ACTION_OPEN) {
585 struct ast_channel *chan = (struct ast_channel *)arg2;
586 FILE *bfile;
587 struct ast_filestream *s;
588
590 !(((ast_format_get_type(f->format) == AST_MEDIA_TYPE_AUDIO) && fmt) ||
591 ((ast_format_get_type(f->format) == AST_MEDIA_TYPE_VIDEO) && fmt))) {
592 ast_free(fn);
593 continue; /* not a supported format */
594 }
595 if ( (bfile = fopen(fn, "r")) == NULL) {
596 ast_free(fn);
597 continue; /* cannot open file */
598 }
599 s = get_filestream(f, bfile);
600 if (!s) {
601 fclose(bfile);
602 ast_free(fn); /* cannot allocate descriptor */
603 continue;
604 }
605 if (open_wrapper(s)) {
606 ast_free(fn);
608 continue; /* cannot run open on file */
609 }
610 if (st.st_size == 0) {
611 ast_log(LOG_WARNING, "File %s detected to have zero size.\n", fn);
612 }
613 /* ok this is good for OPEN */
614 res = 1; /* found */
615 s->lasttimeout = -1;
616 s->fmt = f;
617 s->trans = NULL;
618 s->filename = NULL;
620 if (ast_channel_stream(chan))
622 ast_channel_stream_set(chan, s);
623 } else {
624 if (ast_channel_vstream(chan))
627 }
628 ast_free(fn);
629 break;
630 }
631 switch (action) {
632 case ACTION_OPEN:
633 break; /* will never get here */
634
635 case ACTION_EXISTS: /* return the matching format */
636 /* if arg2 is present, it is a format capabilities structure.
637 * Add this format to the set of formats this file can be played in */
638 if (arg2) {
639 ast_format_cap_append((struct ast_format_cap *) arg2, f->format, 0);
640 }
641 res = 1; /* file does exist and format it exists in is returned in arg2 */
642 break;
643
644 case ACTION_DELETE:
645 if ( (res = unlink(fn)) )
646 ast_log(LOG_WARNING, "unlink(%s) failed: %s\n", fn, strerror(errno));
647 break;
648
649 case ACTION_RENAME:
650 case ACTION_COPY: {
651 char *nfn = build_filename((const char *)arg2, ext);
652 if (!nfn)
653 ast_log(LOG_WARNING, "Out of memory\n");
654 else {
655 res = action == ACTION_COPY ? copy(fn, nfn) : rename(fn, nfn);
656 if (res)
657 ast_log(LOG_WARNING, "%s(%s,%s) failed: %s\n",
658 action == ACTION_COPY ? "copy" : "rename",
659 fn, nfn, strerror(errno));
660 ast_free(nfn);
661 }
662 }
663 break;
664
665 default:
666 ast_log(LOG_WARNING, "Unknown helper %u\n", action);
667 }
668 ast_free(fn);
669 }
670 }
672 return res;
673}
674
675static int is_absolute_path(const char *filename)
676{
677 return filename[0] == '/';
678}
679
680static int is_remote_path(const char *filename)
681{
682 return strstr(filename, "://") ? 1 : 0;
683}
684
685/*!
686 * \brief test if a file exists for a given format.
687 * \note result_cap is OPTIONAL
688 * \retval 1 true and result_cap represents format capabilities file exists in.
689 * \retval 0 false
690 */
691static int fileexists_test(const char *filename, const char *fmt, const char *lang,
692 char *buf, int buflen, struct ast_format_cap *result_cap)
693{
694 if (buf == NULL) {
695 return 0;
696 }
697
699 return filehelper(buf, result_cap, NULL, ACTION_EXISTS);
700 }
701
702 if (ast_language_is_prefix && !is_absolute_path(filename)) { /* new layout */
703 if (lang) {
704 snprintf(buf, buflen, "%s/%s", lang, filename);
705 } else {
706 snprintf(buf, buflen, "%s", filename);
707 }
708 } else { /* old layout */
709 strcpy(buf, filename); /* first copy the full string */
710 if (lang) {
711 /* insert the language and suffix if needed */
712 const char *c = strrchr(filename, '/');
713 int offset = c ? c - filename + 1 : 0; /* points right after the last '/' */
714 snprintf(buf + offset, buflen - offset, "%s/%s", lang, filename + offset);
715 }
716 }
717
718 return filehelper(buf, result_cap, fmt, ACTION_EXISTS);
719}
720
721/*!
722 * \brief helper routine to locate a file with a given format
723 * and language preference.
724 *
725 * \note Try preflang, preflang with stripped '_' suffices, or NULL.
726 *
727 * \note The last parameter(s) point to a buffer of sufficient size,
728 * which on success is filled with the matching filename.
729 *
730 * \param filename Name of the file.
731 * \param fmt Format to look for the file in. OPTIONAL
732 * \param preflang The preferred language
733 * \param buf Returns the matching filename
734 * \param buflen Size of the buf
735 * \param result_cap OPTIONAL format capabilities result structure
736 * returns what formats the file was found in.
737 *
738 * \retval 1 true. file exists and result format is set
739 * \retval 0 false. file does not exist.
740 */
741static int fileexists_core(const char *filename, const char *fmt, const char *preflang,
742 char *buf, int buflen, struct ast_format_cap *result_cap)
743{
744 char *lang;
745
746 if (buf == NULL) {
747 return 0;
748 }
749
750 /* We try languages in the following order:
751 * preflang (may include dialect and style codes)
752 * lang (preflang without dialect - if any)
753 * <none>
754 * default (unless the same as preflang or lang without dialect)
755 */
756
757 lang = ast_strdupa(preflang);
758
759 /* Try preferred language, including removing any style or dialect codes */
760 while (!ast_strlen_zero(lang)) {
761 char *end;
762
763 if (fileexists_test(filename, fmt, lang, buf, buflen, result_cap)) {
764 return 1;
765 }
766
767 if ((end = strrchr(lang, '_')) != NULL) {
768 *end = '\0';
769 continue;
770 }
771
772 break;
773 }
774
775 /* Try without any language */
776 if (fileexists_test(filename, fmt, NULL, buf, buflen, result_cap)) {
777 return 1;
778 }
779
780 /* Finally try the default language unless it was already tried before */
781 if ((ast_strlen_zero(preflang) || strcmp(preflang, DEFAULT_LANGUAGE)) && (ast_strlen_zero(lang) || strcmp(lang, DEFAULT_LANGUAGE))) {
782 if ((fileexists_test(filename, fmt, DEFAULT_LANGUAGE, buf, buflen, result_cap)) > 0) {
783 return 1;
784 }
785 }
786
787 return 0;
788}
789
791 const char *filename, const char *preflang, int asis, int quiet)
792{
793 /*
794 * Use fileexists_core() to find a file in a compatible
795 * language and format, set up a suitable translator,
796 * and open the stream.
797 */
798 struct ast_format_cap *file_fmt_cap;
799 int res;
800 int buflen;
801 char *buf;
802
803 if (!asis) {
804 /* do this first, otherwise we detect the wrong writeformat */
805 ast_stopstream(chan);
806 if (ast_channel_generator(chan))
808 }
809 if (preflang == NULL)
810 preflang = "";
811 buflen = strlen(preflang) + strlen(filename) + 4;
812 buf = ast_alloca(buflen);
813
814 if (!(file_fmt_cap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT))) {
815 return NULL;
816 }
817 if (!fileexists_core(filename, NULL, preflang, buf, buflen, file_fmt_cap) ||
819
820 if (!quiet) {
821 ast_log(LOG_WARNING, "File %s does not exist in any format\n", filename);
822 }
823 ao2_ref(file_fmt_cap, -1);
824 return NULL;
825 }
826
827 /* Set the channel to a format we can work with and save off the previous format. */
828 ast_channel_lock(chan);
830 /* Set the channel to the best format that exists for the file. */
831 res = ast_set_write_format_from_cap(chan, file_fmt_cap);
832 ast_channel_unlock(chan);
833 /* don't need this anymore now that the channel's write format is set. */
834 ao2_ref(file_fmt_cap, -1);
835
836 if (res == -1) { /* No format available that works with this channel */
837 return NULL;
838 }
839 res = filehelper(buf, chan, NULL, ACTION_OPEN);
840 if (res >= 0)
841 return ast_channel_stream(chan);
842 return NULL;
843}
844
845struct ast_filestream *ast_openstream(struct ast_channel *chan, const char *filename, const char *preflang)
846{
847 return openstream_internal(chan, filename, preflang, 0, 0);
848}
849
851 const char *filename, const char *preflang, int asis)
852{
853 return openstream_internal(chan, filename, preflang, asis, 0);
854}
855
857 const char *filename, const char *preflang)
858{
859 /* As above, but for video. But here we don't have translators
860 * so we must enforce a format.
861 */
862 struct ast_format_cap *nativeformats, *tmp_cap;
863 char *buf;
864 int buflen;
865 int i, fd;
866
867 if (preflang == NULL) {
868 preflang = "";
869 }
870 buflen = strlen(preflang) + strlen(filename) + 4;
871 buf = ast_alloca(buflen);
872
873 ast_channel_lock(chan);
874 nativeformats = ao2_bump(ast_channel_nativeformats(chan));
875 ast_channel_unlock(chan);
876
877 /* is the channel capable of video without translation ?*/
878 if (!ast_format_cap_has_type(nativeformats, AST_MEDIA_TYPE_VIDEO)) {
879 ao2_cleanup(nativeformats);
880 return NULL;
881 }
883 ao2_cleanup(nativeformats);
884 return NULL;
885 }
886 /* Video is supported, so see what video formats exist for this file */
887 if (!fileexists_core(filename, NULL, preflang, buf, buflen, tmp_cap)) {
888 ao2_ref(tmp_cap, -1);
889 ao2_cleanup(nativeformats);
890 return NULL;
891 }
892
893 /* iterate over file formats and pick the first one compatible with the channel's native formats */
894 for (i = 0; i < ast_format_cap_count(tmp_cap); ++i) {
895 struct ast_format *format = ast_format_cap_get_format(tmp_cap, i);
896
897 if ((ast_format_get_type(format) != AST_MEDIA_TYPE_VIDEO) ||
898 !ast_format_cap_iscompatible(nativeformats, tmp_cap)) {
899 ao2_ref(format, -1);
900 continue;
901 }
902
903 fd = filehelper(buf, chan, ast_format_get_name(format), ACTION_OPEN);
904 if (fd >= 0) {
905 ao2_ref(format, -1);
906 ao2_ref(tmp_cap, -1);
907 ao2_cleanup(nativeformats);
908 return ast_channel_vstream(chan);
909 }
910 ast_log(LOG_WARNING, "File %s has video but couldn't be opened\n", filename);
911 ao2_ref(format, -1);
912 }
913 ao2_ref(tmp_cap, -1);
914 ao2_cleanup(nativeformats);
915
916 return NULL;
917}
918
919static struct ast_frame *read_frame(struct ast_filestream *s, int *whennext)
920{
921 struct ast_frame *fr, *new_fr;
922
923 if (!s || !s->fmt) {
924 return NULL;
925 }
926
927 if (!(fr = s->fmt->read(s, whennext))) {
928 return NULL;
929 }
930
931 if (!(new_fr = ast_frisolate(fr))) {
932 ast_frfree(fr);
933 return NULL;
934 }
935
936 if (new_fr != fr) {
937 ast_frfree(fr);
938 fr = new_fr;
939 }
940
941 return fr;
942}
943
945{
946 int whennext = 0;
947
948 return read_frame(s, &whennext);
949}
950
955};
956
957static int ast_fsread_audio(const void *data);
958
960{
961 int whennext = 0;
962
963 while (!whennext) {
964 struct ast_frame *fr;
965
966 if (s->orig_chan_name && strcasecmp(ast_channel_name(s->owner), s->orig_chan_name)) {
967 goto return_failure;
968 }
969
970 fr = read_frame(s, &whennext);
971
972 if (!fr /* stream complete */ || ast_write(s->owner, fr) /* error writing */) {
973 if (fr) {
974 ast_debug(2, "Failed to write frame\n");
975 ast_frfree(fr);
976 }
977 goto return_failure;
978 }
979
980 if (fr) {
981 ast_frfree(fr);
982 }
983 }
984
985 if (whennext != s->lasttimeout) {
986 if (ast_channel_timingfd(s->owner) > -1) {
987 float samp_rate = (float) ast_format_get_sample_rate(s->fmt->format);
988 unsigned int rate;
989
990 rate = (unsigned int) roundf(samp_rate / ((float) whennext));
991
993 } else {
995 }
996 s->lasttimeout = whennext;
998 }
1000
1001return_failure:
1003 ast_settimeout(s->owner, 0, NULL, NULL);
1004 return FSREAD_FAILURE;
1005}
1006
1007static int ast_fsread_audio(const void *data)
1008{
1009 struct ast_filestream *fs = (struct ast_filestream *)data;
1010 enum fsread_res res;
1011
1012 res = ast_readaudio_callback(fs);
1013
1014 if (res == FSREAD_SUCCESS_SCHED)
1015 return 1;
1016
1017 return 0;
1018}
1019
1020static int ast_fsread_video(const void *data);
1021
1023{
1024 int whennext = 0;
1025
1026 while (!whennext) {
1027 struct ast_frame *fr = read_frame(s, &whennext);
1028
1029 if (!fr /* stream complete */ || ast_write(s->owner, fr) /* error writing */) {
1030 if (fr) {
1031 ast_debug(2, "Failed to write frame\n");
1032 ast_frfree(fr);
1033 }
1035 return FSREAD_FAILURE;
1036 }
1037
1038 if (fr) {
1039 ast_frfree(fr);
1040 }
1041 }
1042
1043 if (whennext != s->lasttimeout) {
1045 s->lasttimeout = whennext;
1047 }
1048
1049 return FSREAD_SUCCESS_SCHED;
1050}
1051
1052static int ast_fsread_video(const void *data)
1053{
1054 struct ast_filestream *fs = (struct ast_filestream *)data;
1055 enum fsread_res res;
1056
1057 res = ast_readvideo_callback(fs);
1058
1059 if (res == FSREAD_SUCCESS_SCHED)
1060 return 1;
1061
1062 return 0;
1063}
1064
1065int ast_applystream(struct ast_channel *chan, struct ast_filestream *s)
1066{
1067 s->owner = chan;
1068 return 0;
1069}
1070
1072{
1073 enum fsread_res res;
1074
1076 res = ast_readaudio_callback(s);
1077 else
1078 res = ast_readvideo_callback(s);
1079
1080 return (res == FSREAD_FAILURE) ? -1 : 0;
1081}
1082
1083int ast_seekstream(struct ast_filestream *fs, off_t sample_offset, int whence)
1084{
1085 return fs->fmt->seek(fs, sample_offset, whence);
1086}
1087
1089{
1090 return fs->fmt->trunc(fs);
1091}
1092
1094{
1095 return fs->fmt->tell(fs);
1096}
1097
1099{
1101}
1102
1104{
1105 return ast_seekstream(fs, ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
1106}
1107
1108int ast_stream_rewind(struct ast_filestream *fs, off_t ms)
1109{
1110 off_t offset = ast_tellstream(fs);
1111 if (ms * DEFAULT_SAMPLES_PER_MS > offset) {
1112 /* Don't even bother asking the file format to seek to a negative offset... */
1113 ast_debug(1, "Restarting, rather than seeking to negative offset %ld\n", (long) (offset - (ms * DEFAULT_SAMPLES_PER_MS)));
1114 return ast_seekstream(fs, 0, SEEK_SET);
1115 }
1116 return ast_seekstream(fs, -ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
1117}
1118
1120{
1121 /* This used to destroy the filestream, but it now just decrements a refcount.
1122 * We close the stream in order to quit queuing frames now, because we might
1123 * change the writeformat, which could result in a subsequent write error, if
1124 * the format is different. */
1125 if (f == NULL) {
1126 return 0;
1127 }
1129 ao2_ref(f, -1);
1130 return 0;
1131}
1132
1133
1134/*
1135 * Look the various language-specific places where a file could exist.
1136 */
1137int ast_fileexists(const char *filename, const char *fmt, const char *preflang)
1138{
1139 char *buf;
1140 int buflen;
1141
1142 if (preflang == NULL)
1143 preflang = "";
1144 buflen = strlen(preflang) + strlen(filename) + 4; /* room for everything */
1145 buf = ast_alloca(buflen);
1146 return fileexists_core(filename, fmt, preflang, buf, buflen, NULL) ? 1 : 0;
1147}
1148
1149int ast_filedelete(const char *filename, const char *fmt)
1150{
1152}
1153
1154int ast_filerename(const char *filename, const char *filename2, const char *fmt)
1155{
1156 return filehelper(filename, filename2, fmt, ACTION_RENAME);
1157}
1158
1159int ast_filecopy(const char *filename, const char *filename2, const char *fmt)
1160{
1161 return filehelper(filename, filename2, fmt, ACTION_COPY);
1162}
1163
1164static int __ast_file_read_dirs(const char *path, ast_file_on_file on_file,
1165 void *obj, int max_depth)
1166{
1167 DIR *dir;
1168 struct dirent *entry;
1169 int res;
1170
1171 if (!(dir = opendir(path))) {
1172 ast_log(LOG_ERROR, "Error opening directory - %s: %s\n",
1173 path, strerror(errno));
1174 return -1;
1175 }
1176
1177 --max_depth;
1178
1179 res = 0;
1180
1181 while ((entry = readdir(dir)) != NULL && !errno) {
1182 int is_file = 0;
1183 int is_dir = 0;
1184 RAII_VAR(char *, full_path, NULL, ast_free);
1185
1186 if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, "..")) {
1187 continue;
1188 }
1189
1190/*
1191 * If the dirent structure has a d_type use it to determine if we are dealing with
1192 * a file or directory. Unfortunately if it doesn't have it, or if the type is
1193 * unknown, or a link then we'll need to use the stat function instead.
1194 */
1195#ifdef _DIRENT_HAVE_D_TYPE
1196 if (entry->d_type != DT_UNKNOWN && entry->d_type != DT_LNK) {
1197 is_file = entry->d_type == DT_REG;
1198 is_dir = entry->d_type == DT_DIR;
1199 } else
1200#endif
1201 {
1202 struct stat statbuf;
1203
1204 /*
1205 * Don't use alloca or we risk blowing out the stack if recursing
1206 * into subdirectories.
1207 */
1208 full_path = ast_malloc(strlen(path) + strlen(entry->d_name) + 2);
1209 if (!full_path) {
1210 return -1;
1211 }
1212 sprintf(full_path, "%s/%s", path, entry->d_name);
1213
1214 if (stat(full_path, &statbuf)) {
1215 ast_log(LOG_ERROR, "Error reading path stats - %s: %s\n",
1216 full_path, strerror(errno));
1217 /*
1218 * Output an error, but keep going. It could just be
1219 * a broken link and other files could be fine.
1220 */
1221 continue;
1222 }
1223
1224 is_file = S_ISREG(statbuf.st_mode);
1225 is_dir = S_ISDIR(statbuf.st_mode);
1226 }
1227
1228 if (is_file) {
1229 /* If the handler returns non-zero then stop */
1230 if ((res = on_file(path, entry->d_name, obj))) {
1231 break;
1232 }
1233 /* Otherwise move on to next item in directory */
1234 continue;
1235 }
1236
1237 if (!is_dir) {
1238 ast_debug(5, "Skipping %s: not a regular file or directory\n", full_path);
1239 continue;
1240 }
1241
1242 /* Only re-curse into sub-directories if not at the max depth */
1243 if (max_depth != 0) {
1244 if (!full_path) {
1245 /* Don't use alloca. See note above. */
1246 full_path = ast_malloc(strlen(path) + strlen(entry->d_name) + 2);
1247 if (!full_path) {
1248 return -1;
1249 }
1250 sprintf(full_path, "%s/%s", path, entry->d_name);
1251 }
1252
1253 if ((res = __ast_file_read_dirs(full_path, on_file, obj, max_depth))) {
1254 break;
1255 }
1256 }
1257 }
1258
1259 closedir(dir);
1260
1261 if (!res && errno) {
1262 ast_log(LOG_ERROR, "Error while reading directories - %s: %s\n",
1263 path, strerror(errno));
1264 res = -1;
1265 }
1266
1267 return res;
1268}
1269
1270#if !defined(__GLIBC__)
1271/*!
1272 * \brief Lock to hold when iterating over directories.
1273 *
1274 * Currently, 'readdir' is not required to be thread-safe. In most modern implementations
1275 * it should be safe to make concurrent calls into 'readdir' that specify different directory
1276 * streams (glibc would be one of these). However, since it is potentially unsafe for some
1277 * implementations we'll use our own locking in order to achieve synchronization for those.
1278 */
1280#endif
1281
1282int ast_file_read_dirs(const char *dir_name, ast_file_on_file on_file, void *obj, int max_depth)
1283{
1284 int res;
1285
1286 errno = 0;
1287
1288#if !defined(__GLIBC__)
1290#endif
1291
1292 res = __ast_file_read_dirs(dir_name, on_file, obj, max_depth);
1293
1294#if !defined(__GLIBC__)
1296#endif
1297
1298 return res;
1299}
1300
1301int ast_streamfile(struct ast_channel *chan, const char *filename,
1302 const char *preflang)
1303{
1304 struct ast_filestream *fs = NULL;
1305 struct ast_filestream *vfs = NULL;
1306 off_t pos;
1307 int seekattempt;
1308 int res;
1309 char custom_filename[256];
1310 char *tmp_filename;
1311
1312 /* If file with the same name exists in /var/lib/asterisk/sounds/custom directory, use that file.
1313 * Otherwise, use the original file*/
1314
1316 memset(custom_filename, 0, sizeof(custom_filename));
1317 snprintf(custom_filename, sizeof(custom_filename), "custom/%s", filename);
1318 fs = openstream_internal(chan, filename, preflang, 0, 1); /* open stream, do not warn for missing files */
1319 if (fs) {
1320 tmp_filename = custom_filename;
1321 ast_debug(3, "Found file %s in custom directory\n", filename);
1322 }
1323 }
1324
1325 if (!fs) {
1326 fs = ast_openstream(chan, filename, preflang);
1327 if (!fs) {
1328 struct ast_str *codec_buf = ast_str_alloca(AST_FORMAT_CAP_NAMES_LEN);
1329 ast_channel_lock(chan);
1330 ast_log(LOG_WARNING, "Unable to open %s (format %s): %s\n",
1331 filename, ast_format_cap_get_names(ast_channel_nativeformats(chan), &codec_buf), strerror(errno));
1332 ast_channel_unlock(chan);
1333 return -1;
1334 }
1335 tmp_filename = (char *)filename;
1336 }
1337
1338 /* check to see if there is any data present (not a zero length file),
1339 * done this way because there is no where for ast_openstream_full to
1340 * return the file had no data. */
1341 pos = ftello(fs->f);
1342 seekattempt = fseeko(fs->f, -1, SEEK_END);
1343 if (seekattempt) {
1344 if (errno == EINVAL) {
1345 /* Zero-length file, as opposed to a pipe */
1346 return 0;
1347 } else {
1348 ast_seekstream(fs, 0, SEEK_SET);
1349 }
1350 } else {
1351 fseeko(fs->f, pos, SEEK_SET);
1352 }
1353
1354 vfs = ast_openvstream(chan, tmp_filename, preflang);
1355 if (vfs) {
1356 ast_debug(1, "Ooh, found a video stream, too, format %s\n", ast_format_get_name(vfs->fmt->format));
1357 }
1358
1361 if (ast_applystream(chan, fs))
1362 return -1;
1363 if (vfs && ast_applystream(chan, vfs))
1364 return -1;
1365 ast_test_suite_event_notify("PLAYBACK", "Message: %s\r\nChannel: %s", tmp_filename, ast_channel_name(chan));
1366 res = ast_playstream(fs);
1367 if (!res && vfs)
1368 res = ast_playstream(vfs);
1369
1370 if (VERBOSITY_ATLEAST(3)) {
1371 ast_channel_lock(chan);
1372 ast_verb(3, "<%s> Playing '%s.%s' (language '%s')\n", ast_channel_name(chan), tmp_filename, ast_format_get_name(ast_channel_writeformat(chan)), preflang ? preflang : "default");
1373 ast_channel_unlock(chan);
1374 }
1375
1376 return res;
1377}
1378
1379struct ast_filestream *ast_readfile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
1380{
1381 FILE *bfile;
1382 struct ast_format_def *f;
1383 struct ast_filestream *fs = NULL;
1384 char *fn;
1385 int format_found = 0;
1386
1388
1389 AST_RWLIST_TRAVERSE(&formats, f, list) {
1390 fs = NULL;
1391 if (!exts_compare(f->exts, type))
1392 continue;
1393 else
1394 format_found = 1;
1395
1397 if (!fn) {
1398 continue;
1399 }
1400 errno = 0;
1401 bfile = fopen(fn, "r");
1402
1403 if (!bfile || (fs = get_filestream(f, bfile)) == NULL || open_wrapper(fs) ) {
1404 ast_log(LOG_WARNING, "Unable to open %s\n", fn);
1405 if (fs) {
1406 ast_closestream(fs);
1407 }
1408 fs = NULL;
1409 bfile = NULL;
1410 ast_free(fn);
1411 break;
1412 }
1413 /* found it */
1414 fs->trans = NULL;
1415 fs->fmt = f;
1416 fs->flags = flags;
1417 fs->mode = mode;
1419 fs->vfs = NULL;
1420 ast_free(fn);
1421 break;
1422 }
1423
1425 if (!format_found)
1426 ast_log(LOG_WARNING, "No such format '%s'\n", type);
1427
1428 return fs;
1429}
1430
1431struct ast_filestream *ast_writefile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
1432{
1433 int fd, myflags = 0;
1434 /* compiler claims this variable can be used before initialization... */
1435 FILE *bfile = NULL;
1436 struct ast_format_def *f;
1437 struct ast_filestream *fs = NULL;
1438 char *buf = NULL;
1439 size_t size = 0;
1440 int format_found = 0;
1441
1443
1444 /* set the O_TRUNC flag if and only if there is no O_APPEND specified */
1445 /* We really can't use O_APPEND as it will break WAV header updates */
1446 if (flags & O_APPEND) {
1447 flags &= ~O_APPEND;
1448 } else {
1449 myflags = O_TRUNC;
1450 }
1451
1452 myflags |= O_WRONLY | O_CREAT;
1453
1454 /* XXX need to fix this - we should just do the fopen,
1455 * not open followed by fdopen()
1456 */
1457 AST_RWLIST_TRAVERSE(&formats, f, list) {
1458 char *fn, *orig_fn = NULL;
1459 if (fs)
1460 break;
1461
1462 if (!exts_compare(f->exts, type))
1463 continue;
1464 else
1465 format_found = 1;
1466
1468 if (!fn) {
1469 continue;
1470 }
1471 fd = open(fn, flags | myflags, mode);
1472 if (fd > -1) {
1473 /* fdopen() the resulting file stream */
1474 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
1475 if (!bfile) {
1476 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
1477 close(fd);
1478 fd = -1;
1479 }
1480 }
1481
1482 if (ast_opt_cache_record_files && (fd > -1)) {
1483 char *c;
1484
1485 fclose(bfile); /* this also closes fd */
1486 /*
1487 We touch orig_fn just as a place-holder so other things (like vmail) see the file is there.
1488 What we are really doing is writing to record_cache_dir until we are done then we will mv the file into place.
1489 */
1490 orig_fn = ast_strdup(fn);
1491 for (c = fn; *c; c++)
1492 if (*c == '/')
1493 *c = '_';
1494
1495 size = strlen(fn) + strlen(record_cache_dir) + 2;
1496 buf = ast_malloc(size);
1497 strcpy(buf, record_cache_dir);
1498 strcat(buf, "/");
1499 strcat(buf, fn);
1500 ast_free(fn);
1501 fn = buf;
1502 fd = open(fn, flags | myflags, mode);
1503 if (fd > -1) {
1504 /* fdopen() the resulting file stream */
1505 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
1506 if (!bfile) {
1507 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
1508 close(fd);
1509 fd = -1;
1510 }
1511 }
1512 }
1513 if (fd > -1) {
1514 errno = 0;
1515 fs = get_filestream(f, bfile);
1516 if (fs) {
1517 if ((fs->write_buffer = ast_malloc(32768))) {
1518 setvbuf(fs->f, fs->write_buffer, _IOFBF, 32768);
1519 }
1520 }
1521 if (!fs || rewrite_wrapper(fs, comment)) {
1522 ast_log(LOG_WARNING, "Unable to rewrite %s\n", fn);
1523 close(fd);
1524 if (orig_fn) {
1525 unlink(fn);
1526 unlink(orig_fn);
1527 ast_free(orig_fn);
1528 }
1529 if (fs) {
1530 ast_closestream(fs);
1531 fs = NULL;
1532 }
1533 /*
1534 * 'fn' was has either been allocated from build_filename, or that was freed
1535 * and now 'fn' points to memory allocated for 'buf'. Either way the memory
1536 * now needs to be released.
1537 */
1538 ast_free(fn);
1539 continue;
1540 }
1541 fs->trans = NULL;
1542 fs->fmt = f;
1543 fs->flags = flags;
1544 fs->mode = mode;
1545 if (orig_fn) {
1546 fs->realfilename = orig_fn;
1547 fs->filename = fn;
1548 /*
1549 * The above now manages the memory allocated for 'orig_fn' and 'fn', so
1550 * set them to NULL, so they don't get released at the end of the loop.
1551 */
1552 orig_fn = NULL;
1553 fn = NULL;
1554 } else {
1555 fs->realfilename = NULL;
1557 }
1558 fs->vfs = NULL;
1559 /* If truncated, we'll be at the beginning; if not truncated, then append */
1560 f->seek(fs, 0, SEEK_END);
1561 } else if (errno != EEXIST) {
1562 ast_log(LOG_WARNING, "Unable to open file %s: %s\n", fn, strerror(errno));
1563 if (orig_fn)
1564 unlink(orig_fn);
1565 }
1566 /* Free 'fn', or if 'fn' points to 'buf' then free 'buf' */
1567 ast_free(fn);
1568 ast_free(orig_fn);
1569 }
1570
1572
1573 if (!format_found)
1574 ast_log(LOG_WARNING, "No such format '%s'\n", type);
1575
1576 return fs;
1577}
1578
1582 int skip_ms)
1583{
1584 switch (type)
1585 {
1587 {
1588 int eoftest;
1590 eoftest = fgetc(ast_channel_stream(c)->f);
1591 if (feof(ast_channel_stream(c)->f)) {
1593 } else {
1594 ungetc(eoftest, ast_channel_stream(c)->f);
1595 }
1596 }
1597 break;
1600 break;
1601 default:
1602 break;
1603 }
1604
1605 if (cb) {
1607 cb(c, ms_len, type);
1608 }
1609
1610 ast_test_suite_event_notify("PLAYBACK","Channel: %s\r\n"
1611 "Control: %s\r\n"
1612 "SkipMs: %d\r\n",
1614 (type == AST_WAITSTREAM_CB_FASTFORWARD) ? "FastForward" : "Rewind",
1615 skip_ms);
1616}
1617
1618/*!
1619 * \brief the core of all waitstream() functions
1620 */
1621static int waitstream_core(struct ast_channel *c,
1622 const char *breakon,
1623 const char *forward,
1624 const char *reverse,
1625 int skip_ms,
1626 int audiofd,
1627 int cmdfd,
1628 const char *context,
1630{
1631 const char *orig_chan_name = NULL;
1632
1633 int err = 0;
1634
1635 if (!breakon)
1636 breakon = "";
1637 if (!forward)
1638 forward = "";
1639 if (!reverse)
1640 reverse = "";
1641
1642 /* Switch the channel to end DTMF frame only. waitstream_core doesn't care about the start of DTMF. */
1644
1647
1648 if (ast_channel_stream(c) && cb) {
1650 cb(c, ms_len, AST_WAITSTREAM_CB_START);
1651 }
1652
1653 while (ast_channel_stream(c)) {
1654 int res;
1655 int ms;
1656
1657 if (orig_chan_name && strcasecmp(orig_chan_name, ast_channel_name(c))) {
1659 err = 1;
1660 break;
1661 }
1662
1664
1665 if (ms < 0 && !ast_channel_timingfunc(c)) {
1667 break;
1668 }
1669 if (ms < 0)
1670 ms = 1000;
1671 if (cmdfd < 0) {
1672 res = ast_waitfor(c, ms);
1673 if (res < 0) {
1674 ast_log(LOG_WARNING, "Select failed (%s)\n", strerror(errno));
1676 return res;
1677 }
1678 } else {
1679 int outfd;
1680 struct ast_channel *rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
1681 if (!rchan && (outfd < 0) && (ms)) {
1682 /* Continue */
1683 if (errno == EINTR)
1684 continue;
1685 ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
1687 return -1;
1688 } else if (outfd > -1) { /* this requires cmdfd set */
1689 /* The FD we were watching has something waiting */
1691 return 1;
1692 }
1693 /* if rchan is set, it is 'c' */
1694 res = rchan ? 1 : 0; /* map into 'res' values */
1695 }
1696 if (res > 0) {
1697 struct ast_frame *fr = ast_read(c);
1698 if (!fr) {
1700 return -1;
1701 }
1702 switch (fr->frametype) {
1703 case AST_FRAME_DTMF_END:
1704 if (context) {
1705 const char exten[2] = { fr->subclass.integer, '\0' };
1706 if (ast_exists_extension(c, context, exten, 1,
1707 S_COR(ast_channel_caller(c)->id.number.valid, ast_channel_caller(c)->id.number.str, NULL))) {
1708 res = fr->subclass.integer;
1709 ast_frfree(fr);
1711 return res;
1712 }
1713 } else {
1714 res = fr->subclass.integer;
1715 if (strchr(forward, res)) {
1717 } else if (strchr(reverse, res)) {
1719 } else if (strchr(breakon, res)) {
1720 ast_test_suite_event_notify("PLAYBACK","Channel: %s\r\n"
1721 "Control: %s\r\n",
1723 "Break");
1724
1725 ast_frfree(fr);
1727 return res;
1728 }
1729 }
1730 break;
1731 case AST_FRAME_CONTROL:
1732 switch (fr->subclass.integer) {
1736 /* Fall-through and break out */
1737 ast_test_suite_event_notify("PLAYBACK","Channel: %s\r\n"
1738 "Control: %s\r\n",
1740 "Break");
1741 res = fr->subclass.integer;
1742 ast_frfree(fr);
1744 return res;
1746 if (!skip_ms) {
1747 skip_ms = 3000;
1748 }
1750 break;
1752 if (!skip_ms) {
1753 skip_ms = 3000;
1754 }
1756 break;
1757 case AST_CONTROL_HANGUP:
1758 case AST_CONTROL_BUSY:
1760 ast_frfree(fr);
1762 return -1;
1765 case AST_CONTROL_ANSWER:
1769 case AST_CONTROL_HOLD:
1770 case AST_CONTROL_UNHOLD:
1773 case AST_CONTROL_AOC:
1776 case AST_CONTROL_FLASH:
1777 case AST_CONTROL_WINK:
1778 case -1:
1779 /* Unimportant */
1780 break;
1781 default:
1782 ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", fr->subclass.integer);
1783 }
1784 break;
1785 case AST_FRAME_VOICE:
1786 /* Write audio if appropriate */
1787 if (audiofd > -1) {
1788 if (write(audiofd, fr->data.ptr, fr->datalen) < 0) {
1789 ast_log(LOG_WARNING, "write() failed: %s\n", strerror(errno));
1790 }
1791 }
1792 default:
1793 /* Ignore all others */
1794 break;
1795 }
1796 ast_frfree(fr);
1797 }
1799 }
1800
1802
1803 return (err || ast_channel_softhangup_internal_flag(c)) ? -1 : 0;
1804}
1805
1807 const char *breakon,
1808 const char *forward,
1809 const char *reverse,
1810 int ms,
1812{
1813 return waitstream_core(c, breakon, forward, reverse, ms,
1814 -1 /* no audiofd */, -1 /* no cmdfd */, NULL /* no context */, cb);
1815}
1816
1817int ast_waitstream_fr(struct ast_channel *c, const char *breakon, const char *forward, const char *reverse, int ms)
1818{
1819 return waitstream_core(c, breakon, forward, reverse, ms,
1820 -1 /* no audiofd */, -1 /* no cmdfd */, NULL /* no context */, NULL /* no callback */);
1821}
1822
1823/*! \internal
1824 * \brief Clean up the return value of a waitstream call
1825 *
1826 * It's possible for a control frame to come in from an external source and break the
1827 * playback. From a consumer of most ast_waitstream_* function callers, this should
1828 * appear like normal playback termination, i.e., return 0 and not the value of the
1829 * control frame.
1830 */
1831static int sanitize_waitstream_return(int return_value)
1832{
1833 switch (return_value) {
1837 /* Fall through and set return_value to 0 */
1838 return_value = 0;
1839 break;
1840 default:
1841 /* Do nothing */
1842 break;
1843 }
1844
1845 return return_value;
1846}
1847
1848int ast_waitstream(struct ast_channel *c, const char *breakon)
1849{
1850 int res;
1851
1852 res = waitstream_core(c, breakon, NULL, NULL, 0, -1, -1, NULL, NULL /* no callback */);
1853
1854 return sanitize_waitstream_return(res);
1855}
1856
1857int ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd, int cmdfd)
1858{
1859 int res;
1860
1861 res = waitstream_core(c, breakon, NULL, NULL, 0,
1862 audiofd, cmdfd, NULL /* no context */, NULL /* no callback */);
1863
1864 return sanitize_waitstream_return(res);
1865}
1866
1868{
1869 int res;
1870
1871 /* Waitstream, with return in the case of a valid 1 digit extension */
1872 /* in the current or specified context being pressed */
1873 if (!context)
1875 res = waitstream_core(c, NULL, NULL, NULL, 0,
1876 -1, -1, context, NULL /* no callback */);
1877
1878 return sanitize_waitstream_return(res);
1879}
1880
1881/*
1882 * if the file name is non-empty, try to play it.
1883 * Return 0 if success, -1 if error, digit if interrupted by a digit.
1884 * If digits == "" then we can simply check for non-zero.
1885 */
1886int ast_stream_and_wait(struct ast_channel *chan, const char *file, const char *digits)
1887{
1888 int res = 0;
1889 if (!ast_strlen_zero(file)) {
1890 res = ast_streamfile(chan, file, ast_channel_language(chan));
1891 if (!res) {
1892 res = ast_waitstream(chan, digits);
1893 }
1894 }
1895 if (res == -1) {
1896 ast_stopstream(chan);
1897 }
1898
1899 return res;
1900}
1901
1902char *ast_format_str_reduce(char *fmts)
1903{
1904 struct ast_format_def *f;
1905 struct ast_format_def *fmts_ptr[AST_MAX_FORMATS];
1906 char *fmts_str[AST_MAX_FORMATS];
1907 char *stringp, *type;
1908 char *orig = fmts;
1909 int i, j, x, first, found = 0;
1910 int len = strlen(fmts) + 1;
1911 int res;
1912
1913 if (AST_RWLIST_RDLOCK(&formats)) {
1914 ast_log(LOG_WARNING, "Unable to lock format list\n");
1915 return NULL;
1916 }
1917
1918 stringp = ast_strdupa(fmts);
1919
1920 for (x = 0; (type = strsep(&stringp, "|")) && x < AST_MAX_FORMATS; x++) {
1922 if (exts_compare(f->exts, type)) {
1923 found = 1;
1924 break;
1925 }
1926 }
1927
1928 fmts_str[x] = type;
1929 if (found) {
1930 fmts_ptr[x] = f;
1931 } else {
1932 fmts_ptr[x] = NULL;
1933 }
1934 }
1936
1937 first = 1;
1938 for (i = 0; i < x; i++) {
1939 /* ignore invalid entries */
1940 if (!fmts_ptr[i]) {
1941 ast_log(LOG_WARNING, "ignoring unknown format '%s'\n", fmts_str[i]);
1942 continue;
1943 }
1944
1945 /* special handling for the first entry */
1946 if (first) {
1947 res = snprintf(fmts, len, "%s", fmts_str[i]);
1948 fmts += res;
1949 len -= res;
1950 first = 0;
1951 continue;
1952 }
1953
1954 found = 0;
1955 for (j = 0; j < i; j++) {
1956 /* this is a duplicate */
1957 if (fmts_ptr[j] == fmts_ptr[i]) {
1958 found = 1;
1959 break;
1960 }
1961 }
1962
1963 if (!found) {
1964 res = snprintf(fmts, len, "|%s", fmts_str[i]);
1965 fmts += res;
1966 len -= res;
1967 }
1968 }
1969
1970 if (first) {
1971 ast_log(LOG_WARNING, "no known formats found in format list (%s)\n", orig);
1972 return NULL;
1973 }
1974
1975 return orig;
1976}
1977
1978static char *handle_cli_core_show_file_formats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1979{
1980#define FORMAT "%-10s %-10s %-20s\n"
1981#define FORMAT2 "%-10s %-10s %-20s\n"
1982 struct ast_format_def *f;
1983 int count_fmt = 0;
1984
1985 switch (cmd) {
1986 case CLI_INIT:
1987 e->command = "core show file formats";
1988 e->usage =
1989 "Usage: core show file formats\n"
1990 " Displays currently registered file formats (if any).\n";
1991 return NULL;
1992 case CLI_GENERATE:
1993 return NULL;
1994 }
1995
1996 if (a->argc != 4)
1997 return CLI_SHOWUSAGE;
1998
1999 ast_cli(a->fd, FORMAT, "Format", "Name", "Extensions");
2000 ast_cli(a->fd, FORMAT, "------", "----", "----------");
2001
2004 ast_cli(a->fd, FORMAT2, ast_format_get_name(f->format), f->name, f->exts);
2005 count_fmt++;
2006 }
2008 ast_cli(a->fd, "%d file formats registered.\n", count_fmt);
2009 return CLI_SUCCESS;
2010#undef FORMAT
2011#undef FORMAT2
2012}
2013
2014struct ast_format *ast_get_format_for_file_ext(const char *file_ext)
2015{
2016 struct ast_format_def *f;
2019 if (exts_compare(f->exts, file_ext)) {
2020 return f->format;
2021 }
2022 }
2023
2024 return NULL;
2025}
2026
2027int ast_get_extension_for_mime_type(const char *mime_type, char *buffer, size_t capacity)
2028{
2029 struct ast_format_def *f;
2031
2032 ast_assert(buffer && capacity);
2033
2035 if (type_in_list(f->mime_types, mime_type, strcasecmp)) {
2036 size_t item_len = strcspn(f->exts, "|");
2037 size_t bytes_written = snprintf(buffer, capacity, ".%.*s", (int) item_len, f->exts);
2038 if (bytes_written < capacity) {
2039 /* Only return success if we didn't truncate */
2040 return 1;
2041 }
2042 }
2043 }
2044
2045 return 0;
2046}
2047
2048static struct ast_cli_entry cli_file[] = {
2049 AST_CLI_DEFINE(handle_cli_core_show_file_formats, "Displays file formats")
2050};
2051
2052static void file_shutdown(void)
2053{
2057}
2058
2060{
2065 return 0;
2066}
Prototypes for public functions only of internal interest,.
#define comment
Definition: ael_lex.c:965
static int quiet
Definition: ael_main.c:123
jack_status_t status
Definition: app_jack.c:149
struct sla_ringing_trunk * first
Definition: app_sla.c:338
ast_mutex_t lock
Definition: app_sla.c:337
if(!yyg->yy_init)
Definition: ast_expr2f.c:854
char * strsep(char **str, const char *delims)
float roundf(float x)
Asterisk main include file. File version handling, generic pbx functions.
#define DEFAULT_LANGUAGE
Definition: asterisk.h:46
int ast_register_cleanup(void(*func)(void))
Register a function to be executed before Asterisk gracefully exits.
Definition: clicompat.c:19
#define AST_FILE_MODE
Definition: asterisk.h:32
#define DEFAULT_SAMPLES_PER_MS
Definition: asterisk.h:49
#define ast_alloca(size)
call __builtin_alloca to ensure we get gcc builtin semantics
Definition: astmm.h:288
#define ast_free(a)
Definition: astmm.h:180
#define ast_strdup(str)
A wrapper for strdup()
Definition: astmm.h:241
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#define ast_asprintf(ret, fmt,...)
A wrapper for asprintf()
Definition: astmm.h:267
#define ast_calloc(num, len)
A wrapper for calloc()
Definition: astmm.h:202
#define ast_malloc(len)
A wrapper for malloc()
Definition: astmm.h:191
#define ast_log
Definition: astobj2.c:42
#define ao2_cleanup(obj)
Definition: astobj2.h:1934
#define ao2_replace(dst, src)
Replace one object reference with another cleaning up the original.
Definition: astobj2.h:501
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
#define ao2_bump(obj)
Bump refcount on an AO2 object by one, returning the object.
Definition: astobj2.h:480
#define ao2_alloc(data_size, destructor_fn)
Definition: astobj2.h:409
static const char type[]
Definition: chan_ooh323.c:109
General Asterisk PBX channel definitions.
const char * ast_channel_name(const struct ast_channel *chan)
void ast_channel_stream_set(struct ast_channel *chan, struct ast_filestream *value)
struct ast_channel * ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, int nfds, int *exception, int *outfd, int *ms)
Waits for activity on a group of channels.
Definition: channel.c:3016
void ast_channel_clear_flag(struct ast_channel *chan, unsigned int flag)
Clear a flag on a channel.
Definition: channel.c:11060
void ast_channel_set_oldwriteformat(struct ast_channel *chan, struct ast_format *format)
#define ast_channel_lock(chan)
Definition: channel.h:2970
struct ast_format_cap * ast_channel_nativeformats(const struct ast_channel *chan)
void ast_channel_vstreamid_set(struct ast_channel *chan, int value)
struct ast_format * ast_channel_oldwriteformat(struct ast_channel *chan)
int ast_waitfor(struct ast_channel *chan, int ms)
Wait for input on a channel.
Definition: channel.c:3190
struct ast_flags * ast_channel_flags(struct ast_channel *chan)
int ast_settimeout_full(struct ast_channel *c, unsigned int rate, int(*func)(const void *data), void *data, unsigned int is_ao2_obj)
Definition: channel.c:3213
void ast_channel_streamid_set(struct ast_channel *chan, int value)
const char * ast_channel_context(const struct ast_channel *chan)
void ast_deactivate_generator(struct ast_channel *chan)
Definition: channel.c:2921
int ast_write(struct ast_channel *chan, struct ast_frame *frame)
Write a frame to a channel This function writes the given frame to the indicated channel.
Definition: channel.c:5161
struct ast_frame * ast_read(struct ast_channel *chan)
Reads a frame.
Definition: channel.c:4274
int ast_channel_timingfd(const struct ast_channel *chan)
void ast_channel_set_flag(struct ast_channel *chan, unsigned int flag)
Set a flag on a channel.
Definition: channel.c:11053
int ast_channel_vstreamid(const struct ast_channel *chan)
ast_timing_func_t ast_channel_timingfunc(const struct ast_channel *chan)
struct ast_filestream * ast_channel_vstream(const struct ast_channel *chan)
struct ast_format * ast_channel_writeformat(struct ast_channel *chan)
int ast_settimeout(struct ast_channel *c, unsigned int rate, int(*func)(const void *data), void *data)
Enable or disable timer ticks for a channel.
Definition: channel.c:3208
@ AST_FLAG_MASQ_NOSTREAM
Definition: channel.h:1034
@ AST_FLAG_END_DTMF_ONLY
Definition: channel.h:1027
int ast_set_write_format(struct ast_channel *chan, struct ast_format *format)
Sets write format on channel chan.
Definition: channel.c:5820
struct ast_generator * ast_channel_generator(const struct ast_channel *chan)
const char * ast_channel_language(const struct ast_channel *chan)
int ast_channel_streamid(const struct ast_channel *chan)
struct ast_sched_context * ast_channel_sched(const struct ast_channel *chan)
struct ast_filestream * ast_channel_stream(const struct ast_channel *chan)
int ast_channel_softhangup_internal_flag(struct ast_channel *chan)
struct ast_party_caller * ast_channel_caller(struct ast_channel *chan)
#define ast_channel_unlock(chan)
Definition: channel.h:2971
void ast_channel_vstream_set(struct ast_channel *chan, struct ast_filestream *value)
int ast_set_write_format_from_cap(struct ast_channel *chan, struct ast_format_cap *formats)
Sets write format on channel chan Set write format for channel to whichever component of "format" is ...
Definition: channel.c:5838
Standard Command Line Interface.
#define CLI_SHOWUSAGE
Definition: cli.h:45
#define CLI_SUCCESS
Definition: cli.h:44
int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len)
Unregister multiple commands.
Definition: clicompat.c:30
#define AST_CLI_DEFINE(fn, txt,...)
Definition: cli.h:197
void ast_cli(int fd, const char *fmt,...)
Definition: clicompat.c:6
@ CLI_INIT
Definition: cli.h:152
@ CLI_GENERATE
Definition: cli.h:153
#define ast_cli_register_multiple(e, len)
Register multiple commands.
Definition: cli.h:265
ast_media_type
Types of media.
Definition: codec.h:30
@ AST_MEDIA_TYPE_AUDIO
Definition: codec.h:32
@ AST_MEDIA_TYPE_VIDEO
Definition: codec.h:33
#define SENTINEL
Definition: compiler.h:87
char * end
Definition: eagi_proxy.c:73
char buf[BUFSIZE]
Definition: eagi_proxy.c:66
off_t ast_tellstream(struct ast_filestream *fs)
Tell where we are in a stream.
Definition: file.c:1093
fsread_res
Definition: file.c:951
@ FSREAD_FAILURE
Definition: file.c:952
@ FSREAD_SUCCESS_SCHED
Definition: file.c:953
@ FSREAD_SUCCESS_NOSCHED
Definition: file.c:954
static int filehelper(const char *filename, const void *arg2, const char *fmt, const enum file_action action)
Definition: file.c:549
int ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd, int cmdfd)
Definition: file.c:1857
int ast_streamfile(struct ast_channel *chan, const char *filename, const char *preflang)
Streams a file.
Definition: file.c:1301
int ast_file_fdtemp(const char *path, char **filename, const char *template_name)
Create a temporary file located at path.
Definition: file.c:202
struct ast_filestream * ast_openstream(struct ast_channel *chan, const char *filename, const char *preflang)
Opens stream for use in seeking, playing.
Definition: file.c:845
struct ast_filestream * ast_openstream_full(struct ast_channel *chan, const char *filename, const char *preflang, int asis)
Opens stream for use in seeking, playing.
Definition: file.c:850
int ast_language_is_prefix
The following variable controls the layout of localized sound files. If 0, use the historical layout ...
Definition: file.c:67
struct ast_frame * ast_readframe(struct ast_filestream *s)
Read a frame from a filestream.
Definition: file.c:944
int ast_stopstream(struct ast_channel *tmp)
Stops a stream.
Definition: file.c:222
int ast_writestream(struct ast_filestream *fs, struct ast_frame *f)
Writes a frame to a stream.
Definition: file.c:244
int ast_seekstream(struct ast_filestream *fs, off_t sample_offset, int whence)
Seeks into stream.
Definition: file.c:1083
static int ast_fsread_video(const void *data)
Definition: file.c:1052
wrap_fn
Definition: file.c:501
@ WRAP_OPEN
Definition: file.c:501
@ WRAP_REWRITE
Definition: file.c:501
int ast_waitstream_fr(struct ast_channel *c, const char *breakon, const char *forward, const char *reverse, int ms)
Same as waitstream but allows stream to be forwarded or rewound.
Definition: file.c:1817
static char * handle_cli_core_show_file_formats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
Definition: file.c:1978
int ast_format_def_unregister(const char *name)
Unregisters a file format.
Definition: file.c:162
static void file_shutdown(void)
Definition: file.c:2052
int ast_stream_rewind(struct ast_filestream *fs, off_t ms)
Rewind stream ms.
Definition: file.c:1108
static int sanitize_waitstream_return(int return_value)
Definition: file.c:1831
int ast_applystream(struct ast_channel *chan, struct ast_filestream *s)
Applies a open stream to a channel.
Definition: file.c:1065
int ast_file_read_dirs(const char *dir_name, ast_file_on_file on_file, void *obj, int max_depth)
Recursively iterate through files and directories up to max_depth.
Definition: file.c:1282
struct ast_filestream * ast_readfile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
Starts reading from a file.
Definition: file.c:1379
struct ast_filestream * ast_openvstream(struct ast_channel *chan, const char *filename, const char *preflang)
Opens stream for use in seeking, playing.
Definition: file.c:856
static struct ast_json * json_array_from_list(const char *list, const char *sep)
Definition: file.c:74
FILE * ast_file_mkftemp(char *template_name, mode_t mode)
same as mkstemp, but return a FILE
Definition: file.c:187
static void filestream_destructor(void *arg)
Definition: file.c:418
struct ast_format * ast_get_format_for_file_ext(const char *file_ext)
Get the ast_format associated with the given file extension.
Definition: file.c:2014
static char * build_filename(const char *filename, const char *ext)
construct a filename. Absolute pathnames are preserved, relative names are prefixed by the sounds/ di...
Definition: file.c:349
static void waitstream_control(struct ast_channel *c, enum ast_waitstream_fr_cb_values type, ast_waitstream_fr_cb cb, int skip_ms)
Definition: file.c:1579
static int type_in_list(const char *list, const char *type, int(*cmp)(const char *s1, const char *s2))
Definition: file.c:373
int ast_filerename(const char *filename, const char *filename2, const char *fmt)
Renames a file.
Definition: file.c:1154
struct ast_filestream * ast_writefile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
Starts writing a file.
Definition: file.c:1431
static void filestream_close(struct ast_filestream *f)
Definition: file.c:392
file_action
Definition: file.c:530
@ ACTION_OPEN
Definition: file.c:534
@ ACTION_EXISTS
Definition: file.c:531
@ ACTION_COPY
Definition: file.c:535
@ ACTION_DELETE
Definition: file.c:532
@ ACTION_RENAME
Definition: file.c:533
static struct ast_filestream * openstream_internal(struct ast_channel *chan, const char *filename, const char *preflang, int asis, int quiet)
Definition: file.c:790
static int copy(const char *infile, const char *outfile)
Definition: file.c:306
int ast_stream_and_wait(struct ast_channel *chan, const char *file, const char *digits)
stream file until digit If the file name is non-empty, try to play it.
Definition: file.c:1886
static int is_remote_path(const char *filename)
Definition: file.c:680
static int ast_fsread_audio(const void *data)
Definition: file.c:1007
static ast_mutex_t read_dirs_lock
Lock to hold when iterating over directories.
Definition: file.c:1279
static int __ast_file_read_dirs(const char *path, ast_file_on_file on_file, void *obj, int max_depth)
Definition: file.c:1164
char * ast_format_str_reduce(char *fmts)
Definition: file.c:1902
int ast_truncstream(struct ast_filestream *fs)
Trunc stream at current location.
Definition: file.c:1088
static enum fsread_res ast_readaudio_callback(struct ast_filestream *s)
Definition: file.c:959
STASIS_MESSAGE_TYPE_DEFN(ast_format_register_type)
static int is_absolute_path(const char *filename)
Definition: file.c:675
int ast_ratestream(struct ast_filestream *fs)
Return the sample rate of the stream's format.
Definition: file.c:1098
int ast_closestream(struct ast_filestream *f)
Closes a stream.
Definition: file.c:1119
static int waitstream_core(struct ast_channel *c, const char *breakon, const char *forward, const char *reverse, int skip_ms, int audiofd, int cmdfd, const char *context, ast_waitstream_fr_cb cb)
the core of all waitstream() functions
Definition: file.c:1621
int ast_fileexists(const char *filename, const char *fmt, const char *preflang)
Checks for the existence of a given file.
Definition: file.c:1137
static struct ast_cli_entry cli_file[]
Definition: file.c:2048
static int open_wrapper(struct ast_filestream *s)
Definition: file.c:525
int ast_stream_fastforward(struct ast_filestream *fs, off_t ms)
Fast forward stream ms.
Definition: file.c:1103
static int fn_wrapper(struct ast_filestream *s, const char *comment, enum wrap_fn mode)
Definition: file.c:503
#define FORMAT
static int fileexists_core(const char *filename, const char *fmt, const char *preflang, char *buf, int buflen, struct ast_format_cap *result_cap)
helper routine to locate a file with a given format and language preference.
Definition: file.c:741
static int rewrite_wrapper(struct ast_filestream *s, const char *comment)
Definition: file.c:520
static struct ast_filestream * get_filestream(struct ast_format_def *fmt, FILE *bfile)
Definition: file.c:463
static int fileexists_test(const char *filename, const char *fmt, const char *lang, char *buf, int buflen, struct ast_format_cap *result_cap)
test if a file exists for a given format.
Definition: file.c:691
int ast_get_extension_for_mime_type(const char *mime_type, char *buffer, size_t capacity)
Get a suitable filename extension for the given MIME type.
Definition: file.c:2027
#define FORMAT2
int ast_waitstream_fr_w_cb(struct ast_channel *c, const char *breakon, const char *forward, const char *reverse, int ms, ast_waitstream_fr_cb cb)
Same as waitstream_fr but allows a callback to be alerted when a user fastforwards or rewinds the fil...
Definition: file.c:1806
int ast_playstream(struct ast_filestream *s)
Play a open stream on a channel.
Definition: file.c:1071
#define exts_compare(list, type)
Definition: file.c:386
int ast_filedelete(const char *filename, const char *fmt)
Deletes a file.
Definition: file.c:1149
static struct ast_frame * read_frame(struct ast_filestream *s, int *whennext)
Definition: file.c:919
static int publish_format_update(const struct ast_format_def *f, struct stasis_message_type *type)
Definition: file.c:93
int ast_waitstream_exten(struct ast_channel *c, const char *context)
Waits for a stream to stop or digit matching a valid one digit exten to be pressed.
Definition: file.c:1867
int ast_file_init(void)
Definition: file.c:2059
int __ast_format_def_register(const struct ast_format_def *f, struct ast_module *mod)
Register a new file format capability. Adds a format to Asterisk's format abilities.
Definition: file.c:124
static enum fsread_res ast_readvideo_callback(struct ast_filestream *s)
Definition: file.c:1022
int ast_filecopy(const char *filename, const char *filename2, const char *fmt)
Copies a file.
Definition: file.c:1159
int ast_waitstream(struct ast_channel *c, const char *breakon)
Waits for a stream to stop or digit to be pressed.
Definition: file.c:1848
ast_waitstream_fr_cb_values
Definition: file.h:54
@ AST_WAITSTREAM_CB_FASTFORWARD
Definition: file.h:56
@ AST_WAITSTREAM_CB_REWIND
Definition: file.h:55
@ AST_WAITSTREAM_CB_START
Definition: file.h:57
void() ast_waitstream_fr_cb(struct ast_channel *chan, long ms, enum ast_waitstream_fr_cb_values val)
callback used during dtmf controlled file playback to indicate location of playback in a file after r...
Definition: file.h:65
int(* ast_file_on_file)(const char *dir_name, const char *filename, void *obj)
Callback called for each file found when reading directories.
Definition: file.h:180
#define AST_MAX_FORMATS
Definition: file.h:44
enum ast_media_type ast_format_get_type(const struct ast_format *format)
Get the media type of a format.
Definition: format.c:354
struct stasis_message_type * ast_format_unregister_type(void)
Get the message type used for signaling a format unregistration.
unsigned int ast_format_get_sample_rate(const struct ast_format *format)
Get the sample rate of a media format.
Definition: format.c:379
enum ast_format_cmp_res ast_format_cmp(const struct ast_format *format1, const struct ast_format *format2)
Compare two formats.
Definition: format.c:201
@ AST_FORMAT_CMP_EQUAL
Definition: format.h:36
@ AST_FORMAT_CMP_NOT_EQUAL
Definition: format.h:38
const char * ast_format_get_name(const struct ast_format *format)
Get the name associated with a format.
Definition: format.c:334
struct stasis_message_type * ast_format_register_type(void)
Get the message type used for signaling a format registration.
#define AST_FORMAT_CAP_NAMES_LEN
Definition: format_cap.h:324
struct ast_format * ast_format_cap_get_format(const struct ast_format_cap *cap, int position)
Get the format at a specific index.
Definition: format_cap.c:400
@ AST_FORMAT_CAP_FLAG_DEFAULT
Definition: format_cap.h:38
const char * ast_format_cap_get_names(const struct ast_format_cap *cap, struct ast_str **buf)
Get the names of codecs of a set of formats.
Definition: format_cap.c:734
int ast_format_cap_has_type(const struct ast_format_cap *cap, enum ast_media_type type)
Find out if the capabilities structure has any formats of a specific type.
Definition: format_cap.c:613
int ast_format_cap_iscompatible(const struct ast_format_cap *cap1, const struct ast_format_cap *cap2)
Determine if any joint capabilities exist between two capabilities structures.
Definition: format_cap.c:653
#define ast_format_cap_append(cap, format, framing)
Add format capability to capabilities structure.
Definition: format_cap.h:99
#define ast_format_cap_alloc(flags)
Allocate a new ast_format_cap structure.
Definition: format_cap.h:49
size_t ast_format_cap_count(const struct ast_format_cap *cap)
Get the number of formats present within the capabilities structure.
Definition: format_cap.c:395
static const char name[]
Definition: format_mp3.c:68
static int array(struct ast_channel *chan, const char *cmd, char *var, const char *value)
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
const char * ext
Definition: http.c:150
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
int ast_safe_fork(int stop_reaper)
Common routine to safely fork without a chance of a signal handler firing badly in the child.
Definition: main/app.c:3207
#define ast_frisolate(fr)
Makes a frame independent of any static storage.
#define ast_frfree(fr)
@ AST_FRAME_VIDEO
@ AST_FRAME_DTMF_END
@ AST_FRAME_VOICE
@ AST_FRAME_CONTROL
@ AST_CONTROL_SRCUPDATE
@ AST_CONTROL_WINK
@ AST_CONTROL_PROGRESS
@ AST_CONTROL_STREAM_RESTART
@ AST_CONTROL_STREAM_SUSPEND
@ AST_CONTROL_BUSY
@ AST_CONTROL_UNHOLD
@ AST_CONTROL_VIDUPDATE
@ AST_CONTROL_STREAM_REVERSE
@ AST_CONTROL_REDIRECTING
@ AST_CONTROL_CONGESTION
@ AST_CONTROL_ANSWER
@ AST_CONTROL_RINGING
@ AST_CONTROL_HANGUP
@ AST_CONTROL_STREAM_STOP
@ AST_CONTROL_HOLD
@ AST_CONTROL_CONNECTED_LINE
@ AST_CONTROL_STREAM_FORWARD
@ AST_CONTROL_FLASH
@ AST_CONTROL_AOC
@ AST_CONTROL_SRCCHANGE
@ AST_CONTROL_PVT_CAUSE_CODE
@ AST_CONTROL_UPDATE_RTP_PEER
#define AST_LOG_WARNING
#define ast_debug(level,...)
Log a DEBUG message.
#define VERBOSITY_ATLEAST(level)
#define LOG_ERROR
#define ast_verb(level,...)
#define LOG_NOTICE
#define LOG_WARNING
Asterisk JSON abstraction layer.
struct ast_json * ast_json_string_create(const char *value)
Construct a JSON string from value.
Definition: json.c:278
void ast_json_unref(struct ast_json *value)
Decrease refcount on value. If refcount reaches zero, value is freed.
Definition: json.c:73
int ast_json_array_append(struct ast_json *array, struct ast_json *value)
Append to an array.
Definition: json.c:378
struct ast_json_payload * ast_json_payload_create(struct ast_json *json)
Create an ao2 object to pass json blobs as data payloads for stasis.
Definition: json.c:756
struct ast_json * ast_json_pack(char const *format,...)
Helper for creating complex JSON values.
Definition: json.c:612
struct ast_json * ast_json_array_create(void)
Create a empty JSON array.
Definition: json.c:362
struct ast_json * ast_json_ref(struct ast_json *value)
Increase refcount on value.
Definition: json.c:67
A set of macros to manage forward-linked lists.
#define AST_RWLIST_REMOVE_CURRENT
Definition: linkedlists.h:570
#define AST_RWLIST_RDLOCK(head)
Read locks a list.
Definition: linkedlists.h:78
#define AST_RWLIST_TRAVERSE_SAFE_BEGIN
Definition: linkedlists.h:545
#define AST_RWLIST_WRLOCK(head)
Write locks a list.
Definition: linkedlists.h:52
#define AST_RWLIST_UNLOCK(head)
Attempts to unlock a read/write based list.
Definition: linkedlists.h:151
#define AST_RWLIST_HEAD_STATIC(name, type)
Defines a structure to be used to hold a read/write list of specified type, statically initialized.
Definition: linkedlists.h:333
#define AST_RWLIST_TRAVERSE_SAFE_END
Definition: linkedlists.h:617
#define AST_RWLIST_TRAVERSE
Definition: linkedlists.h:494
#define AST_RWLIST_INSERT_HEAD
Definition: linkedlists.h:718
#define AST_LIST_NEXT(elm, field)
Returns the next entry in the list after the given entry.
Definition: linkedlists.h:439
Asterisk locking-related definitions:
#define ast_mutex_unlock(a)
Definition: lock.h:194
#define SCOPED_RDLOCK(varname, lock)
scoped lock specialization for read locks
Definition: lock.h:598
#define ast_mutex_lock(a)
Definition: lock.h:193
#define AST_MUTEX_DEFINE_STATIC(mutex)
Definition: lock.h:524
int errno
An in-memory media cache.
int ast_media_cache_retrieve(const char *uri, const char *preferred_file_name, char *file_path, size_t len)
Retrieve an item from the cache.
Definition: media_cache.c:157
Header for providers of file and format handling routines. Clients of these routines should include "...
Asterisk module definitions.
#define ast_module_unref(mod)
Release a reference to the module.
Definition: module.h:483
#define ast_module_running_ref(mod)
Hold a reference to the module if it is running.
Definition: module.h:469
char record_cache_dir[AST_CACHE_DIR_LEN]
Definition: options.c:96
#define ast_opt_cache_record_files
Definition: options.h:120
#define ast_opt_sounds_search_custom
Definition: options.h:138
Asterisk file paths, configured in asterisk.conf.
const char * ast_config_AST_DATA_DIR
Definition: options.c:158
Core PBX routines and definitions.
int ast_exists_extension(struct ast_channel *c, const char *context, const char *exten, int priority, const char *callerid)
Determine whether an extension exists.
Definition: pbx.c:4190
#define NULL
Definition: resample.c:96
Scheduler Routines (derived from cheops)
#define AST_SCHED_DEL_ACCESSOR(sched, obj, getter, setter)
Definition: sched.h:59
int ast_sched_add(struct ast_sched_context *con, int when, ast_sched_cb callback, const void *data) attribute_warn_unused_result
Adds a scheduled event.
Definition: sched.c:567
int ast_sched_runq(struct ast_sched_context *con)
Runs the queue.
Definition: sched.c:786
int ast_sched_wait(struct ast_sched_context *con) attribute_warn_unused_result
Determines number of seconds until the next outstanding event to take place.
Definition: sched.c:433
Stasis Message Bus API. See Stasis Message Bus API for detailed documentation.
#define STASIS_MESSAGE_TYPE_CLEANUP(name)
Boiler-plate messaging macro for cleaning up message types.
Definition: stasis.h:1515
#define STASIS_MESSAGE_TYPE_INIT(name)
Boiler-plate messaging macro for initializing message types.
Definition: stasis.h:1493
struct stasis_message * stasis_message_create(struct stasis_message_type *type, void *data)
Create a new message.
void stasis_publish(struct stasis_topic *topic, struct stasis_message *message)
Publish a message to a topic's subscribers.
Definition: stasis.c:1538
struct stasis_topic * ast_system_topic(void)
A Stasis Message Bus API topic which publishes messages regarding system changes.
#define S_COR(a, b, c)
returns the equivalent of logic or for strings, with an additional boolean check: second one if not e...
Definition: strings.h:87
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
#define ast_str_alloca(init_len)
Definition: strings.h:848
Main Channel structure associated with a channel.
descriptor for a cli entry.
Definition: cli.h:171
char * command
Definition: cli.h:186
const char * usage
Definition: cli.h:177
This structure is allocated by file.c in one chunk, together with buf_size and desc_size bytes of mem...
Definition: mod_format.h:101
struct ast_filestream * vfs
Definition: mod_format.h:110
struct ast_frame fr
frame produced by read, typically
Definition: mod_format.h:122
char * realfilename
Definition: mod_format.h:108
void * _private
Definition: mod_format.h:124
char * write_buffer
Definition: mod_format.h:126
struct ast_format_def * fmt
Definition: mod_format.h:103
struct ast_channel * owner
Definition: mod_format.h:116
struct ast_format * lastwriteformat
Definition: mod_format.h:114
struct ast_trans_pvt * trans
Definition: mod_format.h:112
char * filename
Definition: mod_format.h:107
const char * orig_chan_name
Definition: mod_format.h:125
Format capabilities structure, holds formats + preference order + etc.
Definition: format_cap.c:54
Each supported file format is described by the following structure.
Definition: mod_format.h:43
int(* trunc)(struct ast_filestream *fs)
Definition: mod_format.h:69
int(* seek)(struct ast_filestream *, off_t, int)
Definition: mod_format.h:68
struct ast_frame *(* read)(struct ast_filestream *, int *whennext)
Definition: mod_format.h:74
int(* write)(struct ast_filestream *, struct ast_frame *)
Definition: mod_format.h:66
char name[80]
Definition: mod_format.h:44
struct ast_module * module
Definition: mod_format.h:93
char mime_types[80]
Definition: mod_format.h:47
off_t(* tell)(struct ast_filestream *fs)
Definition: mod_format.h:70
struct ast_format * format
Definition: mod_format.h:48
void(* close)(struct ast_filestream *)
Definition: mod_format.h:77
char exts[80]
Definition: mod_format.h:45
struct ast_format_def::@241 list
Definition of a media format.
Definition: format.c:43
struct ast_format * format
Data structure associated with a single frame of data.
union ast_frame::@228 data
struct ast_frame_subclass subclass
enum ast_frame_type frametype
const char * src
Abstract JSON element (object, array, string, int, ...).
Support for dynamic strings.
Definition: strings.h:623
Definition: file.c:69
ast_rwlock_t lock
Definition: file.c:69
Number structure.
Definition: app_followme.c:157
Test Framework API.
#define ast_test_suite_event_notify(s, f,...)
Definition: test.h:189
static struct aco_type item
Definition: test_config.c:1463
static struct test_val b
static struct test_val a
static struct test_val c
Support for translation of data formats. translate.c.
struct ast_frame * ast_translate(struct ast_trans_pvt *tr, struct ast_frame *f, int consume)
translates one or more frames Apply an input frame into the translator and receive zero or one output...
Definition: translate.c:566
void ast_translator_free_path(struct ast_trans_pvt *tr)
Frees a translator path Frees the given translator path structure.
Definition: translate.c:476
struct ast_trans_pvt * ast_translator_build_path(struct ast_format *dest, struct ast_format *source)
Builds a translator path Build a path (possibly NULL) from source to dest.
Definition: translate.c:486
Utility functions.
#define ast_test_flag(p, flag)
Definition: utils.h:63
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
Definition: utils.h:941
#define ast_assert(a)
Definition: utils.h:739
int ast_mkdir(const char *path, int mode)
Recursively create directory path.
Definition: utils.c:2479
#define ARRAY_LEN(a)
Definition: utils.h:666