use std::cmp::min;
use std::io;
use std::io::prelude::*;
use lzw;
use traits::{Parameter, WriteBytesExt};
use common::{Block, Frame, Extension, DisposalMethod};
pub enum Repeat {
Finite(u16),
Infinite
}
impl<W: Write> Parameter<Encoder<W>> for Repeat {
type Result = Result<(), io::Error>;
fn set_param(self, this: &mut Encoder<W>) -> Self::Result {
this.write_extension(ExtensionData::Repetitions(self))
}
}
pub enum ExtensionData {
Control {
flags: u8,
delay: u16,
trns: u8
},
Repetitions(Repeat)
}
impl ExtensionData {
pub fn new_control_ext(delay: u16, dispose: DisposalMethod,
needs_user_input: bool, trns: Option<u8>) -> ExtensionData {
let mut flags = 0;
let trns = match trns {
Some(trns) => {
flags |= 1;
trns as u8
},
None => 0
};
flags |= (needs_user_input as u8) << 1;
flags |= (dispose as u8) << 2;
ExtensionData::Control {
flags: flags,
delay: delay,
trns: trns
}
}
}
struct BlockWriter<'a, W: Write + 'a> {
w: &'a mut W,
bytes: usize,
buf: [u8; 0xFF]
}
impl<'a, W: Write + 'a> BlockWriter<'a, W> {
fn new(w: &'a mut W) -> BlockWriter<'a, W> {
BlockWriter {
w: w,
bytes: 0,
buf: [0; 0xFF]
}
}
}
impl<'a, W: Write + 'a> Write for BlockWriter<'a, W> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
let to_copy = min(buf.len(), 0xFF - self.bytes);
{ let destination = &mut self.buf[self.bytes..];
destination[..to_copy].copy_from_slice(&buf[..to_copy]);
}
self.bytes += to_copy;
if self.bytes == 0xFF {
self.bytes = 0;
self.w.write_le(0xFFu8)?;
self.w.write_all(&self.buf)?;
}
Ok(to_copy)
}
fn flush(&mut self) -> io::Result<()> {
return Err(io::Error::new(
io::ErrorKind::Other,
"Cannot flush a BlockWriter, use `drop` instead."
))
}
}
impl<'a, W: Write + 'a> Drop for BlockWriter<'a, W> {
#[cfg(feature = "raii_no_panic")]
fn drop(&mut self) {
if self.bytes > 0 {
let _ = self.w.write_le(self.bytes as u8);
let _ = self.w.write_all(&self.buf[..self.bytes]);
}
}
#[cfg(not(feature = "raii_no_panic"))]
fn drop(&mut self) {
if self.bytes > 0 {
self.w.write_le(self.bytes as u8).unwrap();
self.w.write_all(&self.buf[..self.bytes]).unwrap();
}
}
}
pub struct Encoder<W: Write> {
w: W,
global_palette: bool,
width: u16,
height: u16
}
impl<W: Write> Encoder<W> {
pub fn new(w: W, width: u16, height: u16, global_palette: &[u8]) -> io::Result<Self> {
Encoder {
w: w,
global_palette: false,
width: width,
height: height
}.write_global_palette(global_palette)
}
pub fn write_global_palette(mut self, palette: &[u8]) -> io::Result<Self> {
self.global_palette = true;
let mut flags = 0;
flags |= 0b1000_0000;
let num_colors = palette.len() / 3;
if num_colors > 256 {
return Err(io::Error::new(io::ErrorKind::InvalidInput, "Too many colors"));
}
flags |= flag_size(num_colors);
flags |= flag_size(num_colors) << 4; self.write_screen_desc(flags)?;
self.write_color_table(palette)?;
Ok(self)
}
pub fn write_frame(&mut self, frame: &Frame) -> io::Result<()> {
self.write_extension(ExtensionData::new_control_ext(
frame.delay,
frame.dispose,
frame.needs_user_input,
frame.transparent
))?;
self.w.write_le(Block::Image as u8)?;
self.w.write_le(frame.left)?;
self.w.write_le(frame.top)?;
self.w.write_le(frame.width)?;
self.w.write_le(frame.height)?;
let mut flags = 0;
if frame.interlaced {
flags |= 0b0100_0000;
}
match frame.palette {
Some(ref palette) => {
flags |= 0b1000_0000;
let num_colors = palette.len() / 3;
if num_colors > 256 {
return Err(io::Error::new(io::ErrorKind::InvalidInput, "Too many colors"));
}
flags |= flag_size(num_colors);
self.w.write_le(flags)?;
self.write_color_table(palette)
},
None => if !self.global_palette {
return Err(io::Error::new(
io::ErrorKind::InvalidInput,
"The GIF format requires a color palette but none was given."
))
} else {
self.w.write_le(flags)
}
}?;
self.write_image_block(&frame.buffer)
}
fn write_image_block(&mut self, data: &[u8]) -> io::Result<()> {
{
let min_code_size: u8 = match flag_size(*data.iter().max().unwrap_or(&0) as usize + 1) + 1 {
1 => 2, n => n
};
self.w.write_le(min_code_size)?;
let mut bw = BlockWriter::new(&mut self.w);
let mut enc = lzw::Encoder::new(lzw::LsbWriter::new(&mut bw), min_code_size)?;
enc.encode_bytes(data)?;
}
self.w.write_le(0u8)
}
fn write_color_table(&mut self, table: &[u8]) -> io::Result<()> {
let num_colors = table.len() / 3;
if num_colors > 256 {
return Err(io::Error::new(io::ErrorKind::InvalidInput, "Too many colors"));
}
let size = flag_size(num_colors);
self.w.write_all(&table[..num_colors * 3])?;
for _ in 0..((2 << size) - num_colors) {
self.w.write_all(&[0, 0, 0])?
}
Ok(())
}
pub fn write_extension(&mut self, extension: ExtensionData) -> io::Result<()> {
use self::ExtensionData::*;
if let Repetitions(Repeat::Finite(0)) = extension {
return Ok(())
}
self.w.write_le(Block::Extension as u8)?;
match extension {
Control { flags, delay, trns } => {
self.w.write_le(Extension::Control as u8)?;
self.w.write_le(4u8)?;
self.w.write_le(flags)?;
self.w.write_le(delay)?;
self.w.write_le(trns)?;
}
Repetitions(repeat) => {
self.w.write_le(Extension::Application as u8)?;
self.w.write_le(11u8)?;
self.w.write(b"NETSCAPE2.0")?;
self.w.write_le(3u8)?;
self.w.write_le(1u8)?;
match repeat {
Repeat::Finite(no) => self.w.write_le(no)?,
Repeat::Infinite => self.w.write_le(0u16)?,
}
}
}
self.w.write_le(0u8)
}
pub fn write_raw_extension(&mut self, func: u8, data: &[&[u8]]) -> io::Result<()> {
self.w.write_le(Block::Extension as u8)?;
self.w.write_le(func as u8)?;
for block in data {
for chunk in block.chunks(0xFF) {
self.w.write_le(chunk.len() as u8)?;
self.w.write_all(chunk)?;
}
}
self.w.write_le(0u8)
}
fn write_screen_desc(&mut self, flags: u8) -> io::Result<()> {
self.w.write_all(b"GIF89a")?;
self.w.write_le(self.width)?;
self.w.write_le(self.height)?;
self.w.write_le(flags)?; self.w.write_le(0u8)?; self.w.write_le(0u8) }
}
impl<W: Write> Drop for Encoder<W> {
#[cfg(feature = "raii_no_panic")]
fn drop(&mut self) {
let _ = self.w.write_le(Block::Trailer as u8);
}
#[cfg(not(feature = "raii_no_panic"))]
fn drop(&mut self) {
self.w.write_le(Block::Trailer as u8).unwrap()
}
}
fn flag_size(size: usize) -> u8 {
match size {
0 ...2 => 0,
3 ...4 => 1,
5 ...8 => 2,
7 ...16 => 3,
17 ...32 => 4,
33 ...64 => 5,
65 ...128 => 6,
129...256 => 7,
_ => 7
}
}