68f7aecf238758365b89ddfba57a5d261229823f
[senf.git] / Examples / psi2tsModule / psi2ts.hh
1 // $Id$
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_SENF_Examples_psi2tsModule_psi2ts_
27 #define HH_SENF_Examples_psi2tsModule_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 //-/////////////////////////////////////////////////////////////////////////////////////////////////
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(unsigned pid, senf::ClockService::clock_type timout=0);
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     unsigned pid_;
57     senf::ClockService::clock_type timeout_;
58 };
59
60
61 //-/////////////////////////////////////////////////////////////////////////////////////////////////
62 //#include "psi2ts.cci"
63 //#include "psi2ts.ct"
64 //#include "psi2ts.cti"
65 #endif
66
67 \f
68 // Local Variables:
69 // mode: c++
70 // fill-column: 100
71 // comment-column: 40
72 // c-file-style: "senf"
73 // indent-tabs-mode: nil
74 // ispell-local-dictionary: "american"
75 // compile-command: "scons -u test"
76 // End: