ardour/libs/surfaces/websockets/state.cc
2020-02-22 23:10:24 +01:00

114 lines
2.4 KiB
C++

/*
* Copyright (C) 2020 Luciano Iam <lucianito@gmail.com>
*
* 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 2 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <sstream>
#include <boost/unordered_set.hpp>
#include "state.h"
NodeState::NodeState () { }
NodeState::NodeState (std::string node)
: _node (node) { }
NodeState::NodeState (std::string node, std::vector<uint32_t> addr,
std::vector<TypedValue> val)
: _node (node)
, _addr (addr)
, _val (val) { }
std::string
NodeState::debug_str () const
{
std::stringstream s;
s << "node = " << _node;
if (!_addr.empty ()) {
s << std::endl << " addr = ";
for (std::vector<uint32_t>::const_iterator it = _addr.begin (); it != _addr.end (); ++it) {
s << *it << ";";
}
}
for (std::vector<TypedValue>::const_iterator it = _val.begin (); it != _val.end (); ++it) {
s << std::endl << " val " << it->debug_str ();
}
return s.str ();
}
int
NodeState::n_addr () const
{
return static_cast<int>(_addr.size ());
}
uint32_t
NodeState::nth_addr (int n) const
{
return _addr[n];
}
void
NodeState::add_addr (uint32_t addr)
{
_addr.push_back (addr);
}
int
NodeState::n_val () const
{
return static_cast<int>(_val.size ());
}
TypedValue
NodeState::nth_val (int n) const
{
if (n_val () < n) {
return TypedValue ();
}
return _val[n];
}
void
NodeState::add_val (TypedValue val)
{
_val.push_back (val);
}
std::size_t
NodeState::node_addr_hash () const
{
std::size_t seed = 0;
boost::hash_combine (seed, _node);
boost::hash_combine (seed, _addr);
return seed;
}
bool
NodeState::operator== (const NodeState& other) const
{
return node_addr_hash () == other.node_addr_hash ();
}
std::size_t hash_value (const NodeState &state)
{
return state.node_addr_hash ();
}