~orcc/tce/Multiprocessor

« back to all changes in this revision

Viewing changes to tce/src/applibs/hdb/ExternalPort.hh

  • Committer: asanchez
  • Date: 2014-10-13 08:37:22 UTC
  • mfrom: (1643.1.493 tce)
  • Revision ID: sanchezalexandre@gmail.com-20141013083722-qpf8xak3n520bbhw
Merge with devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2002-2014 Tampere University of Technology.
 
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 ExternalPort.hh
 
26
 *
 
27
 * Declaration of ExternalPort class.
 
28
 *
 
29
 * @author Henry Linjam�ki 2014 (henry.linjamaki-no.spam-tut.fi)
 
30
 * @note rating: red
 
31
 */
 
32
 
 
33
#ifndef TTA_EXTERNALPORT_HH_
 
34
#define TTA_EXTERNALPORT_HH_
 
35
 
 
36
#include <string>
 
37
#include <vector>
 
38
 
 
39
#include "HDBTypes.hh"
 
40
#include "Exception.hh"
 
41
 
 
42
namespace HDB {
 
43
 
 
44
/**
 
45
 * Represents base class for a non-architectural port of an implementation
 
46
 * in HDB.
 
47
 */
 
48
class ExternalPort {
 
49
public:
 
50
    ExternalPort(
 
51
        const std::string& name,
 
52
        Direction direction,
 
53
        const std::string& widthFormula,
 
54
        const std::string& description);
 
55
    virtual ~ExternalPort();
 
56
 
 
57
    void setName(const std::string& name);
 
58
    std::string name() const;
 
59
    void setDirection(Direction direction);
 
60
    Direction direction() const;
 
61
    void setWidthFormula(const std::string& widthFormula);
 
62
    std::string widthFormula() const;
 
63
    void setDescription(const std::string& description);
 
64
    std::string description() const;
 
65
 
 
66
    bool setParameterDependency(const std::string& parameter);
 
67
    bool unsetParameterDependency(const std::string& parameter);
 
68
    int parameterDependencyCount() const;
 
69
    std::string parameterDependency(int index) const
 
70
        throw (OutOfRange);
 
71
 
 
72
private:
 
73
    /// Typedef for string vector.
 
74
    typedef std::vector<std::string> ParameterTable;
 
75
 
 
76
    /// Name of the port.
 
77
    std::string name_;
 
78
    /// Direction of the port.
 
79
    Direction direction_;
 
80
    /// The formula for the width of the port.
 
81
    std::string widthFormula_;
 
82
    /// Description of the port.
 
83
    std::string description_;
 
84
    ParameterTable parameterDeps_;
 
85
};
 
86
 
 
87
}
 
88
 
 
89
#endif