]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - play.c
para_play, infrastructure.
[paraslash.git] / play.c
diff --git a/play.c b/play.c
index 38203b401c710f4629285ad81b74c67d4eb9c8f0..fc33f68b9e13ee4111ce7ae915e5ace1fb888235 100644 (file)
--- a/play.c
+++ b/play.c
 /*
- * Copyright (C) 2005-2006 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2012 Andre Noll <maan@systemlinux.org>
  *
- *     This program is free software; you can redistribute it and/or modify
- *     it under the terms of the GNU General Public License as published by
- *     the Free Software Foundation; either version 2 of the License, or
- *     (at your option) any later version.
- *
- *     This program is distributed in the hope that it will be useful,
- *     but WITHOUT ANY WARRANTY; without even the implied warranty of
- *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *     GNU General Public License for more details.
- *
- *     You should have received a copy of the GNU General Public License
- *     along with this program; if not, write to the Free Software
- *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Licensed under the GPL v2. For licencing details see COPYING.
  */
 
-/*
- * Based in parts on aplay.c from the alsa-utils-1.0.8 package,
- * Copyright (c) by Jaroslav Kysela <perex@suse.cz>, which is
- * based on the vplay program by Michael Beck.
- */
+/** \file play.c Paraslash's standalone player. */
+
+#include <regex.h>
 
-#define WAV_HEADER_LEN 44
-#include <sys/time.h> /* gettimeofday */
 #include "para.h"
-#include "fd.h"
+#include "list.h"
 #include "play.cmdline.h"
-#include <alsa/asoundlib.h>
-#include "string.h"
+#include "filter.cmdline.h"
 #include "error.h"
+#include "ggo.h"
+#include "buffer_tree.h"
+#include "version.h"
+#include "string.h"
+#include "sched.h"
+#include "filter.h"
+#include "afh.h"
+#include "recv.h"
+#include "write.h"
+#include "write_common.h"
+#include "fd.h"
 
-#define FORMAT SND_PCM_FORMAT_S16_LE
-
-static snd_pcm_t *handle;
-static unsigned char *audiobuf;
-static size_t bytes_per_frame;
-static struct timeval *start_time;
-static struct gengetopt_args_info conf;
+static struct play_args_info conf;
 
+/** Initialize the array of errors for para_play. */
 INIT_PLAY_ERRLISTS;
 
-void para_log(__a_unused int ll, const char* fmt,...)
-{
-       va_list argp;
-
-       va_start(argp, fmt);
-       vfprintf(stderr, fmt, argp);
-       va_end(argp);
-}
-
-/**
- * read WAV_HEADER_LEN bytes from stdin to audio buffer
- *
- * \return -E_READ_HDR on errors and on eof before WAV_HEADER_LEN could be
- * read. A positive return value indicates success.
- */
-static int read_wav_header(void)
-{
-       ssize_t ret, count = 0;
-
-       while (count < WAV_HEADER_LEN) {
-               ret = read(STDIN_FILENO, audiobuf + count, WAV_HEADER_LEN - count);
-               if (ret <= 0)
-                       return -E_READ_HDR;
-               count += ret;
-       }
-       return 1;
-}
-
-/*
- * open and prepare the PCM handle for writing
- *
- * Install PCM software and hardware configuration. Exit on errors.
- */
-static int alsa_init(void)
-{
-       snd_pcm_hw_params_t *hwparams;
-       snd_pcm_sw_params_t *swparams;
-       snd_pcm_uframes_t buffer_size, xfer_align, start_threshold,
-               stop_threshold;
-       unsigned buffer_time = 0;
-       int err;
-       snd_pcm_info_t *info;
-       snd_output_t *log;
-       snd_pcm_uframes_t period_size;
-
-       snd_pcm_info_alloca(&info);
-       if (snd_output_stdio_attach(&log, stderr, 0) < 0)
-               return -E_ALSA_LOG;
-       err = snd_pcm_open(&handle, conf.device_arg,
-               SND_PCM_STREAM_PLAYBACK, 0);
-       if (err < 0)
-               return -E_PCM_OPEN;
-       if ((err = snd_pcm_info(handle, info)) < 0)
-               return -E_SND_PCM_INFO;
-
-       snd_pcm_hw_params_alloca(&hwparams);
-       snd_pcm_sw_params_alloca(&swparams);
-       if (snd_pcm_hw_params_any(handle, hwparams) < 0)
-               return -E_BROKEN_CONF;
-       if (snd_pcm_hw_params_set_access(handle, hwparams,
-                       SND_PCM_ACCESS_RW_INTERLEAVED) < 0)
-               return -E_ACCESS_TYPE;
-       if (snd_pcm_hw_params_set_format(handle, hwparams, FORMAT) < 0)
-               return -E_SAMPLE_FORMAT;
-       if (snd_pcm_hw_params_set_channels(handle, hwparams, conf.channels_arg) < 0)
-               return -E_CHANNEL_COUNT;
-       if (snd_pcm_hw_params_set_rate_near(handle, hwparams,
-                       (unsigned int*) &conf.sample_rate_arg, 0) < 0)
-               return -E_SET_RATE;
-       err = snd_pcm_hw_params_get_buffer_time_max(hwparams, &buffer_time, 0);
-       if (err < 0 || !buffer_time)
-               return -E_GET_BUFFER_TIME;
-       PARA_DEBUG_LOG("buffer time: %d\n", buffer_time);
-       if (snd_pcm_hw_params_set_buffer_time_near(handle, hwparams,
-                       &buffer_time, 0) < 0)
-               return -E_SET_BUFFER_TIME;
-       if (snd_pcm_hw_params(handle, hwparams) < 0)
-               return -E_HW_PARAMS;
-       snd_pcm_hw_params_get_period_size(hwparams, &period_size, 0);
-       snd_pcm_hw_params_get_buffer_size(hwparams, &buffer_size);
-       PARA_DEBUG_LOG("buffer size: %lu, period_size: %lu\n", buffer_size, period_size);
-       if (period_size == buffer_size)
-               return -E_BAD_PERIOD;
-       snd_pcm_sw_params_current(handle, swparams);
-       err = snd_pcm_sw_params_get_xfer_align(swparams, &xfer_align);
-       if (err < 0 || !xfer_align)
-               return -E_GET_XFER;
-//     snd_pcm_sw_params_set_sleep_min(handle, swparams, 0);
-       snd_pcm_sw_params_set_avail_min(handle, swparams, period_size);
-       /* round to closest transfer boundary */
-       start_threshold = (buffer_size / xfer_align) * xfer_align;
-       if (start_threshold < 1)
-               start_threshold = 1;
-       if (snd_pcm_sw_params_set_start_threshold(handle, swparams,
-                       start_threshold) < 0)
-               return -E_START_THRESHOLD;
-       stop_threshold = buffer_size;
-       if (snd_pcm_sw_params_set_stop_threshold(handle, swparams,
-                       stop_threshold) < 0)
-               return -E_STOP_THRESHOLD;
-       if (snd_pcm_sw_params_set_xfer_align(handle, swparams, xfer_align) < 0)
-               return -E_SET_XFER;
-       if (snd_pcm_sw_params(handle, swparams) < 0)
-               return -E_SW_PARAMS;
-       bytes_per_frame = snd_pcm_format_physical_width(FORMAT) * conf.channels_arg / 8;
-       return period_size * bytes_per_frame;
-}
-
-/**
- * push out pcm frames
- * \param data pointer do data to be written
- * \param nbytes number of bytes (not frames)
- *
- * \return Number of bytes written, -E_ALSA_WRITE on errors.
- */
-static int alsa_write(u_char *data, size_t nbytes)
-{
-       size_t frames = nbytes / bytes_per_frame;
-       snd_pcm_sframes_t r, result = 0;
-       while (frames > 0) {
-               /* write interleaved frames */
-               r = snd_pcm_writei(handle, data, frames);
-               if (r < 0)
-                       PARA_ERROR_LOG("write error: %s\n", snd_strerror(r));
-               if (r == -EAGAIN || (r >= 0 && r < frames))
-                       snd_pcm_wait(handle, 1);
-               else if (r == -EPIPE)
-                       snd_pcm_prepare(handle);
-               else if (r < 0)
-                       return -E_ALSA_WRITE;
-               if (r > 0) {
-                       result += r;
-                       frames -= r;
-                       data += r * bytes_per_frame;
-               }
-       }
-       return result * bytes_per_frame;
-}
-
-static void alsa_shutdown(void)
-{
-       snd_pcm_drain(handle);
-       snd_pcm_close(handle);
-       snd_config_update_free_global();
-}
+/* Activate the afh receiver. */
+extern void afh_recv_init(struct receiver *r);
+#undef AFH_RECEIVER
+#define AFH_RECEIVER {.name = "afh", .init = afh_recv_init},
+DEFINE_RECEIVER_ARRAY;
 
-/**
- * check if current time is later than start_time
- * \param diff pointer to write remaining time to
- *
- * If start_time was not given, or current time is later than given
- * start_time, return 0. Otherwise, return 1 and write the time
- * difference between current time and start_time to diff. diff may be
- * NULL.
- *
- */
-static int start_time_in_future(struct timeval *diff)
-{
-       struct timeval now;
+/* FIXME: This is needed by the amp filter. */
+char *stat_item_values[NUM_STAT_ITEMS] = {NULL};
 
-       if (!conf.start_time_given)
-               return 0;
-       gettimeofday(&now, NULL);
-       return tv_diff(start_time, &now, diff) > 0? 1 : 0;
-}
+static int loglevel = LL_WARNING;
+INIT_STDERR_LOGGING(loglevel);
 
