80 lines
2.4 KiB
C++
80 lines
2.4 KiB
C++
/*
|
|
* 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* E131Device.h
|
|
* Interface for the E1.31 device
|
|
* Copyright (C) 2007-2009 Simon Newton
|
|
*/
|
|
|
|
#ifndef PLUGINS_E131_E131DEVICE_H_
|
|
#define PLUGINS_E131_E131DEVICE_H_
|
|
|
|
#include <string>
|
|
#include "olad/Device.h"
|
|
#include "olad/Plugin.h"
|
|
#include "plugins/e131/e131/CID.h"
|
|
#include "plugins/e131/messages/E131ConfigMessages.pb.h"
|
|
|
|
namespace ola {
|
|
namespace plugin {
|
|
namespace e131 {
|
|
|
|
using google::protobuf::RpcController;
|
|
using ola::Plugin;
|
|
using ola::plugin::e131::Request;
|
|
|
|
class E131Device: public ola::Device {
|
|
public:
|
|
E131Device(Plugin *owner,
|
|
const ola::plugin::e131::CID &cid,
|
|
std::string ip_addr,
|
|
const class PluginAdaptor *plugin_adaptor,
|
|
bool use_rev2,
|
|
bool prepend_hostname,
|
|
bool ignore_preview,
|
|
uint8_t dscp);
|
|
|
|
string DeviceId() const { return "1"; }
|
|
|
|
void Configure(RpcController *controller,
|
|
const string &request,
|
|
string *response,
|
|
google::protobuf::Closure *done);
|
|
protected:
|
|
bool StartHook();
|
|
void PrePortStop();
|
|
void PostPortStop();
|
|
|
|
private:
|
|
const class PluginAdaptor *m_plugin_adaptor;
|
|
class E131Node *m_node;
|
|
bool m_use_rev2;
|
|
bool m_prepend_hostname;
|
|
bool m_ignore_preview;
|
|
uint8_t m_dscp;
|
|
std::string m_ip_addr;
|
|
ola::plugin::e131::CID m_cid;
|
|
|
|
void HandlePreviewMode(Request *request, string *response);
|
|
void HandlePortStatusRequest(string *response);
|
|
|
|
static const char DEVICE_NAME[];
|
|
static const unsigned int NUMBER_OF_E131_PORTS = 5;
|
|
};
|
|
} // e131
|
|
} // plugin
|
|
} // ola
|
|
#endif // PLUGINS_E131_E131DEVICE_H_
|