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

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

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

revision 56 by schoenebeck, Tue Apr 27 09:21:58 2004 UTC revision 947 by schoenebeck, Mon Nov 27 21:34:55 2006 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                        *
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 24  Line 25 
25    
26  #include "InstrumentResourceManager.h"  #include "InstrumentResourceManager.h"
27    
28    // We need to know the maximum number of sample points which are going to
29    // be processed for each render cycle of the audio output driver, to know
30    // how much initial sample points we need to cache into RAM. If the given
31    // sampler channel does not have an audio output device assigned yet
32    // though, we simply use this default value.
33    #define GIG_RESOURCE_MANAGER_DEFAULT_MAX_SAMPLES_PER_CYCLE     128
34    
35  namespace LinuxSampler { namespace gig {  namespace LinuxSampler { namespace gig {
36    
37        // data stored as long as an instrument resource exists
38        struct instr_entry_t {
39            InstrumentManager::instrument_id_t ID;
40            ::gig::File*                       pGig;
41            uint                               MaxSamplesPerCycle; ///< if some engine requests an already allocated instrument with a higher value, we have to reallocate the instrument
42        };
43    
44        // some data needed for the libgig callback function
45        struct progress_callback_arg_t {
46            InstrumentResourceManager*          pManager;
47            InstrumentManager::instrument_id_t* pInstrumentKey;
48        };
49    
50        /**
51         * Callback function which will be called by libgig during loading of
52         * instruments to inform about the current progress. Or to be more
53         * specific; it will be called during the GetInstrument() call.
54         *
55         * @param pProgress - contains current progress value, pointer to the
56         *                    InstrumentResourceManager instance and
57         *                    instrument ID
58         */
59        void InstrumentResourceManager::OnInstrumentLoadingProgress(::gig::progress_t* pProgress) {
60            dmsg(7,("gig::InstrumentResourceManager: progress %f%", pProgress->factor));
61            progress_callback_arg_t* pArg = static_cast<progress_callback_arg_t*>(pProgress->custom);
62            // we randomly schedule 90% for the .gig file loading and the remaining 10% later for sample caching
63            const float localProgress = 0.9f * pProgress->factor;
64            pArg->pManager->DispatchResourceProgressEvent(*pArg->pInstrumentKey, localProgress);
65        }
66    
67        std::vector<InstrumentResourceManager::instrument_id_t> InstrumentResourceManager::Instruments() {
68            return Entries();
69        }
70    
71        InstrumentManager::mode_t InstrumentResourceManager::GetMode(const instrument_id_t& ID) {
72            return static_cast<InstrumentManager::mode_t>(AvailabilityMode(ID));
73        }
74    
75        void InstrumentResourceManager::SetMode(const instrument_id_t& ID, InstrumentManager::mode_t Mode) {
76            dmsg(2,("gig::InstrumentResourceManager: setting mode for %s (Index=%d) to %d\n",ID.FileName.c_str(),ID.Index,Mode));
77            SetAvailabilityMode(ID, static_cast<ResourceManager<InstrumentManager::instrument_id_t, ::gig::Instrument>::mode_t>(Mode));
78        }
79    
80        float InstrumentResourceManager::GetVolume(const instrument_id_t& ID) {
81            void* pCustomData = CustomData(ID);
82            const float fVolume = (pCustomData) ? *((float*)pCustomData) /* stored value */ : 1.0f /* default value */;
83            return fVolume;
84        }
85    
86        void InstrumentResourceManager::SetVolume(const instrument_id_t& ID, float Volume) {
87            void* pCustomData = CustomData(ID);
88            if (Volume == 1.0f) { // if default volume ...
89                if (pCustomData) { // ... delete volume entry if necessary
90                    delete (float*)pCustomData;
91                    SetCustomData(ID, NULL);
92                }
93            } else { // if not default volume
94                if (!pCustomData) { // create volume entry if necessary
95                    pCustomData = new float;
96                    SetCustomData(ID, pCustomData);
97                }
98                *((float*)pCustomData) = Volume;
99            }
100        }
101    
102        String InstrumentResourceManager::GetInstrumentName(instrument_id_t ID) {
103            return ""; // TODO: ...
104        }
105    
106      ::gig::Instrument* InstrumentResourceManager::Create(instrument_id_t Key, InstrumentConsumer* pConsumer, void*& pArg) {      ::gig::Instrument* InstrumentResourceManager::Create(instrument_id_t Key, InstrumentConsumer* pConsumer, void*& pArg) {
107          // get gig file from inernal gig file manager          // get gig file from inernal gig file manager
108          ::gig::File* pGig = Gigs.Borrow(Key.FileName, (GigConsumer*) Key.iInstrument); // conversion kinda hackish :/          ::gig::File* pGig = Gigs.Borrow(Key.FileName, (GigConsumer*) Key.Index); // conversion kinda hackish :/
109    
110          dmsg(1,("Loading gig instrument..."));          // we pass this to the progress callback mechanism of libgig
111          ::gig::Instrument* pInstrument = pGig->GetInstrument(Key.iInstrument);          progress_callback_arg_t callbackArg;
112            callbackArg.pManager       = this;
113            callbackArg.pInstrumentKey = &Key;
114    
115            ::gig::progress_t progress;
116            progress.callback = OnInstrumentLoadingProgress;
117            progress.custom   = &callbackArg;
118    
119            dmsg(1,("Loading gig instrument ('%s',%d)...",Key.FileName.c_str(),Key.Index));
120            ::gig::Instrument* pInstrument = pGig->GetInstrument(Key.Index, &progress);
121          if (!pInstrument) {          if (!pInstrument) {
122              std::stringstream msg;              std::stringstream msg;
123              msg << "There's no instrument with index " << Key.iInstrument << ".";              msg << "There's no instrument with index " << Key.Index << ".";
124              throw InstrumentResourceManagerException(msg.str());              throw InstrumentResourceManagerException(msg.str());
125          }          }
126          pGig->GetFirstSample(); // just to force complete instrument loading          pGig->GetFirstSample(); // just to force complete instrument loading
# Line 42  namespace LinuxSampler { namespace gig { Line 128  namespace LinuxSampler { namespace gig {
128    
129          // cache initial samples points (for actually needed samples)          // cache initial samples points (for actually needed samples)
130          dmsg(1,("Caching initial samples..."));          dmsg(1,("Caching initial samples..."));
131            uint iRegion = 0; // just for progress calculation
132          ::gig::Region* pRgn = pInstrument->GetFirstRegion();          ::gig::Region* pRgn = pInstrument->GetFirstRegion();
133          while (pRgn) {          while (pRgn) {
134              if (!pRgn->GetSample()->GetCache().Size) {              // we randomly schedule 90% for the .gig file loading and the remaining 10% now for sample caching
135                const float localProgress = 0.9f + 0.1f * (float) iRegion / (float) pInstrument->Regions;
136                DispatchResourceProgressEvent(Key, localProgress);
137    
138                if (pRgn->GetSample() && !pRgn->GetSample()->GetCache().Size) {
139                  dmsg(2,("C"));                  dmsg(2,("C"));
140                  CacheInitialSamples(pRgn->GetSample(), dynamic_cast<gig::Engine*>(pConsumer));                  CacheInitialSamples(pRgn->GetSample(), (gig::EngineChannel*) pConsumer);
141              }              }
142              for (uint i = 0; i < pRgn->DimensionRegions; i++) {              for (uint i = 0; i < pRgn->DimensionRegions; i++) {
143                  CacheInitialSamples(pRgn->pDimensionRegions[i]->pSample, dynamic_cast<gig::Engine*>(pConsumer));                  CacheInitialSamples(pRgn->pDimensionRegions[i]->pSample, (gig::EngineChannel*) pConsumer);
144              }              }
145    
146              pRgn = pInstrument->GetNextRegion();              pRgn = pInstrument->GetNextRegion();
147                iRegion++;
148          }          }
149          dmsg(1,("OK\n"));          dmsg(1,("OK\n"));
150            DispatchResourceProgressEvent(Key, 1.0f); // done; notify all consumers about progress 100%
151    
152          // we need the following for destruction later          // we need the following for destruction later
153          instr_entry_t* pEntry = new instr_entry_t;          instr_entry_t* pEntry = new instr_entry_t;
154          pEntry->iInstrument   = Key.iInstrument;          pEntry->ID.FileName   = Key.FileName;
155            pEntry->ID.Index      = Key.Index;
156          pEntry->pGig          = pGig;          pEntry->pGig          = pGig;
157          // and this to check if we need to reallocate for a engine with higher value of 'MaxSamplesPerSecond'  
158          pEntry->MaxSamplesPerCycle = dynamic_cast<gig::Engine*>(pConsumer)->pAudioOutputDevice->MaxSamplesPerCycle();          gig::EngineChannel* pEngineChannel = (gig::EngineChannel*) pConsumer;
159            // and we save this to check if we need to reallocate for a engine with higher value of 'MaxSamplesPerSecond'
160            pEntry->MaxSamplesPerCycle =
161                (pEngineChannel && pEngineChannel->GetEngine()) ? dynamic_cast<gig::Engine*>(pEngineChannel->GetEngine())->pAudioOutputDevice->MaxSamplesPerCycle()
162                                              : GIG_RESOURCE_MANAGER_DEFAULT_MAX_SAMPLES_PER_CYCLE;
163          pArg = pEntry;          pArg = pEntry;
164    
165          return pInstrument;          return pInstrument;
# Line 69  namespace LinuxSampler { namespace gig { Line 167  namespace LinuxSampler { namespace gig {
167    
168      void InstrumentResourceManager::Destroy( ::gig::Instrument* pResource, void* pArg) {      void InstrumentResourceManager::Destroy( ::gig::Instrument* pResource, void* pArg) {
169          instr_entry_t* pEntry = (instr_entry_t*) pArg;          instr_entry_t* pEntry = (instr_entry_t*) pArg;
170          Gigs.HandBack(pEntry->pGig, (GigConsumer*) pEntry->iInstrument); // conversion kinda hackish :/          // remove volume entry if necessary
171            void* pCustomData = CustomData(pEntry->ID);
172            if (pCustomData) {
173                delete (float*)pCustomData;
174                SetCustomData(pEntry->ID, NULL);
175            }
176            // we don't need the .gig file here anymore
177            Gigs.HandBack(pEntry->pGig, (GigConsumer*) pEntry->ID.Index); // conversion kinda hackish :/
178          delete pEntry;          delete pEntry;
179      }      }
180    
181      void InstrumentResourceManager::OnBorrow(::gig::Instrument* pResource, InstrumentConsumer* pConsumer, void*& pArg) {      void InstrumentResourceManager::OnBorrow(::gig::Instrument* pResource, InstrumentConsumer* pConsumer, void*& pArg) {
182          instr_entry_t* pEntry = (instr_entry_t*) pArg;          instr_entry_t* pEntry = (instr_entry_t*) pArg;
183          if (pEntry->MaxSamplesPerCycle < dynamic_cast<gig::Engine*>(pConsumer)->pAudioOutputDevice->MaxSamplesPerCycle()) {          gig::EngineChannel* pEngineChannel = dynamic_cast<gig::EngineChannel*>(pConsumer);
184            uint maxSamplesPerCycle =
185                (pEngineChannel->GetEngine()) ? dynamic_cast<gig::Engine*>(pEngineChannel->GetEngine())->pAudioOutputDevice->MaxSamplesPerCycle()
186                                              : GIG_RESOURCE_MANAGER_DEFAULT_MAX_SAMPLES_PER_CYCLE;
187            if (pEntry->MaxSamplesPerCycle < maxSamplesPerCycle) {
188              Update(pResource, pConsumer);              Update(pResource, pConsumer);
189          }          }
190      }      }
# Line 87  namespace LinuxSampler { namespace gig { Line 196  namespace LinuxSampler { namespace gig {
196       *  samples is needed to compensate disk reading latency.       *  samples is needed to compensate disk reading latency.
197       *       *
198       *  @param pSample - points to the sample to be cached       *  @param pSample - points to the sample to be cached
199       *  @param pEngine - pointer to Gig Engine which caused this call       *  @param pEngineChannel - pointer to Gig Engine Channel which caused this call
200       */       */
201      void InstrumentResourceManager::CacheInitialSamples(::gig::Sample* pSample, gig::Engine* pEngine) {      void InstrumentResourceManager::CacheInitialSamples(::gig::Sample* pSample, gig::EngineChannel* pEngineChannel) {
202          if (!pSample || pSample->GetCache().Size) return;          if (!pSample) {
203          if (pSample->SamplesTotal <= NUM_RAM_PRELOAD_SAMPLES) {              dmsg(4,("gig::InstrumentResourceManager: Skipping sample (pSample == NULL)\n"));
204                return;
205            }
206            if (!pSample->SamplesTotal) return; // skip zero size samples
207    
208            if (pSample->SamplesTotal <= CONFIG_PRELOAD_SAMPLES) {
209              // Sample is too short for disk streaming, so we load the whole              // Sample is too short for disk streaming, so we load the whole
210              // sample into RAM and place 'pAudioIO->FragmentSize << MAX_PITCH'              // sample into RAM and place 'pAudioIO->FragmentSize << CONFIG_MAX_PITCH'
211              // number of '0' samples (silence samples) behind the official buffer              // number of '0' samples (silence samples) behind the official buffer
212              // border, to allow the interpolator do it's work even at the end of              // border, to allow the interpolator do it's work even at the end of
213              // the sample.              // the sample.
214              ::gig::buffer_t buf = pSample->LoadSampleDataWithNullSamplesExtension((pEngine->pAudioOutputDevice->MaxSamplesPerCycle() << MAX_PITCH) + 3);              const uint maxSamplesPerCycle =
215              dmsg(4,("Cached %d Bytes, %d silence bytes.\n", buf.Size, buf.NullExtensionSize));                  (pEngineChannel && pEngineChannel->GetEngine()) ? dynamic_cast<gig::Engine*>(pEngineChannel->GetEngine())->pAudioOutputDevice->MaxSamplesPerCycle()
216                                                  : GIG_RESOURCE_MANAGER_DEFAULT_MAX_SAMPLES_PER_CYCLE;
217                const uint neededSilenceSamples = (maxSamplesPerCycle << CONFIG_MAX_PITCH) + 3;
218                const uint currentlyCachedSilenceSamples = pSample->GetCache().NullExtensionSize / pSample->FrameSize;
219                if (currentlyCachedSilenceSamples < neededSilenceSamples) {
220                    dmsg(3,("Caching whole sample (sample name: \"%s\", sample size: %d)\n", pSample->pInfo->Name.c_str(), pSample->SamplesTotal));
221                    ::gig::buffer_t buf = pSample->LoadSampleDataWithNullSamplesExtension(neededSilenceSamples);
222                    dmsg(4,("Cached %d Bytes, %d silence bytes.\n", buf.Size, buf.NullExtensionSize));
223                }
224          }          }
225          else { // we only cache NUM_RAM_PRELOAD_SAMPLES and stream the other sample points from disk          else { // we only cache CONFIG_PRELOAD_SAMPLES and stream the other sample points from disk
226              pSample->LoadSampleData(NUM_RAM_PRELOAD_SAMPLES);              if (!pSample->GetCache().Size) pSample->LoadSampleData(CONFIG_PRELOAD_SAMPLES);
227          }          }
228    
229          if (!pSample->GetCache().Size) std::cerr << "Unable to cache sample - maybe memory full!" << std::endl << std::flush;          if (!pSample->GetCache().Size) std::cerr << "Unable to cache sample - maybe memory full!" << std::endl << std::flush;

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

  ViewVC Help
Powered by ViewVC