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
|
#include <config.h>
#include "transformation.h"
/*
* Initialize
*/
static int
null_initialize(UNUSED(Transformation *xform), UNUSED(int enc))
{
return 0;
}
/*
* Shut down.
*/
static int
null_shutdown(UNUSED(Transformation *xform))
{
return 0;
}
/*
* Handle fork.
*/
static int
null_startNewTape(UNUSED(Transformation *xform), UNUSED(struct tapebuf *tpbin),
UNUSED(unsigned long *destlen))
{
return 0;
}
/*
* Start slave process.
*/
static int
null_startDiskIOProcess(UNUSED(Transformation *xform))
{
return 0;
}
/*
* End slave process.
*/
static int
null_endDiskIOProcess(UNUSED(Transformation *xform))
{
return 0;
}
/*
* Compress a buffer.
*/
static int
null_compress(UNUSED(Transformation *xform), struct tapebuf *tpbin, unsigned long *destlen,
const char *src, int srclen)
{
memcpy(tpbin->buf, src, srclen);
*destlen = srclen;
return 1;
}
/*
* Decompress a buffer.
*/
static int
null_decompress(UNUSED(Transformation *xform), struct tapebuf *tpbin, unsigned long *destlen,
const char *src, int srclen, UNUSED(char **reason))
{
memcpy(tpbin->buf, src, srclen);
*destlen = srclen;
return 1;
}
/*
*
*/
Transformation transformation_null =
{
0,
{0},
"null",
0,
&null_initialize,
&null_shutdown,
&null_startNewTape,
&null_startDiskIOProcess,
&null_endDiskIOProcess,
&null_compress,
&null_decompress
};
|