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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
|
/*
Q Light Controller Plus
qlcioplugin.h
Copyright (c) Heikki Junnila
Massimo Callegari
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef QLCIOPLUGIN_H
#define QLCIOPLUGIN_H
#include <QStringList>
#include <QtPlugin>
#include <QVariant>
#include <QObject>
#include <climits>
#include <QMap>
#define PLUGIN_UNIVERSECHANNELS "UniverseChannels"
/* Define a cross platform sleep method */
#if defined(WIN32) || defined(Q_OS_WIN)
#include <windows.h>
#else
#include <unistd.h>
#define Sleep(x) usleep((x)*1000)
#endif
/**
* QLCIOPlugin is an interface for all input/output plugins.
*
* Each plugin must provide at least one output and/or input line in order
* to work at all. Then again, if there are no such devices currently
* connected to the computer that would be supported by the plugin, the plugin
* can choose to provide no lines at all (until the user plugs in a supported
* device).
*
* When QLC has successfully loaded a plugin, it will call init() exactly
* once for that plugin. After that, it is assumed that either the
* plugin auto-senses the devices it supports or the user must manually try
* to search for new devices through a custom configuration dialog that can be
* opened with configure().
*
* Plugins should not leave any resources open unless open() is called. And
* even then, the plugin should open only such resources that are needed for
* the specific I/O line given in the call to openOutput() or openInput().
* Respectively, when closeOutput() or closeInput() is called, the plugin
* should relinquish all resources associated to the closed line (unless
* shared with other lines).
*/
#define QLCIOPLUGINS_UNIVERSES 4
typedef struct
{
/** The plugin input line patched to a QLC+ universe.
* Set to UINT_MAX if not patched */
quint32 inputLine;
/** The map of custom parameters (if any available) set by
* the user for an input line, if patched.
* This is empty if no custom parameters are set or
* if the plugin works on default parameters. */
QMap<QString, QVariant>inputParameters;
/** The plugin output line patched to a QLC+ universe.
* Set to UINT_MAX if not patched */
quint32 outputLine;
/** The map of custom parameters (if any available) set by
* the user for an output line, if patched.
* This is empty if no custom parameters are set or
* if the plugin works on default parameters. */
QMap<QString, QVariant>outputParameters;
} PluginUniverseDescriptor;
class QLCIOPlugin : public QObject
{
Q_OBJECT
/*************************************************************************
* Initialization
*************************************************************************/
public:
/**
* De-initialize the plugin. This is the last thing that is called
* for the plugin so make sure nothing is lingering in the twilight
* after this call. The default implementation does nothing but needs
* to be in-place for C++ sake.
*
* All plugins must implement their own destructors.
*/
virtual ~QLCIOPlugin() { /* NOP */ }
/**
* Initialize the plugin. Since plugins cannot have a user-defined
* constructor, any initialization prior to opening any HW must be
* done through this second-stage initialization method. This method is
* called exactly once after each plugin has been successfully loaded
* and before calling other plugin interface methods.
*
* This is a pure virtual method that must be implemented by all plugins.
*/
virtual void init() = 0;
/**
* Get the plugin's name. Plugin's name must not change over time.
*
* This is a pure virtual method that must be implemented by all plugins.
*/
virtual QString name() = 0;
/** Plugin's I/O capabilities */
enum Capability {
Output = 1 << 0,
Input = 1 << 1,
Feedback = 1 << 2,
Infinite = 1 << 3,
RDM = 1 << 4,
Beats = 1 << 5
};
/**
* Get plugin capabilities as an OR'ed bitmask
*
* This is a pure virtual method that must be implemented by all plugins.
*/
virtual int capabilities() const = 0;
/**
* Get the plugin's description info.
*
* This is a pure virtual method that must be implemented by all plugins.
*/
virtual QString pluginInfo() = 0;
/** Invalid input/output number */
static quint32 invalidLine() { return UINT_MAX; }
/*************************************************************************
* Outputs
*************************************************************************/
public:
/**
* Open the specified output line so that the plugin can start sending
* DMX data through that line.
*
* This is a virtual method that must be implemented by a plugin exposing output lines.
*
* @param output The output line to open
* @param universe the QLC+ universe index this line is going to be patched to
*/
virtual bool openOutput(quint32 output, quint32 universe);
/**
* Close the specified output line so that the plugin can stop
* sending output data through that line.
*
* This is a virtual method that must be implemented by a plugin exposing output lines.
*
* @param output The output line to close
*/
virtual void closeOutput(quint32 output, quint32 universe);
/**
* Get a list of output line names. The names must be always in the
* same order i.e. the first name is the name of output line number 0,
* the next one is output line number 1, etc..
*
* This is a virtual method that must be implemented by a plugin exposing output lines.
*
* @return A list of available output names
*/
virtual QStringList outputs();
/**
* Provide an informational text regarding the specified output line.
* This text is shown to the user.
*
** This is a virtual method that must be implemented by a plugin exposing output lines.
*
* @param output The output to get info from
*/
virtual QString outputInfo(quint32 output);
/**
* Write the contents of a DMX universe to the plugin. The size of the
* universe can be anything between 0 and 512.
*
* @param output The output universe to write to
* @param universe The universe data to write
*/
virtual void writeUniverse(quint32 universe, quint32 output, const QByteArray& data, bool dataChanged);
/*************************************************************************
* Inputs
*************************************************************************/
public:
/**
* Open the specified input line so that the plugin can start receiving
* data from that line.
*
* This is a virtual method that must be implemented by a plugin exposing input lines.
*
* @param input The input line to open
* @param universe the QLC+ universe index this line is going to be patched to
*/
virtual bool openInput(quint32 input, quint32 universe);
/**
* Close the specified input line so that the plugin can stop sending input
* data from that line.
*
* This is a virtual method that must be implemented by a plugin exposing input lines.
*
* @param input The input line to close
*/
virtual void closeInput(quint32 input, quint32 universe);
/**
* Get a list of input line names. The names must be always in the
* same order i.e. the first name is the name of input line number 0,
* the next one is input line number 1, etc.. These indices are used
* with openInput() and closeInput().
*
* This is a virtual method that must be implemented by a plugin exposing input lines.
*
* @return A list of available input names
*/
virtual QStringList inputs();
/**
* Provide an informational text regarding the specified input line.
* This text is shown to the user.
*
* This is a virtual method that must be implemented by a plugin exposing input lines.
*
* @param input If specified, information for the given input line is
* expected. Otherwise provides information for the plugin
*/
virtual QString inputInfo(quint32 input);
/**
* If the device support this feature, this is the method to send data back for
* visual feedback
*
* @param universe the universe where to send the feedback
* @param inputLine the input line where to send the feedback
* @param channel the channel number where to send the feedback
* @param value the actual value of the channel
* @param key a string to identify a channel by name (ATM used only by OSC)
*/
virtual void sendFeedBack(quint32 universe, quint32 inputLine,
quint32 channel, uchar value, const QVariant ¶ms);
signals:
/**
* Tells that the value of a channel in an input line has changed and needs
* to be reacted to (if applicable). This is practically THE WAY for
* input plugins to provide input data to QLC.
*
* @param universe The universe ID detected from the data received.
* This is irrelevant for most of the plugins, but
* for network plugins like ArtNet and E1.31 this is
* fundamental if the same line is connected to several
* universes
* @param input The input line whose channel has changed value
* @param channel The channel that has changed its value
* @param value The newly-changed channel value
* @param key a string to identify a channel by name (ATM used only by OSC)
*/
void valueChanged(quint32 universe, quint32 input, quint32 channel, uchar value, const QString& key = 0);
/*************************************************************************
* Configure
*************************************************************************/
public:
/**
* Invoke a configuration dialog for the plugin.
*
* This is a virtual method that must be implemented by a plugin that
* allow a specific configuration.
* However, if there's nothing to configure (canConfigure() returns false),
* the implementation can be left completely empty.
*/
virtual void configure();
/**
* Check, whether calling configure() on a plugin has any effect. If this
* method returns false, the plugin cannot be configured by the user.
*
* This is a virtual method that must be implemented by a plugin that
* allow a specific configuration.
*
* @return true if the plugin can be configured, otherwise false.
*/
virtual bool canConfigure();
/**
* Set an arbitrary parameter useful for the plugin. This is similar
* to Qt's setProperty
*
* @param universe the universe of the patched $line
* @param line the input or output line where the parameter must be set
* @param type the type of $line. Can be input or output
* @param name A string containing the parameter name
* @param value A QVariant value representing the parameter data
*/
virtual void setParameter(quint32 universe, quint32 line, Capability type,
QString name, QVariant value);
/**
* When a custom parameter is set and the user revert back to defaults, this method
* allow to remove a parameter from the map, so it won't get saved into the project XML
*
* @param universe the universe of the patched $line
* @param line the input or output line where the parameter must be unset
* @param type the type of $line. Can be input or output
* @param name a string containing the parameter name
*/
virtual void unSetParameter(quint32 universe, quint32 line, Capability type, QString name);
/**
* Return the map of custom parameters set on the specified $universe, $line and $type
*
* @param universe the universe of the patched $line
* @param line the input or output line for the requested parameters
* @param type the type of $line. Can be input or output
* @return
*/
virtual QMap<QString, QVariant> getParameters(quint32 universe, quint32 line, Capability type);
signals:
/**
* Tells that the plugin's configuration has changed. Usually this means
* that an I/O line has dis/appeared. Used by the InputOutputManager to
* re-read the plugin's current configuration.
*/
void configurationChanged();
protected:
/**
* This method is the ground for the creation of a map where
* the universe/line associations are stored.
* Once a line is added to the map, it is possible to add custom
* parameters via the setParameter method
*
* @param universe The QLC+ universe index of the patched $line
* @param line The plugin line (either physical device or network controller)
* @param type The type of $line. Can be Input or Output
*/
void addToMap(quint32 universe, quint32 line, Capability type);
/**
* Remove a line from the universe map. If a universe has no lines at all
* it is removed completely from the map (thus losing the custom parameters
* as well)
*
* @param universe The QLC+ universe index of the patched $line
* @param line The plugin line (either physical device or network controller)
* @param type The type of $line. Can be Input or Output
*/
void removeFromMap(quint32 universe, quint32 line, Capability type);
protected:
/**
* Map which keeps track of how each QLC+ universe (quint32)
* is patched against the plugin's physical devices or
* network controllers (PluginUniverseDescriptor)
*/
QMap<quint32, PluginUniverseDescriptor> m_universesMap;
/*************************************************************************
* RDM
*************************************************************************/
public:
/**
* Send a RDM command. If the plugin doesn't support the RDM
* capability, this function will return an empty result and result == false.
*
* @param result a true/false outcome for this function
* @param line the line to be used for RDM transmission
* @param command The RDM command to send (discovery, get, set, etc)
* @param params A list of parameters specific to the command
* @return a map of <key,value> results depending on the command sent
*/
virtual bool sendRDMCommand(quint32 universe, quint32 line, uchar command, QVariantList params);
signals:
/**
* Notify the listeners that some RDM information has been processed
*
* @param universe the universe associated to the RDM data read
* @param line the plugin line associated to the RDM data read
* @param data
*/
void rdmValueChanged(quint32 universe, quint32 line, QVariantMap data);
};
#define QLCIOPlugin_iid "org.qlcplus.QLCIOPlugin"
Q_DECLARE_INTERFACE(QLCIOPlugin, QLCIOPlugin_iid)
#endif
|