root/libbase/IOChannel.cpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. read_le32
  2. read_le16
  3. read_string
  4. read_float32
  5. read_byte
  6. write

// IOChannel.cpp - a virtual IO channel, for Gnash
//
//   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
//   2011 Free Software Foundation, Inc
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
//


#include "IOChannel.h"

#include <boost/static_assert.hpp>

namespace gnash
{

boost::uint32_t
IOChannel::read_le32() 
{
    // read_byte() is boost::uint8_t, so no masks with 0xff are required.
    boost::uint32_t result = static_cast<boost::uint32_t>(read_byte());
    result |= static_cast<boost::uint32_t>(read_byte()) << 8;
    result |= static_cast<boost::uint32_t>(read_byte()) << 16;
    result |= static_cast<boost::uint32_t>(read_byte()) << 24;
    return(result);
}

boost::uint16_t
IOChannel::read_le16()
{
    boost::uint16_t result = static_cast<boost::uint16_t>(read_byte());
    result |= static_cast<boost::uint16_t>(read_byte()) << 8;
    return(result);
}

int
IOChannel::read_string(char* dst, int max_length) 
{
    int i = 0;
    while (i<max_length)
    {
        dst[i] = read_byte();
        if (dst[i]=='\0') return i;
        i++;
    }
    
    dst[max_length - 1] = '\0';    // force termination.
    
    return -1;
}

float
IOChannel::read_float32()
{
    union {
        float    f;
        boost::uint32_t    i;
    } u;

    BOOST_STATIC_ASSERT(sizeof(u) == sizeof(u.i));
    
    u.i = read_le32();
    return u.f;
}

boost::uint8_t
IOChannel::read_byte()
{
    boost::uint8_t u;
    if ( read(&u, 1) == -1 )
    {
        throw IOException("Could not read a single byte from input");
    }
    return u;
}

std::streamsize
IOChannel::write(const void* /*src*/, std::streamsize /*num*/)
{
    throw IOException("This IOChannel implementation doesn't support output");
}

} // namespace gnash

/* [<][>][^][v][top][bottom][index][help] */