Open Lighting Architecture  0.9.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
E131PDU.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Library General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15  *
16  * E131PDU.h
17  * Interface for the E131PDU class
18  * Copyright (C) 2007 Simon Newton
19  */
20 
21 #ifndef PLUGINS_E131_E131_E131PDU_H_
22 #define PLUGINS_E131_E131_E131PDU_H_
23 
24 #include "plugins/e131/e131/PDU.h"
25 #include "plugins/e131/e131/E131Header.h"
26 
27 namespace ola {
28 namespace plugin {
29 namespace e131 {
30 
31 class DMPPDU;
32 
33 class E131PDU: public PDU {
34  public:
35  E131PDU(unsigned int vector,
36  const E131Header &header,
37  const DMPPDU *dmp_pdu):
38  PDU(vector),
39  m_header(header),
40  m_dmp_pdu(dmp_pdu) {}
41  ~E131PDU() {}
42 
43  unsigned int HeaderSize() const;
44  unsigned int DataSize() const;
45  bool PackHeader(uint8_t *data, unsigned int *length) const;
46  bool PackData(uint8_t *data, unsigned int *length) const;
47 
48  void PackHeader(ola::io::OutputStream *stream) const;
49  void PackData(ola::io::OutputStream *stream) const;
50 
51  private:
52  E131Header m_header;
53  const DMPPDU *m_dmp_pdu;
54 };
55 } // namespace e131
56 } // namespace plugin
57 } // namespace ola
58 #endif // PLUGINS_E131_E131_E131PDU_H_