Asterisk - The Open Source Telephony Project GIT-master-0deac78
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/cel.h"
43#include "asterisk/sched.h"
44#include "asterisk/translate.h"
45#include "asterisk/utils.h"
46#include "asterisk/lock.h"
47#include "asterisk/app.h"
48#include "asterisk/pbx.h"
50#include "asterisk/module.h"
51#include "asterisk/astobj2.h"
52#include "asterisk/test.h"
53#include "asterisk/stasis.h"
54#include "asterisk/json.h"
57
58/*! \brief
59 * The following variable controls the layout of localized sound files.
60 * If 0, use the historical layout with prefix just before the filename
61 * (i.e. digits/en/1.gsm , digits/it/1.gsm or default to digits/1.gsm),
62 * if 1 put the prefix at the beginning of the filename
63 * (i.e. en/digits/1.gsm, it/digits/1.gsm or default to digits/1.gsm).
64 * The latter permits a language to be entirely in one directory.
65 *
66 * This is settable in asterisk.conf.
67 */
69
71
74
75static struct ast_json *json_array_from_list(const char *list, const char *sep)
76{
78 char *stringp, *ext;
79
80 stringp = ast_strdupa(list); /* this is in the stack so does not need to be freed */
81 if (!array || !stringp) {
82 return NULL;
83 }
84
85 while ((ext = strsep(&stringp, sep))) {
87 return NULL;
88 }
89 }
90
91 return ast_json_ref(array);
92}
93
95{
96 RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);
97 RAII_VAR(struct ast_json_payload *, json_payload, NULL, ao2_cleanup);
98 RAII_VAR(struct ast_json *, json_object, NULL, ast_json_unref);
99
100 if (!type) {
101 return -1;
102 }
103
104 json_object = ast_json_pack("{s: s, s: o}",
105 "format", f->name,
106 "extensions", json_array_from_list(f->exts, "|"));
107 if (!json_object) {
108 return -1;
109 }
110
111 json_payload = ast_json_payload_create(json_object);
112 if (!json_payload) {
113 return -1;
114 }
115
116 msg = stasis_message_create(type, json_payload);
117 if (!msg) {
118 return -1;
119 }
120
122 return 0;
123}
124
125int __ast_format_def_register(const struct ast_format_def *f, struct ast_module *mod)
126{
127 struct ast_format_def *tmp;
128
131 if (!strcasecmp(f->name, tmp->name)) {
133 ast_log(LOG_WARNING, "Tried to register '%s' format, already registered\n", f->name);
134 return -1;
135 }
136 }
137 if (!(tmp = ast_calloc(1, sizeof(*tmp)))) {
139 return -1;
140 }
141 *tmp = *f;
142 tmp->module = mod;
143 if (tmp->buf_size) {
144 /*
145 * Align buf_size properly, rounding up to the machine-specific
146 * alignment for pointers.
147 */
148 struct _test_align { void *a, *b; } p;
149 int align = (char *)&p.b - (char *)&p.a;
150 tmp->buf_size = ((f->buf_size + align - 1) / align) * align;
151 }
152
153 memset(&tmp->list, 0, sizeof(tmp->list));
154
155 AST_RWLIST_INSERT_HEAD(&formats, tmp, list);
157 ast_verb(5, "Registered file format %s, extension(s) %s\n", f->name, f->exts);
159
160 return 0;
161}
162
164{
165 struct ast_format_def *tmp;
166 int res = -1;
167
170 if (!strcasecmp(name, tmp->name)) {
173 ast_free(tmp);
174 res = 0;
175 }
176 }
179
180 if (!res)
181 ast_verb(5, "Unregistered format %s\n", name);
182 else
183 ast_log(LOG_WARNING, "Tried to unregister format %s, already unregistered\n", name);
184
185 return res;
186}
187
188FILE *ast_file_mkftemp(char *template_name, mode_t mode)
189{
190 FILE *p = NULL;
191 int pfd = mkstemp(template_name);
192 chmod(template_name, mode);
193 if (pfd > -1) {
194 p = fdopen(pfd, "w+");
195 if (!p) {
196 close(pfd);
197 pfd = -1;
198 }
199 }
200 return p;
201}
202
203int ast_file_fdtemp(const char *path, char **filename, const char *template_name)
204{
205 int fd;
206
207 if (ast_asprintf(filename, "%s/%s", path, template_name) < 0) {
208 ast_log(LOG_ERROR, "Failed to set up temporary file path\n");
209 return -1;
210 }
211
212 ast_mkdir(path, 0644);
213
214 if ((fd = mkstemp(*filename)) < 0) {
215 ast_log(LOG_NOTICE, "Failed to create temporary file\n");
216 ast_free(*filename);
217 return -1;
218 }
219
220 return fd;
221}
222
224{
225 struct ast_json * cel_event = NULL;
226
227 ast_channel_lock(tmp);
228
229 /* Stop a running stream if there is one */
230 if (ast_channel_stream(tmp)) {
233
234 cel_event = ast_json_pack("{ s: s }", "event", "FILE_STREAM_END");
235 if (cel_event) {
237 }
238
240 ast_log(LOG_WARNING, "Unable to restore format back to %s\n", ast_format_get_name(ast_channel_oldwriteformat(tmp)));
241 }
242 ast_json_unref(cel_event);
243
244 /* Stop the video stream too */
245 if (ast_channel_vstream(tmp) != NULL) {
248 }
249
251
252 return 0;
253}
254
255int ast_writestream(struct ast_filestream *fs, struct ast_frame *f)
256{
257 int res = -1;
258 if (f->frametype == AST_FRAME_VIDEO) {
260 /* This is the audio portion. Call the video one... */
261 if (!fs->vfs && fs->filename) {
262 const char *type = ast_format_get_name(f->subclass.format);
263 fs->vfs = ast_writefile(fs->filename, type, NULL, fs->flags, 0, fs->mode);
264 ast_debug(1, "Opened video output file\n");
265 }
266 if (fs->vfs)
267 return ast_writestream(fs->vfs, f);
268 /* else ignore */
269 return 0;
270 }
271 } else if (f->frametype != AST_FRAME_VOICE) {
272 ast_log(LOG_WARNING, "Tried to write non-voice frame\n");
273 return -1;
274 }
276 res = fs->fmt->write(fs, f);
277 if (res < 0)
278 ast_log(LOG_WARNING, "Natural write failed\n");
279 else if (res > 0)
280 ast_log(LOG_WARNING, "Huh??\n");
281 } else {
282 /* XXX If they try to send us a type of frame that isn't the normal frame, and isn't
283 the one we've setup a translator for, we do the "wrong thing" XXX */
286 fs->trans = NULL;
287 }
288 if (!fs->trans) {
290 }
291 if (!fs->trans) {
292 ast_log(LOG_WARNING, "Unable to translate to format %s, source format %s\n",
294 } else {
295 struct ast_frame *trf;
297 /* Get the translated frame but don't consume the original in case they're using it on another stream */
298 if ((trf = ast_translate(fs->trans, f, 0))) {
299 struct ast_frame *cur;
300
301 /* the translator may have returned multiple frames, so process them */
302 for (cur = trf; cur; cur = AST_LIST_NEXT(cur, frame_list)) {
303 if ((res = fs->fmt->write(fs, trf))) {
304 ast_log(LOG_WARNING, "Translated frame write failed\n");
305 break;
306 }
307 }
308 ast_frfree(trf);
309 } else {
310 res = 0;
311 }
312 }
313 }
314 return res;
315}
316
317static int copy(const char *infile, const char *outfile)
318{
319 int ifd, ofd, len;
320 char buf[4096]; /* XXX make it larger. */
321
322 if ((ifd = open(infile, O_RDONLY)) < 0) {
323 ast_log(LOG_WARNING, "Unable to open %s in read-only mode\n", infile);
324 return -1;
325 }
326 if ((ofd = open(outfile, O_WRONLY | O_TRUNC | O_CREAT, AST_FILE_MODE)) < 0) {
327 ast_log(LOG_WARNING, "Unable to open %s in write-only mode\n", outfile);
328 close(ifd);
329 return -1;
330 }
331 while ( (len = read(ifd, buf, sizeof(buf)) ) ) {
332 int res;
333 if (len < 0) {
334 ast_log(LOG_WARNING, "Read failed on %s: %s\n", infile, strerror(errno));
335 break;
336 }
337 /* XXX handle partial writes */
338 res = write(ofd, buf, len);
339 if (res != len) {
340 ast_log(LOG_WARNING, "Write failed on %s (%d of %d): %s\n", outfile, res, len, strerror(errno));
341 len = -1; /* error marker */
342 break;
343 }
344 }
345 close(ifd);
346 close(ofd);
347 if (len < 0) {
348 unlink(outfile);
349 return -1; /* error */
350 }
351 return 0; /* success */
352}
353
354/*!
355 * \brief construct a filename. Absolute pathnames are preserved,
356 * relative names are prefixed by the sounds/ directory.
357 * The wav49 suffix is replaced by 'WAV'.
358 * Returns a malloc'ed string to be freed by the caller.
359 */
360static char *build_filename(const char *filename, const char *ext)
361{
362 char *fn = NULL;
363
364 /* The wav49 -> WAV translation is duplicated in apps/app_mixmonitor.c, so
365 if you change it here you need to change it there as well */
366 if (!strcmp(ext, "wav49"))
367 ext = "WAV";
368
369 if (filename[0] == '/') {
370 if (ast_asprintf(&fn, "%s.%s", filename, ext) < 0) {
371 fn = NULL;
372 }
373 } else {
374 if (ast_asprintf(&fn, "%s/sounds/%s.%s",
375 ast_config_AST_DATA_DIR, filename, ext) < 0) {
376 fn = NULL;
377 }
378 }
379 return fn;
380}
381
382/* compare type against the list 'exts' */
383/* XXX need a better algorithm */
384static int type_in_list(const char *list, const char *type, int (*cmp)(const char *s1, const char *s2))
385{
386 char *stringp = ast_strdupa(list), *item;
387
388 while ((item = strsep(&stringp, "|"))) {
389 if (!cmp(item, type)) {
390 return 1;
391 }
392 }
393
394 return 0;
395}
396
397#define exts_compare(list, type) (type_in_list((list), (type), strcmp))
398
399/*!
400 * \internal
401 * \brief Close the file stream by canceling any pending read / write callbacks
402 */
403static void filestream_close(struct ast_filestream *f)
404{
405 enum ast_media_type format_type = ast_format_get_type(f->fmt->format);
406
407 if (!f->owner) {
408 return;
409 }
410
411 /* Stop a running stream if there is one */
412 switch (format_type)
413 {
417 ast_settimeout(f->owner, 0, NULL, NULL);
418 break;
422 break;
423 default:
424 ast_log(AST_LOG_WARNING, "Unable to schedule deletion of filestream with unsupported type %s\n", f->fmt->name);
425 break;
426 }
427}
428
429static void filestream_destructor(void *arg)
430{
431 struct ast_filestream *f = arg;
432 int status;
433 int pid = -1;
434
435 /* Stop a running stream if there is one */
437
438 /* destroy the translator on exit */
439 if (f->trans)
441
442 if (f->fmt->close) {
443 void (*closefn)(struct ast_filestream *) = f->fmt->close;
444 closefn(f);
445 }
446
447 if (f->f) {
448 fclose(f->f);
449 }
450
451 if (f->realfilename && f->filename) {
452 pid = ast_safe_fork(0);
453 if (!pid) {
454 execl("/bin/mv", "mv", "-f", f->filename, f->realfilename, SENTINEL);
455 _exit(1);
456 }
457 else if (pid > 0) {
458 /* Block the parent until the move is complete.*/
459 waitpid(pid, &status, 0);
460 }
461 }
462
463 ast_free(f->filename);
464 ast_free(f->realfilename);
465 if (f->vfs)
466 ast_closestream(f->vfs);
467 ast_free(f->write_buffer);
468 ast_free((void *)f->orig_chan_name);
469 ao2_cleanup(f->lastwriteformat);
470 ao2_cleanup(f->fr.subclass.format);
471 ast_module_unref(f->fmt->module);
472}
473
474static struct ast_filestream *get_filestream(struct ast_format_def *fmt, FILE *bfile)
475{
476 struct ast_filestream *s;
477 int l = sizeof(*s) + fmt->buf_size + fmt->desc_size; /* total allocation size */
478
480 return NULL;
481 }
482
484 if (!s) {
486 return NULL;
487 }
488 s->fmt = fmt;
489 s->f = bfile;
490
491 if (fmt->desc_size)
492 s->_private = ((char *)(s + 1)) + fmt->buf_size;
493 if (fmt->buf_size)
494 s->buf = (char *)(s + 1);
495 s->fr.src = fmt->name;
496
501 }
502 s->fr.mallocd = 0;
504
505 return s;
506}
507
508/*
509 * Default implementations of open and rewrite.
510 * Only use them if you don't have expensive stuff to do.
511 */
513
514static int fn_wrapper(struct ast_filestream *s, const char *comment, enum wrap_fn mode)
515{
516 struct ast_format_def *f = s->fmt;
517 int ret = -1;
518 int (*openfn)(struct ast_filestream *s);
519
520 if (mode == WRAP_OPEN && (openfn = f->open) && openfn(s))
521 ast_log(LOG_WARNING, "Unable to open format %s\n", f->name);
522 else if (mode == WRAP_REWRITE && f->rewrite && f->rewrite(s, comment))
523 ast_log(LOG_WARNING, "Unable to rewrite format %s\n", f->name);
524 else {
525 /* preliminary checks succeed. */
526 ret = 0;
527 }
528 return ret;
529}
530
531static int rewrite_wrapper(struct ast_filestream *s, const char *comment)
532{
533 return fn_wrapper(s, comment, WRAP_REWRITE);
534}
535
536static int open_wrapper(struct ast_filestream *s)
537{
538 return fn_wrapper(s, NULL, WRAP_OPEN);
539}
540
542 ACTION_EXISTS = 1, /* return matching format if file exists, 0 otherwise */
543 ACTION_DELETE, /* delete file, return 0 on success, -1 on error */
544 ACTION_RENAME, /* rename file. return 0 on success, -1 on error */
546 ACTION_COPY /* copy file. return 0 on success, -1 on error */
548
549/*!
550 * \internal
551 * \brief perform various actions on a file. Second argument
552 * \note arg2 depends on the command:
553 * unused for DELETE
554 * optional ast_format_cap holding all the formats found for a file, for EXISTS.
555 * destination file name (const char *) for COPY and RENAME
556 * struct ast_channel * for OPEN
557 * if fmt is NULL, OPEN will return the first matching entry,
558 * whereas other functions will run on all matching entries.
559 */
560static int filehelper(const char *filename, const void *arg2, const char *fmt, const enum file_action action)
561{
562 struct ast_format_def *f;
563 int res = (action == ACTION_EXISTS) ? 0 : -1;
564
566 /* Check for a specific format */
568 char *ext = NULL;
569 char storage[strlen(f->exts) + 1];
570 char *stringp;
571
572 if (fmt && !exts_compare(f->exts, fmt))
573 continue;
574
575 /* Look for a file matching the supported extensions.
576 * The file must exist, and for OPEN, must match
577 * one of the formats supported by the channel.
578 */
579 strcpy(storage, f->exts); /* safe - this is in the stack so does not need to be freed */
580 stringp = storage;
581 while ( (ext = strsep(&stringp, "|")) ) {
582 struct stat st;
583 char *fn = build_filename(filename, ext);
584
585 if (fn == NULL)
586 continue;
587
588 if ( stat(fn, &st) ) { /* file not existent */
589 ast_free(fn);
590 continue;
591 }
592 /* for 'OPEN' we need to be sure that the format matches
593 * what the channel can process
594 */
595 if (action == ACTION_OPEN) {
596 struct ast_channel *chan = (struct ast_channel *)arg2;
597 FILE *bfile;
598 struct ast_filestream *s;
599
601 !(((ast_format_get_type(f->format) == AST_MEDIA_TYPE_AUDIO) && fmt) ||
602 ((ast_format_get_type(f->format) == AST_MEDIA_TYPE_VIDEO) && fmt))) {
603 ast_free(fn);
604 continue; /* not a supported format */
605 }
606 if ( (bfile = fopen(fn, "r")) == NULL) {
607 ast_free(fn);
608 continue; /* cannot open file */
609 }
610 s = get_filestream(f, bfile);
611 if (!s) {
612 fclose(bfile);
613 ast_free(fn); /* cannot allocate descriptor */
614 continue;
615 }
616 if (open_wrapper(s)) {
617 ast_free(fn);
619 continue; /* cannot run open on file */
620 }
621 if (st.st_size == 0) {
622 ast_log(LOG_WARNING, "File %s detected to have zero size.\n", fn);
623 }
624 /* ok this is good for OPEN */
625 res = 1; /* found */
626 s->lasttimeout = -1;
627 s->fmt = f;
628 s->trans = NULL;
629 s->filename = NULL;
631 if (ast_channel_stream(chan))
633 ast_channel_stream_set(chan, s);
634 } else {
635 if (ast_channel_vstream(chan))
638 }
639 ast_free(fn);
640 break;
641 }
642 switch (action) {
643 case ACTION_OPEN:
644 break; /* will never get here */
645
646 case ACTION_EXISTS: /* return the matching format */
647 /* if arg2 is present, it is a format capabilities structure.
648 * Add this format to the set of formats this file can be played in */
649 if (arg2) {
650 ast_format_cap_append((struct ast_format_cap *) arg2, f->format, 0);
651 }
652 res = 1; /* file does exist and format it exists in is returned in arg2 */
653 break;
654
655 case ACTION_DELETE:
656 if ( (res = unlink(fn)) )
657 ast_log(LOG_WARNING, "unlink(%s) failed: %s\n", fn, strerror(errno));
658 break;
659
660 case ACTION_RENAME:
661 case ACTION_COPY: {
662 char *nfn = build_filename((const char *)arg2, ext);
663 if (!nfn)
664 ast_log(LOG_WARNING, "Out of memory\n");
665 else {
666 res = action == ACTION_COPY ? copy(fn, nfn) : rename(fn, nfn);
667 if (res)
668 ast_log(LOG_WARNING, "%s(%s,%s) failed: %s\n",
669 action == ACTION_COPY ? "copy" : "rename",
670 fn, nfn, strerror(errno));
671 ast_free(nfn);
672 }
673 }
674 break;
675
676 default:
677 ast_log(LOG_WARNING, "Unknown helper %u\n", action);
678 }
679 ast_free(fn);
680 }
681 }
683 return res;
684}
685
686static int is_absolute_path(const char *filename)
687{
688 return filename[0] == '/';
689}
690
691static int is_remote_path(const char *filename)
692{
693 return strstr(filename, "://") ? 1 : 0;
694}
695
696/*!
697 * \brief test if a file exists for a given format.
698 * \note result_cap is OPTIONAL
699 * \retval 1 true and result_cap represents format capabilities file exists in.
700 * \retval 0 false
701 */
702static int fileexists_test(const char *filename, const char *fmt, const char *lang,
703 char *buf, int buflen, struct ast_format_cap *result_cap)
704{
705 if (buf == NULL) {
706 return 0;
707 }
708
710 return filehelper(buf, result_cap, NULL, ACTION_EXISTS);
711 }
712
713 if (ast_language_is_prefix && !is_absolute_path(filename)) { /* new layout */
714 if (lang) {
715 snprintf(buf, buflen, "%s/%s", lang, filename);
716 } else {
717 snprintf(buf, buflen, "%s", filename);
718 }
719 } else { /* old layout */
720 strcpy(buf, filename); /* first copy the full string */
721 if (lang) {
722 /* insert the language and suffix if needed */
723 const char *c = strrchr(filename, '/');
724 int offset = c ? c - filename + 1 : 0; /* points right after the last '/' */
725 snprintf(buf + offset, buflen - offset, "%s/%s", lang, filename + offset);
726 }
727 }
728
729 return filehelper(buf, result_cap, fmt, ACTION_EXISTS);
730}
731
732/*!
733 * \brief helper routine to locate a file with a given format
734 * and language preference.
735 *
736 * \note Try preflang, preflang with stripped '_' suffices, or NULL.
737 *
738 * \note The last parameter(s) point to a buffer of sufficient size,
739 * which on success is filled with the matching filename.
740 *
741 * \param filename Name of the file.
742 * \param fmt Format to look for the file in. OPTIONAL
743 * \param preflang The preferred language
744 * \param buf Returns the matching filename
745 * \param buflen Size of the buf
746 * \param result_cap OPTIONAL format capabilities result structure
747 * returns what formats the file was found in.
748 *
749 * \retval 1 true. file exists and result format is set
750 * \retval 0 false. file does not exist.
751 */
752static int fileexists_core(const char *filename, const char *fmt, const char *preflang,
753 char *buf, int buflen, struct ast_format_cap *result_cap)
754{
755 char *lang;
756
757 if (buf == NULL) {
758 return 0;
759 }
760
761 /* We try languages in the following order:
762 * preflang (may include dialect and style codes)
763 * lang (preflang without dialect - if any)
764 * <none>
765 * default (unless the same as preflang or lang without dialect)
766 */
767
768 lang = ast_strdupa(preflang);
769
770 /* Try preferred language, including removing any style or dialect codes */
771 while (!ast_strlen_zero(lang)) {
772 char *end;
773
774 if (fileexists_test(filename, fmt, lang, buf, buflen, result_cap)) {
775 return 1;
776 }
777
778 if ((end = strrchr(lang, '_')) != NULL) {
779 *end = '\0';
780 continue;
781 }
782
783 break;
784 }
785
786 /* Try without any language */
787 if (fileexists_test(filename, fmt, NULL, buf, buflen, result_cap)) {
788 return 1;
789 }
790
791 /* Finally try the default language unless it was already tried before */
792 if ((ast_strlen_zero(preflang) || strcmp(preflang, DEFAULT_LANGUAGE)) && (ast_strlen_zero(lang) || strcmp(lang, DEFAULT_LANGUAGE))) {
793 if ((fileexists_test(filename, fmt, DEFAULT_LANGUAGE, buf, buflen, result_cap)) > 0) {
794 return 1;
795 }
796 }
797
798 return 0;
799}
800
802 const char *filename, const char *preflang, int asis, int quiet)
803{
804 /*
805 * Use fileexists_core() to find a file in a compatible
806 * language and format, set up a suitable translator,
807 * and open the stream.
808 */
809 struct ast_format_cap *file_fmt_cap;
810 int res;
811 int buflen;
812 char *buf;
813
814 if (!asis) {
815 /* do this first, otherwise we detect the wrong writeformat */
816 ast_stopstream(chan);
817 if (ast_channel_generator(chan))
819 }
820 if (preflang == NULL)
821 preflang = "";
822 buflen = strlen(preflang) + strlen(filename) + 4;
823 buf = ast_alloca(buflen);
824
825 if (!(file_fmt_cap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT))) {
826 return NULL;
827 }
828 if (!fileexists_core(filename, NULL, preflang, buf, buflen, file_fmt_cap) ||
830
831 if (!quiet) {
832 ast_log(LOG_WARNING, "File %s does not exist in any format\n", filename);
833 }
834 ao2_ref(file_fmt_cap, -1);
835 return NULL;
836 }
837
838 /* Set the channel to a format we can work with and save off the previous format. */
839 ast_channel_lock(chan);
841 /* Set the channel to the best format that exists for the file. */
842 res = ast_set_write_format_from_cap(chan, file_fmt_cap);
843 ast_channel_unlock(chan);
844 /* don't need this anymore now that the channel's write format is set. */
845 ao2_ref(file_fmt_cap, -1);
846
847 if (res == -1) { /* No format available that works with this channel */
848 return NULL;
849 }
850 res = filehelper(buf, chan, NULL, ACTION_OPEN);
851 if (res >= 0)
852 return ast_channel_stream(chan);
853 return NULL;
854}
855
856struct ast_filestream *ast_openstream(struct ast_channel *chan, const char *filename, const char *preflang)
857{
858 return openstream_internal(chan, filename, preflang, 0, 0);
859}
860
862 const char *filename, const char *preflang, int asis)
863{
864 return openstream_internal(chan, filename, preflang, asis, 0);
865}
866
868 const char *filename, const char *preflang)
869{
870 /* As above, but for video. But here we don't have translators
871 * so we must enforce a format.
872 */
873 struct ast_format_cap *nativeformats, *tmp_cap;
874 char *buf;
875 int buflen;
876 int i, fd;
877
878 if (preflang == NULL) {
879 preflang = "";
880 }
881 buflen = strlen(preflang) + strlen(filename) + 4;
882 buf = ast_alloca(buflen);
883
884 ast_channel_lock(chan);
885 nativeformats = ao2_bump(ast_channel_nativeformats(chan));
886 ast_channel_unlock(chan);
887
888 /* is the channel capable of video without translation ?*/
889 if (!ast_format_cap_has_type(nativeformats, AST_MEDIA_TYPE_VIDEO)) {
890 ao2_cleanup(nativeformats);
891 return NULL;
892 }
894 ao2_cleanup(nativeformats);
895 return NULL;
896 }
897 /* Video is supported, so see what video formats exist for this file */
898 if (!fileexists_core(filename, NULL, preflang, buf, buflen, tmp_cap)) {
899 ao2_ref(tmp_cap, -1);
900 ao2_cleanup(nativeformats);
901 return NULL;
902 }
903
904 /* iterate over file formats and pick the first one compatible with the channel's native formats */
905 for (i = 0; i < ast_format_cap_count(tmp_cap); ++i) {
906 struct ast_format *format = ast_format_cap_get_format(tmp_cap, i);
907
908 if ((ast_format_get_type(format) != AST_MEDIA_TYPE_VIDEO) ||
909 !ast_format_cap_iscompatible(nativeformats, tmp_cap)) {
910 ao2_ref(format, -1);
911 continue;
912 }
913
914 fd = filehelper(buf, chan, ast_format_get_name(format), ACTION_OPEN);
915 if (fd >= 0) {
916 ao2_ref(format, -1);
917 ao2_ref(tmp_cap, -1);
918 ao2_cleanup(nativeformats);
919 return ast_channel_vstream(chan);
920 }
921 ast_log(LOG_WARNING, "File %s has video but couldn't be opened\n", filename);
922 ao2_ref(format, -1);
923 }
924 ao2_ref(tmp_cap, -1);
925 ao2_cleanup(nativeformats);
926
927 return NULL;
928}
929
930static struct ast_frame *read_frame(struct ast_filestream *s, int *whennext)
931{
932 struct ast_frame *fr, *new_fr;
933
934 if (!s || !s->fmt) {
935 return NULL;
936 }
937
938 if (!(fr = s->fmt->read(s, whennext))) {
939 return NULL;
940 }
941
942 if (!(new_fr = ast_frisolate(fr))) {
943 ast_frfree(fr);
944 return NULL;
945 }
946
947 if (new_fr != fr) {
948 ast_frfree(fr);
949 fr = new_fr;
950 }
951
952 return fr;
953}
954
956{
957 int whennext = 0;
958
959 return read_frame(s, &whennext);
960}
961
966};
967
968static int ast_fsread_audio(const void *data);
969
971{
972 int whennext = 0;
973
974 while (!whennext) {
975 struct ast_frame *fr;
976
977 if (s->orig_chan_name && strcasecmp(ast_channel_name(s->owner), s->orig_chan_name)) {
978 goto return_failure;
979 }
980
981 fr = read_frame(s, &whennext);
982
983 if (!fr /* stream complete */ || ast_write(s->owner, fr) /* error writing */) {
984 if (fr) {
985 ast_debug(2, "Failed to write frame\n");
986 ast_frfree(fr);
987 }
988 goto return_failure;
989 }
990
991 if (fr) {
992 ast_frfree(fr);
993 }
994 }
995
996 if (whennext != s->lasttimeout) {
997 if (ast_channel_timingfd(s->owner) > -1) {
998 float samp_rate = (float) ast_format_get_sample_rate(s->fmt->format);
999 unsigned int rate;
1000
1001 rate = (unsigned int) roundf(samp_rate / ((float) whennext));
1002
1004 } else {
1006 }
1007 s->lasttimeout = whennext;
1009 }
1010 return FSREAD_SUCCESS_SCHED;
1011
1012return_failure:
1014 ast_settimeout(s->owner, 0, NULL, NULL);
1015 return FSREAD_FAILURE;
1016}
1017
1018static int ast_fsread_audio(const void *data)
1019{
1020 struct ast_filestream *fs = (struct ast_filestream *)data;
1021 enum fsread_res res;
1022
1023 res = ast_readaudio_callback(fs);
1024
1025 if (res == FSREAD_SUCCESS_SCHED)
1026 return 1;
1027
1028 return 0;
1029}
1030
1031static int ast_fsread_video(const void *data);
1032
1034{
1035 int whennext = 0;
1036
1037 while (!whennext) {
1038 struct ast_frame *fr = read_frame(s, &whennext);
1039
1040 if (!fr /* stream complete */ || ast_write(s->owner, fr) /* error writing */) {
1041 if (fr) {
1042 ast_debug(2, "Failed to write frame\n");
1043 ast_frfree(fr);
1044 }
1046 return FSREAD_FAILURE;
1047 }
1048
1049 if (fr) {
1050 ast_frfree(fr);
1051 }
1052 }
1053
1054 if (whennext != s->lasttimeout) {
1056 s->lasttimeout = whennext;
1058 }
1059
1060 return FSREAD_SUCCESS_SCHED;
1061}
1062
1063static int ast_fsread_video(const void *data)
1064{
1065 struct ast_filestream *fs = (struct ast_filestream *)data;
1066 enum fsread_res res;
1067
1068 res = ast_readvideo_callback(fs);
1069
1070 if (res == FSREAD_SUCCESS_SCHED)
1071 return 1;
1072
1073 return 0;
1074}
1075
1076int ast_applystream(struct ast_channel *chan, struct ast_filestream *s)
1077{
1078 s->owner = chan;
1079 return 0;
1080}
1081
1083{
1084 enum fsread_res res;
1085
1087 res = ast_readaudio_callback(s);
1088 else
1089 res = ast_readvideo_callback(s);
1090
1091 return (res == FSREAD_FAILURE) ? -1 : 0;
1092}
1093
1094int ast_seekstream(struct ast_filestream *fs, off_t sample_offset, int whence)
1095{
1096 return fs->fmt->seek(fs, sample_offset, whence);
1097}
1098
1100{
1101 return fs->fmt->trunc(fs);
1102}
1103
1105{
1106 return fs->fmt->tell(fs);
1107}
1108
1110{
1112}
1113
1115{
1116 return ast_seekstream(fs, ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
1117}
1118
1119int ast_stream_rewind(struct ast_filestream *fs, off_t ms)
1120{
1121 off_t offset = ast_tellstream(fs);
1122 if (ms * DEFAULT_SAMPLES_PER_MS > offset) {
1123 /* Don't even bother asking the file format to seek to a negative offset... */
1124 ast_debug(1, "Restarting, rather than seeking to negative offset %ld\n", (long) (offset - (ms * DEFAULT_SAMPLES_PER_MS)));
1125 return ast_seekstream(fs, 0, SEEK_SET);
1126 }
1127 return ast_seekstream(fs, -ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
1128}
1129
1131{
1132 /* This used to destroy the filestream, but it now just decrements a refcount.
1133 * We close the stream in order to quit queuing frames now, because we might
1134 * change the writeformat, which could result in a subsequent write error, if
1135 * the format is different. */
1136 if (f == NULL) {
1137 return 0;
1138 }
1140 ao2_ref(f, -1);
1141 return 0;
1142}
1143
1144
1145/*
1146 * Look the various language-specific places where a file could exist.
1147 */
1148int ast_fileexists(const char *filename, const char *fmt, const char *preflang)
1149{
1150 char *buf;
1151 int buflen;
1152
1153 if (preflang == NULL)
1154 preflang = "";
1155 buflen = strlen(preflang) + strlen(filename) + 4; /* room for everything */
1156 buf = ast_alloca(buflen);
1157 return fileexists_core(filename, fmt, preflang, buf, buflen, NULL) ? 1 : 0;
1158}
1159
1160int ast_filedelete(const char *filename, const char *fmt)
1161{
1163}
1164
1165int ast_filerename(const char *filename, const char *filename2, const char *fmt)
1166{
1167 return filehelper(filename, filename2, fmt, ACTION_RENAME);
1168}
1169
1170int ast_filecopy(const char *filename, const char *filename2, const char *fmt)
1171{
1172 return filehelper(filename, filename2, fmt, ACTION_COPY);
1173}
1174
1175static int __ast_file_read_dirs(const char *path, ast_file_on_file on_file,
1176 void *obj, int max_depth)
1177{
1178 DIR *dir;
1179 struct dirent *entry;
1180 int res;
1181
1182 if (!(dir = opendir(path))) {
1183 ast_log(LOG_ERROR, "Error opening directory - %s: %s\n",
1184 path, strerror(errno));
1185 return -1;
1186 }
1187
1188 --max_depth;
1189
1190 res = 0;
1191
1192 while ((entry = readdir(dir)) != NULL && !errno) {
1193 int is_file = 0;
1194 int is_dir = 0;
1195 RAII_VAR(char *, full_path, NULL, ast_free);
1196
1197 if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, "..")) {
1198 continue;
1199 }
1200
1201/*
1202 * If the dirent structure has a d_type use it to determine if we are dealing with
1203 * a file or directory. Unfortunately if it doesn't have it, or if the type is
1204 * unknown, or a link then we'll need to use the stat function instead.
1205 */
1206#ifdef _DIRENT_HAVE_D_TYPE
1207 if (entry->d_type != DT_UNKNOWN && entry->d_type != DT_LNK) {
1208 is_file = entry->d_type == DT_REG;
1209 is_dir = entry->d_type == DT_DIR;
1210 } else
1211#endif
1212 {
1213 struct stat statbuf;
1214
1215 /*
1216 * Don't use alloca or we risk blowing out the stack if recursing
1217 * into subdirectories.
1218 */
1219 full_path = ast_malloc(strlen(path) + strlen(entry->d_name) + 2);
1220 if (!full_path) {
1221 return -1;
1222 }
1223 sprintf(full_path, "%s/%s", path, entry->d_name);
1224
1225 if (stat(full_path, &statbuf)) {
1226 ast_log(LOG_ERROR, "Error reading path stats - %s: %s\n",
1227 full_path, strerror(errno));
1228 /*
1229 * Output an error, but keep going. It could just be
1230 * a broken link and other files could be fine.
1231 */
1232 continue;
1233 }
1234
1235 is_file = S_ISREG(statbuf.st_mode);
1236 is_dir = S_ISDIR(statbuf.st_mode);
1237 }
1238
1239 if (is_file) {
1240 /* If the handler returns non-zero then stop */
1241 if ((res = on_file(path, entry->d_name, obj))) {
1242 break;
1243 }
1244 /* Otherwise move on to next item in directory */
1245 continue;
1246 }
1247
1248 if (!is_dir) {
1249 ast_debug(5, "Skipping %s: not a regular file or directory\n", full_path);
1250 continue;
1251 }
1252
1253 /* Only re-curse into sub-directories if not at the max depth */
1254 if (max_depth != 0) {
1255 if (!full_path) {
1256 /* Don't use alloca. See note above. */
1257 full_path = ast_malloc(strlen(path) + strlen(entry->d_name) + 2);
1258 if (!full_path) {
1259 return -1;
1260 }
1261 sprintf(full_path, "%s/%s", path, entry->d_name);
1262 }
1263
1264 if ((res = __ast_file_read_dirs(full_path, on_file, obj, max_depth))) {
1265 break;
1266 }
1267 }
1268 }
1269
1270 closedir(dir);
1271
1272 if (!res && errno) {
1273 ast_log(LOG_ERROR, "Error while reading directories - %s: %s\n",
1274 path, strerror(errno));
1275 res = -1;
1276 }
1277
1278 return res;
1279}
1280
1281#if !defined(__GLIBC__)
1282/*!
1283 * \brief Lock to hold when iterating over directories.
1284 *
1285 * Currently, 'readdir' is not required to be thread-safe. In most modern implementations
1286 * it should be safe to make concurrent calls into 'readdir' that specify different directory
1287 * streams (glibc would be one of these). However, since it is potentially unsafe for some
1288 * implementations we'll use our own locking in order to achieve synchronization for those.
1289 */
1291#endif
1292
1293int ast_file_read_dirs(const char *dir_name, ast_file_on_file on_file, void *obj, int max_depth)
1294{
1295 int res;
1296
1297 errno = 0;
1298
1299#if !defined(__GLIBC__)
1301#endif
1302
1303 res = __ast_file_read_dirs(dir_name, on_file, obj, max_depth);
1304
1305#if !defined(__GLIBC__)
1307#endif
1308
1309 return res;
1310}
1311
1312int ast_streamfile(struct ast_channel *chan, const char *filename,
1313 const char *preflang)
1314{
1315 struct ast_json * cel_event = NULL;
1316 struct ast_filestream *fs = NULL;
1317 struct ast_filestream *vfs = NULL;
1318 off_t pos;
1319 int seekattempt;
1320 int res;
1321 char custom_filename[256];
1322 char *tmp_filename;
1323
1324 /* If file with the same name exists in /var/lib/asterisk/sounds/custom directory, use that file.
1325 * Otherwise, use the original file*/
1326
1328 memset(custom_filename, 0, sizeof(custom_filename));
1329 snprintf(custom_filename, sizeof(custom_filename), "custom/%s", filename);
1330 fs = openstream_internal(chan, custom_filename, preflang, 0, 1); /* open stream, do not warn for missing files */
1331 if (fs) {
1332 tmp_filename = custom_filename;
1333 ast_debug(3, "Found file %s in custom directory\n", filename);
1334 }
1335 }
1336
1337 if (!fs) {
1338 fs = ast_openstream(chan, filename, preflang);
1339 if (!fs) {
1340 struct ast_str *codec_buf = ast_str_alloca(AST_FORMAT_CAP_NAMES_LEN);
1341 ast_channel_lock(chan);
1342 ast_log(LOG_WARNING, "Unable to open %s (format %s): %s\n",
1343 filename, ast_format_cap_get_names(ast_channel_nativeformats(chan), &codec_buf), strerror(errno));
1344 ast_channel_unlock(chan);
1345 return -1;
1346 }
1347 tmp_filename = (char *)filename;
1348 }
1349
1350 /* check to see if there is any data present (not a zero length file),
1351 * done this way because there is no where for ast_openstream_full to
1352 * return the file had no data. */
1353 pos = ftello(fs->f);
1354 seekattempt = fseeko(fs->f, -1, SEEK_END);
1355 if (seekattempt) {
1356 if (errno == EINVAL) {
1357 /* Zero-length file, as opposed to a pipe */
1358 return 0;
1359 } else {
1360 ast_seekstream(fs, 0, SEEK_SET);
1361 }
1362 } else {
1363 fseeko(fs->f, pos, SEEK_SET);
1364 }
1365
1366 vfs = ast_openvstream(chan, tmp_filename, preflang);
1367 if (vfs) {
1368 ast_debug(1, "Ooh, found a video stream, too, format %s\n", ast_format_get_name(vfs->fmt->format));
1369 }
1370
1373 if (ast_applystream(chan, fs))
1374 return -1;
1375 if (vfs && ast_applystream(chan, vfs))
1376 return -1;
1377 ast_test_suite_event_notify("PLAYBACK", "Message: %s\r\nChannel: %s", tmp_filename, ast_channel_name(chan));
1378 res = ast_playstream(fs);
1379 if (!res && vfs)
1380 res = ast_playstream(vfs);
1381
1382 cel_event = ast_json_pack("{ s: s, s: {s: s, s: s, s: s}}",
1383 "event", "FILE_STREAM_BEGIN",
1384 "extra",
1385 "sound", tmp_filename,
1387 "language", preflang ? preflang : "default"
1388 );
1389 if (cel_event) {
1391 } else {
1392 ast_log(LOG_WARNING, "Unable to build extradata for sound file STREAM_BEGIN event on channel %s", ast_channel_name(chan));
1393 }
1394 ast_json_unref(cel_event);
1395
1396 if (VERBOSITY_ATLEAST(3)) {
1397 ast_channel_lock(chan);
1398 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");
1399 ast_channel_unlock(chan);
1400 }
1401
1402 return res;
1403}
1404
1405struct ast_filestream *ast_readfile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
1406{
1407 FILE *bfile;
1408 struct ast_format_def *f;
1409 struct ast_filestream *fs = NULL;
1410 char *fn;
1411 int format_found = 0;
1412
1414
1415 AST_RWLIST_TRAVERSE(&formats, f, list) {
1416 fs = NULL;
1417 if (!exts_compare(f->exts, type))
1418 continue;
1419 else
1420 format_found = 1;
1421
1423 if (!fn) {
1424 continue;
1425 }
1426 errno = 0;
1427 bfile = fopen(fn, "r");
1428
1429 if (!bfile || (fs = get_filestream(f, bfile)) == NULL || open_wrapper(fs) ) {
1430 ast_log(LOG_WARNING, "Unable to open %s\n", fn);
1431 if (fs) {
1432 ast_closestream(fs);
1433 }
1434 fs = NULL;
1435 bfile = NULL;
1436 ast_free(fn);
1437 break;
1438 }
1439 /* found it */
1440 fs->trans = NULL;
1441 fs->fmt = f;
1442 fs->flags = flags;
1443 fs->mode = mode;
1445 fs->vfs = NULL;
1446 ast_free(fn);
1447 break;
1448 }
1449
1451 if (!format_found)
1452 ast_log(LOG_WARNING, "No such format '%s'\n", type);
1453
1454 return fs;
1455}
1456
1457struct ast_filestream *ast_writefile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
1458{
1459 int fd, myflags = 0;
1460 /* compiler claims this variable can be used before initialization... */
1461 FILE *bfile = NULL;
1462 struct ast_format_def *f;
1463 struct ast_filestream *fs = NULL;
1464 char *buf = NULL;
1465 size_t size = 0;
1466 int format_found = 0;
1467
1469
1470 /* set the O_TRUNC flag if and only if there is no O_APPEND specified */
1471 /* We really can't use O_APPEND as it will break WAV header updates */
1472 if (flags & O_APPEND) {
1473 flags &= ~O_APPEND;
1474 } else {
1475 myflags = O_TRUNC;
1476 }
1477
1478 myflags |= O_WRONLY | O_CREAT;
1479
1480 /* XXX need to fix this - we should just do the fopen,
1481 * not open followed by fdopen()
1482 */
1483 AST_RWLIST_TRAVERSE(&formats, f, list) {
1484 char *fn, *orig_fn = NULL;
1485 if (fs)
1486 break;
1487
1488 if (!exts_compare(f->exts, type))
1489 continue;
1490 else
1491 format_found = 1;
1492
1494 if (!fn) {
1495 continue;
1496 }
1497 fd = open(fn, flags | myflags, mode);
1498 if (fd > -1) {
1499 /* fdopen() the resulting file stream */
1500 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
1501 if (!bfile) {
1502 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
1503 close(fd);
1504 fd = -1;
1505 }
1506 }
1507
1508 if (ast_opt_cache_record_files && (fd > -1)) {
1509 char *c;
1510
1511 fclose(bfile); /* this also closes fd */
1512 /*
1513 We touch orig_fn just as a place-holder so other things (like vmail) see the file is there.
1514 What we are really doing is writing to record_cache_dir until we are done then we will mv the file into place.
1515 */
1516 orig_fn = ast_strdup(fn);
1517 for (c = fn; *c; c++)
1518 if (*c == '/')
1519 *c = '_';
1520
1521 size = strlen(fn) + strlen(record_cache_dir) + 2;
1522 buf = ast_malloc(size);
1523 strcpy(buf, record_cache_dir);
1524 strcat(buf, "/");
1525 strcat(buf, fn);
1526 ast_free(fn);
1527 fn = buf;
1528 fd = open(fn, flags | myflags, mode);
1529 if (fd > -1) {
1530 /* fdopen() the resulting file stream */
1531 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
1532 if (!bfile) {
1533 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
1534 close(fd);
1535 fd = -1;
1536 }
1537 }
1538 }
1539 if (fd > -1) {
1540 errno = 0;
1541 fs = get_filestream(f, bfile);
1542 if (fs) {
1543 if ((fs->write_buffer = ast_malloc(32768))) {
1544 setvbuf(fs->f, fs->write_buffer, _IOFBF, 32768);
1545 }
1546 }
1547 if (!fs || rewrite_wrapper(fs, comment)) {
1548 ast_log(LOG_WARNING, "Unable to rewrite %s\n", fn);
1549 close(fd);
1550 if (orig_fn) {
1551 unlink(fn);
1552 unlink(orig_fn);
1553 ast_free(orig_fn);
1554 }
1555 if (fs) {
1556 ast_closestream(fs);
1557 fs = NULL;
1558 }
1559 /*
1560 * 'fn' was has either been allocated from build_filename, or that was freed
1561 * and now 'fn' points to memory allocated for 'buf'. Either way the memory
1562 * now needs to be released.
1563 */
1564 ast_free(fn);
1565 continue;
1566 }
1567 fs->trans = NULL;
1568 fs->fmt = f;
1569 fs->flags = flags;
1570 fs->mode = mode;
1571 if (orig_fn) {
1572 fs->realfilename = orig_fn;
1573 fs->filename = fn;
1574 /*
1575 * The above now manages the memory allocated for 'orig_fn' and 'fn', so
1576 * set them to NULL, so they don't get released at the end of the loop.
1577 */
1578 orig_fn = NULL;
1579 fn = NULL;
1580 } else {
1581 fs->realfilename = NULL;
1583 }
1584 fs->vfs = NULL;
1585 /* If truncated, we'll be at the beginning; if not truncated, then append */
1586 f->seek(fs, 0, SEEK_END);
1587 } else if (errno != EEXIST) {
1588 ast_log(LOG_WARNING, "Unable to open file %s: %s\n", fn, strerror(errno));
1589 if (orig_fn)
1590 unlink(orig_fn);
1591 }
1592 /* Free 'fn', or if 'fn' points to 'buf' then free 'buf' */
1593 ast_free(fn);
1594 ast_free(orig_fn);
1595 }
1596
1598
1599 if (!format_found)
1600 ast_log(LOG_WARNING, "No such format '%s'\n", type);
1601
1602 return fs;
1603}
1604
1608 int skip_ms)
1609{
1610 switch (type)
1611 {
1613 {
1614 int eoftest;
1616 eoftest = fgetc(ast_channel_stream(c)->f);
1617 if (feof(ast_channel_stream(c)->f)) {
1619 } else {
1620 ungetc(eoftest, ast_channel_stream(c)->f);
1621 }
1622 }
1623 break;
1626 break;
1627 default:
1628 break;
1629 }
1630
1631 if (cb) {
1633 cb(c, ms_len, type);
1634 }
1635
1636 ast_test_suite_event_notify("PLAYBACK","Channel: %s\r\n"
1637 "Control: %s\r\n"
1638 "SkipMs: %d\r\n",
1640 (type == AST_WAITSTREAM_CB_FASTFORWARD) ? "FastForward" : "Rewind",
1641 skip_ms);
1642}
1643
1644/*!
1645 * \brief the core of all waitstream() functions
1646 */
1647static int waitstream_core(struct ast_channel *c,
1648 const char *breakon,
1649 const char *forward,
1650 const char *reverse,
1651 int skip_ms,
1652 int audiofd,
1653 int cmdfd,
1654 const char *context,
1656{
1657 const char *orig_chan_name = NULL;
1658
1659 int err = 0;
1660
1661 if (!breakon)
1662 breakon = "";
1663 if (!forward)
1664 forward = "";
1665 if (!reverse)
1666 reverse = "";
1667
1668 /* Switch the channel to end DTMF frame only. waitstream_core doesn't care about the start of DTMF. */
1670
1673
1674 if (ast_channel_stream(c) && cb) {
1676 cb(c, ms_len, AST_WAITSTREAM_CB_START);
1677 }
1678
1679 while (ast_channel_stream(c)) {
1680 int res;
1681 int ms;
1682
1683 if (orig_chan_name && strcasecmp(orig_chan_name, ast_channel_name(c))) {
1685 err = 1;
1686 break;
1687 }
1688
1690
1691 if (ms < 0 && !ast_channel_timingfunc(c)) {
1693 break;
1694 }
1695 if (ms < 0)
1696 ms = 1000;
1697 if (cmdfd < 0) {
1698 res = ast_waitfor(c, ms);
1699 if (res < 0) {
1700 ast_log(LOG_WARNING, "Select failed (%s)\n", strerror(errno));
1702 return res;
1703 }
1704 } else {
1705 int outfd;
1706 struct ast_channel *rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
1707 if (!rchan && (outfd < 0) && (ms)) {
1708 /* Continue */
1709 if (errno == EINTR)
1710 continue;
1711 ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
1713 return -1;
1714 } else if (outfd > -1) { /* this requires cmdfd set */
1715 /* The FD we were watching has something waiting */
1717 return 1;
1718 }
1719 /* if rchan is set, it is 'c' */
1720 res = rchan ? 1 : 0; /* map into 'res' values */
1721 }
1722 if (res > 0) {
1723 struct ast_frame *fr = ast_read(c);
1724 if (!fr) {
1726 return -1;
1727 }
1728 switch (fr->frametype) {
1729 case AST_FRAME_DTMF_END:
1730 if (context) {
1731 const char exten[2] = { fr->subclass.integer, '\0' };
1732 if (ast_exists_extension(c, context, exten, 1,
1733 S_COR(ast_channel_caller(c)->id.number.valid, ast_channel_caller(c)->id.number.str, NULL))) {
1734 res = fr->subclass.integer;
1735 ast_frfree(fr);
1737 return res;
1738 }
1739 } else {
1740 res = fr->subclass.integer;
1741 if (strchr(forward, res)) {
1743 } else if (strchr(reverse, res)) {
1745 } else if (strchr(breakon, res)) {
1746 ast_test_suite_event_notify("PLAYBACK","Channel: %s\r\n"
1747 "Control: %s\r\n",
1749 "Break");
1750
1751 ast_frfree(fr);
1753 return res;
1754 }
1755 }
1756 break;
1757 case AST_FRAME_CONTROL:
1758 switch (fr->subclass.integer) {
1762 /* Fall-through and break out */
1763 ast_test_suite_event_notify("PLAYBACK","Channel: %s\r\n"
1764 "Control: %s\r\n",
1766 "Break");
1767 res = fr->subclass.integer;
1768 ast_frfree(fr);
1770 return res;
1772 if (!skip_ms) {
1773 skip_ms = 3000;
1774 }
1776 break;
1778 if (!skip_ms) {
1779 skip_ms = 3000;
1780 }
1782 break;
1783 case AST_CONTROL_HANGUP:
1784 case AST_CONTROL_BUSY:
1786 ast_frfree(fr);
1788 return -1;
1791 case AST_CONTROL_ANSWER:
1795 case AST_CONTROL_HOLD:
1796 case AST_CONTROL_UNHOLD:
1799 case AST_CONTROL_AOC:
1802 case AST_CONTROL_FLASH:
1803 case AST_CONTROL_WINK:
1804 case -1:
1805 /* Unimportant */
1806 break;
1807 default:
1808 ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", fr->subclass.integer);
1809 }
1810 break;
1811 case AST_FRAME_VOICE:
1812 /* Write audio if appropriate */
1813 if (audiofd > -1) {
1814 if (write(audiofd, fr->data.ptr, fr->datalen) < 0) {
1815 ast_log(LOG_WARNING, "write() failed: %s\n", strerror(errno));
1816 }
1817 }
1818 default:
1819 /* Ignore all others */
1820 break;
1821 }
1822 ast_frfree(fr);
1823 }
1825 }
1826
1828
1829 return (err || ast_channel_softhangup_internal_flag(c)) ? -1 : 0;
1830}
1831
1833 const char *breakon,
1834 const char *forward,
1835 const char *reverse,
1836 int ms,
1838{
1839 return waitstream_core(c, breakon, forward, reverse, ms,
1840 -1 /* no audiofd */, -1 /* no cmdfd */, NULL /* no context */, cb);
1841}
1842
1843int ast_waitstream_fr(struct ast_channel *c, const char *breakon, const char *forward, const char *reverse, int ms)
1844{
1845 return waitstream_core(c, breakon, forward, reverse, ms,
1846 -1 /* no audiofd */, -1 /* no cmdfd */, NULL /* no context */, NULL /* no callback */);
1847}
1848
1849/*! \internal
1850 * \brief Clean up the return value of a waitstream call
1851 *
1852 * It's possible for a control frame to come in from an external source and break the
1853 * playback. From a consumer of most ast_waitstream_* function callers, this should
1854 * appear like normal playback termination, i.e., return 0 and not the value of the
1855 * control frame.
1856 */
1857static int sanitize_waitstream_return(int return_value)
1858{
1859 switch (return_value) {
1863 /* Fall through and set return_value to 0 */
1864 return_value = 0;
1865 break;
1866 default:
1867 /* Do nothing */
1868 break;
1869 }
1870
1871 return return_value;
1872}
1873
1874int ast_waitstream(struct ast_channel *c, const char *breakon)
1875{
1876 int res;
1877
1878 res = waitstream_core(c, breakon, NULL, NULL, 0, -1, -1, NULL, NULL /* no callback */);
1879
1880 return sanitize_waitstream_return(res);
1881}
1882
1883int ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd, int cmdfd)
1884{
1885 int res;
1886
1887 res = waitstream_core(c, breakon, NULL, NULL, 0,
1888 audiofd, cmdfd, NULL /* no context */, NULL /* no callback */);
1889
1890 return sanitize_waitstream_return(res);
1891}
1892
1894{
1895 int res;
1896
1897 /* Waitstream, with return in the case of a valid 1 digit extension */
1898 /* in the current or specified context being pressed */
1899 if (!context)
1901 res = waitstream_core(c, NULL, NULL, NULL, 0,
1902 -1, -1, context, NULL /* no callback */);
1903
1904 return sanitize_waitstream_return(res);
1905}
1906
1907/*
1908 * if the file name is non-empty, try to play it.
1909 * Return 0 if success, -1 if error, digit if interrupted by a digit.
1910 * If digits == "" then we can simply check for non-zero.
1911 */
1912int ast_stream_and_wait(struct ast_channel *chan, const char *file, const char *digits)
1913{
1914 int res = 0;
1915 if (!ast_strlen_zero(file)) {
1916 res = ast_streamfile(chan, file, ast_channel_language(chan));
1917 if (!res) {
1918 res = ast_waitstream(chan, digits);
1919 }
1920 }
1921 if (res == -1) {
1922 ast_stopstream(chan);
1923 }
1924
1925 return res;
1926}
1927
1928char *ast_format_str_reduce(char *fmts)
1929{
1930 struct ast_format_def *f;
1931 struct ast_format_def *fmts_ptr[AST_MAX_FORMATS];
1932 char *fmts_str[AST_MAX_FORMATS];
1933 char *stringp, *type;
1934 char *orig = fmts;
1935 int i, j, x, first, found = 0;
1936 int len = strlen(fmts) + 1;
1937 int res;
1938
1939 if (AST_RWLIST_RDLOCK(&formats)) {
1940 ast_log(LOG_WARNING, "Unable to lock format list\n");
1941 return NULL;
1942 }
1943
1944 stringp = ast_strdupa(fmts);
1945
1946 for (x = 0; (type = strsep(&stringp, "|")) && x < AST_MAX_FORMATS; x++) {
1948 if (exts_compare(f->exts, type)) {
1949 found = 1;
1950 break;
1951 }
1952 }
1953
1954 fmts_str[x] = type;
1955 if (found) {
1956 fmts_ptr[x] = f;
1957 } else {
1958 fmts_ptr[x] = NULL;
1959 }
1960 }
1962
1963 first = 1;
1964 for (i = 0; i < x; i++) {
1965 /* ignore invalid entries */
1966 if (!fmts_ptr[i]) {
1967 ast_log(LOG_WARNING, "ignoring unknown format '%s'\n", fmts_str[i]);
1968 continue;
1969 }
1970
1971 /* special handling for the first entry */
1972 if (first) {
1973 res = snprintf(fmts, len, "%s", fmts_str[i]);
1974 fmts += res;
1975 len -= res;
1976 first = 0;
1977 continue;
1978 }
1979
1980 found = 0;
1981 for (j = 0; j < i; j++) {
1982 /* this is a duplicate */
1983 if (fmts_ptr[j] == fmts_ptr[i]) {
1984 found = 1;
1985 break;
1986 }
1987 }
1988
1989 if (!found) {
1990 res = snprintf(fmts, len, "|%s", fmts_str[i]);
1991 fmts += res;
1992 len -= res;
1993 }
1994 }
1995
1996 if (first) {
1997 ast_log(LOG_WARNING, "no known formats found in format list (%s)\n", orig);
1998 return NULL;
1999 }
2000
2001 return orig;
2002}
2003
2004static char *handle_cli_core_show_file_formats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2005{
2006#define FORMAT "%-10s %-10s %-20s\n"
2007#define FORMAT2 "%-10s %-10s %-20s\n"
2008 struct ast_format_def *f;
2009 int count_fmt = 0;
2010
2011 switch (cmd) {
2012 case CLI_INIT:
2013 e->command = "core show file formats";
2014 e->usage =
2015 "Usage: core show file formats\n"
2016 " Displays currently registered file formats (if any).\n";
2017 return NULL;
2018 case CLI_GENERATE:
2019 return NULL;
2020 }
2021
2022 if (a->argc != 4)
2023 return CLI_SHOWUSAGE;
2024
2025 ast_cli(a->fd, FORMAT, "Format", "Name", "Extensions");
2026 ast_cli(a->fd, FORMAT, "------", "----", "----------");
2027
2030 ast_cli(a->fd, FORMAT2, ast_format_get_name(f->format), f->name, f->exts);
2031 count_fmt++;
2032 }
2034 ast_cli(a->fd, "%d file formats registered.\n", count_fmt);
2035 return CLI_SUCCESS;
2036#undef FORMAT
2037#undef FORMAT2
2038}
2039
2040struct ast_format *ast_get_format_for_file_ext(const char *file_ext)
2041{
2042 struct ast_format_def *f;
2045 if (exts_compare(f->exts, file_ext)) {
2046 return f->format;
2047 }
2048 }
2049
2050 return NULL;
2051}
2052
2053int ast_get_extension_for_mime_type(const char *mime_type, char *buffer, size_t capacity)
2054{
2055 struct ast_format_def *f;
2057
2058 ast_assert(buffer && capacity);
2059
2061 if (type_in_list(f->mime_types, mime_type, strcasecmp)) {
2062 size_t item_len = strcspn(f->exts, "|");
2063 size_t bytes_written = snprintf(buffer, capacity, ".%.*s", (int) item_len, f->exts);
2064 if (bytes_written < capacity) {
2065 /* Only return success if we didn't truncate */
2066 return 1;
2067 }
2068 }
2069 }
2070
2071 return 0;
2072}
2073
2074static struct ast_cli_entry cli_file[] = {
2075 AST_CLI_DEFINE(handle_cli_core_show_file_formats, "Displays file formats")
2076};
2077
2078static void file_shutdown(void)
2079{
2083}
2084
2086{
2091 return 0;
2092}
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
Call Event Logging API.
void ast_cel_publish_event(struct ast_channel *chan, enum ast_cel_event_type event_type, struct ast_json *blob)
Publish a CEL event.
Definition: cel.c:1735
@ AST_CEL_STREAM_BEGIN
A stream started.
Definition: cel.h:81
@ AST_CEL_STREAM_END
A stream ended.
Definition: cel.h:83
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:2958
void ast_channel_clear_flag(struct ast_channel *chan, unsigned int flag)
Clear a flag on a channel.
Definition: channel.c:11048
void ast_channel_set_oldwriteformat(struct ast_channel *chan, struct ast_format *format)
#define ast_channel_lock(chan)
Definition: channel.h:2972
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:3132
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:3155
void ast_channel_streamid_set(struct ast_channel *chan, int value)
@ AST_FLAG_MASQ_NOSTREAM
Definition: channel.h:1034
@ AST_FLAG_END_DTMF_ONLY
Definition: channel.h:1027
const char * ast_channel_context(const struct ast_channel *chan)
void ast_deactivate_generator(struct ast_channel *chan)
Definition: channel.c:2863
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:5112
struct ast_frame * ast_read(struct ast_channel *chan)
Reads a frame.
Definition: channel.c:4223
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:11041
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:3150
int ast_set_write_format(struct ast_channel *chan, struct ast_format *format)
Sets write format on channel chan.
Definition: channel.c:5771
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:2973
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:5789
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:1104
fsread_res
Definition: file.c:962
@ FSREAD_FAILURE
Definition: file.c:963
@ FSREAD_SUCCESS_SCHED
Definition: file.c:964
@ FSREAD_SUCCESS_NOSCHED
Definition: file.c:965
static int filehelper(const char *filename, const void *arg2, const char *fmt, const enum file_action action)
Definition: file.c:560
int ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd, int cmdfd)
Definition: file.c:1883
int ast_streamfile(struct ast_channel *chan, const char *filename, const char *preflang)
Streams a file.
Definition: file.c:1312
int ast_file_fdtemp(const char *path, char **filename, const char *template_name)
Create a temporary file located at path.
Definition: file.c:203
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:856
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:861
int ast_language_is_prefix
The following variable controls the layout of localized sound files. If 0, use the historical layout ...
Definition: file.c:68
struct ast_frame * ast_readframe(struct ast_filestream *s)
Read a frame from a filestream.
Definition: file.c:955
int ast_stopstream(struct ast_channel *tmp)
Stops a stream.
Definition: file.c:223
int ast_writestream(struct ast_filestream *fs, struct ast_frame *f)
Writes a frame to a stream.
Definition: file.c:255
int ast_seekstream(struct ast_filestream *fs, off_t sample_offset, int whence)
Seeks into stream.
Definition: file.c:1094
static int ast_fsread_video(const void *data)
Definition: file.c:1063
wrap_fn
Definition: file.c:512
@ WRAP_OPEN
Definition: file.c:512
@ WRAP_REWRITE
Definition: file.c:512
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:1843
static char * handle_cli_core_show_file_formats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
Definition: file.c:2004
int ast_format_def_unregister(const char *name)
Unregisters a file format.
Definition: file.c:163
static void file_shutdown(void)
Definition: file.c:2078
int ast_stream_rewind(struct ast_filestream *fs, off_t ms)
Rewind stream ms.
Definition: file.c:1119
static int sanitize_waitstream_return(int return_value)
Definition: file.c:1857
int ast_applystream(struct ast_channel *chan, struct ast_filestream *s)
Applies a open stream to a channel.
Definition: file.c:1076
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:1293
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:1405
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:867
static struct ast_json * json_array_from_list(const char *list, const char *sep)
Definition: file.c:75
FILE * ast_file_mkftemp(char *template_name, mode_t mode)
same as mkstemp, but return a FILE
Definition: file.c:188
static void filestream_destructor(void *arg)
Definition: file.c:429
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:2040
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:360
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:1605
static int type_in_list(const char *list, const char *type, int(*cmp)(const char *s1, const char *s2))
Definition: file.c:384
int ast_filerename(const char *filename, const char *filename2, const char *fmt)
Renames a file.
Definition: file.c:1165
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:1457
static void filestream_close(struct ast_filestream *f)
Definition: file.c:403
file_action
Definition: file.c:541
@ ACTION_OPEN
Definition: file.c:545
@ ACTION_EXISTS
Definition: file.c:542
@ ACTION_COPY
Definition: file.c:546
@ ACTION_DELETE
Definition: file.c:543
@ ACTION_RENAME
Definition: file.c:544
static struct ast_filestream * openstream_internal(struct ast_channel *chan, const char *filename, const char *preflang, int asis, int quiet)
Definition: file.c:801
static int copy(const char *infile, const char *outfile)
Definition: file.c:317
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:1912
static int is_remote_path(const char *filename)
Definition: file.c:691
static int ast_fsread_audio(const void *data)
Definition: file.c:1018
static ast_mutex_t read_dirs_lock
Lock to hold when iterating over directories.
Definition: file.c:1290
static int __ast_file_read_dirs(const char *path, ast_file_on_file on_file, void *obj, int max_depth)
Definition: file.c:1175
char * ast_format_str_reduce(char *fmts)
Definition: file.c:1928
int ast_truncstream(struct ast_filestream *fs)
Trunc stream at current location.
Definition: file.c:1099
static enum fsread_res ast_readaudio_callback(struct ast_filestream *s)
Definition: file.c:970
STASIS_MESSAGE_TYPE_DEFN(ast_format_register_type)
static int is_absolute_path(const char *filename)
Definition: file.c:686
int ast_ratestream(struct ast_filestream *fs)
Return the sample rate of the stream's format.
Definition: file.c:1109
int ast_closestream(struct ast_filestream *f)
Closes a stream.
Definition: file.c:1130
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:1647
int ast_fileexists(const char *filename, const char *fmt, const char *preflang)
Checks for the existence of a given file.
Definition: file.c:1148
static struct ast_cli_entry cli_file[]
Definition: file.c:2074
static int open_wrapper(struct ast_filestream *s)
Definition: file.c:536
int ast_stream_fastforward(struct ast_filestream *fs, off_t ms)
Fast forward stream ms.
Definition: file.c:1114
static int fn_wrapper(struct ast_filestream *s, const char *comment, enum wrap_fn mode)
Definition: file.c:514
#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:752
static int rewrite_wrapper(struct ast_filestream *s, const char *comment)
Definition: file.c:531
static struct ast_filestream * get_filestream(struct ast_format_def *fmt, FILE *bfile)
Definition: file.c:474
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:702
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:2053
#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:1832
int ast_playstream(struct ast_filestream *s)
Play a open stream on a channel.
Definition: file.c:1082
#define exts_compare(list, type)
Definition: file.c:397
int ast_filedelete(const char *filename, const char *fmt)
Deletes a file.
Definition: file.c:1160
static struct ast_frame * read_frame(struct ast_filestream *s, int *whennext)
Definition: file.c:930
static int publish_format_update(const struct ast_format_def *f, struct stasis_message_type *type)
Definition: file.c:94
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:1893
int ast_file_init(void)
Definition: file.c:2085
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:125
static enum fsread_res ast_readvideo_callback(struct ast_filestream *s)
Definition: file.c:1033
int ast_filecopy(const char *filename, const char *filename2, const char *fmt)
Copies a file.
Definition: file.c:1170
int ast_waitstream(struct ast_channel *c, const char *breakon)
Waits for a stream to stop or digit to be pressed.
Definition: file.c:1874
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:197
#define SCOPED_RDLOCK(varname, lock)
scoped lock specialization for read locks
Definition: lock.h:601
#define ast_mutex_lock(a)
Definition: lock.h:196
#define AST_MUTEX_DEFINE_STATIC(mutex)
Definition: lock.h:527
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:97
#define ast_opt_cache_record_files
Definition: options.h:130
#define ast_opt_sounds_search_custom
Definition: options.h:148
Asterisk file paths, configured in asterisk.conf.
const char * ast_config_AST_DATA_DIR
Definition: options.c:159
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:4196
#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_format_def::@244 list
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
Definition of a media format.
Definition: format.c:43
struct ast_format * format
Data structure associated with a single frame of data.
struct ast_frame_subclass subclass
enum ast_frame_type frametype
union ast_frame::@231 data
const char * src
Abstract JSON element (object, array, string, int, ...).
Support for dynamic strings.
Definition: strings.h:623
Definition: file.c:70
ast_rwlock_t lock
Definition: file.c:70
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:978
#define ast_assert(a)
Definition: utils.h:776
int ast_mkdir(const char *path, int mode)
Recursively create directory path.
Definition: utils.c:2515
#define ARRAY_LEN(a)
Definition: utils.h:703