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