psi2ts: payload pointer handling still missing :(
[senf.git] / Examples / psi2tsModule / psi2ts.cc
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.cc non-inline non-template implementation */
25
26 #include "psi2ts.hh"
27 //#include "psi2ts.ih"
28
29 // Custom includes
30
31 //#include "psi2ts.cc.mpp"
32
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 namespace {
37     template <class InputIterator, class Distance>
38     void advance_max(InputIterator& i, Distance n, InputIterator& i_end)
39     {
40         Distance d = std::min( std::distance(i, i_end), n);
41         std::advance( i, d);
42     }
43 }
44
45
46 prefix_ Psi2TsModule::Psi2TsModule(unsigned pid)
47 {
48     pid_ = pid;
49     continuity_counter_ = 0;
50     state_ = IDLE;
51     route( input, output );
52     input.onRequest( &Psi2TsModule::onRequest );
53 }
54
55 prefix_ void Psi2TsModule::onRequest()
56 {
57     senf::PacketData & section = input.read().data();
58     iterator sec_end = section.end();
59     iterator begin = section.begin();
60     iterator end = section.begin();
61     advance_max( end, 184, sec_end);
62     
63     do {
64         senf::TransportPacket tsPacket (senf::TransportPacket::create(188));
65         tsPacket->continuity_counter() = next_continuity_counter();
66         tsPacket->pid() = pid_;
67         if (state_ == IDLE) {
68             state_ = PROC;
69             tsPacket->pusi() = true;
70         }
71         senf::PacketData & payloadData (tsPacket.next().data());
72         std::fill(
73                 std::copy( begin, end, payloadData.begin() ),
74                 payloadData.end(),
75                 0xff
76         );
77         tsPacket.finalize();
78         
79         output.write( tsPacket);
80         
81         advance_max( begin, 184, sec_end);
82         advance_max( end,   184, sec_end);
83     } while (begin != end);
84     state_ = IDLE;
85 }
86
87 prefix_ unsigned Psi2TsModule::next_continuity_counter()
88 {
89     continuity_counter_ = (continuity_counter_ + 1) % 16;
90     return continuity_counter_;
91 }
92
93
94 ///////////////////////////////cc.e////////////////////////////////////////
95 #undef prefix_
96 //#include "psi2ts.cc.mpp"
97
98 \f
99 // Local Variables:
100 // mode: c++
101 // fill-column: 100
102 // comment-column: 40
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // End: