/[svn]/linuxsampler/trunk/src/network/lscpinstrumentloader.cpp
ViewVC logotype

Contents of /linuxsampler/trunk/src/network/lscpinstrumentloader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 390 - (show annotations) (download)
Fri Feb 18 03:58:55 2005 UTC (19 years, 2 months ago) by schoenebeck
File size: 3345 byte(s)
* fixed segfault and freeze of LSCPInstrumentLoader thread

1 /***************************************************************************
2 * *
3 * Copyright (C) 2005 Christian Schoenebeck *
4 * *
5 * 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 *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This library is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this library; if not, write to the Free Software *
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
18 * MA 02111-1307 USA *
19 ***************************************************************************/
20
21 #include "lscpinstrumentloader.h"
22
23 LSCPInstrumentLoader::LSCPInstrumentLoader() : Thread(false, 0, -4) {
24 pQueue = new RingBuffer<command_t>(INSTRUMENT_LOADER_QUEUE_SIZE);
25 }
26
27 LSCPInstrumentLoader::~LSCPInstrumentLoader() {
28 if (pQueue) delete pQueue;
29 }
30
31 /**
32 * @brief Order loading of a new instrument.
33 * The request will go into a queue waiting to be processed by the loader
34 * thread. This method will immediately return and the instrument will be
35 * loaded in the background.
36 *
37 * @param Filename - file name of the instrument
38 * @param uiInstrumentIndex - index of the instrument within the file
39 * @param pEngine - engine on which the instrument should be loaded
40 */
41 void LSCPInstrumentLoader::StartNewLoad(String Filename, uint uiInstrumentIndex, Engine* pEngine) {
42 command_t cmd;
43 cmd.pFilename = new String(Filename);
44 cmd.uiInstrumentIndex = uiInstrumentIndex;
45 cmd.pEngine = pEngine;
46 pQueue->push(&cmd);
47 StartThread(); // ensure thread is running
48 conditionJobsLeft.Set(true); // wake up thread
49 }
50
51 // Entry point for the InstrumentLoader Thread.
52 int LSCPInstrumentLoader::Main() {
53 while (true) {
54 while (pQueue->read_space()) {
55 command_t cmd;
56 pQueue->pop(&cmd);
57 try {
58 cmd.pEngine->LoadInstrument(cmd.pFilename->c_str(), cmd.uiInstrumentIndex);
59 }
60 catch (LinuxSamplerException e) {
61 e.PrintMessage();
62 }
63 delete cmd.pFilename;
64 // Always re-enable the engine.
65 cmd.pEngine->Enable();
66 }
67
68 // nothing left to do, sleep until new jobs arrive
69 conditionJobsLeft.WaitIf(false);
70 // reset flag
71 conditionJobsLeft.Set(false);
72 // unlock condition object so it can be turned again by other thread
73 conditionJobsLeft.Unlock();
74 }
75 }

  ViewVC Help
Powered by ViewVC