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

Diff of /linuxsampler/trunk/src/engines/InstrumentManagerThread.cpp

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

revision 2426 by persson, Sat Jun 23 11:02:48 2012 UTC revision 2427 by persson, Sat Mar 2 07:03:04 2013 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   Copyright (C) 2005 - 2012 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2013 Christian Schoenebeck                       *
4   *                                                                         *   *                                                                         *
5   *   This library is free software; you can redistribute it and/or modify  *   *   This library is free software; you can redistribute it and/or modify  *
6   *   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 58  namespace LinuxSampler { Line 58  namespace LinuxSampler {
58          cmd.instrumentId.Index = uiInstrumentIndex;          cmd.instrumentId.Index = uiInstrumentIndex;
59          cmd.instrumentId.FileName = Filename;          cmd.instrumentId.FileName = Filename;
60    
61          mutex.Lock();          {
62          queue.push_back(cmd);              LockGuard lock(mutex);
63          mutex.Unlock();              queue.push_back(cmd);
64            }
65    
66          StartThread(); // ensure thread is running          StartThread(); // ensure thread is running
67          conditionJobsLeft.Set(true); // wake up thread          conditionJobsLeft.Set(true); // wake up thread
# Line 85  namespace LinuxSampler { Line 86  namespace LinuxSampler {
86          cmd.instrumentId = ID;          cmd.instrumentId = ID;
87          cmd.mode         = Mode;          cmd.mode         = Mode;
88    
89          mutex.Lock();          {
90          queue.push_back(cmd);              LockGuard lock(mutex);
91          mutex.Unlock();              queue.push_back(cmd);
92            }
93    
94          StartThread(); // ensure thread is running          StartThread(); // ensure thread is running
95          conditionJobsLeft.Set(true); // wake up thread          conditionJobsLeft.Set(true); // wake up thread
# Line 105  namespace LinuxSampler { Line 107  namespace LinuxSampler {
107                  command_t cmd;                  command_t cmd;
108    
109                  // grab a new command from the queue                  // grab a new command from the queue
110                  mutex.Lock();                  {
111                  bool empty = queue.empty();                      LockGuard lock(mutex);
112                  if (!empty) {                      if (queue.empty()) break;
113    
114                      cmd = queue.front();                      cmd = queue.front();
115                      queue.pop_front();                      queue.pop_front();
116    
# Line 115  namespace LinuxSampler { Line 118  namespace LinuxSampler {
118                          EngineChannelFactory::SetDeleteEnabled(cmd.pEngineChannel, false);                          EngineChannelFactory::SetDeleteEnabled(cmd.pEngineChannel, false);
119                      }                      }
120                  }                  }
                 mutex.Unlock();  
                 if (empty) break;  
121    
122                  try {                  try {
123                      switch (cmd.type) {                      switch (cmd.type) {
# Line 159  namespace LinuxSampler { Line 160  namespace LinuxSampler {
160             Removing from the queue an eventual scheduled loading of an instrument             Removing from the queue an eventual scheduled loading of an instrument
161             to a sampler channel which is going to be removed.             to a sampler channel which is going to be removed.
162          */          */
163          pThread->mutex.Lock();          LockGuard lock(pThread->mutex);
164          std::list<command_t>::iterator it;          std::list<command_t>::iterator it;
165          for (it = pThread->queue.begin(); it != pThread->queue.end();){          for (it = pThread->queue.begin(); it != pThread->queue.end();){
166              if ((*it).type != command_t::DIRECT_LOAD) { ++it; continue; }              if ((*it).type != command_t::DIRECT_LOAD) { ++it; continue; }
# Line 171  namespace LinuxSampler { Line 172  namespace LinuxSampler {
172                  ++it;                  ++it;
173              }              }
174          }          }
         pThread->mutex.Unlock();  
175      }      }
176    
177  #if defined(__APPLE__) && !defined(__x86_64__)  #if defined(__APPLE__) && !defined(__x86_64__)

Legend:
Removed from v.2426  
changed lines
  Added in v.2427

  ViewVC Help
Powered by ViewVC