1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* Copyright (C) 2014 The giomm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <giomm/socketsource.h>
#include <giomm/socket.h>
#include <glibmm/exceptionhandler.h>
#include <glibmm/wrap.h>
#include <gio/gio.h>
namespace
{
gboolean
giomm_generic_socket_callback(sigc::slot_base* slot, GIOCondition condition)
{
g_return_val_if_fail(slot != nullptr, FALSE);
try
{
// Recreate the specific slot from the generic slot node.
return (*static_cast<sigc::slot<bool(Glib::IOCondition)>*>(slot))((Glib::IOCondition)condition);
}
catch (...)
{
Glib::exception_handlers_invoke();
}
return 0;
}
gboolean
giomm_signalsocket_callback(GSocket*, GIOCondition condition, void* user_data)
{
sigc::slot_base* const slot = Glib::Source::get_slot_from_connection_node(user_data);
return giomm_generic_socket_callback(slot, condition);
}
gboolean
giomm_socketsource_callback(GSocket*, GIOCondition condition, void* user_data)
{
sigc::slot_base* const slot = Glib::Source::get_slot_from_callback_data(user_data);
return giomm_generic_socket_callback(slot, condition);
}
} // anonymous namespace
namespace Gio
{
/**** Glib::SignalSocket *******************************************************/
inline SignalSocket::SignalSocket(GMainContext* context) : context_(context)
{
}
sigc::connection
SignalSocket::connect(const sigc::slot<bool(Glib::IOCondition)>& slot,
const Glib::RefPtr<Socket>& socket, Glib::IOCondition condition,
const Glib::RefPtr<Cancellable>& cancellable, int priority)
{
GSource* const source =
g_socket_create_source(socket->gobj(), (GIOCondition)condition, Glib::unwrap(cancellable));
return Glib::Source::attach_signal_source(
slot, priority, source, context_,
Glib::function_pointer_cast<GSourceFunc>(&giomm_signalsocket_callback));
}
SignalSocket
signal_socket(const Glib::RefPtr<Glib::MainContext>& context)
{
return SignalSocket(Glib::unwrap(context)); // 0 means default context
}
/**** Glib::SocketSource *******************************************************/
// static
Glib::RefPtr<SocketSource>
SocketSource::create(const Glib::RefPtr<Socket>& socket, Glib::IOCondition condition,
const Glib::RefPtr<Cancellable>& cancellable)
{
return Glib::make_refptr_for_instance<SocketSource>(new SocketSource(socket, condition, cancellable));
}
// static
Glib::RefPtr<SocketSource>
SocketSource::create(GSocket* socket, Glib::IOCondition condition,
const Glib::RefPtr<Cancellable>& cancellable)
{
return Glib::make_refptr_for_instance<SocketSource>(new SocketSource(socket, condition, cancellable));
}
SocketSource::SocketSource(const Glib::RefPtr<Socket>& socket, Glib::IOCondition condition,
const Glib::RefPtr<Cancellable>& cancellable)
: IOSource(
g_socket_create_source(socket->gobj(), (GIOCondition)condition, Glib::unwrap(cancellable)),
Glib::function_pointer_cast<GSourceFunc>(&giomm_socketsource_callback))
{
}
SocketSource::SocketSource(GSocket* socket, Glib::IOCondition condition,
const Glib::RefPtr<Cancellable>& cancellable)
: IOSource(
g_socket_create_source(socket, (GIOCondition)condition, Glib::unwrap(cancellable)),
Glib::function_pointer_cast<GSourceFunc>(&giomm_socketsource_callback))
{
}
SocketSource::~SocketSource() noexcept
{
}
} // namespace Gio
|