1
0
Fork 0

user intermediate component class

This commit is contained in:
Kevin Matz 2021-08-16 21:54:26 -04:00
parent 7feb63ecd6
commit f7ac8f2a10
5 changed files with 64 additions and 8 deletions

58
rdmnet/component.h Normal file
View File

@ -0,0 +1,58 @@
/*
component.h
Copyright (c) 2021 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 "acn/component.h"
#include <vector>
#include <string>
namespace RDMnet {
/**
* @brief 6 Broker Protocol
* 6.1.3 Client
* A Client is a Component which connects to a Broker. Clients communicate
* with other Clients which are using the same Client Protocol in the same
* Scope via their connection to the Broker.
*/
class Component
: public ACN::Component
{
public:
Component(UUID::uuid cid = UUID::uuid())
: ACN::Component(cid)
{};
virtual ~Component();
private:
/// @brief 6.2.1 Scopes
/// Each Component participates in one or more Scopes.
std::vector<std::string> scopes_;
};
} // namespace RDMnet

View File

@ -29,7 +29,7 @@ namespace RDMnet {
* @brief Controller::Controller
*/
Controller::Controller(UUID::uuid cid)
: ACN::Component(cid)
: Component(cid)
, RDM::Controller()
, LLRP::Target()
{

View File

@ -23,9 +23,8 @@
*/
#pragma once
#include "acn/component.h"
#include "component.h"
#include "rdm/controller.h"
#include "rdmnet.h"
#include "rpt.h"
#include "target.h"
@ -36,7 +35,7 @@ namespace RDMnet {
* @brief The Controller class
*/
class Controller
: public ACN::Component
: public Component
, public RDM::Controller
, public LLRP::Target
{

View File

@ -29,7 +29,7 @@ namespace RDMnet {
* @brief Controller::Controller
*/
Device::Device(UUID::uuid cid, UUID::uuid rid, RDM::UID uid)
: ACN::Component(cid)
: Component(cid)
, RDM::Responder(uid)
, LLRP::Target()
, rid_(rid)

View File

@ -23,9 +23,8 @@
*/
#pragma once
#include "acn/component.h"
#include "component.h"
#include "rdm/responder.h"
#include "rdmnet.h"
#include "rpt.h"
#include "target.h"
@ -36,7 +35,7 @@ namespace RDMnet {
* @brief The Device class
*/
class Device
: public ACN::Component
: public Component
, public RDM::Responder
, public LLRP::Target
{