Commit f35af4b6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Turn the decompression plugin into a stream filter

parent c4e163ae
...@@ -29,7 +29,6 @@ SOURCES_tta = tta.c ...@@ -29,7 +29,6 @@ SOURCES_tta = tta.c
SOURCES_vc1 = vc1.c SOURCES_vc1 = vc1.c
SOURCES_demux_cdg = cdg.c SOURCES_demux_cdg = cdg.c
SOURCES_smf = smf.c SOURCES_smf = smf.c
SOURCES_decomp = decomp.c
libvlc_LTLIBRARIES += \ libvlc_LTLIBRARIES += \
libaiff_plugin.la \ libaiff_plugin.la \
......
SOURCES_decomp = decomp.c
SOURCES_stream_filter_record = record.c SOURCES_stream_filter_record = record.c
libvlc_LTLIBRARIES += \ libvlc_LTLIBRARIES += \
libstream_filter_record_plugin.la \ libstream_filter_record_plugin.la \
$(NULL) $(NULL)
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_demux.h>
#include <vlc_stream.h> #include <vlc_stream.h>
#include <vlc_network.h> #include <vlc_network.h>
#include <unistd.h> #include <unistd.h>
...@@ -46,22 +45,18 @@ static void Close (vlc_object_t *); ...@@ -46,22 +45,18 @@ static void Close (vlc_object_t *);
vlc_module_begin () vlc_module_begin ()
set_description (N_("Decompression")) set_description (N_("Decompression"))
set_category (CAT_INPUT) set_category (CAT_INPUT)
set_subcategory (SUBCAT_INPUT_DEMUX) set_subcategory (SUBCAT_INPUT_STREAM_FILTER)
set_capability ("demux", 20) set_capability ("stream_filter", 20)
set_callbacks (OpenBzip2, Close) set_callbacks (OpenBzip2, Close)
/* TODO: shortnames */ /* TODO: access shortnames for stream_UrlNew() */
/* --demux support */
add_submodule () add_submodule ()
set_callbacks (OpenGzip, Close) set_callbacks (OpenGzip, Close)
vlc_module_end () vlc_module_end ()
static int Demux (demux_t *); struct stream_sys_t
static int Control (demux_t *, int i_query, va_list args);
struct demux_sys_t
{ {
stream_t *out; block_t *peeked;
vlc_thread_t thread; vlc_thread_t thread;
pid_t pid; pid_t pid;
int write_fd, read_fd; int write_fd, read_fd;
...@@ -84,8 +79,8 @@ static void cleanup_mmap (void *addr) ...@@ -84,8 +79,8 @@ static void cleanup_mmap (void *addr)
static void *Thread (void *data) static void *Thread (void *data)
{ {
demux_t *demux = data; stream_t *stream = data;
demux_sys_t *p_sys = demux->p_sys; stream_sys_t *p_sys = stream->p_sys;
int fd = p_sys->write_fd; int fd = p_sys->write_fd;
bool error = false; bool error = false;
...@@ -101,7 +96,7 @@ static void *Thread (void *data) ...@@ -101,7 +96,7 @@ static void *Thread (void *data)
unsigned char buf[bufsize]; unsigned char buf[bufsize];
#endif #endif
len = stream_Read (demux->s, buf, bufsize); len = stream_Read (stream->p_source, buf, bufsize);
vlc_restorecancel (canc); vlc_restorecancel (canc);
if (len <= 0) if (len <= 0)
...@@ -120,7 +115,7 @@ static void *Thread (void *data) ...@@ -120,7 +115,7 @@ static void *Thread (void *data)
{ {
if (j == 0) if (j == 0)
errno = EPIPE; errno = EPIPE;
msg_Err (demux, "cannot write data (%m)"); msg_Err (stream, "cannot write data (%m)");
error = true; error = true;
break; break;
} }
...@@ -131,7 +126,7 @@ static void *Thread (void *data) ...@@ -131,7 +126,7 @@ static void *Thread (void *data)
} }
while (!error); while (!error);
msg_Dbg (demux, "compressed stream at EOF"); msg_Dbg (stream, "compressed stream at EOF");
return NULL; return NULL;
} }
...@@ -139,69 +134,98 @@ static void *Thread (void *data) ...@@ -139,69 +134,98 @@ static void *Thread (void *data)
#define MIN_BLOCK (1 << 10) #define MIN_BLOCK (1 << 10)
#define MAX_BLOCK (1 << 20) #define MAX_BLOCK (1 << 20)
/** /**
* Read data, decompress it, and forward * Reads decompressed from the decompression program
* @return -1 in case of error, 0 in case of EOF, 1 otherwise. * @return -1 for EAGAIN, 0 for EOF, byte count otherwise.
*/ */
static int Demux (demux_t *demux) static int Read (stream_t *stream, void *buf, unsigned int buflen)
{ {
demux_sys_t *p_sys = demux->p_sys; stream_sys_t *p_sys = stream->p_sys;
int length, fd = p_sys->read_fd; block_t *peeked;
size_t bonus = 0;
ssize_t length;
#ifdef TIOCINQ if ((peeked = p_sys->peeked) != NULL)
if (ioctl (fd, TIOCINQ, &length) == 0)
{ {
if (length > MAX_BLOCK) bonus = (buflen > peeked->i_buffer) ? peeked->i_buffer : buflen;
length = MAX_BLOCK; memcpy (buf, peeked->p_buffer, bonus);
else peeked->p_buffer += bonus;
if (length < MIN_BLOCK) peeked->i_buffer -= bonus;
length = MIN_BLOCK; if (peeked->i_buffer == 0)
{
block_Release (peeked);
p_sys->peeked = NULL;
}
} }
else
#endif
length = MIN_BLOCK;
block_t *block = block_Alloc (length); length = net_Read (stream, p_sys->read_fd, NULL, buf, buflen, false);
if (block == NULL) return bonus + ((length >= 0) ? length : 0);
return VLC_ENOMEM; }
length = net_Read (demux, fd, NULL, block->p_buffer, length, false); /**
if (length <= 0) *
*/
static int Peek (stream_t *stream, const uint8_t **pbuf, unsigned int len)
{
stream_sys_t *p_sys = stream->p_sys;
block_t *peeked = p_sys->peeked;
size_t curlen = 0;
int fd = p_sys->read_fd;
if (peeked == NULL)
peeked = block_Alloc (len);
else if ((curlen = peeked->i_buffer) < len)
peeked = block_Realloc (peeked, 0, len);
if ((p_sys->peeked = peeked) == NULL)
return 0; return 0;
block->i_buffer = length;
stream_DemuxSend (p_sys->out, block);
return 1;
}
if (curlen < len)
{
ssize_t val = net_Read (stream, fd, NULL, peeked->p_buffer + curlen,
len - curlen, true);
if (val >= 0)
{
curlen += val;
peeked->i_buffer = curlen;
}
}
*pbuf = peeked->p_buffer;
return curlen;
}
/***************************************************************************** /**
* Control: *
*****************************************************************************/ */
static int Control (demux_t *demux, int query, va_list args) static int Control (stream_t *stream, int query, va_list args)
{ {
/*demux_sys_t *p_sys = demux->p_sys;*/ /*stream_sys_t *p_sys = stream->p_sys;*/
(void)demux; (void)stream;
(void)query; (void)args; (void)query; (void)args;
return VLC_EGENERIC; return VLC_EGENERIC;
} }
/** /**
* Pipe data through an external executable. * Pipe data through an external executable.
* @param demux the demux object. * @param stream the stream filter object.
* @param path path to the executable. * @param path path to the executable.
*/ */
static int Open (demux_t *demux, const char *path) static int Open (stream_t *stream, const char *path)
{ {
demux_sys_t *p_sys = demux->p_sys = malloc (sizeof (*p_sys)); stream_sys_t *p_sys = stream->p_sys = malloc (sizeof (*p_sys));
if (p_sys == NULL) if (p_sys == NULL)
return VLC_ENOMEM; return VLC_ENOMEM;
demux->pf_demux = Demux; stream->pf_read = Read;
demux->pf_control = Control; stream->pf_peek = Peek;
stream->pf_control = Control;
p_sys->peeked = NULL;
p_sys->pid = -1;
/* I am not a big fan of the pyramid style, but I cannot think of anything /* I am not a big fan of the pyramid style, but I cannot think of anything
* better here. There are too many failure cases. */ * better here. There are too many failure cases. */
int ret = VLC_EGENERIC; int ret = VLC_EGENERIC;
int comp[2]; int comp[2];
if (pipe (comp) == 0) if (pipe (comp) == 0)
{ {
cloexec (comp[1]); cloexec (comp[1]);
...@@ -225,31 +249,28 @@ static int Open (demux_t *demux, const char *path) ...@@ -225,31 +249,28 @@ static int Open (demux_t *demux, const char *path)
&& !posix_spawnp (&p_sys->pid, path, &actions, NULL, argv, && !posix_spawnp (&p_sys->pid, path, &actions, NULL, argv,
environ)) environ))
{ {
p_sys->out = stream_DemuxNew (demux, "", demux->out); if (vlc_clone (&p_sys->thread, Thread, stream,
if (p_sys->out != NULL) VLC_THREAD_PRIORITY_INPUT) == 0)
{ ret = VLC_SUCCESS;
if (vlc_clone (&p_sys->thread, Thread, demux,
VLC_THREAD_PRIORITY_INPUT) == 0)
ret = VLC_SUCCESS;
else
stream_Delete (p_sys->out);
}
else
msg_Err (demux, "Cannot create demux");
} }
else else
msg_Err (demux, "Cannot execute %s", path); {
msg_Err (stream, "Cannot execute %s", path);
p_sys->pid = -1;
}
posix_spawn_file_actions_destroy (&actions); posix_spawn_file_actions_destroy (&actions);
} }
close (uncomp[1]);
if (ret != VLC_SUCCESS) if (ret != VLC_SUCCESS)
{ close (uncomp[0]);
close (comp[1]);
close (comp[0]);
}
} }
close (comp[0]);
if (ret != VLC_SUCCESS) if (ret != VLC_SUCCESS)
close (uncomp[0]); {
close (uncomp[1]); close (comp[1]);
if (p_sys->pid != -1)
while (waitpid (p_sys->pid, &(int){ 0 }, 0) == -1);
}
} }
return ret; return ret;
} }
...@@ -260,12 +281,11 @@ static int Open (demux_t *demux, const char *path) ...@@ -260,12 +281,11 @@ static int Open (demux_t *demux, const char *path)
*/ */
static void Close (vlc_object_t *obj) static void Close (vlc_object_t *obj)
{ {
demux_t *demux = (demux_t *)obj; stream_t *stream = (stream_t *)obj;
demux_sys_t *p_sys = demux->p_sys; stream_sys_t *p_sys = stream->p_sys;
int status; int status;
vlc_cancel (p_sys->thread); vlc_cancel (p_sys->thread);
stream_Delete (p_sys->out);
close (p_sys->read_fd); close (p_sys->read_fd);
vlc_join (p_sys->thread, NULL); vlc_join (p_sys->thread, NULL);
close (p_sys->write_fd); close (p_sys->write_fd);
...@@ -274,6 +294,8 @@ static void Close (vlc_object_t *obj) ...@@ -274,6 +294,8 @@ static void Close (vlc_object_t *obj)
while (waitpid (p_sys->pid, &status, 0) == -1); while (waitpid (p_sys->pid, &status, 0) == -1);
msg_Dbg (obj, "exit status %d", status); msg_Dbg (obj, "exit status %d", status);
if (p_sys->peeked)
block_Release (p_sys->peeked);
free (p_sys); free (p_sys);
} }
...@@ -283,18 +305,17 @@ static void Close (vlc_object_t *obj) ...@@ -283,18 +305,17 @@ static void Close (vlc_object_t *obj)
*/ */
static int OpenGzip (vlc_object_t *obj) static int OpenGzip (vlc_object_t *obj)
{ {
demux_t *demux = (demux_t *)obj; stream_t *stream = (stream_t *)obj;
stream_t *stream = demux->s;
const uint8_t *peek; const uint8_t *peek;
if (stream_Peek (stream, &peek, 3) < 3) if (stream_Peek (stream->p_source, &peek, 3) < 3)
return VLC_EGENERIC; return VLC_EGENERIC;
if (memcmp (peek, "\x1f\x8b\x08", 3)) if (memcmp (peek, "\x1f\x8b\x08", 3))
return VLC_EGENERIC; return VLC_EGENERIC;
msg_Dbg (obj, "detected gzip compressed stream"); msg_Dbg (obj, "detected gzip compressed stream");
return Open (demux, "zcat"); return Open (stream, "zcat");
} }
...@@ -303,19 +324,18 @@ static int OpenGzip (vlc_object_t *obj) ...@@ -303,19 +324,18 @@ static int OpenGzip (vlc_object_t *obj)
*/ */
static int OpenBzip2 (vlc_object_t *obj) static int OpenBzip2 (vlc_object_t *obj)
{ {
demux_t *demux = (demux_t *)obj; stream_t *stream = (stream_t *)obj;
stream_t *stream = demux->s;
const uint8_t *peek; const uint8_t *peek;
/* (Try to) parse the bzip2 header */ /* (Try to) parse the bzip2 header */
if (stream_Peek (stream, &peek, 10) < 10) if (stream_Peek (stream->p_source, &peek, 10) < 10)
return VLC_EGENERIC; return VLC_EGENERIC;
if (memcmp (peek, "BZh", 3) || (peek[3] < '1') || (peek[3] > '9') if (memcmp (peek, "BZh", 3) || (peek[3] < '1') || (peek[3] > '9')
|| memcmp (peek, "\x31\x41\x59\x26\x53\x59", 6)) || memcmp (peek + 4, "\x31\x41\x59\x26\x53\x59", 6))
return VLC_EGENERIC; return VLC_EGENERIC;
msg_Dbg (obj, "detected bzip2 compressed stream"); msg_Dbg (obj, "detected bzip2 compressed stream");
return Open (demux, "bzcat"); return Open (stream, "bzcat");
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment