aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/types/sid.cpp
blob: 40f84a2aad5e5458cf38151b15b6b5be20542220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
//
// Copyright 2014-2016 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
//

#include <uhd/types/sid.hpp>
#include <uhd/exception.hpp>
#include <uhd/utils/cast.hpp>
#include <boost/format.hpp>
#include <boost/regex.hpp>
#include <boost/lexical_cast.hpp>

using namespace uhd;

sid_t::sid_t()
    : _sid(0x0000), _set(false)
{
}

sid_t::sid_t(uint32_t sid)
    : _sid(sid), _set(true)
{
}

sid_t::sid_t(uint8_t src_addr, uint8_t src_ep, uint8_t dst_addr, uint8_t dst_ep)
    :  _sid(0x0000), _set(true)
{
    set_src_addr(src_addr);
    set_src_endpoint(src_ep);
    set_dst_addr(dst_addr);
    set_dst_endpoint(dst_ep);
}

sid_t::sid_t(const std::string &sid_str)
    : _sid(0x0000), _set(false)
{
    set_from_str(sid_str);
}

std::string sid_t::to_pp_string() const
{
    if (not _set) {
        return "x.x>x.x";
    }
    return str(boost::format("%d.%d>%d.%d")
        % get_src_addr()
        % get_src_endpoint()
        % get_dst_addr()
        % get_dst_endpoint()
    );
}

std::string sid_t::to_pp_string_hex() const
{
    if (not _set) {
        return "xx:xx>xx:xx";
    }
    return str(boost::format("%02x:%02x>%02x:%02x")
        % get_src_addr()
        % get_src_endpoint()
        % get_dst_addr()
        % get_dst_endpoint()
    );
}


void sid_t::set_sid(uint32_t new_sid)
{
    _set = true;
    _sid = new_sid;
}

void sid_t::set_from_str(const std::string &sid_str)
{
    const std::string dec_regex = "(\\d{1,3})\\.(\\d{1,3})[.:/><](\\d{1,3})\\.(\\d{1,3})";
    const std::string hex_regex = "([[:xdigit:]]{2}):([[:xdigit:]]{2})[.:/><]([[:xdigit:]]{2}):([[:xdigit:]]{2})";

    boost::cmatch matches;
    if (boost::regex_match(sid_str.c_str(), matches, boost::regex(dec_regex))) {
        set_src_addr(boost::lexical_cast<size_t>(matches[1]));
        set_src_endpoint(boost::lexical_cast<size_t>(matches[2]));
        set_dst_addr(boost::lexical_cast<size_t>(matches[3]));
        set_dst_endpoint(boost::lexical_cast<size_t>(matches[4]));
        return;
    }

    if (boost::regex_match(sid_str.c_str(), matches, boost::regex(hex_regex))) {
        set_src_addr(uhd::cast::hexstr_cast<size_t>(matches[1]));
        set_src_endpoint(uhd::cast::hexstr_cast<size_t>(matches[2]));
        set_dst_addr(uhd::cast::hexstr_cast<size_t>(matches[3]));
        set_dst_endpoint(uhd::cast::hexstr_cast<size_t>(matches[4]));
        return;
    }

    throw uhd::value_error(str(boost::format("Invalid SID representation: %s") % sid_str));
}

void sid_t::set_src(uint32_t new_addr) {
    set_sid((_sid & 0x0000FFFF) | ((new_addr & 0xFFFF) << 16));
}

void sid_t::set_dst(uint32_t new_addr) {
    set_sid((_sid & 0xFFFF0000) | (new_addr & 0xFFFF));
}

void sid_t::set_src_addr(uint32_t new_addr) {
    set_sid((_sid & 0x00FFFFFF) | ((new_addr & 0xFF) << 24));
}

void sid_t::set_src_endpoint(uint32_t new_addr) {
    set_sid((_sid & 0xFF00FFFF) | ((new_addr & 0xFF) << 16));
}

void sid_t::set_dst_addr(uint32_t new_addr) {
    set_sid((_sid & 0xFFFF00FF) | ((new_addr & 0xFF) << 8));
}

void sid_t::set_dst_endpoint(uint32_t new_addr) {
    set_sid((_sid & 0xFFFFFF00) | ((new_addr & 0xFF) << 0));
}

void sid_t::set_dst_xbarport(uint32_t new_xbarport)
{
    set_sid((_sid & 0xFFFFFF0F) | ((new_xbarport & 0xF) << 4));
}

void sid_t::set_dst_blockport(uint32_t new_blockport)
{
    set_sid((_sid & 0xFFFFFFF0) | ((new_blockport & 0xF) << 0));
}

sid_t sid_t::reversed() const
{
    return sid_t((get_dst() << 16) | get_src());
}

void sid_t::reverse()
{
    set_sid((get_dst() << 16) | get_src());
}