error.h: Remove some unused errors.
[paraslash.git] / dccp_recv.c
1 /*
2  * Copyright (C) 2006-2007 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file dccp_recv.c paraslash's dccp receiver */
8
9 /*
10  * based on client.c of dccp-cs-0.01.tar.bz2,
11  * (C) 2005 Ian McDonald <imcdnzl@gmail.com>
12  */
13
14 #include <sys/types.h>
15 #include <dirent.h>
16
17 #include "para.h"
18 #include "error.h"
19 #include "list.h"
20 #include "sched.h"
21 #include "recv.h"
22 #include "string.h"
23 #include "net.h"
24 #include "fd.h"
25
26 #include "dccp_recv.cmdline.h"
27
28 /** the size of the output buffer */
29 #define DCCP_BUFSIZE 40960
30
31 /**
32  * data specific to the dccp receiver
33  *
34  * \sa receiver receiver_node
35  */
36 struct private_dccp_recv_data {
37         /** the file descriptor for the dccp socket */
38         int fd;
39 };
40
41
42 static void dccp_recv_close(struct receiver_node *rn)
43 {
44
45         struct private_dccp_recv_data *pdd = rn->private_data;
46
47         if (pdd && pdd->fd > 0)
48                 close(pdd->fd);
49         free(rn->buf);
50         rn->buf = NULL;
51         free(rn->private_data);
52         rn->private_data = NULL;
53 }
54
55
56 static int dccp_recv_open(struct receiver_node *rn)
57 {
58         struct private_dccp_recv_data *pdd;
59         struct dccp_recv_args_info *conf = rn->conf;
60         int ret = makesock(AF_UNSPEC, IPPROTO_DCCP, 0, conf->host_arg, conf->port_arg);
61
62         if (ret < 0)
63                 return ret;
64
65         rn->buf = para_calloc(DCCP_BUFSIZE);
66         rn->private_data = pdd = para_calloc(sizeof(struct private_dccp_recv_data));
67
68         pdd->fd = ret;
69         mark_fd_nonblocking(pdd->fd);
70         return 1;
71 }
72
73 static void dccp_shutdown(void)
74 {
75         ; /* nothing to do */
76 }
77
78 static void *dccp_recv_parse_config(int argc, char **argv)
79 {
80         struct dccp_recv_args_info *tmp = para_calloc(sizeof(struct dccp_recv_args_info));
81
82         if (!dccp_recv_cmdline_parser(argc, argv, tmp))
83                 return tmp;
84         free(tmp);
85         return NULL;
86 }
87
88 static void dccp_recv_pre_select(struct sched *s, struct task *t)
89 {
90         struct receiver_node *rn = t->private_data;
91         struct private_dccp_recv_data *pdd = rn->private_data;
92
93         t->ret = 1;
94         para_fd_set(pdd->fd, &s->rfds, &s->max_fileno);
95 }
96
97 static void dccp_recv_post_select(struct sched *s, struct task *t)
98 {
99         struct receiver_node *rn = t->private_data;
100         struct private_dccp_recv_data *pdd = rn->private_data;
101
102         if (rn->output_error && *rn->output_error) {
103                 t->ret = *rn->output_error;
104                 goto out;
105         }
106         t->ret = 1;
107         if (!s->select_ret || !FD_ISSET(pdd->fd, &s->rfds))
108                 goto out; /* nothing to do */
109         t->ret = -E_DCCP_OVERRUN;
110         if (rn->loaded >= DCCP_BUFSIZE)
111                 goto out;
112         t->ret = recv_bin_buffer(pdd->fd, rn->buf + rn->loaded,
113                 DCCP_BUFSIZE - rn->loaded);
114         if (t->ret <= 0) {
115                 if (!t->ret)
116                         t->ret = -E_RECV_EOF;
117                 goto out;
118         }
119         rn->loaded += t->ret;
120         return;
121 out:
122         if (t->ret < 0)
123                 rn->error = t->ret;
124 }
125
126 /**
127  * the init function of the dccp receiver
128  *
129  * \param r pointer to the receiver struct to initialize
130  *
131  * Initialize all function pointers of \a r
132  */
133 void dccp_recv_init(struct receiver *r)
134 {
135         r->shutdown = dccp_shutdown;
136         r->open = dccp_recv_open;
137         r->close = dccp_recv_close;
138         r->pre_select = dccp_recv_pre_select;
139         r->post_select = dccp_recv_post_select;
140         r->parse_config = dccp_recv_parse_config;
141 }