shmsrc: Make the shmpipe life independant of the element states

This commit is contained in:
Olivier Crête 2010-01-28 12:19:07 +02:00
parent 8f8b50a88e
commit c8eb511a9d
2 changed files with 72 additions and 16 deletions

View file

@ -46,7 +46,7 @@ enum
struct GstShmBuffer
{
char *buf;
GstShmSrc *src;
GstShmPipe *pipe;
};
@ -77,6 +77,9 @@ static GstFlowReturn gst_shm_src_create (GstPushSrc * psrc,
static gboolean gst_shm_src_unlock (GstBaseSrc * bsrc);
static gboolean gst_shm_src_unlock_stop (GstBaseSrc * bsrc);
static void gst_shm_pipe_inc (GstShmPipe *pipe);
static void gst_shm_pipe_dec (GstShmPipe *pipe);
// static guint gst_shm_src_signals[LAST_SIGNAL] = { 0 };
@ -185,6 +188,10 @@ static gboolean
gst_shm_src_start (GstBaseSrc * bsrc)
{
GstShmSrc *self = GST_SHM_SRC (bsrc);
GstShmPipe *gstpipe = g_slice_new0 (GstShmPipe);
gstpipe->use_count = 1;
gstpipe->src = gst_object_ref (self);
if (!self->socket_path) {
GST_ELEMENT_ERROR (bsrc, RESOURCE, NOT_FOUND,
@ -193,18 +200,21 @@ gst_shm_src_start (GstBaseSrc * bsrc)
}
GST_OBJECT_LOCK (self);
self->pipe = sp_client_open (self->socket_path);
gstpipe->pipe = sp_client_open (self->socket_path);
GST_OBJECT_UNLOCK (self);
if (!self->pipe) {
if (!gstpipe->pipe) {
GST_ELEMENT_ERROR (bsrc, RESOURCE, OPEN_READ_WRITE,
("Could not open socket: %d %s", errno, strerror (errno)), (NULL));
gst_shm_pipe_dec (gstpipe);
return FALSE;
}
self->pipe = gstpipe;
self->poll = gst_poll_new (TRUE);
gst_poll_fd_init (&self->pollfd);
self->pollfd.fd = sp_get_fd (self->pipe);
self->pollfd.fd = sp_get_fd (self->pipe->pipe);
gst_poll_add_fd (self->poll, &self->pollfd);
gst_poll_fd_ctl_read (self->poll, &self->pollfd, TRUE);
@ -218,10 +228,10 @@ gst_shm_src_stop (GstBaseSrc * bsrc)
GST_DEBUG_OBJECT (self, "Stopping %p", self);
GST_OBJECT_LOCK (self);
sp_close (self->pipe);
self->pipe = NULL;
GST_OBJECT_UNLOCK (self);
if (self->pipe) {
gst_shm_pipe_dec (self->pipe);
self->pipe = NULL;
}
gst_poll_free (self->poll);
self->poll = NULL;
@ -234,15 +244,17 @@ static void
free_buffer (gpointer data)
{
struct GstShmBuffer *gsb = data;
g_return_if_fail (gsb->src->pipe != NULL);
g_return_if_fail (gsb->pipe != NULL);
g_return_if_fail (gsb->pipe->src != NULL);
GST_LOG ("Freeing buffer %p", gsb->buf);
GST_OBJECT_LOCK (gsb->src);
sp_client_recv_finish (gsb->src->pipe, gsb->buf);
GST_OBJECT_UNLOCK (gsb->src);
GST_OBJECT_LOCK (gsb->pipe->src);
sp_client_recv_finish (gsb->pipe->pipe, gsb->buf);
GST_OBJECT_UNLOCK (gsb->pipe->src);
gst_shm_pipe_dec (gsb->pipe);
gst_object_unref (gsb->src);
g_slice_free (struct GstShmBuffer, gsb);
}
@ -282,7 +294,7 @@ gst_shm_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
buf = NULL;
GST_LOG_OBJECT (self, "Reading from pipe");
GST_OBJECT_LOCK (self);
rv = sp_client_recv (self->pipe, &buf);
rv = sp_client_recv (self->pipe->pipe, &buf);
GST_OBJECT_UNLOCK (self);
if (rv < 0) {
GST_ELEMENT_ERROR (self, RESOURCE, READ, ("Failed to read from shmsrc"),
@ -296,7 +308,8 @@ gst_shm_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
gsb = g_slice_new0 (struct GstShmBuffer);
gsb->buf = buf;
gsb->src = gst_object_ref (self);
gsb->pipe = self->pipe;
gst_shm_pipe_inc (self->pipe);
*outbuf = gst_buffer_new ();
GST_BUFFER_FLAG_SET (*outbuf, GST_BUFFER_FLAG_READONLY);
@ -335,3 +348,38 @@ gst_shm_src_unlock_stop (GstBaseSrc * bsrc)
return TRUE;
}
static void
gst_shm_pipe_inc (GstShmPipe *pipe)
{
g_return_if_fail (pipe);
g_return_if_fail (pipe->src);
g_return_if_fail (pipe->use_count > 0);
GST_OBJECT_LOCK (pipe->src);
pipe->use_count++;
GST_OBJECT_UNLOCK (pipe->src);
}
static void
gst_shm_pipe_dec (GstShmPipe *pipe)
{
g_return_if_fail (pipe);
g_return_if_fail (pipe->src);
g_return_if_fail (pipe->use_count > 0);
GST_OBJECT_LOCK (pipe->src);
pipe->use_count--;
if (pipe->use_count > 0) {
GST_OBJECT_UNLOCK (pipe->src);
return;
}
if (pipe->pipe)
sp_close (pipe->pipe);
GST_OBJECT_UNLOCK (pipe->src);
gst_object_unref (pipe->src);
g_slice_free (GstShmPipe, pipe);
}

View file

@ -41,6 +41,7 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SHM_SRC))
typedef struct _GstShmSrc GstShmSrc;
typedef struct _GstShmSrcClass GstShmSrcClass;
typedef struct _GstShmPipe GstShmPipe;
struct _GstShmSrc
{
@ -48,7 +49,7 @@ struct _GstShmSrc
gchar *socket_path;
ShmPipe *pipe;
GstShmPipe *pipe;
GstPoll *poll;
GstPollFD pollfd;
@ -64,5 +65,12 @@ struct _GstShmSrcClass
GType gst_shm_src_get_type (void);
struct _GstShmPipe {
int use_count;
GstShmSrc *src;
ShmPipe *pipe;
};
G_END_DECLS
#endif /* __GST_SHM_SRC_H__ */