switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / Examples / DVBAdapter / ULEdec.hh
1 // $Id: ULEdec.cc 355 2007-07-26 14:17:02Z tho $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Thorsten Horstmann <tho@berlios.de>
27
28
29 // Definition of non-inline non-template functions
30
31 #include <senf/Scheduler/Scheduler.hh>
32 #include <senf/Packets/MPEGDVBBundle/TransportPacket.hh>
33 #include <senf/Packets/MPEGDVBBundle/SNDUPacket.hh>
34 #include <senf/Socket/Protocols/DVB.hh>
35
36
37 class ULEdec
38 {
39 public:
40     ULEdec(unsigned short adapter=0, unsigned short device=0);
41
42 private:
43     typedef senf::PacketData::iterator iterator;
44
45     enum ReceiverState {
46         Idle,
47         Reassembly
48     };
49
50     senf::DVBDemuxPESHandle demuxHandle;
51     senf::DVBDvrHandle dvrHandle;
52
53     senf::SNDUPacket snduPacket;
54
55     ReceiverState receiver_state;
56     unsigned char priv_tscc;
57     bool priv_sndu_type_1;
58     iterator snduPacketData_iter;
59
60     void handleEvent(senf::Scheduler::EventId event);
61     void handleTSPacket(senf::TransportPacket tsPacket);
62     void handleSNDUPacket();
63
64     iterator readNewSNDUPacket(iterator i, const iterator i_end);
65     iterator readContSNDUPacket(iterator i, const iterator i_end);
66     iterator readRawSNDUPacketData(iterator i, iterator const i_end);
67
68     inline bool isSDNUPacketComplete();
69     inline iterator::difference_type snduPacketBytesLeft();
70
71 };
72
73
74 struct ULEdecException : public senf::Exception
75 {
76     ULEdecException(std::string const & what)
77         : senf::Exception(what) {}
78 };
79
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // c-file-style: "senf"
86 // indent-tabs-mode: nil
87 // ispell-local-dictionary: "american"
88 // compile-command: "scons -u"
89 // comment-column: 40
90 // End: