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>
26 #include <sys/types.h>
34 #include <sys/types.h>
39 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
41 #include "asterisk/frame.h"
42 #include "asterisk/file.h"
43 #include "asterisk/cli.h"
44 #include "asterisk/logger.h"
45 #include "asterisk/channel.h"
46 #include "asterisk/sched.h"
47 #include "asterisk/options.h"
48 #include "asterisk/translate.h"
49 #include "asterisk/utils.h"
50 #include "asterisk/lock.h"
51 #include "asterisk/app.h"
52 #include "asterisk/pbx.h"
53 #include "asterisk/linkedlists.h"
54 #include "asterisk/module.h" /* ast_update_use_count() */
57 * The following variable controls the layout of localized sound files.
58 * If 0, use the historical layout with prefix just before the filename
59 * (i.e. digits/en/1.gsm , digits/it/1.gsm or default to digits/1.gsm),
60 * if 1 put the prefix at the beginning of the filename
61 * (i.e. en/digits/1.gsm, it/digits/1.gsm or default to digits/1.gsm).
62 * The latter permits a language to be entirely in one directory.
64 int ast_language_is_prefix;
66 static AST_LIST_HEAD_STATIC(formats, ast_format);
68 int ast_format_register(const struct ast_format *f)
70 struct ast_format *tmp;
72 if (f->lockp == NULL) {
73 ast_log(LOG_WARNING, "Missing lock pointer, you need to supply one\n");
76 if (AST_LIST_LOCK(&formats)) {
77 ast_log(LOG_WARNING, "Unable to lock format list\n");
80 AST_LIST_TRAVERSE(&formats, tmp, list) {
81 if (!strcasecmp(f->name, tmp->name)) {
82 AST_LIST_UNLOCK(&formats);
83 ast_log(LOG_WARNING, "Tried to register '%s' format, already registered\n", f->name);
87 tmp = ast_calloc(1, sizeof(struct ast_format));
89 AST_LIST_UNLOCK(&formats);
95 * Align buf_size properly, rounding up to the machine-specific
96 * alignment for pointers.
98 struct _test_align { void *a, *b; } p;
99 int align = (char *)&p.b - (char *)&p.a;
100 tmp->buf_size = ((f->buf_size + align - 1)/align)*align;
103 memset(&tmp->list, 0, sizeof(tmp->list));
104 if (tmp->lockp->usecnt < 0) {
105 ast_mutex_init(&tmp->lockp->lock);
106 tmp->lockp->usecnt = 0;
109 AST_LIST_INSERT_HEAD(&formats, tmp, list);
110 AST_LIST_UNLOCK(&formats);
111 if (option_verbose > 1)
112 ast_verbose( VERBOSE_PREFIX_2 "Registered file format %s, extension(s) %s\n", f->name, f->exts);
116 int ast_format_unregister(const char *name)
118 struct ast_format *tmp;
121 if (AST_LIST_LOCK(&formats)) {
122 ast_log(LOG_WARNING, "Unable to lock format list\n");
125 AST_LIST_TRAVERSE_SAFE_BEGIN(&formats, tmp, list) {
126 if (!strcasecmp(name, tmp->name)) {
127 AST_LIST_REMOVE_CURRENT(&formats, list);
132 AST_LIST_TRAVERSE_SAFE_END
133 AST_LIST_UNLOCK(&formats);
136 if (option_verbose > 1)
137 ast_verbose( VERBOSE_PREFIX_2 "Unregistered format %s\n", name);
139 ast_log(LOG_WARNING, "Tried to unregister format %s, already unregistered\n", name);
144 int ast_stopstream(struct ast_channel *tmp)
146 /* Stop a running stream if there is one */
148 ast_closestream(tmp->stream);
149 if (tmp->oldwriteformat && ast_set_write_format(tmp, tmp->oldwriteformat))
150 ast_log(LOG_WARNING, "Unable to restore format back to %d\n", tmp->oldwriteformat);
155 int ast_writestream(struct ast_filestream *fs, struct ast_frame *f)
159 if (f->frametype == AST_FRAME_VIDEO) {
160 if (fs->fmt->format < AST_FORMAT_MAX_AUDIO) {
161 /* This is the audio portion. Call the video one... */
162 if (!fs->vfs && fs->filename) {
163 const char *type = ast_getformatname(f->subclass & ~0x1);
164 fs->vfs = ast_writefile(fs->filename, type, NULL, fs->flags, 0, fs->mode);
165 ast_log(LOG_DEBUG, "Opened video output file\n");
168 return ast_writestream(fs->vfs, f);
172 /* Might / might not have mark set */
175 } else if (f->frametype != AST_FRAME_VOICE) {
176 ast_log(LOG_WARNING, "Tried to write non-voice frame\n");
179 if (((fs->fmt->format | alt) & f->subclass) == f->subclass) {
180 res = fs->fmt->write(fs, f);
182 ast_log(LOG_WARNING, "Natural write failed\n");
184 ast_log(LOG_WARNING, "Huh??\n");
186 /* XXX If they try to send us a type of frame that isn't the normal frame, and isn't
187 the one we've setup a translator for, we do the "wrong thing" XXX */
188 if (fs->trans && f->subclass != fs->lastwriteformat) {
189 ast_translator_free_path(fs->trans);
193 fs->trans = ast_translator_build_path(fs->fmt->format, f->subclass);
195 ast_log(LOG_WARNING, "Unable to translate to format %s, source format %s\n",
196 fs->fmt->name, ast_getformatname(f->subclass));
198 struct ast_frame *trf;
199 fs->lastwriteformat = f->subclass;
200 /* Get the translated frame but don't consume the original in case they're using it on another stream */
201 trf = ast_translate(fs->trans, f, 0);
203 res = fs->fmt->write(fs, trf);
205 ast_log(LOG_WARNING, "Translated frame write failed\n");
213 static int copy(const char *infile, const char *outfile)
216 char buf[4096]; /* XXX make it lerger. */
218 if ((ifd = open(infile, O_RDONLY)) < 0) {
219 ast_log(LOG_WARNING, "Unable to open %s in read-only mode\n", infile);
222 if ((ofd = open(outfile, O_WRONLY | O_TRUNC | O_CREAT, 0600)) < 0) {
223 ast_log(LOG_WARNING, "Unable to open %s in write-only mode\n", outfile);
227 while ( (len = read(ifd, buf, sizeof(buf)) ) ) {
230 ast_log(LOG_WARNING, "Read failed on %s: %s\n", infile, strerror(errno));
233 /* XXX handle partial writes */
234 res = write(ofd, buf, len);
236 ast_log(LOG_WARNING, "Write failed on %s (%d of %d): %s\n", outfile, res, len, strerror(errno));
237 len = -1; /* error marker */
245 return -1; /* error */
247 return 0; /* success */
251 * \brief construct a filename. Absolute pathnames are preserved,
252 * relative names are prefixed by the sounds/ directory.
253 * The wav49 suffix is replaced by 'WAV'.
254 * Returns a malloc'ed string to be freed by the caller.
256 static char *build_filename(const char *filename, const char *ext)
260 if (!strcmp(ext, "wav49"))
263 if (filename[0] == '/')
264 asprintf(&fn, "%s.%s", filename, ext);
266 asprintf(&fn, "%s/sounds/%s.%s",
267 ast_config_AST_VAR_DIR, filename, ext);
271 /* compare type against the list 'exts' */
272 /* XXX need a better algorithm */
273 static int exts_compare(const char *exts, const char *type)
276 char *stringp = tmp, *ext;
278 ast_copy_string(tmp, exts, sizeof(tmp));
279 while ((ext = strsep(&stringp, "|"))) {
280 if (!strcmp(ext, type))
287 static struct ast_filestream *get_filestream(struct ast_format *fmt, FILE *bfile)
289 struct ast_filestream *s;
291 int l = sizeof(*s) + fmt->buf_size + fmt->desc_size; /* total allocation size */
292 if ( (s = ast_calloc(1, l)) == NULL)
298 s->private = ((char *)(s+1)) + fmt->buf_size;
300 s->buf = (char *)(s+1);
301 s->fr.src = fmt->name;
306 * Default implementations of open and rewrite.
307 * Only use them if you don't have expensive stuff to do.
309 enum wrap_fn { WRAP_OPEN, WRAP_REWRITE };
311 static int fn_wrapper(struct ast_filestream *s, const char *comment, enum wrap_fn mode)
313 struct ast_format *f = s->fmt;
316 if (mode == WRAP_OPEN && f->open && f->open(s))
317 ast_log(LOG_WARNING, "Unable to open format %s\n", f->name);
318 else if (mode == WRAP_REWRITE && f->rewrite && f->rewrite(s, comment))
319 ast_log(LOG_WARNING, "Unable to rewrite format %s\n", f->name);
321 /* preliminary checks succeed. update usecount */
322 if (ast_mutex_lock(&f->lockp->lock)) {
323 ast_log(LOG_WARNING, "Unable to lock format %s\n", f->name);
327 ast_mutex_unlock(&f->lockp->lock);
329 ast_update_use_count();
334 static int rewrite_wrapper(struct ast_filestream *s, const char *comment)
336 return fn_wrapper(s, comment, WRAP_REWRITE);
339 static int open_wrapper(struct ast_filestream *s)
341 return fn_wrapper(s, NULL, WRAP_OPEN);
345 ACTION_EXISTS = 1, /* return matching format if file exists, 0 otherwise */
346 ACTION_DELETE, /* delete file, return 0 on success, -1 on error */
347 ACTION_RENAME, /* rename file. return 0 on success, -1 on error */
349 ACTION_COPY /* copy file. return 0 on success, -1 on error */
353 * \brief perform various actions on a file. Second argument
354 * arg2 depends on the command:
355 * unused for EXISTS and DELETE
356 * destination file name (const char *) for COPY and RENAME
357 * struct ast_channel * for OPEN
358 * if fmt is NULL, OPEN will return the first matching entry,
359 * whereas other functions will run on all matching entries.
361 static int ast_filehelper(const char *filename, const void *arg2, const char *fmt, const enum file_action action)
363 struct ast_format *f;
364 int res = (action == ACTION_EXISTS) ? 0 : -1;
366 if (AST_LIST_LOCK(&formats)) {
367 ast_log(LOG_WARNING, "Unable to lock format list\n");
370 /* Check for a specific format */
371 AST_LIST_TRAVERSE(&formats, f, list) {
372 char *stringp, *ext = NULL;
374 if (fmt && !exts_compare(f->exts, fmt))
377 /* Look for a file matching the supported extensions.
378 * The file must exist, and for OPEN, must match
379 * one of the formats supported by the channel.
381 stringp = ast_strdupa(f->exts); /* this is in the stack so does not need to be freed */
382 while ( (ext = strsep(&stringp, "|")) ) {
384 char *fn = build_filename(filename, ext);
389 if ( stat(fn, &st) ) { /* file not existent */
393 /* for 'OPEN' we need to be sure that the format matches
394 * what the channel can process
396 if (action == ACTION_OPEN) {
397 struct ast_channel *chan = (struct ast_channel *)arg2;
399 struct ast_filestream *s;
401 if ( !(chan->writeformat & f->format) &&
402 !(f->format >= AST_FORMAT_MAX_AUDIO && fmt)) {
404 continue; /* not a supported format */
406 if ( (bfile = fopen(fn, "r")) == NULL) {
408 continue; /* cannot open file */
410 s = get_filestream(f, bfile);
413 free(fn); /* cannot allocate descriptor */
416 if (open_wrapper(s)) {
420 continue; /* cannot run open on file */
422 /* ok this is good for OPEN */
428 if (s->fmt->format < AST_FORMAT_MAX_AUDIO)
436 break; /* will never get here */
438 case ACTION_EXISTS: /* return the matching format */
443 if ( (res = unlink(fn)) )
444 ast_log(LOG_WARNING, "unlink(%s) failed: %s\n", fn, strerror(errno));
449 char *nfn = build_filename((const char *)arg2, ext);
451 ast_log(LOG_WARNING, "Out of memory\n");
453 res = action == ACTION_COPY ? copy(fn, nfn) : rename(fn, nfn);
455 ast_log(LOG_WARNING, "%s(%s,%s) failed: %s\n",
456 action == ACTION_COPY ? "copy" : "rename",
457 fn, nfn, strerror(errno));
464 ast_log(LOG_WARNING, "Unknown helper %d\n", action);
469 AST_LIST_UNLOCK(&formats);
474 * \brief helper routine to locate a file with a given format
475 * and language preference.
476 * Try preflang, preflang with stripped '_' suffix, or NULL.
477 * In the standard asterisk, language goes just before the last component.
478 * In an alternative configuration, the language should be a prefix
479 * to the actual filename.
481 * The last parameter(s) point to a buffer of sufficient size,
482 * which on success is filled with the matching filename.
484 static int fileexists_core(const char *filename, const char *fmt, const char *preflang,
485 char *buf, int buflen)
488 int langlen; /* length of language string */
489 const char *c = strrchr(filename, '/');
490 int offset = c ? c - filename + 1 : 0; /* points right after the last '/' */
492 if (preflang == NULL)
494 langlen = strlen(preflang);
496 if (buflen < langlen + strlen(filename) + 2) {
497 ast_log(LOG_WARNING, "buffer too small\n");
498 buf[0] = '\0'; /* set to empty */
499 buf = alloca(langlen + strlen(filename) + 2); /* room for everything */
505 if (ast_language_is_prefix) { /* new layout */
507 strcpy(buf, preflang);
509 strcpy(buf + langlen + 1, filename);
511 strcpy(buf, filename); /* first copy the full string */
512 } else { /* old layout */
513 strcpy(buf, filename); /* first copy the full string */
515 /* insert the language and suffix if needed */
516 strcpy(buf + offset, preflang);
517 sprintf(buf + offset + langlen, "/%s", filename + offset);
520 res = ast_filehelper(buf, NULL, fmt, ACTION_EXISTS);
521 if (res > 0) /* found format */
523 if (langlen == 0) /* no more formats */
525 if (preflang[langlen] == '_') /* we are on the local suffix */
526 langlen = 0; /* try again with no language */
528 langlen = (c = strchr(preflang, '_')) ? c - preflang : 0;
533 struct ast_filestream *ast_openstream(struct ast_channel *chan, const char *filename, const char *preflang)
535 return ast_openstream_full(chan, filename, preflang, 0);
538 struct ast_filestream *ast_openstream_full(struct ast_channel *chan, const char *filename, const char *preflang, int asis)
541 * Use fileexists_core() to find a file in a compatible
542 * language and format, set up a suitable translator,
543 * and open the stream.
545 int fmts, res, buflen;
549 /* do this first, otherwise we detect the wrong writeformat */
550 ast_stopstream(chan);
552 ast_deactivate_generator(chan);
554 if (preflang == NULL)
556 buflen = strlen(preflang) + strlen(filename) + 2;
557 buf = alloca(buflen);
560 fmts = fileexists_core(filename, NULL, preflang, buf, buflen);
562 fmts &= AST_FORMAT_AUDIO_MASK;
564 ast_log(LOG_WARNING, "File %s does not exist in any format\n", filename);
567 chan->oldwriteformat = chan->writeformat;
568 /* Set the channel to a format we can work with */
569 res = ast_set_write_format(chan, fmts);
570 res = ast_filehelper(buf, chan, NULL, ACTION_OPEN);
576 struct ast_filestream *ast_openvstream(struct ast_channel *chan, const char *filename, const char *preflang)
578 /* As above, but for video. But here we don't have translators
579 * so we must enforce a format.
585 if (preflang == NULL)
587 buflen = strlen(preflang) + strlen(filename) + 2;
588 buf = alloca(buflen);
592 for (format = AST_FORMAT_MAX_AUDIO << 1; format <= AST_FORMAT_MAX_VIDEO; format = format << 1) {
596 if (!(chan->nativeformats & format))
598 fmt = ast_getformatname(format);
599 if ( fileexists_core(filename, fmt, preflang, buf, buflen) < 1) /* no valid format */
601 fd = ast_filehelper(buf, chan, fmt, ACTION_OPEN);
603 return chan->vstream;
604 ast_log(LOG_WARNING, "File %s has video but couldn't be opened\n", filename);
609 struct ast_frame *ast_readframe(struct ast_filestream *s)
611 struct ast_frame *f = NULL;
614 f = s->fmt->read(s, &whennext);
618 static int ast_readaudio_callback(void *data)
620 struct ast_filestream *s = data;
624 struct ast_frame *fr = s->fmt->read(s, &whennext);
625 if (!fr /* stream complete */ || ast_write(s->owner, fr) /* error writing */) {
627 ast_log(LOG_WARNING, "Failed to write frame\n");
628 s->owner->streamid = -1;
629 #ifdef ZAPTEL_OPTIMIZATIONS
630 ast_settimeout(s->owner, 0, NULL, NULL);
635 if (whennext != s->lasttimeout) {
636 #ifdef ZAPTEL_OPTIMIZATIONS
637 if (s->owner->timingfd > -1)
638 ast_settimeout(s->owner, whennext, ast_readaudio_callback, s);
641 s->owner->streamid = ast_sched_add(s->owner->sched, whennext/8, ast_readaudio_callback, s);
642 s->lasttimeout = whennext;
648 static int ast_readvideo_callback(void *data)
650 struct ast_filestream *s = data;
654 struct ast_frame *fr = s->fmt->read(s, &whennext);
655 if (!fr || ast_write(s->owner, fr)) { /* no stream or error, as above */
657 ast_log(LOG_WARNING, "Failed to write frame\n");
658 s->owner->vstreamid = -1;
662 if (whennext != s->lasttimeout) {
663 s->owner->vstreamid = ast_sched_add(s->owner->sched, whennext/8, ast_readvideo_callback, s);
664 s->lasttimeout = whennext;
670 int ast_applystream(struct ast_channel *chan, struct ast_filestream *s)
676 int ast_playstream(struct ast_filestream *s)
678 if (s->fmt->format < AST_FORMAT_MAX_AUDIO)
679 ast_readaudio_callback(s);
681 ast_readvideo_callback(s);
685 int ast_seekstream(struct ast_filestream *fs, off_t sample_offset, int whence)
687 return fs->fmt->seek(fs, sample_offset, whence);
690 int ast_truncstream(struct ast_filestream *fs)
692 return fs->fmt->trunc(fs);
695 off_t ast_tellstream(struct ast_filestream *fs)
697 return fs->fmt->tell(fs);
700 int ast_stream_fastforward(struct ast_filestream *fs, off_t ms)
702 return ast_seekstream(fs, ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
705 int ast_stream_rewind(struct ast_filestream *fs, off_t ms)
707 return ast_seekstream(fs, -ms * DEFAULT_SAMPLES_PER_MS, SEEK_CUR);
710 int ast_closestream(struct ast_filestream *f)
714 /* Stop a running stream if there is one */
716 if (f->fmt->format < AST_FORMAT_MAX_AUDIO) {
717 f->owner->stream = NULL;
718 if (f->owner->streamid > -1)
719 ast_sched_del(f->owner->sched, f->owner->streamid);
720 f->owner->streamid = -1;
721 #ifdef ZAPTEL_OPTIMIZATIONS
722 ast_settimeout(f->owner, 0, NULL, NULL);
725 f->owner->vstream = NULL;
726 if (f->owner->vstreamid > -1)
727 ast_sched_del(f->owner->sched, f->owner->vstreamid);
728 f->owner->vstreamid = -1;
731 /* destroy the translator on exit */
733 ast_translator_free_path(f->trans);
735 if (f->realfilename && f->filename) {
736 size = strlen(f->filename) + strlen(f->realfilename) + 15;
739 snprintf(cmd,size,"/bin/mv -f %s %s",f->filename,f->realfilename);
740 ast_safe_system(cmd);
746 free(f->realfilename);
751 ast_closestream(f->vfs);
752 if (ast_mutex_lock(&f->fmt->lockp->lock)) {
753 ast_log(LOG_WARNING, "Unable to lock format %s\n", f->fmt->name);
755 f->fmt->lockp->usecnt--;
756 ast_mutex_unlock(&f->fmt->lockp->lock);
757 ast_update_use_count();
765 * Look the various language-specific places where a file could exist.
767 int ast_fileexists(const char *filename, const char *fmt, const char *preflang)
772 if (preflang == NULL)
774 buflen = strlen(preflang) + strlen(filename) + 2; /* room for everything */
775 buf = alloca(buflen);
778 return fileexists_core(filename, fmt, preflang, buf, buflen);
781 int ast_filedelete(const char *filename, const char *fmt)
783 return ast_filehelper(filename, NULL, fmt, ACTION_DELETE);
786 int ast_filerename(const char *filename, const char *filename2, const char *fmt)
788 return ast_filehelper(filename, filename2, fmt, ACTION_RENAME);
791 int ast_filecopy(const char *filename, const char *filename2, const char *fmt)
793 return ast_filehelper(filename, filename2, fmt, ACTION_COPY);
796 int ast_streamfile(struct ast_channel *chan, const char *filename, const char *preflang)
798 struct ast_filestream *fs;
799 struct ast_filestream *vfs=NULL;
802 fs = ast_openstream(chan, filename, preflang);
804 vfs = ast_openvstream(chan, filename, preflang);
806 ast_log(LOG_DEBUG, "Ooh, found a video stream, too, format %s\n", ast_getformatname(vfs->fmt->format));
808 if (ast_applystream(chan, fs))
810 if (vfs && ast_applystream(chan, vfs))
812 if (ast_playstream(fs))
814 if (vfs && ast_playstream(vfs))
817 if (option_verbose > 2)
818 ast_verbose(VERBOSE_PREFIX_3 "Playing '%s' (language '%s')\n", filename, preflang ? preflang : "default");
822 ast_log(LOG_WARNING, "Unable to open %s (format %s): %s\n", filename, ast_getformatname_multiple(fmt, sizeof(fmt), chan->nativeformats), strerror(errno));
826 struct ast_filestream *ast_readfile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
829 struct ast_format *f;
830 struct ast_filestream *fs = NULL;
833 if (AST_LIST_LOCK(&formats)) {
834 ast_log(LOG_WARNING, "Unable to lock format list\n");
838 AST_LIST_TRAVERSE(&formats, f, list) {
840 if (!exts_compare(f->exts, type))
843 fn = build_filename(filename, type);
845 bfile = fopen(fn, "r");
846 if (!bfile || (fs = get_filestream(f, bfile)) == NULL ||
848 ast_log(LOG_WARNING, "Unable to open %s\n", fn);
860 fs->filename = strdup(filename);
865 AST_LIST_UNLOCK(&formats);
867 ast_log(LOG_WARNING, "No such format '%s'\n", type);
872 struct ast_filestream *ast_writefile(const char *filename, const char *type, const char *comment, int flags, int check, mode_t mode)
875 /* compiler claims this variable can be used before initialization... */
877 struct ast_format *f;
878 struct ast_filestream *fs = NULL;
882 if (AST_LIST_LOCK(&formats)) {
883 ast_log(LOG_WARNING, "Unable to lock format list\n");
887 /* set the O_TRUNC flag if and only if there is no O_APPEND specified */
888 /* We really can't use O_APPEND as it will break WAV header updates */
889 if (flags & O_APPEND) {
895 myflags |= O_WRONLY | O_CREAT;
897 /* XXX need to fix this - we should just do the fopen,
898 * not open followed by fdopen()
900 AST_LIST_TRAVERSE(&formats, f, list) {
901 char *fn, *orig_fn = NULL;
905 if (!exts_compare(f->exts, type))
908 fn = build_filename(filename, type);
909 fd = open(fn, flags | myflags, mode);
911 /* fdopen() the resulting file stream */
912 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
914 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
920 if (ast_opt_cache_record_files && (fd > -1)) {
923 fclose(bfile); /* this also closes fd */
925 We touch orig_fn just as a place-holder so other things (like vmail) see the file is there.
926 What we are really doing is writing to record_cache_dir until we are done then we will mv the file into place.
928 orig_fn = ast_strdupa(fn);
929 for (c = fn; *c; c++)
933 size = strlen(fn) + strlen(record_cache_dir) + 2;
935 strcpy(buf, record_cache_dir);
940 fd = open(fn, flags | myflags, mode);
942 /* fdopen() the resulting file stream */
943 bfile = fdopen(fd, ((flags | myflags) & O_RDWR) ? "w+" : "w");
945 ast_log(LOG_WARNING, "Whoa, fdopen failed: %s!\n", strerror(errno));
953 fs = get_filestream(f, bfile);
954 if (!fs || rewrite_wrapper(fs, comment)) {
955 ast_log(LOG_WARNING, "Unable to rewrite %s\n", fn);
969 fs->realfilename = strdup(orig_fn);
970 fs->filename = strdup(fn);
972 fs->realfilename = NULL;
973 fs->filename = strdup(filename);
976 /* If truncated, we'll be at the beginning; if not truncated, then append */
977 f->seek(fs, 0, SEEK_END);
978 } else if (errno != EEXIST) {
979 ast_log(LOG_WARNING, "Unable to open file %s: %s\n", fn, strerror(errno));
983 /* if buf != NULL then fn is already free and pointing to it */
988 AST_LIST_UNLOCK(&formats);
990 ast_log(LOG_WARNING, "No such format '%s'\n", type);
996 * \brief the core of all waitstream() functions
998 static int waitstream_core(struct ast_channel *c, const char *breakon,
999 const char *forward, const char *rewind, int skip_ms,
1000 int audiofd, int cmdfd, const char *context)
1011 int ms = ast_sched_wait(c->sched);
1012 if (ms < 0 && !c->timingfunc) {
1019 res = ast_waitfor(c, ms);
1021 ast_log(LOG_WARNING, "Select failed (%s)\n", strerror(errno));
1026 struct ast_channel *rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
1027 if (!rchan && (outfd < 0) && (ms)) {
1031 ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
1033 } else if (outfd > -1) { /* this requires cmdfd set */
1034 /* The FD we were watching has something waiting */
1037 /* if rchan is set, it is 'c' */
1038 res = rchan ? 1 : 0; /* map into 'res' values */
1041 struct ast_frame *fr = ast_read(c);
1044 switch(fr->frametype) {
1045 case AST_FRAME_DTMF:
1047 const char exten[2] = { fr->subclass, '\0' };
1048 if (ast_exists_extension(c, context, exten, 1, c->cid.cid_num)) {
1054 if (strchr(forward,res)) {
1055 ast_stream_fastforward(c->stream, skip_ms);
1056 } else if (strchr(rewind,res)) {
1057 ast_stream_rewind(c->stream, skip_ms);
1058 } else if (strchr(breakon, res)) {
1064 case AST_FRAME_CONTROL:
1065 switch(fr->subclass) {
1066 case AST_CONTROL_HANGUP:
1069 case AST_CONTROL_RINGING:
1070 case AST_CONTROL_ANSWER:
1074 ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", fr->subclass);
1076 case AST_FRAME_VOICE:
1077 /* Write audio if appropriate */
1079 write(audiofd, fr->data, fr->datalen);
1081 /* Ignore all others */
1084 ast_sched_runq(c->sched);
1086 return (c->_softhangup ? -1 : 0);
1089 int ast_waitstream_fr(struct ast_channel *c, const char *breakon, const char *forward, const char *rewind, int ms)
1091 return waitstream_core(c, breakon, forward, rewind, ms,
1092 -1 /* no audiofd */, -1 /* no cmdfd */, NULL /* no context */);
1095 int ast_waitstream(struct ast_channel *c, const char *breakon)
1097 return waitstream_core(c, breakon, NULL, NULL, 0, -1, -1, NULL);
1100 int ast_waitstream_full(struct ast_channel *c, const char *breakon, int audiofd, int cmdfd)
1102 return waitstream_core(c, breakon, NULL, NULL, 0,
1103 audiofd, cmdfd, NULL /* no context */);
1106 int ast_waitstream_exten(struct ast_channel *c, const char *context)
1108 /* Waitstream, with return in the case of a valid 1 digit extension */
1109 /* in the current or specified context being pressed */
1112 context = c->context;
1113 return waitstream_core(c, NULL, NULL, NULL, 0,
1117 static int show_file_formats(int fd, int argc, char *argv[])
1119 #define FORMAT "%-10s %-10s %-20s\n"
1120 #define FORMAT2 "%-10s %-10s %-20s\n"
1121 struct ast_format *f;
1125 return RESULT_SHOWUSAGE;
1126 ast_cli(fd, FORMAT, "Format", "Name", "Extensions");
1128 if (AST_LIST_LOCK(&formats)) {
1129 ast_log(LOG_WARNING, "Unable to lock format list\n");
1133 AST_LIST_TRAVERSE(&formats, f, list) {
1134 ast_cli(fd, FORMAT2, ast_getformatname(f->format), f->name, f->exts);
1137 AST_LIST_UNLOCK(&formats);
1138 ast_cli(fd, "%d file formats registered.\n", count_fmt);
1139 return RESULT_SUCCESS;
1144 struct ast_cli_entry show_file =
1146 { "show", "file", "formats" },
1148 "Displays file formats",
1149 "Usage: show file formats\n"
1150 " displays currently registered file formats (if any)\n"
1153 int ast_file_init(void)
1155 ast_cli_register(&show_file);