X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FDVBAdapter%2FULEdec.hh;h=60f757bb1cd703f1453533424198e9649114357a;hb=ad287a6e1241649e73188edf5b8902e4e65f615d;hp=9ec78b0847f02d820ac31a6fc592e1609109a027;hpb=5331a98af6c5cc4c424b3ed834fb1498ea3d83ca;p=senf.git diff --git a/Examples/DVBAdapter/ULEdec.hh b/Examples/DVBAdapter/ULEdec.hh index 9ec78b0..60f757b 100644 --- a/Examples/DVBAdapter/ULEdec.hh +++ b/Examples/DVBAdapter/ULEdec.hh @@ -1,9 +1,9 @@ // $Id: ULEdec.cc 355 2007-07-26 14:17:02Z tho $ // -// Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Copyright (C) 2007 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Thorsten Horstmann // // 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 @@ -22,34 +22,21 @@ // Definition of non-inline non-template functions -#include -#include -#include -#include -#include -#include - -#include "Scheduler/Scheduler.hh" -#include "Packets/DefaultBundle/EthernetPacket.hh" -#include "Packets/MPEGDVBBundle/TransportPacket.hh" -#include "Packets/MPEGDVBBundle/SNDUPacket.hh" -#include "Utils/membind.hh" -#include "Socket/Protocols/DVB/DVBDemuxHandles.hh" -#include "Packets/ParseInt.hh" -#include "Packets/Packet.hh" -#include "Packets/PacketData.hh" -#include "Packets/ParseInt.hh" +#include +#include +#include +#include class ULEdec { public: - ULEdec(); + ULEdec(unsigned short adapter=0, unsigned short device=0); private: typedef senf::PacketData::iterator iterator; - enum ReciverState { + enum ReceiverState { Idle, Reassembly }; @@ -59,26 +46,32 @@ private: senf::SNDUPacket snduPacket; - ReciverState receiver_state; + ReceiverState receiver_state; unsigned char priv_tscc; bool priv_sndu_type_1; iterator snduPacketData_iter; - static const unsigned BLOCK_SIZE = 16; - - template - void hexdump(Iterator i, Iterator const & i_end, std::ostream& stream); - - void handleEvent(senf::FileHandle, senf::Scheduler::EventId event); - + void handleEvent(senf::Scheduler::EventId event); void handleTSPacket(senf::TransportPacket tsPacket); + void handleSNDUPacket(); + + iterator readNewSNDUPacket(iterator i, const iterator i_end); + iterator readContSNDUPacket(iterator i, const iterator i_end); + iterator readRawSNDUPacketData(iterator i, iterator const i_end); - iterator readNewSNDUPacket(iterator i_start, iterator i_end); - iterator readContSNDUPacket(iterator i_start, iterator i_end); - iterator readRawSNDUPacketData(iterator i_start, iterator i_end); + inline bool isSDNUPacketComplete(); + inline iterator::difference_type snduPacketBytesLeft(); }; + +struct ULEdecException : public senf::Exception +{ + ULEdecException(std::string const & what) + : senf::Exception(what) {} +}; + + // Local Variables: // mode: c++ @@ -86,6 +79,6 @@ private: // c-file-style: "senf" // indent-tabs-mode: nil // ispell-local-dictionary: "american" -// compile-command: "scons -u test" +// compile-command: "scons -u" // comment-column: 40 // End: