2 * Copyright (C) 2005 Andy Wingo <wingo@pobox.com>
3 * Copyright (C) 2010 Tim-Philipp Müller <tim centricular net>
4 * Copyright (C) 2012 Collabora Ltd. <tim.muller@collabora.co.uk>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
22 * SECTION:gstnettimepacket
23 * @title: GstNetTimePacket
24 * @short_description: Helper structure to construct clock packets used
26 * @see_also: #GstClock, #GstNetClientClock, #GstNetTimeProvider
28 * Various functions for receiving, sending an serializing #GstNetTimePacket
43 #include "gstnettimepacket.h"
45 G_DEFINE_BOXED_TYPE (GstNetTimePacket, gst_net_time_packet,
46 gst_net_time_packet_copy, gst_net_time_packet_free);
49 * gst_net_time_packet_new:
50 * @buffer: (array): a buffer from which to construct the packet, or NULL
52 * Creates a new #GstNetTimePacket from a buffer received over the network. The
53 * caller is responsible for ensuring that @buffer is at least
54 * #GST_NET_TIME_PACKET_SIZE bytes long.
56 * If @buffer is %NULL, the local and remote times will be set to
57 * #GST_CLOCK_TIME_NONE.
59 * MT safe. Caller owns return value (gst_net_time_packet_free to free).
61 * Returns: The new #GstNetTimePacket.
64 gst_net_time_packet_new (const guint8 * buffer)
66 GstNetTimePacket *ret;
68 g_assert (sizeof (GstClockTime) == 8);
70 ret = g_new0 (GstNetTimePacket, 1);
73 ret->local_time = GST_READ_UINT64_BE (buffer);
74 ret->remote_time = GST_READ_UINT64_BE (buffer + sizeof (GstClockTime));
76 ret->local_time = GST_CLOCK_TIME_NONE;
77 ret->remote_time = GST_CLOCK_TIME_NONE;
84 * gst_net_time_packet_free:
85 * @packet: the #GstNetTimePacket
90 gst_net_time_packet_free (GstNetTimePacket * packet)
96 * gst_net_time_packet_copy:
97 * @packet: the #GstNetTimePacket
99 * Make a copy of @packet.
101 * Returns: a copy of @packet, free with gst_net_time_packet_free().
104 gst_net_time_packet_copy (const GstNetTimePacket * packet)
106 GstNetTimePacket *ret;
108 ret = g_new0 (GstNetTimePacket, 1);
109 ret->local_time = packet->local_time;
110 ret->remote_time = packet->remote_time;
116 * gst_net_time_packet_serialize:
117 * @packet: the #GstNetTimePacket
119 * Serialized a #GstNetTimePacket into a newly-allocated sequence of
120 * #GST_NET_TIME_PACKET_SIZE bytes, in network byte order. The value returned is
121 * suitable for passing to write(2) or sendto(2) for communication over the
124 * MT safe. Caller owns return value (g_free to free).
126 * Returns: A newly allocated sequence of #GST_NET_TIME_PACKET_SIZE bytes.
129 gst_net_time_packet_serialize (const GstNetTimePacket * packet)
133 g_assert (sizeof (GstClockTime) == 8);
135 ret = g_new0 (guint8, GST_NET_TIME_PACKET_SIZE);
137 GST_WRITE_UINT64_BE (ret, packet->local_time);
138 GST_WRITE_UINT64_BE (ret + sizeof (GstClockTime), packet->remote_time);
144 * gst_net_time_packet_receive:
145 * @socket: socket to receive the time packet on
146 * @src_address: (out): address of variable to return sender address
147 * @error: return address for a #GError, or NULL
149 * Receives a #GstNetTimePacket over a socket. Handles interrupted system
150 * calls, but otherwise returns NULL on error.
152 * Returns: (transfer full): a new #GstNetTimePacket, or NULL on error. Free
153 * with gst_net_time_packet_free() when done.
156 gst_net_time_packet_receive (GSocket * socket,
157 GSocketAddress ** src_address, GError ** error)
159 gchar buffer[GST_NET_TIME_PACKET_SIZE];
163 g_return_val_if_fail (G_IS_SOCKET (socket), FALSE);
164 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
167 ret = g_socket_receive_from (socket, src_address, buffer,
168 GST_NET_TIME_PACKET_SIZE, NULL, &err);
171 if (err->code == G_IO_ERROR_WOULD_BLOCK) {
178 } else if (ret < GST_NET_TIME_PACKET_SIZE) {
181 return gst_net_time_packet_new ((const guint8 *) buffer);
187 GST_DEBUG ("receive error: %s", err->message);
188 g_propagate_error (error, err);
193 GST_DEBUG ("someone sent us a short packet (%" G_GSSIZE_FORMAT " < %d)",
194 ret, GST_NET_TIME_PACKET_SIZE);
195 g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_DATA,
196 "short time packet (%d < %d)", (int) ret, GST_NET_TIME_PACKET_SIZE);
202 * gst_net_time_packet_send:
203 * @packet: the #GstNetTimePacket to send
204 * @socket: socket to send the time packet on
205 * @dest_address: address to send the time packet to
206 * @error: return address for a #GError, or NULL
208 * Sends a #GstNetTimePacket over a socket.
212 * Returns: TRUE if successful, FALSE in case an error occurred.
215 gst_net_time_packet_send (const GstNetTimePacket * packet,
216 GSocket * socket, GSocketAddress * dest_address, GError ** error)
218 gboolean was_blocking;
222 g_return_val_if_fail (packet != NULL, FALSE);
223 g_return_val_if_fail (G_IS_SOCKET (socket), FALSE);
224 g_return_val_if_fail (G_IS_SOCKET_ADDRESS (dest_address), FALSE);
225 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
227 was_blocking = g_socket_get_blocking (socket);
230 g_socket_set_blocking (socket, FALSE);
232 /* FIXME: avoid pointless alloc/free, serialise into stack-allocated buffer */
233 buffer = gst_net_time_packet_serialize (packet);
235 res = g_socket_send_to (socket, dest_address, (const gchar *) buffer,
236 GST_NET_TIME_PACKET_SIZE, NULL, error);
238 /* datagram packets should be sent as a whole or not at all */
239 g_assert (res < 0 || res == GST_NET_TIME_PACKET_SIZE);
244 g_socket_set_blocking (socket, TRUE);
246 return (res == GST_NET_TIME_PACKET_SIZE);