annotate src/Support/Module.h @ 52:e914b02b31b0

- Hacks to get a basic AIM-C compiling on windows
author tomwalters
date Thu, 22 Jul 2010 04:24:55 +0000
parents 0cd20c748308
children 89e4facffd93
rev   line source
tomwalters@0 1 // Copyright 2010, Thomas Walters
tomwalters@0 2 //
tomwalters@0 3 // AIM-C: A C++ implementation of the Auditory Image Model
tomwalters@0 4 // http://www.acousticscale.org/AIMC
tomwalters@0 5 //
tomwalters@45 6 // Licensed under the Apache License, Version 2.0 (the "License");
tomwalters@45 7 // you may not use this file except in compliance with the License.
tomwalters@45 8 // You may obtain a copy of the License at
tomwalters@0 9 //
tomwalters@45 10 // http://www.apache.org/licenses/LICENSE-2.0
tomwalters@0 11 //
tomwalters@45 12 // Unless required by applicable law or agreed to in writing, software
tomwalters@45 13 // distributed under the License is distributed on an "AS IS" BASIS,
tomwalters@45 14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
tomwalters@45 15 // See the License for the specific language governing permissions and
tomwalters@45 16 // limitations under the License.
tomwalters@0 17
tomwalters@0 18 /*! \file
tomwalters@0 19 * \brief Base class for all AIM-C modules.
tomwalters@0 20 */
tomwalters@0 21
tomwalters@0 22 /*! \author: Thomas Walters <tom@acousticscale.org>
tomwalters@0 23 * \date 2010/01/23
tomwalters@23 24 * \version \$Id$
tomwalters@0 25 */
tomwalters@0 26
tomwalters@11 27 #ifndef AIMC_SUPPORT_MODULE_H_
tomwalters@11 28 #define AIMC_SUPPORT_MODULE_H_
tomwalters@0 29
tomwalters@52 30 // Several modules expect the M_PI macro and isnan() to be defined
tomwalters@52 31 #ifdef _MSC_VER
tomwalters@52 32 #define M_PI 3.14159265359
tomwalters@52 33 #define isnan _isnan
tomwalters@52 34 #define isinf _isinf
tomwalters@52 35 #endif
tomwalters@52 36
tomwalters@49 37 #include <iostream>
tomwalters@0 38 #include <set>
tomwalters@0 39 #include <string>
tomwalters@0 40
tomwalters@0 41 #include "Support/Common.h"
tomwalters@0 42 #include "Support/Parameters.h"
tomwalters@0 43 #include "Support/SignalBank.h"
tomwalters@0 44
tomwalters@0 45 namespace aimc {
tomwalters@49 46 using std::ostream;
tomwalters@0 47 using std::set;
tomwalters@0 48 using std::string;
tomwalters@9 49
tomwalters@9 50 /*! \brief Base class for all AIM-C modules.
tomwalters@9 51 *
tomwalters@9 52 * Module() is a base class, from which all AIM-C modules are derived.
tomwalters@9 53 * Classes deriving from module need to implement, at minimum, the pure
tomwalters@9 54 * virtual public function Module::Process() and the pure virtual private
tomwalters@9 55 * functions Module::InitializeInternal() and Module::ResetInternal().
tomwalters@9 56 * (Note: this is in contravention of
tomwalters@9 57 * <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Inheritance#Inheritance">
tomwalters@9 58 * this rule on inheritance</a> in the Google style guide, but it is designed
tomwalters@9 59 * to make the implementation of modules as simple as possible.)
tomwalters@9 60 *
tomwalters@9 61 * The module constructor is called with a pointer to a set of Parameters.
tomwalters@9 62 * In the constructor, the module sets the defaults for its various
tomwalters@9 63 * parameters.
tomwalters@9 64 * A module is initialized with a reference to a valid SignalBank. After the
tomwalters@9 65 * Initialize(SignalBank*) function has been called, a call to GetOutputBank()
tomwalters@9 66 * returns a pointer to a SignalBank in which the results
tomwalters@9 67 * of the module's processing will be placed. Modules can use the output_
tomwalters@9 68 * SignalBank to store their output, or leave it uninitialized if they do not
tomwalters@9 69 * produce an output.
tomwalters@9 70 * At each call to Process(input), the module takes the
tomwalters@9 71 * SignalBank 'input' (which must, unless otherwise specified, have the same
tomwalters@9 72 * number of channels, sample rate, buffer size and centre frequencies as the
tomwalters@9 73 * SignalBank which was passed to Initialize()), processes it, and places the
tomwalters@9 74 * output in the internal SignalBank output_.
tomwalters@9 75 * Modules can have an arbitrary number of unique targets. Each
tomwalters@9 76 * completed output frame is 'pushed' to all of the targets of the module
tomwalters@9 77 * in turn when PushOutput() is called. To achieve this, after each complete
tomwalters@9 78 * output SignalBank is filled, the module calls the Process() function of
tomwalters@9 79 * each of its targets in turn.
tomwalters@9 80 * When Initialize() is first called. The module Initialize()s all of its
tomwalters@9 81 * targets with its ouptut_ SignalBank, if its output bank has been set up.
tomwalters@9 82 *
tomwalters@9 83 */
tomwalters@0 84 class Module {
tomwalters@0 85 public:
tomwalters@0 86 explicit Module(Parameters *parameters);
tomwalters@0 87
tomwalters@0 88 virtual ~Module();
tomwalters@0 89
tomwalters@9 90 /* \brief Initialize the module, including calling InitializeInternal().
tomwalters@9 91 * Validate this module's output SignalBank, and initialize
tomwalters@0 92 * any targets of the module if necessary.
tomwalters@0 93 * \param input Input SignalBank.
tomwalters@9 94 * \return true on success, false on failure.
tomwalters@3 95 *
tomwalters@9 96 * A call to Initialize() will first validate the input SignalBank passed to
tomwalters@9 97 * it. If this SignalBank is valid, then it will call the
tomwalters@9 98 * InitializeInternal() function of the child class; this will set up the
tomwalters@9 99 * child class, and may, if the module produces an output, initialize the
tomwalters@9 100 * member variable SignalBank output_. If output_ is initialized after the
tomwalters@9 101 * call to InitializeInternal(), the module will Initialize its targets with
tomwalters@9 102 * the output. In this way, it is possible to initialize an entire module
tomwalters@9 103 * tree with a single call to the Initialize() function of the root.
tomwalters@9 104 *
tomwalters@9 105 * This function is declared virtual in order to deal with the edge case of
tomwalters@9 106 * input modules which do not take a SignalBank as input, but rather
tomwalters@9 107 * generate their own input. In this case, it is better to be able to
tomwalters@9 108 * override the default Initialize function. When creating a new module, do
tomwalters@9 109 * not create a new version of Initialize uness you're sure you know what
tomwalters@9 110 * you're doing!
tomwalters@0 111 */
tomwalters@3 112 virtual bool Initialize(const SignalBank &input);
tomwalters@0 113
tomwalters@9 114 /*! \brief Returns true if the module has been correctly initialized
tomwalters@9 115 * \return true if module has been initialized, false otherwise
tomwalters@0 116 */
tomwalters@0 117 bool initialized() const;
tomwalters@0 118
tomwalters@0 119 /* \brief Add a target to this module. Whenever it generates a new
tomwalters@0 120 * output, this module will push its output to all its targets.
tomwalters@9 121 * \param target_module Pointer to a target Module to add.
tomwalters@9 122 * \return true on success, false on failure.
tomwalters@9 123 *
tomwalters@9 124 * When a pointer is passed as a target to the module, the caller retains
tomwalters@9 125 * ownership of the module that it points to. The pointed-to module must
tomwalters@9 126 * continue to exist until it is deleted from the target list by a call
tomwalters@9 127 * to DeleteTarget() or DeleteAllTargets(), or the current module is
tomwalters@9 128 * destroyed. Bad things will happen if the Module pointed to is deleted
tomwalters@9 129 * and Initialize(), Reset() or Process() is subsequently called.
tomwalters@0 130 */
tomwalters@0 131 bool AddTarget(Module* target_module);
tomwalters@0 132
tomwalters@9 133 /*! \brief Remove a previously added target module from the list of targets
tomwalters@9 134 * for this module.
tomwalters@9 135 * \param target_module Pointer to the module to remove. This must be a
tomwalters@9 136 * pointer that was previously passed to AddTarget()
tomwalters@9 137 * \return true on success, false on failure.
tomwalters@0 138 */
tomwalters@9 139 bool RemoveTarget(Module* target_module);
tomwalters@0 140
tomwalters@9 141 /*! \brief Remove all previously added target modules from the list of
tomwalters@9 142 * targets for this module.
tomwalters@0 143 */
tomwalters@9 144 void RemoveAllTargets();
tomwalters@0 145
tomwalters@9 146 /*! \brief Process a buffer.
tomwalters@9 147 * \param input SignalBank of the form which was passed to Initialize()
tomwalters@9 148 *
tomwalters@9 149 * Process is called once for each input SignalBank. When implemented in
tomwalters@9 150 * classes inheriting from aimc::Module, P
tomwalters@9 151 * this SignalBank contains the (read-only) input to the module. It is
tomwalters@9 152 * expected that the input SignalBank will have the same number of channels,
tomwalters@9 153 * buffer length and sample rate as the SignalBank passed to Initialize.
tomwalters@0 154 */
tomwalters@0 155 virtual void Process(const SignalBank &input) = 0;
tomwalters@0 156
tomwalters@3 157 /*! \brief Reset the internal state of this module and all its children to
tomwalters@3 158 * their initial state.
tomwalters@9 159 *
tomwalters@9 160 * Like a call to Initialize() will cause all target modules to be
tomwalters@9 161 * initialized, a call to Reset() will cause all target modules to be reset.
tomwalters@0 162 */
tomwalters@8 163 void Reset();
tomwalters@0 164
tomwalters@9 165 /*! \brief Return a pointer to the output SignalBank_ for this class.
tomwalters@9 166 * \return pointer to the SignalBank that this module uses to store its
tomwalters@9 167 * output.
tomwalters@0 168 */
tomwalters@0 169 const SignalBank* GetOutputBank() const;
tomwalters@0 170
tomwalters@49 171 void PrintTargets(ostream &out);
tomwalters@49 172
tomwalters@49 173 void PrintVersions(ostream &out);
tomwalters@49 174
tomwalters@23 175 string version() const {
tomwalters@23 176 return module_version_;
tomwalters@23 177 }
tomwalters@23 178
tomwalters@23 179 string id() const {
tomwalters@23 180 return module_identifier_;
tomwalters@23 181 }
tomwalters@23 182
tomwalters@23 183 string description() const {
tomwalters@23 184 return module_description_;
tomwalters@23 185 }
tomwalters@23 186
tomwalters@23 187 string type() const {
tomwalters@23 188 return module_type_;
tomwalters@23 189 }
tomwalters@23 190
tomwalters@0 191 protected:
tomwalters@0 192 void PushOutput();
tomwalters@0 193
tomwalters@3 194 virtual void ResetInternal() = 0;
tomwalters@3 195
tomwalters@0 196 virtual bool InitializeInternal(const SignalBank &input) = 0;
tomwalters@0 197
tomwalters@0 198 bool initialized_;
tomwalters@0 199 set<Module*> targets_;
tomwalters@0 200 SignalBank output_;
tomwalters@0 201 Parameters* parameters_;
tomwalters@0 202
tomwalters@0 203 string module_identifier_;
tomwalters@0 204 string module_type_;
tomwalters@0 205 string module_description_;
tomwalters@0 206 string module_version_;
tomwalters@0 207
tomwalters@0 208 private:
tomwalters@0 209 DISALLOW_COPY_AND_ASSIGN(Module);
tomwalters@0 210 };
tomwalters@0 211 }
tomwalters@0 212
tomwalters@11 213 #endif // AIMC_SUPPORT_MODULE_H_