Imported Upstream version 3.2.0
[debian/amanda] / xfer-src / source-directtcp-listen.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 2008,2009 Zmanda, Inc.  All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published
7  * by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17  *
18  * Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
19  * Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
20  */
21
22 #include "amanda.h"
23 #include "amxfer.h"
24
25 /*
26  * Class declaration
27  *
28  * This declaration is entirely private; nothing but xfer_source_directtcp_listen() references
29  * it directly.
30  */
31
32 static GType xfer_source_directtcp_listen_get_type(void);
33 #define XFER_SOURCE_DIRECTTCP_LISTEN_TYPE (xfer_source_directtcp_listen_get_type())
34 #define XFER_SOURCE_DIRECTTCP_LISTEN(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), xfer_source_directtcp_listen_get_type(), XferSourceDirectTCPListen)
35 #define XFER_SOURCE_DIRECTTCP_LISTEN_CONST(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), xfer_source_directtcp_listen_get_type(), XferSourceDirectTCPListen const)
36 #define XFER_SOURCE_DIRECTTCP_LISTEN_CLASS(klass) G_TYPE_CHECK_CLASS_CAST((klass), xfer_source_directtcp_listen_get_type(), XferSourceDirectTCPListenClass)
37 #define IS_XFER_SOURCE_DIRECTTCP_LISTEN(obj) G_TYPE_CHECK_INSTANCE_TYPE((obj), xfer_source_directtcp_listen_get_type ())
38 #define XFER_SOURCE_DIRECTTCP_LISTEN_GET_CLASS(obj) G_TYPE_INSTANCE_GET_CLASS((obj), xfer_source_directtcp_listen_get_type(), XferSourceDirectTCPListenClass)
39
40 static GObjectClass *parent_class = NULL;
41
42 /*
43  * Main object structure
44  */
45
46 typedef struct XferSourceDirectTCPListen {
47     XferElement __parent__;
48 } XferSourceDirectTCPListen;
49
50 /*
51  * Class definition
52  */
53
54 typedef struct {
55     XferElementClass __parent__;
56 } XferSourceDirectTCPListenClass;
57
58 /*
59  * Implementation
60  */
61
62 static gboolean
63 start_impl(
64     XferElement *elt)
65 {
66     /* this is really all we do -- copy the input addresses from our downstream
67      * neighbor.  This seems trivial, but downstream may be a glue element, which
68      * means we get the listening socket for free. */
69     elt->input_listen_addrs = elt->downstream->input_listen_addrs;
70
71     return FALSE;
72 }
73
74 static void
75 instance_init(
76     XferElement *elt)
77 {
78     elt->can_generate_eof = FALSE;
79 }
80
81 static void
82 class_init(
83     XferSourceDirectTCPListenClass * selfc)
84 {
85     XferElementClass *klass = XFER_ELEMENT_CLASS(selfc);
86     static xfer_element_mech_pair_t mech_pairs[] = {
87         { XFER_MECH_NONE, XFER_MECH_DIRECTTCP_LISTEN, 1, 0},
88         { XFER_MECH_NONE, XFER_MECH_NONE, 0, 0},
89     };
90
91     klass->start = start_impl;
92     klass->perl_class = "Amanda::Xfer::Source::DirectTCPListen";
93     klass->mech_pairs = mech_pairs;
94
95     parent_class = g_type_class_peek_parent(selfc);
96 }
97
98 GType
99 xfer_source_directtcp_listen_get_type (void)
100 {
101     static GType type = 0;
102
103     if G_UNLIKELY(type == 0) {
104         static const GTypeInfo info = {
105             sizeof (XferSourceDirectTCPListenClass),
106             (GBaseInitFunc) NULL,
107             (GBaseFinalizeFunc) NULL,
108             (GClassInitFunc) class_init,
109             (GClassFinalizeFunc) NULL,
110             NULL /* class_data */,
111             sizeof (XferSourceDirectTCPListen),
112             0 /* n_preallocs */,
113             (GInstanceInitFunc) instance_init,
114             NULL
115         };
116
117         type = g_type_register_static (XFER_ELEMENT_TYPE, "XferSourceDirectTCPListen", &info, 0);
118     }
119
120     return type;
121 }
122
123 /* create an element of this class; prototype is in xfer-element.h */
124 XferElement *
125 xfer_source_directtcp_listen(void)
126 {
127     XferSourceDirectTCPListen *xsr = (XferSourceDirectTCPListen *)g_object_new(XFER_SOURCE_DIRECTTCP_LISTEN_TYPE, NULL);
128     XferElement *elt = XFER_ELEMENT(xsr);
129
130     return elt;
131 }