]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAFixedRecordDataType.cxx
hla: Fix buffer overrun in SGMath vector types.
[simgear.git] / simgear / hla / HLAFixedRecordDataType.cxx
1 // Copyright (C) 2009 - 2012  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #include "HLAFixedRecordDataType.hxx"
19
20 #include "HLADataTypeVisitor.hxx"
21 #include "HLAFixedRecordDataElement.hxx"
22
23 namespace simgear {
24
25 HLAFixedRecordDataType::HLAFixedRecordDataType(const std::string& name) :
26     HLADataType(name)
27 {
28 }
29
30 HLAFixedRecordDataType::~HLAFixedRecordDataType()
31 {
32 }
33
34 void
35 HLAFixedRecordDataType::accept(HLADataTypeVisitor& visitor) const
36 {
37     visitor.apply(*this);
38 }
39
40 const HLAFixedRecordDataType*
41 HLAFixedRecordDataType::toFixedRecordDataType() const
42 {
43     return this;
44 }
45
46 void
47 HLAFixedRecordDataType::releaseDataTypeReferences()
48 {
49     unsigned numFields = getNumFields();
50     for (unsigned i = 0; i < numFields; ++i)
51         _fieldList[i].releaseDataTypeReferences();
52 }
53
54 bool
55 HLAFixedRecordDataType::decode(HLADecodeStream& stream, HLAAbstractFixedRecordDataElement& value) const
56 {
57     stream.alignOffsetForSize(getAlignment());
58     unsigned numFields = getNumFields();
59     for (unsigned i = 0; i < numFields; ++i)
60         if (!value.decodeField(stream, i))
61             return false;
62     return true;
63 }
64
65 bool
66 HLAFixedRecordDataType::encode(HLAEncodeStream& stream, const HLAAbstractFixedRecordDataElement& value) const
67 {
68     stream.alignOffsetForSize(getAlignment());
69     unsigned numFields = getNumFields();
70     for (unsigned i = 0; i < numFields; ++i)
71         if (!value.encodeField(stream, i))
72             return false;
73     return true;
74 }
75
76 void
77 HLAFixedRecordDataType::addField(const std::string& name, const HLADataType* dataType)
78 {
79     _fieldList.push_back(Field(name, dataType));
80 }
81
82 void
83 HLAFixedRecordDataType::_recomputeAlignmentImplementation()
84 {
85     unsigned alignment = 1;
86     for (unsigned i = 0; i < getNumFields(); ++i) {
87         if (const HLADataType* dataType = getFieldDataType(i))
88             alignment = std::max(alignment, dataType->getAlignment());
89     }
90     setAlignment(alignment);
91 }
92
93 } // namespace simgear