Merge commit 'meins/master'
[paraslash.git] / fade.c
diff --git a/fade.c b/fade.c
index c86b938532022b4aea628cfb0299e4a6510b4d2e..1e37efd5def104763d6137d32642858b9cd96d93 100644 (file)
--- a/fade.c
+++ b/fade.c
@@ -1,10 +1,10 @@
 /*
- * Copyright (C) 1998-2007 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 1998-2009 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
 
-/** \file fade.c a volume fader and alarm clock */
+/** \file fade.c A volume fader and alarm clock for linux. */
 
 #include <sys/types.h>
 #include <dirent.h>
 #include "para.h"
 #include "fd.h"
 
-#include <stropts.h>
+#include <sys/ioctl.h>
 #include <ctype.h>
-#include <curses.h>
 #include <stdlib.h> /* EXIT_SUCCESS */
 #include <unistd.h>
 #include <signal.h>
 #include <string.h>
 #include <limits.h>
-#include <linux/soundcard.h>
+#include <sys/soundcard.h>
 #include "string.h"
+#include "error.h"
 
 
+INIT_FADE_ERRLISTS;
 struct fade_args_info conf;
 
-void para_log(__a_unused int ll, const char *fmt,...)
+__printf_2_3 void para_log(__a_unused int ll, const char *fmt, ...)
 {
        va_list argp;
        time_t t1;
@@ -46,86 +47,111 @@ void para_log(__a_unused int ll, const char *fmt,...)
  */
 static int open_mixer(void)
 {
-       return open(conf.mixer_device_arg, O_RDWR, 0);
+       return para_open(conf.mixer_device_arg, O_RDWR, 42);
 }
 
 /*
- * get volume via mixer_fd
+ * Get channel volume via mixer_fd.
  */
-static int do_get_vol(int mixer_fd)
+static int get_mixer_channel(int mixer_fd)
 {
        int volume;
 
-       if (ioctl(mixer_fd, MIXER_READ(SOUND_MIXER_VOLUME), &volume) < 0)
-               return -1;
+       if (ioctl(mixer_fd, MIXER_READ(conf.mixer_channel_arg), &volume) < 0)
+               return -ERRNO_TO_PARA_ERROR(errno);
        /* take the mean value of left and right volume */
        return (volume % 256 + (volume >> 8)) / 2;
 }
 
 /*
- * open mixer, get volume and close mixer
+ * Open mixer, get volume and close mixer.
  */
-static int get_vol(void)
+static int open_and_get_mixer_channel(void)
 {
        int mixer_fd;
        int volume;
 
        mixer_fd = open_mixer();
        if (mixer_fd < 0)
-               return -1;
-       volume = do_get_vol(mixer_fd);
+               return mixer_fd;
+       volume = get_mixer_channel(mixer_fd);
        close(mixer_fd);
        return volume;
 }
 
 /*
- * set volume via mixer_fd
+ * Set channel volume via mixer_fd.
  */
-static int do_set_vol(int mixer_fd, int volume)
+static int set_mixer_channel(int mixer_fd, int volume)
 {
        int tmp = (volume << 8) + volume;
 
-       if (ioctl(mixer_fd, MIXER_WRITE(SOUND_MIXER_VOLUME), &tmp) < 0)
-               return -1;
+       if (ioctl(mixer_fd, MIXER_WRITE(conf.mixer_channel_arg), &tmp) < 0)
+               return -ERRNO_TO_PARA_ERROR(errno);
        return 1;
 }
 
 /*
- * open mixer, set volume and close mixer
+ * Open mixer, set volume and close mixer.
  */
-static int set_vol(int volume)
+static int open_and_set_mixer_channel(int volume)
 {
        int mixer_fd, ret = open_mixer();
 
        if (ret < 0)
                return ret;
        mixer_fd = ret;
-       ret = do_set_vol(mixer_fd, volume);
+       ret = set_mixer_channel(mixer_fd, volume);
        close(mixer_fd);
        return ret;
 }
 
+static void fixup_mixer_channel_arg(void)
+{
+       int val;
+
+       switch (conf.mixer_channel_arg) {
+               case mixer_channel_arg_volume: val = SOUND_MIXER_VOLUME; break;
+               case mixer_channel_arg_bass: val = SOUND_MIXER_BASS; break;
+               case mixer_channel_arg_treble: val = SOUND_MIXER_TREBLE; break;
+               case mixer_channel_arg_synth: val = SOUND_MIXER_SYNTH; break;
+               case mixer_channel_arg_pcm: val = SOUND_MIXER_PCM; break;
+               case mixer_channel_arg_speaker: val = SOUND_MIXER_SPEAKER; break;
+               case mixer_channel_arg_line: val = SOUND_MIXER_LINE; break;
+               case mixer_channel_arg_mic: val = SOUND_MIXER_MIC; break;
+               case mixer_channel_arg_cd: val = SOUND_MIXER_CD; break;
+               case mixer_channel_arg_imix: val = SOUND_MIXER_IMIX; break;
+               case mixer_channel_arg_altpcm: val = SOUND_MIXER_ALTPCM; break;
+               case mixer_channel_arg_reclev: val = SOUND_MIXER_RECLEV; break;
+               case mixer_channel_arg_igain: val = SOUND_MIXER_IGAIN; break;
+               case mixer_channel_arg_ogain: val = SOUND_MIXER_OGAIN; break;
+       }
+       conf.mixer_channel_arg = val;
+}
+
 /*
  * Open mixer, get volume, fade to new_vol in secs seconds and
  * close mixer
  */
-static void fade(int new_vol, int fade_time)
+static int fade(int new_vol, int fade_time)
 {
-       int vol, mixer_fd, diff, incr;
+       int vol, mixer_fd, diff, incr, ret;
        unsigned secs;
        struct timespec ts;
        unsigned long long tmp, tmp2; /* Careful with that axe, Eugene! */
 
        if (fade_time <= 0)
-               return;
+               return 1;
        secs = fade_time;
        PARA_NOTICE_LOG("fading to %d in %d seconds\n", new_vol, secs);
-       mixer_fd = open_mixer();
-       if (mixer_fd < 0)
-               return;
-       vol = do_get_vol(mixer_fd);
-       if (vol < 0)
+       ret = open_mixer();
+       if (ret < 0)
+               return ret;
+       mixer_fd = ret;
+       ret = get_mixer_channel(mixer_fd);
+       if (ret < 0)
                goto out;
+       vol = ret;
        diff = new_vol - vol;
        if (!diff) {
                sleep(secs);
@@ -140,13 +166,15 @@ static void fade(int new_vol, int fade_time)
                ts.tv_sec = tmp / 1000; /* really nec ?*/
                //printf("ts.tv_sec: %i\n", ts.tv_nsec);
                vol += incr;
-               if (do_set_vol(mixer_fd, vol) < 0)
+               ret = set_mixer_channel(mixer_fd, vol);
+               if (ret < 0)
                        goto out;
                //printf("vol = %i\n", vol);
                nanosleep(&ts, NULL);
        }
 out:
        close(mixer_fd);
+       return ret;
 }
 
 static void client_cmd(const char *cmd)
@@ -158,8 +186,10 @@ static void client_cmd(const char *cmd)
        PARA_INFO_LOG("%s\n", cmdline);
        ret = para_exec_cmdline_pid(&pid, cmdline, fds);
        free(cmdline);
-       if (ret < 0)
+       if (ret < 0) {
+               PARA_EMERG_LOG("%s\n", para_strerror(-ret));
                exit(EXIT_FAILURE);
+       }
        do
                ret = wait(NULL);
        while (ret != -1 && errno != ECHILD);
@@ -181,12 +211,12 @@ static void change_afs_mode_and_play(char *afs_mode)
 /*
  * sleep
  */
-static void sweet_dreams(void)
+static int sweet_dreams(void)
 {
        time_t t1, wake_time_epoch;
        unsigned int delay;
        struct tm *tm;
-       int min = conf.wake_min_arg;
+       int ret, min = conf.wake_min_arg;
        char *fa_mode = conf.fa_mode_arg;
        char *wake_mode = conf.wake_mode_arg;
        char *sleep_mode = conf.sleep_mode_arg;
@@ -210,7 +240,7 @@ static void sweet_dreams(void)
                tm->tm_sec = 0;
        } else {
                t1 += 9 * 60 * 60; /* nine hours from now */
-               PARA_INFO_LOG("default wake time: %lu\n", t1);
+               PARA_INFO_LOG("default wake time: %lu\n", (long unsigned)t1);
                tm = localtime(&t1);
        }
        wake_time_epoch = mktime(tm);
@@ -219,14 +249,24 @@ static void sweet_dreams(void)
        sleep(1);
        if (sf) {
                PARA_INFO_LOG("initial volume: %d\n", iv);
-               set_vol(iv);
+               ret = open_and_set_mixer_channel(iv);
+               if (ret < 0)
+                       return ret;
                change_afs_mode_and_play(fa_mode);
-               fade(sv, sf);
-       } else
-               set_vol(sf);
-       change_afs_mode_and_play(sleep_mode);
+               ret = fade(sv, sf);
+               if (ret < 0)
+                       return ret;
+       } else {
+               ret = open_and_set_mixer_channel(sf);
+               if (ret < 0)
+                       return ret;
+       }
+       if (conf.sleep_mode_given)
+               change_afs_mode_and_play(sleep_mode);
+       else
+               client_cmd("stop");
        if (!wf)
