2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
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.
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.
21 * \brief Generic File Format Support.
23 * \author Mark Spencer <markster@digium.com>
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
33 #include "asterisk/_private.h" /* declare ast_file_init() */
34 #include "asterisk/paths.h" /* use ast_config_AST_DATA_DIR */
35 #include "asterisk/mod_format.h"
36 #include "asterisk/cli.h"
37 #include "asterisk/channel.h"
38 #include "asterisk/sched.h"
39 #include "asterisk/translate.h"
40 #include "asterisk/utils.h"
41 #include "asterisk/lock.h"
42 #include "asterisk/app.h"
43 #include "asterisk/pbx.h"
44 #include "asterisk/linkedlists.h"
45 #include "asterisk/module.h"
48 * The following variable controls the layout of localized sound files.
49 * If 0, use the historical layout with prefix just before the filename
50 * (i.e. digits/en/1.gsm , digits/it/1.gsm or default to digits/1.gsm),
51 * if 1 put the prefix at the beginning of the filename
52 * (i.e. en/digits/1.gsm, it/digits/1.gsm or default to digits/1.gsm).
53 * The latter permits a language to be entirely in one directory.
55 int ast_language_is_prefix = 1;
57 static AST_RWLIST_HEAD_STATIC(formats, ast_format);
59 int __ast_format_register(const struct ast_format *f, struct ast_module *mod)
61 struct ast_format *tmp;
63 AST_RWLIST_WRLOCK(&formats);
64 AST_RWLIST_TRAVERSE(&formats, tmp, list) {
65 if (!strcasecmp(f->name, tmp->name)) {
66 AST_RWLIST_UNLOCK(&formats);
67 ast_log(LOG_WARNING, "Tried to register '%s' format, already registered\n", f->name);
71 if (!(tmp = ast_calloc(1, sizeof(*tmp)))) {
72 AST_RWLIST_UNLOCK(&formats);
79 * Align buf_size properly, rounding up to the machine-specific
80 * alignment for pointers.
82 struct _test_align { void *a, *b; } p;
83 int align = (char *)&p.b - (char *)&p.a;
84 tmp->buf_size = ((f->buf_size + align - 1)/align)*align;
87 memset(&tmp->list, 0, sizeof(tmp->list));
89 AST_RWLIST_INSERT_HEAD(&formats, tmp, list);
90 AST_RWLIST_UNLOCK(&formats);
91 ast_verb(2, "Registered file format %s, extension(s) %s\n", f->name, f->exts);
96 int ast_format_unregister(const char *name)
98 struct ast_format *tmp;
101 AST_RWLIST_WRLOCK(&formats);
102 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&formats, tmp, list) {
103 if (!strcasecmp(name, tmp->name)) {
104 AST_RWLIST_REMOVE_CURRENT(list);
109 AST_RWLIST_TRAVERSE_SAFE_END;
110 AST_RWLIST_UNLOCK(&formats);
113 ast_verb(2, "Unregistered format %s\n", name);
115 ast_log(LOG_WARNING, "Tried to unregister format %s, already unregistered\n", name);
120 int ast_stopstream(struct ast_channel *tmp)
122 ast_channel_lock(tmp);
124 /* Stop a running stream if there is one */
126 ast_closestream(tmp->stream);
128 if (tmp->oldwriteformat && ast_set_write_format(tmp, tmp->oldwriteformat))
129 ast_log(LOG_WARNING, "Unable to restore format back to %d\n", tmp->oldwriteformat);
131 /* Stop the video stream too */
132 if (tmp->vstream != NULL) {
133 ast_closestream(tmp->vstream);
137 ast_channel_unlock(tmp);
142 int ast_writestream(struct ast_filestream *fs, struct ast_frame *f)
146 if (f->frametype == AST_FRAME_VIDEO) {
147 if (fs->fmt->format & AST_FORMAT_AUDIO_MASK) {
148 /* This is the audio portion. Call the video one... */
149 if (!fs->vfs && fs->filename) {
150 const char *type = ast_getformatname(f->subclass & ~0x1);
151 fs->vfs = ast_writefile(fs->filename, type, NULL, fs->flags, 0, fs->mode);
152 ast_debug(1, "Opened video output file\n");
155 return ast_writestream(fs->vfs, f);
159 /* Might / might not have mark set */
162 } else if (f->frametype != AST_FRAME_VOICE) {
163 ast_log(LOG_WARNING, "Tried to write non-voice frame\n");
166 if (((fs->fmt->format | alt) & f->subclass) == f->subclass) {
167 res = fs->fmt->write(fs, f);
169 ast_log(LOG_WARNING, "Natural write failed\n");
171 ast_log(LOG_WARNING, "Huh??\n");
173 /* XXX If they try to send us a type of frame that isn't the normal frame, and isn't
174 the one we've setup a translator for, we do the "wrong thing" XXX */
175 if (fs->trans && f->subclass != fs->lastwriteformat) {
176 ast_translator_free_path(fs->trans);
180 fs->trans = ast_translator_build_path(fs->fmt->format, f->subclass);
182 ast_log(LOG_WARNING, "Unable to translate to format %s, source format %s\n",
183 fs->fmt->name, ast_getformatname(f->subclass));
185 struct ast_frame *trf;
186 fs->lastwriteformat = f->subclass;
187 /* Get the translated frame but don't consume the original in case they're using it on another stream */
188 trf = ast_translate(fs->trans, f, 0);
190 res = fs->fmt->write(fs, trf);
192 ast_log(LOG_WARNING, "Translated frame write failed\n");
200 static int copy(const char *infile, const char *outfile)
203 char buf[4096]; /* XXX make it lerger. */
205 if ((ifd = open(infile, O_RDONLY)) < 0) {
206 ast_log(LOG_WARNING, "Unable to open %s in read-only mode\n", infile);
209 if ((ofd = open(outfile, O_WRONLY | O_TRUNC | O_CREAT, AST_FILE_MODE)) < 0) {
210 ast_log(LOG_WARNING, "Unable to open %s in write-only mode\n", outfile);
214 while ( (len = read(ifd, buf, sizeof(buf)) ) ) {
217 ast_log(LOG_WARNING, "Read failed on %s: %s\n", infile, strerror(errno));
220 /* XXX handle partial writes */
221 res = write(ofd, buf, len);
223 ast_log(LOG_WARNING, "Write failed on %s (%d of %d): %s\n", outfile, res, len, strerror(errno));
224 len = -1; /* error marker */
232 return -1; /* error */
234 return 0; /* success */
238 * \brief construct a filename. Absolute pathnames are preserved,
239 * relative names are prefixed by the sounds/ directory.
240 * The wav49 suffix is replaced by 'WAV'.
241 * Returns a malloc'ed string to be freed by the caller.
243 static char *build_filename(const char *filename, const char *ext)
247 if (!strcmp(ext, "wav49"))
250 if (filename[0] == '/')
251 asprintf(&fn, "%s.%s", filename, ext);
253 asprintf(&fn, "%s/sounds/%s.%s",
254 ast_config_AST_DATA_DIR, filename, ext);
258 /* compare type against the list 'exts' */
259 /* XXX need a better algorithm */
260 static int exts_compare(const char *exts, const char *type)
263 char *stringp = tmp, *ext;
265 ast_copy_string(tmp, exts, sizeof(tmp));
266 while ((ext = strsep(&stringp, "|"))) {
267 if (!strcmp(ext, type))
274 static struct ast_filestream *get_filestream(struct ast_format *fmt, FILE *bfile)
276 struct ast_filestream *s;
278 int l = sizeof(*s) + fmt->buf_size + fmt->desc_size; /* total allocation size */
279 if ( (s = ast_calloc(1, l)) == NULL)
285 s->private = ((char *)(s+1)) + fmt->buf_size;
287 s->buf = (char *)(s+1);
288 s->fr.src = fmt->name;
293 * Default implementations of open and rewrite.
294 * Only use them if you don't have expensive stuff to do.
296 enum wrap_fn { WRAP_OPEN, WRAP_REWRITE };
298 static int fn_wrapper(struct ast_filestream *s, const char *comment, enum wrap_fn mode)
300 struct ast_format *f = s->fmt;
303 if (mode == WRAP_OPEN && f->open && f->open(s))
304 ast_log(LOG_WARNING, "Unable to open format %s\n", f->name);
305 else if (mode == WRAP_REWRITE && f->rewrite && f->rewrite(s, comment))
306 ast_log(LOG_WARNING, "Unable to rewrite format %s\n", f->name);
308 /* preliminary checks succeed. update usecount */
309 ast_module_ref(f->module);
315 static int rewrite_wrapper(struct ast_filestream *s, const char *comment)
317 return fn_wrapper(s, comment, WRAP_REWRITE);
320 static int open_wrapper(struct ast_filestream *s)
322 return fn_wrapper(s, NULL, WRAP_OPEN);
326 ACTION_EXISTS = 1, /* return matching format if file exists, 0 otherwise */
327 ACTION_DELETE, /* delete file, return 0 on success, -1 on error */
328 ACTION_RENAME, /* rename file. return 0 on success, -1 on error */
330 ACTION_COPY /* copy file. return 0 on success, -1 on error */
334 * \brief perform various actions on a file. Second argument
335 * arg2 depends on the command:
336 * unused for EXISTS and DELETE
337 * destination file name (const char *) for COPY and RENAME
338 * struct ast_channel * for OPEN
339 * if fmt is NULL, OPEN will return the first matching entry,
340 * whereas other functions will run on all matching entries.
342 static int ast_filehelper(const char *filename, const void *arg2, const char *fmt, const enum file_action action)
344 struct ast_format *f;
345 int res = (action == ACTION_EXISTS) ? 0 : -1;
347 AST_RWLIST_RDLOCK(&formats);
348 /* Check for a specific format */
349 AST_RWLIST_TRAVERSE(&formats, f, list) {
350 char *stringp, *ext = NULL;
352 if (fmt && !exts_compare(f->exts, fmt))
355 /* Look for a file matching the supported extensions.
356 * The file must exist, and for OPEN, must match
357 * one of the formats supported by the channel.
359 stringp = ast_strdupa(f->exts); /* this is in the stack so does not need to be freed */
360 while ( (ext = strsep(&stringp, "|")) ) {
362 char *fn = build_filename(filename, ext);
367 if ( stat(fn, &st) ) { /* file not existent */
371 /* for 'OPEN' we need to be sure that the format matches
372 * what the channel can process
374 if (action == ACTION_OPEN) {
375 struct ast_channel *chan = (struct ast_channel *)arg2;
377 struct ast_filestream *s;
379 if ( !(chan->writeformat & f->format) &&
380 !(f->format & AST_FORMAT_AUDIO_MASK && fmt)) {
382 continue; /* not a supported format */
384 if ( (bfile = fopen(fn, "r")) == NULL) {
386 continue; /* cannot open file */
388 s = get_filestream(f, bfile);
391 ast_free(fn); /* cannot allocate descriptor */
394 if (open_wrapper(s)) {
398 continue; /* cannot run open on file */
400 /* ok this is good for OPEN */
406 if (s->fmt->format & AST_FORMAT_AUDIO_MASK) {
408 ast_closestream(chan->stream);
412 ast_closestream(chan->vstream);
420 break; /* will never get here */
422 case ACTION_EXISTS: /* return the matching format */
427 if ( (res = unlink(fn)) )
428 ast_log(LOG_WARNING, "unlink(%s) failed: %s\n", fn, strerror(errno));
433 char *nfn = build_filename((const char *)arg2, ext);
435 ast_log(LOG_WARNING, "Out of memory\n");
437 res = action == ACTION_COPY ? copy(fn, nfn) : rename(fn, nfn);
439 ast_log(LOG_WARNING, "%s(%s,%s) failed: %s\n",
440 action == ACTION_COPY ? "copy" : "rename",
441 fn, nfn, strerror(errno));
448 ast_log(LOG_WARNING, "Unknown helper %d\n", action);
453 AST_RWLIST_UNLOCK(&formats);
458 * \brief helper routine to locate a file with a given format
459 * and language preference.
460 * Try preflang, preflang with stripped '_' suffix, or NULL.
461 * In the standard asterisk, language goes just before the last component.
462 * In an alternative configuration, the language should be a prefix
463 * to the actual filename.
465 * The last parameter(s) point to a buffer of sufficient size,
466 * which on success is filled with the matching filename.
468 static int fileexists_core(const char *filename, const char *fmt, const char *preflang,
469 char *buf, int buflen)
472 int langlen; /* length of language string */
473 const char *c = strrchr(filename, '/');
474 int offset = c ? c - filename + 1 : 0; /* points right after the last '/' */
476 if (preflang == NULL)
478 langlen = strlen(preflang);
480 if (buflen < langlen + strlen(filename) + 2) {
481 ast_log(LOG_WARNING, "buffer too small\n");
482 buf[0] = '\0'; /* set to empty */
483 buf = alloca(langlen + strlen(filename) + 2); /* room for everything */
489 if (ast_language_is_prefix) { /* new layout */
491 strcpy(buf, preflang);
493 strcpy(buf + langlen + 1, filename);
495 strcpy(buf, filename); /* first copy the full string */
496 } else { /* old layout */
497 strcpy(buf, filename); /* first copy the full string */
499 /* insert the language and suffix if needed */
500 strcpy(buf + offset, preflang);
501 sprintf(buf + offset + langlen, "/%s", filename + offset);
504 res = ast_filehelper(buf, NULL, fmt, ACTION_EXISTS);
505 if (res > 0) /* found format */
507 if (langlen == 0) /* no more formats */
509 if (preflang[langlen] == '_') /* we are on the local suffix */
510 langlen = 0; /* try again with no language */
512 langlen = (c = strchr(preflang, '_')) ? c - preflang : 0;
517 struct ast_filestream *ast_openstream(struct ast_channel *chan, const char *filename, const char *preflang)
519 return ast_openstream_full(chan, filename, preflang, 0);
522 struct ast_filestream *ast_openstream_full(struct ast_channel *chan, const char *filename, const char *preflang, int asis)
525 * Use fileexists_core() to find a file in a compatible
526 * language and format, set up a suitable translator,
527 * and open the stream.
529 int fmts, res, buflen;
533 /* do this first, otherwise we detect the wrong writeformat */
534 ast_stopstream(chan);
536 ast_deactivate_generator(chan);
538 if (preflang == NULL)
540 buflen = strlen(preflang) + strlen(filename) + 2;
541 buf = alloca(buflen);
544 fmts = fileexists_core(filename, NULL, preflang, buf, buflen);
546 fmts &= AST_FORMAT_AUDIO_MASK;
548 ast_log(LOG_WARNING, "File %s does not exist in any format\n", filename);
551 chan->oldwriteformat = chan->writeformat;
552 /* Set the channel to a format we can work with */
553 res = ast_set_write_format(chan, fmts);
554 res = ast_filehelper(buf, chan, NULL, ACTION_OPEN);
560 struct ast_filestream *ast_openvstream(struct ast_channel *chan, const char *filename, const char *preflang)
562 /* As above, but for video. But here we don't have translators
563 * so we must enforce a format.
569 if (preflang == NULL)
571 buflen = strlen(preflang) + strlen(filename) + 2;
572 buf = alloca(buflen);
576 for (format = AST_FORMAT_AUDIO_MASK + 1; format <= AST_FORMAT_VIDEO_MASK; format = format << 1) {
580 if (!(chan->nativeformats & format))
582 fmt = ast_getformatname(format);
583 if ( fileexists_core(filename, fmt, preflang, buf, buflen) < 1) /* no valid format */
585 fd = ast_filehelper(buf, chan, fmt, ACTION_OPEN);
587 return chan->vstream;
588 ast_log(LOG_WARNING, "File %s has video but couldn't be opened\n", filename);
593 struct ast_frame *ast_readframe(struct ast_filestream *s)
595 struct ast_frame *f = NULL;
598 f = s->fmt->read(s, &whennext);
604 FSREAD_SUCCESS_SCHED,
605 FSREAD_SUCCESS_NOSCHED,
608 static int ast_fsread_audio(const void *data);
610 static enum fsread_res ast_readaudio_callback(struct ast_filestream *s)
615 struct ast_frame *fr;
617 if (s->orig_chan_name && strcasecmp(s->owner->name, s->orig_chan_name))
620 fr = s->fmt->read(s, &whennext);
621 if (!fr /* stream complete */ || ast_write(s->owner, fr) /* error writing */) {
623 ast_log(LOG_WARNING, "Failed to write frame\n");
627 if (whennext != s->lasttimeout) {
629 if (s->owner->timingfd > -1)
630 ast_settimeout(s->owner, whennext, ast_fsread_audio, s);
633 s->owner->streamid = ast_sched_add(s->owner->sched, whennext/8, ast_fsread_audio, s);
634 s->lasttimeout = whennext;
635 return FSREAD_SUCCESS_NOSCHED;
637 return FSREAD_SUCCESS_SCHED;
640 s->owner->streamid = -1;
642 ast_settimeout(s->owner, 0, NULL, NULL);
644 return FSREAD_FAILURE;
647 static int ast_fsread_audio(const void *data)
649 struct ast_filestream *fs = (struct ast_filestream *)data;
652 res = ast_readaudio_callback(fs);
654 if (res == FSREAD_SUCCESS_SCHED)
660 static int ast_fsread_video(const void *data);
662 static enum fsread_res ast_readvideo_callback(struct ast_filestream *s)
667 struct ast_frame *fr = s->fmt->read(s, &whennext);
668 if (!fr || ast_write(s->owner, fr)) { /* no stream or error, as above */
670 ast_log(LOG_WARNING, "Failed to write frame\n");
671 s->owner->vstreamid = -1;
672 return FSREAD_FAILURE;
676 if (whennext != s->lasttimeout) {
677 s->owner->vstreamid = ast_sched_add(s->owner->sched, whennext / 8,
678 ast_fsread_video, s);
679 s->lasttimeout = whennext;
680 return FSREAD_SUCCESS_NOSCHED;
683 return FSREAD_SUCCESS_SCHED;
686 static int ast_fsread_video(const void *data)
688 struct ast_filestream *fs = (struct ast_filestream *)data;
691 res = ast_readvideo_callback(fs);
693 if (res == FSREAD_SUCCESS_SCHED)
699 int ast_applystream(struct ast_channel *chan, struct ast_filestream *s)
705 int ast_playstream(struct ast_filestream *s)
709 if (s->fmt->format & AST_FORMAT_AUDIO_MASK)
710 res = ast_readaudio_callback(s);
712 res = ast_readvideo_callback(s);
714 return (res == FSREAD_FAILURE) ? -1 : 0;
717 int ast_seekstream(struct ast_filestream *fs, off_t sample_offset, int whence)
719 return fs->fmt->seek(fs, sample_offset, whence);
722 int ast_truncstream(struct ast_filestream *fs)
724 return fs->fmt->trunc(fs);
727 off_t ast_tellstream(struct ast_filestream *fs)
729 return fs->fmt->tell(fs);
732 int ast_stream_fastforward(struct ast_filestream *fs, off_t ms)
734 return ast_seekstream(fs, ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
737 int ast_stream_rewind(struct ast_filestream *fs, off_t ms)
739 return ast_seekstream(fs, -ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
742 int ast_closestream(struct ast_filestream *f)
746 /* Stop a running stream if there is one */
748 if (f->fmt->format & AST_FORMAT_AUDIO_MASK) {
749 f->owner->stream = NULL;
750 if (f->owner->streamid > -1)
751 ast_sched_del(f->owner->sched, f->owner->streamid);
752 f->owner->streamid = -1;
754 ast_settimeout(f->owner, 0, NULL, NULL);
757 f->owner->vstream = NULL;
758 if (f->owner->vstreamid > -1)
759 ast_sched_del(f->owner->sched, f->owner->vstreamid);
760 f->owner->vstreamid = -1;
763 /* destroy the translator on exit */
765 ast_translator_free_path(f->trans);
767 if (f->realfilename && f->filename) {
768 size = strlen(f->filename) + strlen(f->realfilename) + 15;
771 snprintf(cmd,size,"/bin/mv -f %s %s",f->filename,f->realfilename);
772 ast_safe_system(cmd);
776 ast_free(f->filename);
778 ast_free(f->realfilename);
783 ast_closestream(f->vfs);
784 if (f->orig_chan_name)
785 free((void *) f->orig_chan_name);
786 ast_module_unref(f->fmt->module);
793 * Look the various language-specific places where a file could exist.
795 int ast_fileexists(const char *filename, const char *fmt, const char *preflang)
800 if (preflang == NULL)
802 buflen = strlen(preflang) + strlen(filename) + 2; /* room for everything */
803 buf = alloca(buflen);
806 return fileexists_core(filename, fmt, preflang, buf, buflen);
809 int ast_filedelete(const char *filename, const char *fmt)
811 return ast_filehelper(filename, NULL, fmt, ACTION_DELETE);
814 int ast_filerename(const char *filename, const char *filename2, const char *fmt)
816 return ast_filehelper(filename, filename2, fmt, ACTION_RENAME);
819 int ast_filecopy(const char *filename, const char *filename2, const char *fmt)
821 return ast_filehelper(filename, filename2, fmt, ACTION_COPY);
824 int ast_streamfile(struct ast_channel *chan, const char *filename, const char *preflang)
826 struct ast_filestream *fs;
827 struct ast_filestream *vfs=NULL;
830 fs = ast_openstream(chan, filename, preflang);
832 vfs = ast_openvstream(chan, filename, preflang);
834 ast_debug(1, "Ooh, found a video stream, too, format %s\n", ast_getformatname(vfs->fmt->format));
838 if (ast_test_flag(chan, AST_FLAG_MASQ_NOSTREAM))
839 fs->orig_chan_name = ast_strdup(chan->name);
840 if (ast_applystream(chan, fs))
842 if (vfs && ast_applystream(chan, vfs))
844 res = ast_playstream(fs);
846 res = ast_playstream(vfs);
847 ast_verb(3, "<%s> Playing '%s.%s' (language '%s')\n", chan->name, filename, ast_getformatname(chan->writeformat), preflang ? preflang : "default");
851 ast_log(LOG_WARNING, "Unable to open %s (format %s): %s\n", filename, ast_getformatname_multiple(fmt, sizeof(fmt), chan->nativeformats), strerror(errno));
855 struct ast_filestream *ast_readfile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
858 struct ast_format *f;
859 struct ast_filestream *fs = NULL;
862 AST_RWLIST_RDLOCK(&formats);
864 AST_RWLIST_TRAVERSE(&formats, f, list) {
866 if (!exts_compare(f->exts, type))
869 fn = build_filename(filename, type);
871 bfile = fopen(fn, "r");
872 if (!bfile || (fs = get_filestream(f, bfile)) == NULL ||
874 ast_log(LOG_WARNING, "Unable to open %s\n", fn);
887 fs->filename = ast_strdup(filename);
892 AST_RWLIST_UNLOCK(&formats);
894 ast_log(LOG_WARNING, "No such format '%s'\n", type);
899 struct ast_filestream *ast_writefile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
902 /* compiler claims this variable can be used before initialization... */
904 struct ast_format *f;
905 struct ast_filestream *fs = NULL;
908 int format_found = 0;
910 AST_RWLIST_RDLOCK(&formats);
912 /* set the O_TRUNC flag if and only if there is no O_APPEND specified */
913 /* We really can't use O_APPEND as it will break WAV header updates */
914 if (flags & O_APPEND) {
920 myflags |= O_WRONLY | O_CREAT;
922 /* XXX need to fix this - we should just do the fopen,
923 * not open followed by fdopen()
925 AST_RWLIST_TRAVERSE(&formats, f, list) {
926 char *fn, *orig_fn = NULL;
930 if (!exts_compare(f->exts, type))
935 fn = build_filename(filename, type);
936 fd = open(fn, flags | myflags, mode);
938 /* fdopen() the resulting file stream */
939 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
941 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
947 if (ast_opt_cache_record_files && (fd > -1)) {
950 fclose(bfile); /* this also closes fd */
952 We touch orig_fn just as a place-holder so other things (like vmail) see the file is there.
953 What we are really doing is writing to record_cache_dir until we are done then we will mv the file into place.
955 orig_fn = ast_strdupa(fn);
956 for (c = fn; *c; c++)
960 size = strlen(fn) + strlen(record_cache_dir) + 2;
962 strcpy(buf, record_cache_dir);
967 fd = open(fn, flags | myflags, mode);
969 /* fdopen() the resulting file stream */
970 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
972 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
980 fs = get_filestream(f, bfile);
981 if (!fs || rewrite_wrapper(fs, comment)) {
982 ast_log(LOG_WARNING, "Unable to rewrite %s\n", fn);
998 fs->realfilename = ast_strdup(orig_fn);
999 fs->filename = ast_strdup(fn);
1001 fs->realfilename = NULL;
1002 fs->filename = ast_strdup(filename);
1005 /* If truncated, we'll be at the beginning; if not truncated, then append */
1006 f->seek(fs, 0, SEEK_END);
1007 } else if (errno != EEXIST) {
1008 ast_log(LOG_WARNING, "Unable to open file %s: %s\n", fn, strerror(errno));
1012 /* if buf != NULL then fn is already free and pointing to it */
1017 AST_RWLIST_UNLOCK(&formats);
1020 ast_log(LOG_WARNING, "No such format '%s'\n", type);
1026 * \brief the core of all waitstream() functions
1028 static int waitstream_core(struct ast_channel *c, const char *breakon,
1029 const char *forward, const char *rewind, int skip_ms,
1030 int audiofd, int cmdfd, const char *context)
1032 const char *orig_chan_name = NULL;
1042 /* Switch the channel to end DTMF frame only. waitstream_core doesn't care about the start of DTMF. */
1043 ast_set_flag(c, AST_FLAG_END_DTMF_ONLY);
1045 if (ast_test_flag(c, AST_FLAG_MASQ_NOSTREAM))
1046 orig_chan_name = ast_strdupa(c->name);
1052 if (orig_chan_name && strcasecmp(orig_chan_name, c->name)) {
1058 ms = ast_sched_wait(c->sched);
1060 if (ms < 0 && !c->timingfunc) {
1067 res = ast_waitfor(c, ms);
1069 ast_log(LOG_WARNING, "Select failed (%s)\n", strerror(errno));
1070 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1075 struct ast_channel *rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
1076 if (!rchan && (outfd < 0) && (ms)) {
1080 ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
1081 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1083 } else if (outfd > -1) { /* this requires cmdfd set */
1084 /* The FD we were watching has something waiting */
1085 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1088 /* if rchan is set, it is 'c' */
1089 res = rchan ? 1 : 0; /* map into 'res' values */
1092 struct ast_frame *fr = ast_read(c);
1094 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1097 switch (fr->frametype) {
1098 case AST_FRAME_DTMF_END:
1100 const char exten[2] = { fr->subclass, '\0' };
1101 if (ast_exists_extension(c, context, exten, 1, c->cid.cid_num)) {
1104 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1109 if (strchr(forward,res)) {
1110 ast_stream_fastforward(c->stream, skip_ms);
1111 } else if (strchr(rewind,res)) {
1112 ast_stream_rewind(c->stream, skip_ms);
1113 } else if (strchr(breakon, res)) {
1115 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1120 case AST_FRAME_CONTROL:
1121 switch (fr->subclass) {
1122 case AST_CONTROL_HANGUP:
1123 case AST_CONTROL_BUSY:
1124 case AST_CONTROL_CONGESTION:
1126 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1128 case AST_CONTROL_RINGING:
1129 case AST_CONTROL_ANSWER:
1130 case AST_CONTROL_VIDUPDATE:
1131 case AST_CONTROL_HOLD:
1132 case AST_CONTROL_UNHOLD:
1136 ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", fr->subclass);
1139 case AST_FRAME_VOICE:
1140 /* Write audio if appropriate */
1142 write(audiofd, fr->data, fr->datalen);
1144 /* Ignore all others */
1149 ast_sched_runq(c->sched);
1152 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
1154 return (err || c->_softhangup) ? -1 : 0;
1157 int ast_waitstream_fr(struct ast_channel *c, const char *breakon, const char *forward, const char *rewind, int ms)
1159 return waitstream_core(c, breakon, forward, rewind, ms,
1160 -1 /* no audiofd */, -1 /* no cmdfd */, NULL /* no context */);
1163 int ast_waitstream(struct ast_channel *c, const char *breakon)
1165 return waitstream_core(c, breakon, NULL, NULL, 0, -1, -1, NULL);
1168 int ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd, int cmdfd)
1170 return waitstream_core(c, breakon, NULL, NULL, 0,
1171 audiofd, cmdfd, NULL /* no context */);
1174 int ast_waitstream_exten(struct ast_channel *c, const char *context)
1176 /* Waitstream, with return in the case of a valid 1 digit extension */
1177 /* in the current or specified context being pressed */
1180 context = c->context;
1181 return waitstream_core(c, NULL, NULL, NULL, 0,
1186 * if the file name is non-empty, try to play it.
1187 * Return 0 if success, -1 if error, digit if interrupted by a digit.
1188 * If digits == "" then we can simply check for non-zero.
1190 int ast_stream_and_wait(struct ast_channel *chan, const char *file, const char *digits)
1193 if (!ast_strlen_zero(file)) {
1194 res = ast_streamfile(chan, file, chan->language);
1196 res = ast_waitstream(chan, digits);
1201 static char *handle_cli_core_show_file_formats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1203 #define FORMAT "%-10s %-10s %-20s\n"
1204 #define FORMAT2 "%-10s %-10s %-20s\n"
1205 struct ast_format *f;
1210 e->command = "core show file formats";
1212 "Usage: core show file formats\n"
1213 " Displays currently registered file formats (if any).\n";
1220 return CLI_SHOWUSAGE;
1222 ast_cli(a->fd, FORMAT, "Format", "Name", "Extensions");
1223 ast_cli(a->fd, FORMAT, "------", "----", "----------");
1225 AST_RWLIST_RDLOCK(&formats);
1226 AST_RWLIST_TRAVERSE(&formats, f, list) {
1227 ast_cli(a->fd, FORMAT2, ast_getformatname(f->format), f->name, f->exts);
1230 AST_RWLIST_UNLOCK(&formats);
1231 ast_cli(a->fd, "%d file formats registered.\n", count_fmt);
1237 struct ast_cli_entry cli_file[] = {
1238 AST_CLI_DEFINE(handle_cli_core_show_file_formats, "Displays file formats")
1241 int ast_file_init(void)
1243 ast_cli_register_multiple(cli_file, sizeof(cli_file) / sizeof(struct ast_cli_entry));