1
0
Fork 0
OpenLCP/sacn/universe.h

169 lines
5.3 KiB
C
Raw Normal View History

2021-05-27 10:59:22 -04:00
/*
universe.h
Copyright (c) 2020 Kevin Matz (kevin.matz@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include "sacn.h"
#include "data.h"
#include "../dmx/universe.h"
#include "../uuid/uuid.h"
#include <memory>
2021-08-02 10:09:14 -04:00
#include <unordered_map>
2021-05-27 10:59:22 -04:00
#include <string>
namespace SACN {
/**
2021-08-02 10:09:14 -04:00
* @brief The UniverseSource class
*/
2021-05-27 10:59:22 -04:00
class UniverseSource
{
public:
2021-06-20 09:10:21 -04:00
UniverseSource();
2021-05-27 10:59:22 -04:00
UniverseSource(std::shared_ptr<DATA::Pdu>);
2021-06-20 09:10:21 -04:00
const UUID::uuid CID() const {return cid_;};
2021-05-27 10:59:22 -04:00
const std::string description() const {return description_;}
2021-08-02 10:10:55 -04:00
uint16_t universe() const {return universe_;}
uint8_t priority() const {return priority_;}
uint16_t syncAddress() const {return sync_address_;}
bool isTerminated() const {return options_
2021-05-27 10:59:22 -04:00
& DATA::STREAM_TERMINATED;}
2021-08-02 10:10:55 -04:00
bool isPreview() const {return options_
2021-05-27 10:59:22 -04:00
& DATA::PREVIEW_DATA;}
2021-08-02 10:10:55 -04:00
bool isForced() const {return options_
2021-05-27 10:59:22 -04:00
& DATA::FORCE_SYNCHRONIZATION;}
2021-06-20 09:10:32 -04:00
2021-08-02 10:09:14 -04:00
friend bool operator== (const UniverseSource& a, const UniverseSource& b);
2021-06-20 09:10:32 -04:00
void setCID(UUID::uuid cid) { cid_ = cid; }
void setDescription(std::string desc) { description_ = desc; }
void setOptions(uint8_t o) { options_ = o; }
void setUniverse(uint16_t n) { if (n >= 1 && n <= 63999) universe_ = n; }
void setSyncAddress(uint16_t a) { if (a >= 1 && a <= 63999) sync_address_ = a; }
void setPriority(uint8_t p) { if (p <= 200) priority_ = p; }
2021-05-27 10:59:22 -04:00
private:
UUID::uuid cid_;
std::string description_;
uint16_t universe_;
uint8_t priority_;
uint16_t sync_address_;
uint8_t options_;
};
2021-08-02 10:09:14 -04:00
} // SACN namespace
2021-05-27 10:59:22 -04:00
2021-08-02 10:09:14 -04:00
namespace std
{
template<>
/**
* @brief The hash struct specilizaton for SACN::UniverseSource
*/
struct hash<SACN::UniverseSource>
{
/**
* @brief operator ()
* @param src
* @return
*/
size_t operator()(SACN::UniverseSource const& src) const noexcept
{
size_t h1 = hash<string>{}(src.description());
size_t h2 = hash<UUID::uuid>{}(src.CID());
size_t h3 = hash<int>{}(src.priority());
size_t h = h1 ^ h2 ^ h3; // or use boost::hash_combine
return h;
}
};
} // std namespace
2021-05-27 10:59:22 -04:00
2021-08-02 10:09:14 -04:00
namespace SACN {
2021-05-27 10:59:22 -04:00
/**
2021-08-02 10:09:14 -04:00
* @brief The Universe class
*/
2021-05-27 10:59:22 -04:00
class Universe
: public DMX::Universe
{
public:
2021-08-02 10:09:14 -04:00
Universe();
~Universe();
2021-08-06 12:36:04 -04:00
virtual bool isSyncronized() const { return (sync_data_.size() > 0); };
2021-08-02 10:09:14 -04:00
virtual std::shared_ptr<UniverseSource> source() const { return source_; }
2021-08-06 12:36:04 -04:00
virtual uint8_t slot (const uint16_t) override;
2021-05-27 10:59:22 -04:00
2021-08-02 10:09:14 -04:00
virtual void set(std::shared_ptr<DMP::Pdu>, std::shared_ptr<UniverseSource>);
virtual void setSource(std::shared_ptr<UniverseSource>);
2021-05-27 10:59:22 -04:00
2021-08-06 12:36:04 -04:00
virtual void synchronize();
2021-05-27 10:59:22 -04:00
private:
std::shared_ptr<UniverseSource> source_;
2021-08-06 12:36:04 -04:00
std::vector<uint8_t> sync_data_;
2021-05-27 10:59:22 -04:00
};
2021-08-02 10:09:14 -04:00
/**
* @brief The MergeProxyUniverse class
* 6.2.3.1 Multiple Sources at Highest Priority
* It is possible for there to be multiple sources, all transmitting data
* at the highest currently active priority for a given universe. When this
* occurs, receivers must handle these sources in some way.
*/
class MergeProxyUniverse
: public SACN::Universe
{
public:
MergeProxyUniverse();
~MergeProxyUniverse();
// Source universes:
const std::vector<UniverseSource> sources() const;
Universe* sourceUniverse(const UniverseSource&);
bool hasSourceUniverse(const UniverseSource&) const;
bool hasSources() const;
void deleteSourceUniverse(const UniverseSource&);
void addSourceUniverse(Universe *);
void dataChangedNotifier(DMX::Universe* universe);
// SACN::Universe overrides:
bool isSyncronized() const override;
std::shared_ptr<UniverseSource> source() const override;
void set(std::shared_ptr<DMP::Pdu>, std::shared_ptr<UniverseSource>) override;
void setSource(std::shared_ptr<UniverseSource>) override {};
2021-08-06 12:36:04 -04:00
void synchronize() override;
2021-08-02 10:09:14 -04:00
// DMX::Universe Overrides:
const DMX::DimmerData *data() const override;
2021-08-06 12:36:04 -04:00
uint8_t slot(const uint16_t) override;
2021-08-02 10:09:14 -04:00
double rxRate() override;
private:
std::unordered_map<UniverseSource, SACN::Universe*> sources_;
Universe* dominant_() const;
void newSource_(const UniverseSource&);
2021-05-27 10:59:22 -04:00
};
2021-08-02 10:09:14 -04:00
} // SACN namespace