/[svn]/linuxsampler/trunk/src/engines/gig/InstrumentResourceManager.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/gig/InstrumentResourceManager.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 947 by schoenebeck, Mon Nov 27 21:34:55 2006 UTC revision 1659 by schoenebeck, Sun Feb 3 00:13:27 2008 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005, 2006 Christian Schoenebeck                        *   *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 29  Line 29 
29  #include <gig.h>  #include <gig.h>
30    
31  #include "../../common/global.h"  #include "../../common/global.h"
 #include "../../common/Exception.h"  
32  #include "../../common/ResourceManager.h"  #include "../../common/ResourceManager.h"
33  #include "../../drivers/audio/AudioOutputDevice.h"  #include "../../drivers/audio/AudioOutputDevice.h"
34  #include "../InstrumentManager.h"  #include "../InstrumentManager.h"
35    #include "../../common/ArrayList.h"
36    
37  //namespace libgig = gig;  //namespace libgig = gig;
38    
# Line 44  namespace LinuxSampler { namespace gig { Line 44  namespace LinuxSampler { namespace gig {
44    
45  #include "EngineChannel.h"  #include "EngineChannel.h"
46  #include "Engine.h"  #include "Engine.h"
47    #include "../../plugins/InstrumentEditor.h"
48    
49  namespace LinuxSampler { namespace gig {  namespace LinuxSampler { namespace gig {
50    
51      // just symbol prototyping      // just symbol prototyping
52      class EngineChannel;      class EngineChannel;
53        class Engine;
54    
55      /** @brief Gig instrument manager      /** @brief Gig instrument manager
56       *       *
# Line 61  namespace LinuxSampler { namespace gig { Line 63  namespace LinuxSampler { namespace gig {
63       * instrument / file is not needed anymore, then it will be freed from       * instrument / file is not needed anymore, then it will be freed from
64       * memory.       * memory.
65       */       */
66      class InstrumentResourceManager : public InstrumentManager, public ResourceManager<InstrumentManager::instrument_id_t, ::gig::Instrument> {      class InstrumentResourceManager : public InstrumentManager, public ResourceManager<InstrumentManager::instrument_id_t, ::gig::Instrument>, public InstrumentEditorListener {
67          public:          public:
68                InstrumentResourceManager() : Gigs(this) {}
69              virtual ~InstrumentResourceManager() {}              virtual ~InstrumentResourceManager() {}
70              static void OnInstrumentLoadingProgress(::gig::progress_t* pProgress);              static void OnInstrumentLoadingProgress(::gig::progress_t* pProgress);
71    
# Line 70  namespace LinuxSampler { namespace gig { Line 73  namespace LinuxSampler { namespace gig {
73              virtual std::vector<instrument_id_t> Instruments();              virtual std::vector<instrument_id_t> Instruments();
74              virtual InstrumentManager::mode_t GetMode(const instrument_id_t& ID);              virtual InstrumentManager::mode_t GetMode(const instrument_id_t& ID);
75              virtual void SetMode(const instrument_id_t& ID, InstrumentManager::mode_t Mode);              virtual void SetMode(const instrument_id_t& ID, InstrumentManager::mode_t Mode);
             virtual float GetVolume(const instrument_id_t& ID);  
             virtual void SetVolume(const instrument_id_t& ID, float Volume);  
76              virtual String GetInstrumentName(instrument_id_t ID);              virtual String GetInstrumentName(instrument_id_t ID);
77                virtual String GetInstrumentDataStructureName(instrument_id_t ID);
78                virtual String GetInstrumentDataStructureVersion(instrument_id_t ID);
79                virtual void LaunchInstrumentEditor(instrument_id_t ID) throw (InstrumentManagerException);
80                virtual std::vector<instrument_id_t> GetInstrumentFileContent(String File) throw (InstrumentManagerException);
81                virtual instrument_info_t GetInstrumentInfo(instrument_id_t ID) throw (InstrumentManagerException);
82    
83                // implementation of derived abstract methods from 'InstrumentEditorListener'
84                virtual void OnInstrumentEditorQuit(InstrumentEditor* pSender);
85                virtual void OnSamplesToBeRemoved(std::set<void*> Samples, InstrumentEditor* pSender);
86                virtual void OnSamplesRemoved(InstrumentEditor* pSender);
87                virtual void OnDataStructureToBeChanged(void* pStruct, String sStructType, InstrumentEditor* pSender);
88                virtual void OnDataStructureChanged(void* pStruct, String sStructType, InstrumentEditor* pSender);
89                virtual void OnSampleReferenceChanged(void* pOldSample, void* pNewSample, InstrumentEditor* pSender);
90    
91                void HandBackInstrument(::gig::Instrument* pResource, InstrumentConsumer* pConsumer,
92                                        RTList< ::gig::DimensionRegion*>* pDimRegionsInUse);
93                void HandBackDimReg(::gig::DimensionRegion* pDimReg);
94    
95                void TrySendNoteOnToEditors(uint8_t Key, uint8_t Velocity, ::gig::Instrument* pInstrument);
96                void TrySendNoteOffToEditors(uint8_t Key, uint8_t Velocity, ::gig::Instrument* pInstrument);
97    
98          protected:          protected:
99                // implementation of derived abstract methods from 'ResourceManager'
100              virtual ::gig::Instrument* Create(instrument_id_t Key, InstrumentConsumer* pConsumer, void*& pArg);              virtual ::gig::Instrument* Create(instrument_id_t Key, InstrumentConsumer* pConsumer, void*& pArg);
101              virtual void               Destroy(::gig::Instrument* pResource, void* pArg);              virtual void               Destroy(::gig::Instrument* pResource, void* pArg);
102              virtual void               OnBorrow(::gig::Instrument* pResource, InstrumentConsumer* pConsumer, void*& pArg);              virtual void               OnBorrow(::gig::Instrument* pResource, InstrumentConsumer* pConsumer, void*& pArg);
# Line 82  namespace LinuxSampler { namespace gig { Line 105  namespace LinuxSampler { namespace gig {
105    
106              class GigResourceManager : public ResourceManager<String, ::gig::File> {              class GigResourceManager : public ResourceManager<String, ::gig::File> {
107                  protected:                  protected:
108                        // implementation of derived abstract methods from 'ResourceManager'
109                      virtual ::gig::File* Create(String Key, GigConsumer* pConsumer, void*& pArg);                      virtual ::gig::File* Create(String Key, GigConsumer* pConsumer, void*& pArg);
110                      virtual void         Destroy(::gig::File* pResource, void* pArg);                      virtual void         Destroy(::gig::File* pResource, void* pArg);
111                      virtual void         OnBorrow(::gig::File* pResource, GigConsumer* pConsumer, void*& pArg) {} // ignore                      virtual void         OnBorrow(::gig::File* pResource, GigConsumer* pConsumer, void*& pArg) {} // ignore
112                  public:                  public:
113                        GigResourceManager(InstrumentResourceManager* parent) : parent(parent) {}
114                      virtual ~GigResourceManager() {}                      virtual ~GigResourceManager() {}
115                    private:
116                        InstrumentResourceManager* parent;
117              } Gigs;              } Gigs;
118    
119              void CacheInitialSamples(::gig::Sample* pSample, gig::EngineChannel* pEngineChannel);              void CacheInitialSamples(::gig::Sample* pSample, gig::EngineChannel* pEngineChannel);
120      };              void CacheInitialSamples(::gig::Sample* pSample, gig::Engine* pEngine);
121                void UncacheInitialSamples(::gig::Sample* pSample);
122      /**              std::vector< ::gig::Instrument*> GetInstrumentsCurrentlyUsedOf(::gig::File* pFile, bool bLock);
123       * Will be thrown by the InstrumentResourceManager on errors.              std::set<gig::EngineChannel*> GetEngineChannelsUsing(::gig::Instrument* pInstrument, bool bLock);
124       */              std::set<gig::Engine*> GetEnginesUsing(::gig::Instrument* pInstrument, bool bLock);
125      class InstrumentResourceManagerException : public Exception {              std::set<gig::Engine*> GetEnginesUsing(::gig::File* pFile, bool bLock);
126          public:              bool SampleReferencedByInstrument(::gig::Sample* pSample, ::gig::Instrument* pInstrument);
127              InstrumentResourceManagerException(String msg) : Exception(msg) {}              void SuspendEnginesUsing(::gig::Instrument* pInstrument);
128                void SuspendEnginesUsing(::gig::File* pFile);
129                void ResumeAllEngines();
130    
131                struct dimreg_info_t {
132                    int           refCount;
133                    ::gig::File*  file;
134                    ::RIFF::File* riff;
135                };
136                Mutex DimRegInfoMutex; ///< protects the DimRegInfo and SampleRefCount maps from concurrent access by the instrument loader and disk threads
137                std::map< ::gig::DimensionRegion*, dimreg_info_t> DimRegInfo; ///< contains dimension regions that are still in use but belong to released instrument
138                std::map< ::gig::Sample*, int> SampleRefCount; ///< contains samples that are still in use but belong to a released instrument
139    
140                Mutex InstrumentEditorProxiesMutex; ///< protects the 'InstrumentEditorProxies' map
141                ArrayList<InstrumentConsumer*> InstrumentEditorProxies; ///< here we store the objects that react on instrument specific notifications on behalf of the respective instrument editor
142                std::set<Engine*> suspendedEngines; ///< all engines currently completely suspended
143                Mutex             suspendedEnginesMutex; ///< protects 'suspendedEngines' set
144      };      };
145    
146  }} // namespace LinuxSampler::gig  }} // namespace LinuxSampler::gig

Legend:
Removed from v.947  
changed lines
  Added in v.1659

  ViewVC Help
Powered by ViewVC