OpenASIP 2.2
Loading...
Searching...
No Matches
TPEFUDataSectionReader.cc
Go to the documentation of this file.
1/*
2 Copyright (c) 2002-2009 Tampere University.
3
4 This file is part of TTA-Based Codesign Environment (TCE).
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the "Software"),
8 to deal in the Software without restriction, including without limitation
9 the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 and/or sell copies of the Software, and to permit persons to whom the
11 Software is furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23 */
24/**
25 * @file TPEFUDataSectionReader.cc
26 *
27 * Definition of TPEFUDataSectionReader class.
28 *
29 * @author Mikael Lepistö 2003 (tmlepist-no.spam-cs.tut.fi)
30 *
31 * @note rating: yellow
32 */
33
35#include "SectionReader.hh"
36#include "BaseType.hh"
37#include "SafePointer.hh"
38
39#include "UDataSection.hh"
40
41namespace TPEF {
42
43using ReferenceManager::SafePointer;
44using ReferenceManager::SectionIndexKey;
45using std::string;
46
47TPEFUDataSectionReader TPEFUDataSectionReader::proto_;
48
49/**
50 * Constructor.
51 *
52 * Registers itself to SectionReader.
53 */
57
58/**
59 * Destructor.
60 */
63
64/**
65 * Returns the type of section it is meant to read.
66 *
67 * @return The type of section it can read.
68 */
73
74/**
75 * Reads section data from TPEF binary file.
76 *
77 * @param stream Stream to be read from.
78 * @param section Section where the information is to be stored.
79 * @exception UnreachableStream If reading of section fails.
80 * @exception KeyAlreadyExists Key was in use when trying to register object.
81 * @exception EndOfFile If end of file were reached while it shouldn't.
82 * @exception OutOfRange Some of read values were out of range.
83 * @exception WrongSubclass Some class couldn't do what it was asked for.
84 * @exception UnexpectedValue If there was unexpected value when reading.
85 */
86void
88 // base classes implementation must be called with these TPEF readers
89 TPEFSectionReader::readData(stream, section);
90
91 UDataSection* uDataSection = dynamic_cast<UDataSection*>(section);
92 assert(uDataSection != NULL);
93
94 // check that link section is defined properly
95 assert(header().linkId == 0);
96
97 dynamic_cast<TPEFReader*>(
98 parent())->addSectionSize(section, header().bodyLength);
99
100 uDataSection->setDataLength(header().bodyLength);
101}
102}
#define assert(condition)
virtual void setDataLength(Word length)
Definition Section.cc:253
static void registerSectionReader(const SectionReader *sReader)
@ ST_UDATA
Uninitialized data section.
Definition Section.hh:81
virtual BinaryReader * parent() const
virtual void readData(BinaryStream &stream, Section *section) const
static const Header & header()
static TPEFUDataSectionReader proto_
Prototype instance of TPEFUDataSectionReader to be registered to SectionReader.
virtual void readData(BinaryStream &stream, Section *section) const
virtual Section::SectionType type() const