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
|
/***************************************************************************
Plugin.h - base class of all Kwave plugins
-------------------
begin : Thu Jul 27 2000
copyright : (C) 2000 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef PLUGIN_H
#define PLUGIN_H
#include "config.h"
#include "libkwave_export.h"
#include <QAtomicInt>
#include <QtGlobal>
#include <QList>
#include <QMutex>
#include <QObject>
#include <QRecursiveMutex>
#include <QString>
#include <QThread>
#include <QTimer>
#include <QVariantList>
#include <QVector>
#include <KPluginFactory>
#include "libkwave/Runnable.h"
#include "libkwave/Sample.h"
#include "libkwave/String.h"
class QProgressDialog;
class QVariant;
/**
* @def KWAVE_PLUGIN(name,class)
* @param name short internal name of the plugin, used for the library
* file name, in most cases identical to the directory name
* @param class name of the C++ class that implements the plugin, without
* namespace
*/
#define KWAVE_PLUGIN(name,class) \
K_PLUGIN_FACTORY_WITH_JSON(kwaveplugin_##name##_factory, \
"kwaveplugin_"#name".json", \
registerPlugin<Kwave::class>();)
namespace Kwave
{
class ConfirmCancelProxy;
class PluginManager;
class SignalManager;
class TopWidget;
class WorkerThread;
/**
* Generic class that should be used for all types of Kwave plugins.
* This interface is the only one that should be used, it provides
* all necessary functions to access the functionality of the main
* Kwave program.
*/
class LIBKWAVE_EXPORT Plugin: public QObject, public Kwave::Runnable
{
Q_OBJECT
public:
/**
* Constructor
* @param parent pointer to our plugin manager
* @param args argument list for initializing the plugin
*/
Plugin(QObject *parent, const QVariantList &args);
/**
* Destructor.
*/
~Plugin() override;
/** Returns the name of the plugin. */
virtual QString name() const;
/** Returns the description of the plugin (already translated). */
virtual QString description() const;
/**
* Returns a text for the progress dialog if enabled.
* (already be localized)
*/
virtual QString progressText();
/**
* Returns true if the plugin can be closed.
* The default implementation returns "!isRunning()"
*/
virtual bool canClose() const;
/**
* Returns true if the plugin has a running thread.
*/
bool isRunning() const;
/**
* Returns true if the plugin should stop, e.g. when the
* user has pressed "cancel"
*/
bool shouldStop() const;
/**
* Called after the plugin has been loaded into memory. This is
* useful for plugins that don't use start() and execute(),
* maybe for some persistent plugins like playback and record.
* The default implementation does nothing.
*/
virtual void load(QStringList ¶ms);
/**
* Called before the plugin gets unloaded. Can be used by a plugin
* to do some cleanup tasks before it gets unloaded from memory.
*/
virtual void unload();
/**
* Sets up all necessary parameters for executing the plugin. Could
* be overwritten and show a dialog box. This only will be called if
* currently no parameters are given from the function that loads
* the plugin (the normal case) but not in the context of replaying
* a previously recorded macro.
* @param previous_params the parameters of a previous call, could
* be used to initialize the controls of a setup dialog
* @return a string list with all parameters, an empty list (if nothing
* has to be set up) or null if the setup (dialog) has been
* aborted and the plugin should not get executed
*/
virtual QStringList *setup(QStringList &previous_params);
/**
* Is called from the main program before the run() function and can
* be overwritten to show a window or initialize some things before
* the run() function gets called.
* @param params list of strings with parameters
* @return an error code if the execution failed or zero if everything
* was ok.
*/
virtual int start(QStringList ¶ms);
/**
* Stops any threads and is called from the close() function and
* the plugin's destructor.
*/
virtual int stop();
/**
* Gets called from the plugin's execute function and should be
* overwritten to perform some action. This function runs in a
* separate thread!
* @param params list of strings with parameters
* @see sigDone
*/
virtual void run(QStringList params);
/**
* Returns a reference to the manager of this plugin.
*/
Kwave::PluginManager &manager() const;
/** Returns a reference to the current signal manager */
Kwave::SignalManager &signalManager();
/**
* Returns the parent widget of the plugin. This normally should be
* a TopWidget of the Kwave main program.
*/
QWidget *parentWidget() const;
/**
* Returns the name of the current signal. This can be used to set the
* caption of a plugin's main window. If no signal is currently loaded
* the returned string is empty.
*/
QString signalName();
/**
* Returns the length of the current signal in samples. If no signal is
* present the return value will be zero.
*/
virtual sample_index_t signalLength();
/**
* Returns the sample rate of the current signal. If no signal is
* present the return value will be zero.
*/
virtual double signalRate();
/**
* Returns an array of indices of currently selected channels.
*/
virtual const QVector<unsigned int> selectedTracks();
/**
* Returns the left and right sample index of the current selection
* in samples from 1 to (size-1). The left and right samples
* are included in the selection and might be equal. The left
* is always less or equal than the right. Note that there is
* always at least one sample selected!
*
* @param tracks received a list of selected tracks
* (optional or null-pointer)
* @param left receives the first selected sample
* (optional or null-pointer)
* @param right receives the last selected sample
* (optional or null-pointer)
* @param expand_if_empty if set to true, the selection will be made
* equal to the whole signal if left==right
* @return the number of selected samples (right-left+1) [1..length]
*/
virtual sample_index_t selection(
QVector<unsigned int> *tracks = nullptr,
sample_index_t *left = nullptr,
sample_index_t *right = nullptr,
bool expand_if_empty = false);
/**
* Sets the current start and length of the selection to new values.
* @param offset index of the first sample
* @param length number of samples
*/
virtual void selectRange(sample_index_t offset, sample_index_t length);
/**
* Migrates this plugin instance to the currently active file context.
* This might be necessary for plugins that create a new file context
* and then expect that all operations are executed in the context of
* that new file context. Example: the record plugin creates a new
* context and does recording into that new created file context.
*/
virtual void migrateToActiveContext();
protected:
friend class Kwave::PluginManager;
/**
* Gets called to execute the plugin's run function in a separate
* thread.
* @param params list of strings with parameters
* @bug the return value is never evaluated
*/
int execute(QStringList ¶ms);
/** emits a sigCommand() */
void emitCommand(const QString &command);
/** increments the usage counter */
void use();
/** assign this plugin to a new plugin manager (when migrating) */
void setPluginManager(Kwave::PluginManager *new_plugin_manager);
signals:
/**
* will be emitted when the "run" function starts
* @see run
*/
void sigRunning(Kwave::Plugin *plugin);
/**
* will be emitted when the "run" function has finished
* @see run
*/
void sigDone(Kwave::Plugin *plugin);
/** will be emitted in the plugin's destructor */
void sigClosed(Kwave::Plugin *p);
/** can be used by plugins to execute toplevel commands */
void sigCommand(const QString &command);
/**
* emitted when cancel() is called, can be connected
* to the cancel() slot of child objects
*/
void sigCancel();
/**
* Sets the text of the progress dialog
* @param text new progress bar text, already be localized
*/
void setProgressText(const QString &text);
public slots:
/**
* Switches the support for a progress dialog on [default] or off
*/
virtual void setProgressDialogEnabled(bool enable);
/**
* update the progress dialog
* @param progress the current progress in percent [0...100]
*/
virtual void updateProgress(qreal progress);
/**
* called when the user has pressed "Cancel" in the progress
* dialog and also has confirmed the cancel confirmation
* message box.
*/
virtual void cancel();
/**
* Called to close the plugin. This will be called from the plugin
* manager and can as well be used from inside the plugin if it
* wishes to close itself.
*/
virtual void close();
/** decrements the usage counter */
void release();
private slots:
/** closes the progress dialog and the confirm/cancel proxy */
void closeProgressDialog(Kwave::Plugin *);
/** updates the progress bar, triggered by timer */
void updateProgressTick();
protected:
friend class Kwave::WorkerThread;
/** Wrapper for run() that contains a call to release() */
void run_wrapper(const QVariant ¶ms) override;
private:
/** reference to the plugin manager */
Kwave::PluginManager *m_plugin_manager;
/** name of the plugin, for undo/redo */
QString m_name;
/** description of the plugin, for GUI purposes, captions etc */
QString m_description;
/**
* Thread that executes the run() member function.
*/
Kwave::WorkerThread *m_thread;
/** Mutex for control over the thread */
QMutex m_thread_lock;
/** determines whether a progress dialog should be used in run() */
bool m_progress_enabled;
/** flag for stopping the process (stop if set to non-zero) */
QAtomicInt m_stop;
/** a progress dialog, if the audio processing takes longer... */
QProgressDialog *m_progress;
/**
* proxy dialog that asks for confirmation if the user
* pressed cancel in the progress dialog
*/
Kwave::ConfirmCancelProxy *m_confirm_cancel;
/** Usage counter */
unsigned int m_usage_count;
/** Mutex for locking the usage counter */
QMutex m_usage_lock;
/** timer for updating the progress dialog */
QTimer m_progress_timer;
/** latest progress value [percent] */
qreal m_current_progress;
/** Mutex for locking the progress bar */
QRecursiveMutex m_progress_lock;
};
}
#endif /* PLUGIN_H */
//***************************************************************************
//***************************************************************************
|