blob: 5fd2792ea5b978b9345cd6a613b66881f81e73eb [file] [log] [blame]
Zane Shelley93b61ad2019-10-16 20:41:03 -05001#pragma once
2
Zane Shelley3a02e242020-05-08 16:25:36 -05003#include <hei_chip.hpp>
4#include <hei_types.hpp>
Zane Shelley93b61ad2019-10-16 20:41:03 -05005
6namespace libhei
7{
8
9/**
Zane Shelley6722b5b2020-05-12 22:09:04 -050010 * @brief A signature represents an active attention from a single bit position
11 * from an isolation node within a chip.
Zane Shelley93b61ad2019-10-16 20:41:03 -050012 *
13 * The isolator will gather a list of all active attentions on a chip and return
14 * a list of signatures to the user application. The user application should be
15 * able to determine what actions to take based on these signatures.
16 */
17class Signature
18{
19 public: // Constructors, destructor, assignment, etc.
Zane Shelley93b61ad2019-10-16 20:41:03 -050020 /**
21 * @brief Constructor from components.
22 * @param i_chip The chip containing this register.
Zane Shelley6722b5b2020-05-12 22:09:04 -050023 * @param i_id The node ID.
Zane Shelley93b61ad2019-10-16 20:41:03 -050024 * @param i_instance The instance of this register.
25 * @param i_bit The target bit within this register.
26 * @param i_attnType The attention type reported by this bit.
27 */
Zane Shelley6722b5b2020-05-12 22:09:04 -050028 Signature(const Chip& i_chip, NodeId_t i_id, Instance_t i_instance,
Zane Shelley13b182b2020-05-07 20:23:45 -050029 BitPosition_t i_bit, AttentionType_t i_attnType) :
Zane Shelley7f7a42d2019-10-28 13:28:31 -050030 iv_chip(i_chip),
31 iv_id(i_id), iv_instance(i_instance), iv_bit(i_bit),
32 iv_attnType(i_attnType)
Zane Shelley93b61ad2019-10-16 20:41:03 -050033 {}
34
35 /** @brief Destructor. */
36 ~Signature() = default;
37
38 /** @brief Copy constructor. */
Zane Shelleyfe27b652019-10-28 11:33:07 -050039 Signature(const Signature&) = default;
Zane Shelley93b61ad2019-10-16 20:41:03 -050040
41 /** @brief Assignment operator. */
Zane Shelleyfe27b652019-10-28 11:33:07 -050042 Signature& operator=(const Signature&) = default;
Zane Shelley93b61ad2019-10-16 20:41:03 -050043
Zane Shelley7c8faa12019-10-28 22:26:28 -050044 private:
Zane Shelley13b182b2020-05-07 20:23:45 -050045 Chip iv_chip; ///< Chip containing this register.
Zane Shelley6722b5b2020-05-12 22:09:04 -050046 NodeId_t iv_id; ///< Node ID.
Zane Shelley13b182b2020-05-07 20:23:45 -050047 Instance_t iv_instance; ///< Instance of this register.
48 BitPosition_t iv_bit; ///< Target bit within this register.
49 AttentionType_t iv_attnType; ///< Attention type reported by this bit.
Zane Shelley93b61ad2019-10-16 20:41:03 -050050
51 public: // Member functions
Zane Shelley93b61ad2019-10-16 20:41:03 -050052 /** @return The chip containing this register. */
Zane Shelley7f7a42d2019-10-28 13:28:31 -050053 const Chip& getChip() const
54 {
55 return iv_chip;
56 }
Zane Shelley93b61ad2019-10-16 20:41:03 -050057
58 /** @return The register ID. */
Zane Shelley6722b5b2020-05-12 22:09:04 -050059 NodeId_t getId() const
Zane Shelley7f7a42d2019-10-28 13:28:31 -050060 {
61 return iv_id;
62 }
Zane Shelley93b61ad2019-10-16 20:41:03 -050063
64 /** @return The instance of this register. */
Zane Shelley13b182b2020-05-07 20:23:45 -050065 Instance_t getInstance() const
Zane Shelley7f7a42d2019-10-28 13:28:31 -050066 {
67 return iv_instance;
68 }
Zane Shelley93b61ad2019-10-16 20:41:03 -050069
70 /** @return The target bit within this register. */
Zane Shelley13b182b2020-05-07 20:23:45 -050071 BitPosition_t getBit() const
Zane Shelley7f7a42d2019-10-28 13:28:31 -050072 {
73 return iv_bit;
74 }
Zane Shelley93b61ad2019-10-16 20:41:03 -050075
76 /** @return The attention type reported by this bit. */
Zane Shelley7f7a42d2019-10-28 13:28:31 -050077 AttentionType_t getAttnType() const
78 {
79 return iv_attnType;
80 }
Zane Shelley11b89942019-11-07 11:07:28 -060081
82 public: // Operators
83 /** @brief Equals operator. */
84 bool operator==(const Signature& i_r) const
85 {
86 return (getChip() == i_r.getChip() && getId() == i_r.getId() &&
87 getInstance() == i_r.getInstance() &&
88 getBit() == i_r.getBit() && getAttnType() == i_r.getAttnType());
89 }
90
91 /** @brief Less than operator. */
92 bool operator<(const Signature& i_r) const
93 {
94 if (getChip() < i_r.getChip())
95 {
96 return true;
97 }
98 else if (getChip() == i_r.getChip())
99 {
100 if (getId() < i_r.getId())
101 {
102 return true;
103 }
104 else if (getId() == i_r.getId())
105 {
106 if (getInstance() < i_r.getInstance())
107 {
108 return true;
109 }
110 else if (getInstance() == i_r.getInstance())
111 {
112 if (getBit() < i_r.getBit())
113 {
114 return true;
115 }
116 else if (getBit() == i_r.getBit())
117 {
118 return (getAttnType() < i_r.getAttnType());
119 }
120 }
121 }
122 }
123
124 return false;
125 }
Zane Shelley93b61ad2019-10-16 20:41:03 -0500126};
127
128} // end namespace libhei