Open Lighting Architecture  0.10.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
DMPInflator.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  * DMPInflator.h
17  * Interface for the DMPInflator class.
18  * Copyright (C) 2009 Simon Newton
19  */
20 
21 #ifndef LIBS_ACN_DMPINFLATOR_H_
22 #define LIBS_ACN_DMPINFLATOR_H_
23 
24 #include "ola/acn/ACNVectors.h"
25 #include "libs/acn/BaseInflator.h"
26 #include "libs/acn/DMPHeader.h"
27 
28 namespace ola {
29 namespace acn {
30 
31 class DMPInflator: public BaseInflator {
32  friend class DMPInflatorTest;
33 
34  public:
35  DMPInflator(): BaseInflator(PDU::ONE_BYTE),
36  m_last_header_valid(false) {
37  }
38  virtual ~DMPInflator() {}
39 
40  uint32_t Id() const { return ola::acn::VECTOR_E131_DATA; }
41 
42  protected:
43  bool DecodeHeader(HeaderSet *headers,
44  const uint8_t *data,
45  unsigned int len,
46  unsigned int *bytes_used);
47 
48  void ResetHeaderField();
49  private:
50  DMPHeader m_last_header;
51  bool m_last_header_valid;
52 };
53 } // namespace acn
54 } // namespace ola
55 #endif // LIBS_ACN_DMPINFLATOR_H_
Definition: HeaderSet.h:35
Definition: BaseInflator.h:63
ACN Vector values.
Definition: DMPHeader.h:33
The namespace containing all OLA symbols.
Definition: Credentials.cpp:44
Definition: ACNVectors.h:64
Definition: DMPInflator.h:31