-               return;
+               return 1;
        for (;;) {
                time(&t1);
                if (wake_time_epoch <= t1 + wf)
@@ -238,26 +278,30 @@ static void sweet_dreams(void)
                sleep(delay);
        }
        change_afs_mode_and_play(wake_mode);
-       fade(wv, wf);
+       ret = fade(wv, wf);
        PARA_INFO_LOG("fade complete, returning\n");
+       return ret;
 }
 
-static void snooze(void)
+static int snooze(void)
 {
+       int ret;
        unsigned sleep_time;
 
        if (conf.snooze_time_arg <= 0)
-               return;
+               return 1;
        sleep_time = conf.snooze_time_arg;
-       if (get_vol() < conf.snooze_out_vol_arg)
-               set_vol(conf.snooze_out_vol_arg);
+       if (open_and_get_mixer_channel() < conf.snooze_out_vol_arg)
+               ret = open_and_set_mixer_channel(conf.snooze_out_vol_arg);
        else
-               fade(conf.snooze_out_vol_arg, conf.snooze_out_fade_arg);
+               ret = fade(conf.snooze_out_vol_arg, conf.snooze_out_fade_arg);
+       if (ret < 0)
+               return ret;
        client_cmd("pause");
        PARA_NOTICE_LOG("%d seconds snooze time...\n", conf.snooze_time_arg);
        sleep(sleep_time);
        client_cmd("play");
-       fade(conf.snooze_in_vol_arg, conf.snooze_in_fade_arg);
+       return fade(conf.snooze_in_vol_arg, conf.snooze_in_fade_arg);
 }
 
 static int configfile_exists(void)
@@ -274,7 +318,6 @@ static int configfile_exists(void)
        return file_exists(conf.config_file_arg);
 }
 
-
 int main(int argc, char *argv[])
 {
        int ret;
@@ -298,28 +341,22 @@ int main(int argc, char *argv[])
                fade_cmdline_parser_config_file(conf.config_file_arg,
                        &conf, &params);
        }
-       ret = open_mixer();
-       if (ret < 0) {
-               PARA_EMERG_LOG("can not open mixer device %s.",
-                       conf.mixer_device_arg);
-               exit(EXIT_FAILURE);
-       }
-       close(ret);
-       ret = 0;
-//     setlinebuf(stdout);
+       fixup_mixer_channel_arg();
        if (!strcmp(conf.mode_arg, "sleep")) {
-               sweet_dreams();
+               ret = sweet_dreams();
                goto out;
        }
        if (!strcmp(conf.mode_arg, "fade")) {
-               fade(conf.fade_vol_arg, conf.fade_time_arg);
+               ret = fade(conf.fade_vol_arg, conf.fade_time_arg);
                goto out;
        }
        if (!strcmp(conf.mode_arg, "snooze")) {
-               snooze();
+               ret = snooze();
                goto out;
        }
-       ret = -1;
+       ret = -E_FADE_SYNTAX;
 out:
+       if (ret < 0)
+               PARA_EMERG_LOG("%s\n", para_strerror(-ret));
        return ret < 0? EXIT_FAILURE : EXIT_SUCCESS;
 }