-/**
- * sleep until time given at command line
- *
- * This is called if the initial buffer is filled. It returns
- * immediately if no start_time was given at the command line
- * or if the given start time is in the past.
- *
- */
-static void do_initial_delay(struct timeval *delay)
+__noreturn static void print_help_and_die(void)
 {
-       do
-               para_select(1, NULL, NULL, delay);
-       while (start_time_in_future(delay));
+       int d = conf.detailed_help_given;
+       const char **p = d? play_args_info_detailed_help
+               : play_args_info_help;
+
+       printf_or_die("%s\n\n", PLAY_CMDLINE_PARSER_PACKAGE "-"
+               PLAY_CMDLINE_PARSER_VERSION);
+       printf_or_die("%s\n\n", play_args_info_usage);
+       for (; *p; p++)
+               printf_or_die("%s\n", *p);
+       print_filter_helps(d);
+       print_writer_helps(d);
+       exit(0);
 }
 
-/**
- * play raw pcm data
- * \param loaded number of bytes already loaded
- *
- * If start_time was given, prebuffer data until buffer is full or
- * start_time is reached. In any case, do not start playing before
- * start_time.
- *
- * \return positive on success, negative on errors.
- */
-static int play_pcm(size_t loaded)
+static void parse_config_or_die(int argc, char *argv[])
 {
-       size_t bufsize, written = 0, prebuf_size;
-       unsigned char *p;
-       struct timeval delay;
-       int chunk_bytes, ret = alsa_init();
-
-       if (ret < 0)
-               goto out;
-       chunk_bytes = ret;
-       bufsize = (conf.bufsize_arg * 1024 / chunk_bytes) * chunk_bytes;
-       audiobuf = para_realloc(audiobuf, bufsize);
-       prebuf_size = conf.prebuffer_arg * bufsize / 100;
-again:
-       if (!written) {
-               if (loaded < prebuf_size)
-                       goto read;
-               if (start_time && start_time_in_future(&delay)) {
-                       do_initial_delay(&delay);
-                       start_time = NULL;
-               }
-       }
-       p = audiobuf;
-       while (loaded >= chunk_bytes) {
-               ret = alsa_write(p, chunk_bytes);
-               if (ret < 0)
-                       goto out;
-               p += ret;
-               written += ret;
-               loaded -= ret;
+       int ret;
+       char *config_file;
+       struct play_cmdline_parser_params params = {
+               .override = 0,
+               .initialize = 1,
+               .check_required = 0,
+               .check_ambiguity = 0,
+               .print_errors = 1
+       };
+
+       if (play_cmdline_parser_ext(argc, argv, &conf, &params))
+               exit(EXIT_FAILURE);
+       HANDLE_VERSION_FLAG("play", conf);
+       if (conf.help_given || conf.detailed_help_given)
+               print_help_and_die();
+       loglevel = get_loglevel_by_name(conf.loglevel_arg);
+       if (conf.config_file_given)
+               config_file = para_strdup(conf.config_file_arg);
+       else {
+               char *home = para_homedir();
+               config_file = make_message("%s/.paraslash/play.conf", home);
+               free(home);
        }
-       if (loaded && p != audiobuf)
-               memmove(audiobuf, p, loaded);
-read:
-       ret = read(STDIN_FILENO, audiobuf + loaded, bufsize - loaded);
-       if (ret < 0) {
-               ret = -E_READ_STDIN;
-               goto out;
+       ret = file_exists(config_file);
+       if (conf.config_file_given && !ret) {
+               PARA_EMERG_LOG("can not read config file %s\n", config_file);
+               goto err;
        }
        if (ret) {
-               loaded += ret;
-               goto again;
+               params.initialize = 0;
+               params.check_required = 1;
+               play_cmdline_parser_config_file(config_file, &conf, &params);
        }
-       ret = 1;
-out:
-       alsa_shutdown();
-       return ret;
-}
-
-/**
- * test if audio buffer contains a valid wave header
- *
- * \return If not, return 0, otherwise, store number of channels and sample rate
- * in struct conf and return WAV_HEADER_LEN.
- */
-static size_t check_wave(void)
-{
-       unsigned char *a = audiobuf;
-       if (a[0] != 'R' || a[1] != 'I' || a[2] != 'F' || a[3] != 'F')
-               return WAV_HEADER_LEN;
-       conf.channels_arg = (unsigned) a[22];
-       conf.sample_rate_arg = a[24] + (a[25] << 8) + (a[26] << 16) + (a[27] << 24);
-       return 0;
+       free(config_file);
+       return;
+err:
+       free(config_file);
+       exit(EXIT_FAILURE);
 }
 
 int main(int argc, char *argv[])
 {
-       struct timeval tv;
-       int ret;
+       /* needed this early to make help work */
+       recv_init();
+       filter_init();
+       writer_init();
 
-       cmdline_parser(argc, argv, &conf);
-       if (conf.start_time_given) {
-               ret = -E_PLAY_SYNTAX;
-               if (sscanf(conf.start_time_arg, "%lu:%lu",
-                               &tv.tv_sec, &tv.tv_usec) != 2)
-                       goto out;
-               start_time = &tv;
-       }
-       audiobuf = para_malloc(WAV_HEADER_LEN);
-       ret = read_wav_header();
-       if (ret < 0)
-               goto out;
-       ret = play_pcm(check_wave());
-out:
-       free(audiobuf);
-       if (ret < 0)
-               PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
-       return ret;
+       parse_config_or_die(argc, argv);
+       return 0;
 }