| Chris@320 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */ | 
| Chris@320 | 2 | 
| Chris@320 | 3 /* | 
| Chris@320 | 4     Sonic Visualiser | 
| Chris@320 | 5     An audio file viewer and annotation editor. | 
| Chris@320 | 6     Centre for Digital Music, Queen Mary, University of London. | 
| Chris@320 | 7     This file copyright 2006 Chris Cannam. | 
| Chris@320 | 8 | 
| Chris@320 | 9     This program is free software; you can redistribute it and/or | 
| Chris@320 | 10     modify it under the terms of the GNU General Public License as | 
| Chris@320 | 11     published by the Free Software Foundation; either version 2 of the | 
| Chris@320 | 12     License, or (at your option) any later version.  See the file | 
| Chris@320 | 13     COPYING included with this distribution for more information. | 
| Chris@320 | 14 */ | 
| Chris@320 | 15 | 
| Chris@329 | 16 #ifndef _TRANSFORMER_H_ | 
| Chris@329 | 17 #define _TRANSFORMER_H_ | 
| Chris@320 | 18 | 
| Chris@320 | 19 #include "base/Thread.h" | 
| Chris@320 | 20 | 
| Chris@320 | 21 #include "data/model/Model.h" | 
| Chris@320 | 22 | 
| Chris@350 | 23 #include "Transform.h" | 
| Chris@350 | 24 | 
| Chris@320 | 25 /** | 
| Chris@331 | 26  * A ModelTransformer turns one data model into another. | 
| Chris@320 | 27  * | 
| Chris@331 | 28  * Typically in this application, a ModelTransformer might have a | 
| Chris@320 | 29  * DenseTimeValueModel as its input (e.g. an audio waveform) and a | 
| Chris@320 | 30  * SparseOneDimensionalModel (e.g. detected beats) as its output. | 
| Chris@320 | 31  * | 
| Chris@331 | 32  * The ModelTransformer typically runs in the background, as a | 
| Chris@331 | 33  * separate thread populating the output model.  The model is | 
| Chris@331 | 34  * available to the user of the ModelTransformer immediately, but may | 
| Chris@331 | 35  * be initially empty until the background thread has populated it. | 
| Chris@320 | 36  */ | 
| Chris@320 | 37 | 
| Chris@331 | 38 class ModelTransformer : public Thread | 
| Chris@320 | 39 { | 
| Chris@320 | 40 public: | 
| Chris@331 | 41     virtual ~ModelTransformer(); | 
| Chris@320 | 42 | 
| Chris@350 | 43     class Input { | 
| Chris@350 | 44     public: | 
| Chris@350 | 45         Input(Model *m) : m_model(m), m_channel(-1) { } | 
| Chris@350 | 46         Input(Model *m, int c) : m_model(m), m_channel(c) { } | 
| Chris@350 | 47 | 
| Chris@350 | 48         Model *getModel() const { return m_model; } | 
| Chris@350 | 49         void setModel(Model *m) { m_model = m; } | 
| Chris@350 | 50 | 
| Chris@350 | 51         int getChannel() const { return m_channel; } | 
| Chris@350 | 52         void setChannel(int c) { m_channel = c; } | 
| Chris@350 | 53 | 
| Chris@350 | 54     protected: | 
| Chris@350 | 55         Model *m_model; | 
| Chris@350 | 56         int m_channel; | 
| Chris@350 | 57     }; | 
| Chris@350 | 58 | 
| Chris@320 | 59     // Just a hint to the processing thread that it should give up. | 
| Chris@320 | 60     // Caller should still wait() and/or delete the transform before | 
| Chris@320 | 61     // assuming its input and output models are no longer required. | 
| Chris@320 | 62     void abandon() { m_abandoned = true; } | 
| Chris@320 | 63 | 
| Chris@350 | 64     Model *getInputModel()  { return m_input.getModel(); } | 
| Chris@350 | 65     int getInputChannel() { return m_input.getChannel(); } | 
| Chris@350 | 66 | 
| Chris@320 | 67     Model *getOutputModel() { return m_output; } | 
| Chris@320 | 68     Model *detachOutputModel() { m_detached = true; return m_output; } | 
| Chris@320 | 69 | 
| Chris@320 | 70 protected: | 
| Chris@350 | 71     ModelTransformer(Input input, const Transform &transform); | 
| Chris@320 | 72 | 
| Chris@350 | 73     Transform m_transform; | 
| Chris@350 | 74     Input m_input; // I don't own the model in this | 
| Chris@320 | 75     Model *m_output; // I own this, unless... | 
| Chris@320 | 76     bool m_detached; // ... this is true. | 
| Chris@320 | 77     bool m_abandoned; | 
| Chris@320 | 78 }; | 
| Chris@320 | 79 | 
| Chris@320 | 80 #endif |