X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=recv.c;h=4458021c636b7163b97f92afe781206db96fed46;hp=9d6f028319fc6e1e8f36f7406fc64475fb3576df;hb=9c00a79ed817c854ed10ee6bd1b908df8dc13a2f;hpb=684ea7f70948c9ce5077a8a6460946ff86fefe46 diff --git a/recv.c b/recv.c index 9d6f0283..4458021c 100644 --- a/recv.c +++ b/recv.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2009 Andre Noll + * Copyright (C) 2005-2013 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -8,18 +8,24 @@ #include #include -#include #include "para.h" #include "list.h" #include "sched.h" #include "ggo.h" +#include "buffer_tree.h" #include "recv.h" #include "recv.cmdline.h" #include "fd.h" #include "string.h" #include "error.h" #include "stdout.h" +#include "version.h" + +extern void afh_recv_init(struct receiver *r); +#undef AFH_RECEIVER +#define AFH_RECEIVER {.name = "afh", .init = afh_recv_init}, +DEFINE_RECEIVER_ARRAY; /** The gengetopt args info struct. */ static struct recv_args_info conf; @@ -58,7 +64,7 @@ static void *parse_config(int argc, char *argv[], int *receiver_num) } /** - * the main function of para_recv + * The main function of para_recv. * * \param argc number of arguments * \param argv vector of arguments @@ -90,28 +96,38 @@ int main(int argc, char *argv[]) } r = &receivers[receiver_num]; rn.receiver = r; + rn.btrn = btr_new_node(&(struct btr_node_description) + EMBRACE(.name = r->name)); ret = r->open(&rn); if (ret < 0) goto out; r_opened = 1; + sot.btrn = btr_new_node(&(struct btr_node_description) + EMBRACE(.parent = rn.btrn, .name = "stdout")); stdout_set_defaults(&sot); - sot.bufp = &rn.buf; - sot.loaded = &rn.loaded; - sot.input_error = &rn.task.error; - register_task(&sot.task); + register_task(&s, &sot.task); rn.task.pre_select = r->pre_select; - rn.task.post_select = r->post_select; - sprintf(rn.task.status, "receiver node"); - register_task(&rn.task); + if (r->new_post_select) { + rn.task.new_post_select = r->new_post_select; + rn.task.post_select = NULL; + } else { + rn.task.new_post_select = NULL; + rn.task.post_select = r->post_select;; + } + sprintf(rn.task.status, "%s", r->name); + register_task(&s, &rn.task); ret = schedule(&s); out: if (r_opened) r->close(&rn); - if (r) - r->shutdown(); + btr_remove_node(&rn.btrn); + btr_remove_node(&sot.btrn); + if (rn.conf) + r->free_config(rn.conf); + if (ret < 0) PARA_ERROR_LOG("%s\n", para_strerror(-ret)); return ret < 0? EXIT_FAILURE : EXIT_SUCCESS;