very fist alpha version of PSI-Section-to-TransportPacket encoder
[senf.git] / Examples / psi2tsModule / psi2ts.hh
1 // $Id: Example.hh 661 2008-02-05 09:53:54Z tho $
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief psi2ts.hh public header */
25
26 #ifndef HH_psi2ts_
27 #define HH_psi2ts_ 1
28
29 // Custom includes
30 #include <senf/PPI/PPI.hh>
31 #include <senf/PPI/Module.hh>
32 #include <senf/PPI/Connectors.hh>
33 #include <senf/Packets/PacketData.hh>
34 #include <senf/Packets/MPEGDVBBundle/TransportPacket.hh>
35
36 //#include "psi2ts.mpp"
37 ///////////////////////////////hh.p////////////////////////////////////////
38
39 class Psi2TsModule
40     : public senf::ppi::module::Module
41 {
42     SENF_PPI_MODULE(Psi2TsModule);
43
44 public: 
45     senf::ppi::connector::PassiveInput<> input;
46     senf::ppi::connector::ActiveOutput<senf::TransportPacket> output;
47     Psi2TsModule(); 
48     void onRequest();
49     
50 private:
51     enum state {IDLE, PROC, WAIT};
52     typedef senf::PacketData::iterator iterator;
53     unsigned continuity_counter_;
54     unsigned next_continuity_counter();
55     state state_;
56         
57 };
58
59
60 ///////////////////////////////hh.e////////////////////////////////////////
61 //#include "psi2ts.cci"
62 //#include "psi2ts.ct"
63 //#include "psi2ts.cti"
64 #endif
65
66 \f
67 // Local Variables:
68 // mode: c++
69 // fill-column: 100
70 // comment-column: 40
71 // c-file-style: "senf"
72 // indent-tabs-mode: nil
73 // ispell-local-dictionary: "american"
74 // compile-command: "scons -u test"
75 // End: