]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
exec and fade cleanups.
authorAndre Noll <maan@systemlinux.org>
Mon, 7 Apr 2008 17:36:14 +0000 (19:36 +0200)
committerAndre Noll <maan@systemlinux.org>
Mon, 7 Apr 2008 17:36:14 +0000 (19:36 +0200)
Use para_open in exec.c and add error logging.

fade.c: Add proper error return values and error checking.

configure.ac
error.h
exec.c
fade.c

index 013e7b4ae577f3ebc41037a4e0854669838e866a..258591d61b09f9ebdbe627c471288728065da5dd 100644 (file)
@@ -79,7 +79,7 @@ AC_CHECK_FUNCS([atexit dup2 memchr memmove memset \
        [AC_MSG_ERROR([function not found, cannot live without it])])
 
 all_errlist_objs="server mp3_afh afh_common vss command net string signal time
-daemon stat crypt http_send close_on_fork ipc acl afh
+daemon stat crypt http_send close_on_fork ipc acl afh fade
 dccp_send fd user_list chunk_queue afs osl aft mood score attribute blob ringbuffer
 playlist sha1 rbtree sched audiod grab_client filter_chain wav compress
 http_recv dccp_recv recv_common write_common file_write audiod_command
diff --git a/error.h b/error.h
index 53320d4bd0075947541a58af8f3d73be066dd897..5e3a8df0e342b0dd3b47b9a138244706f848a17d 100644 (file)
--- a/error.h
+++ b/error.h
@@ -31,6 +31,10 @@ DEFINE_ERRLIST_OBJECT_ENUM;
 
 extern const char **para_errlist[];
 
+#define FADE_ERRORS \
+       PARA_ERROR(FADE_SYNTAX, "fade syntax error"), \
+
+
 #define CLIENT_ERRORS \
        PARA_ERROR(TASK_STARTED, "task started"), \
 
@@ -276,7 +280,6 @@ extern const char **para_errlist[];
 
 #define EXEC_ERRORS \
        PARA_ERROR(DUP_PIPE, "exec error: can not create pipe"), \
-       PARA_ERROR(NULL_OPEN, "can not open /dev/null"), \
 
 
 #define MP3_AFH_ERRORS \
diff --git a/exec.c b/exec.c
index bbf1b41addf8aab65363065c9e3b6ad91cae4968..da7a3568ced41c0b2dc886bcffaa5793f7ca8fd1 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -5,10 +5,12 @@
  */
 
 /** \file exec.c Helper functions for spawning new processes. */
+#include <dirent.h>
 #include "para.h"
 #include "close_on_fork.h"
 #include "error.h"
 #include "string.h"
+#include "fd.h"
 
 /**
  * Spawn a new process and redirect fd 0, 1, and 2.
@@ -35,13 +37,17 @@ static int para_exec(pid_t *pid, const char *file, char *const *const args, int
        if (fds[2] > 0 && pipe(err) < 0)
                goto err_out;
        if (!fds[0] || !fds[1] || !fds[2]) {
-               ret = -E_NULL_OPEN;
-               null = open("/dev/null", O_RDONLY);
-               if (null < 0)
+               ret = para_open("/dev/null", O_RDONLY, 42);
+               if (ret < 0)
                        goto err_out;
+               null = ret;
        }
-       if ((*pid = fork()) < 0)
-               exit(EXIT_FAILURE);
+       ret = fork();
+       if (ret < 0) {
+               ret = -ERRNO_TO_PARA_ERROR(errno);
+               goto err_out;
+       }
+       *pid = ret;
        if (!(*pid)) { /* child */
                close_listed_fds(); /* close unneeded fds */
                if (fds[0] >= 0) {
@@ -103,6 +109,7 @@ err_out:
                close(in[1]);
        if (null >= 0)
                close(null);
+       PARA_ERROR_LOG("%s\n", para_strerror(-ret));
        return ret;
 }
 
diff --git a/fade.c b/fade.c
index 3e8479a0eb7783db1af51edef03693e0c369b8a8..6b87680131fa99608b5e258533c3a7fe8545391f 100644 (file)
--- a/fade.c
+++ b/fade.c
@@ -4,7 +4,7 @@
  * 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 <limits.h>
 #include <linux/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,...)
@@ -45,7 +47,7 @@ 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);
 }
 
 /*
@@ -56,7 +58,7 @@ static int do_get_vol(int mixer_fd)
        int volume;
 
        if (ioctl(mixer_fd, MIXER_READ(SOUND_MIXER_VOLUME), &volume) < 0)
-               return -1;
+               return -ERRNO_TO_PARA_ERROR(errno);
        /* take the mean value of left and right volume */
        return (volume % 256 + (volume >> 8)) / 2;
 }
@@ -71,7 +73,7 @@ static int get_vol(void)
 
        mixer_fd = open_mixer();
        if (mixer_fd < 0)
-               return -1;
+               return mixer_fd;
        volume = do_get_vol(mixer_fd);
        close(mixer_fd);
        return volume;
@@ -85,7 +87,7 @@ static int do_set_vol(int mixer_fd, int volume)
        int tmp = (volume << 8) + volume;
 
        if (ioctl(mixer_fd, MIXER_WRITE(SOUND_MIXER_VOLUME), &tmp) < 0)
-               return -1;
+               return -ERRNO_TO_PARA_ERROR(errno);
        return 1;
 }
 
@@ -108,23 +110,25 @@ static int set_vol(int volume)
  * 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 = do_get_vol(mixer_fd);
+       if (ret < 0)
                goto out;
+       vol = ret;
        diff = new_vol - vol;
        if (!diff) {
                sleep(secs);
@@ -139,13 +143,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 = do_set_vol(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)
@@ -157,8 +163,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);
@@ -180,12 +188,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;
@@ -218,14 +226,21 @@ static void sweet_dreams(void)
        sleep(1);
        if (sf) {
                PARA_INFO_LOG("initial volume: %d\n", iv);
-               set_vol(iv);
+               ret = set_vol(iv);
+               if (ret < 0)
+                       return ret;
                change_afs_mode_and_play(fa_mode);
-               fade(sv, sf);
-       } else
-               set_vol(sf);
+               ret = fade(sv, sf);
+               if (ret < 0)
+                       return ret;
+       } else {
+               ret = set_vol(sf);
+               if (ret < 0)
+                       return ret;
+       }
        change_afs_mode_and_play(sleep_mode);
        if (!wf)
-               return;
+               return 1;
        for (;;) {
                time(&t1);
                if (wake_time_epoch <= t1 + wf)
@@ -237,26 +252,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);
+               ret = set_vol(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)
@@ -273,7 +292,6 @@ static int configfile_exists(void)
        return file_exists(conf.config_file_arg);
 }
 
-
 int main(int argc, char *argv[])
 {
        int ret;
@@ -297,28 +315,21 @@ 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);
        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;
 }