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

Diff of /linuxsampler/trunk/src/network/lscpserver.cpp

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

revision 705 by schoenebeck, Wed Jul 20 21:43:23 2005 UTC revision 1781 by iliev, Mon Sep 29 18:21:21 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 Christian Schoenebeck                              *   *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This library is free software; you can redistribute it and/or modify  *   *   This library 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 21  Line 21 
21   *   MA  02111-1307  USA                                                   *   *   MA  02111-1307  USA                                                   *
22   ***************************************************************************/   ***************************************************************************/
23    
24    #include <algorithm>
25    #include <string>
26    
27  #include "lscpserver.h"  #include "lscpserver.h"
28  #include "lscpresultset.h"  #include "lscpresultset.h"
29  #include "lscpevent.h"  #include "lscpevent.h"
 //#include "../common/global.h"  
30    
31    #if defined(WIN32)
32    #include <windows.h>
33    #else
34  #include <fcntl.h>  #include <fcntl.h>
35    #endif
36    
37  #if HAVE_SQLITE3  #if ! HAVE_SQLITE3
38  # include "sqlite3.h"  #define DOESNT_HAVE_SQLITE3 "No database support. SQLITE3 was not installed when linuxsampler was built."
39  #endif  #endif
40    
41  #include "../engines/EngineFactory.h"  #include "../engines/EngineFactory.h"
# Line 37  Line 43 
43  #include "../drivers/audio/AudioOutputDeviceFactory.h"  #include "../drivers/audio/AudioOutputDeviceFactory.h"
44  #include "../drivers/midi/MidiInputDeviceFactory.h"  #include "../drivers/midi/MidiInputDeviceFactory.h"
45    
46    namespace LinuxSampler {
47    
48    /**
49     * Returns a copy of the given string where all special characters are
50     * replaced by LSCP escape sequences ("\xHH"). This function shall be used
51     * to escape LSCP response fields in case the respective response field is
52     * actually defined as using escape sequences in the LSCP specs.
53     *
54     * @e Caution: DO NOT use this function for escaping path based responses,
55     * use the Path class (src/common/Path.h) for this instead!
56     */
57    static String _escapeLscpResponse(String txt) {
58        for (int i = 0; i < txt.length(); i++) {
59            const char c = txt.c_str()[i];
60            if (
61                !(c >= '0' && c <= '9') &&
62                !(c >= 'a' && c <= 'z') &&
63                !(c >= 'A' && c <= 'Z') &&
64                !(c == ' ') && !(c == '!') && !(c == '#') && !(c == '$') &&
65                !(c == '%') && !(c == '&') && !(c == '(') && !(c == ')') &&
66                !(c == '*') && !(c == '+') && !(c == ',') && !(c == '-') &&
67                !(c == '.') && !(c == '/') && !(c == ':') && !(c == ';') &&
68                !(c == '<') && !(c == '=') && !(c == '>') && !(c == '?') &&
69                !(c == '@') && !(c == '[') && !(c == ']') &&
70                !(c == '^') && !(c == '_') && !(c == '`') && !(c == '{') &&
71                !(c == '|') && !(c == '}') && !(c == '~')
72            ) {
73                // convert the "special" character into a "\xHH" LSCP escape sequence
74                char buf[5];
75                snprintf(buf, sizeof(buf), "\\x%02x", static_cast<unsigned char>(c));
76                txt.replace(i, 1, buf);
77                i += 3;
78            }
79        }
80        return txt;
81    }
82    
83  /**  /**
84   * Below are a few static members of the LSCPServer class.   * Below are a few static members of the LSCPServer class.
85   * The big assumption here is that LSCPServer is going to remain a singleton.   * The big assumption here is that LSCPServer is going to remain a singleton.
# Line 53  Line 96 
96  fd_set LSCPServer::fdSet;  fd_set LSCPServer::fdSet;
97  int LSCPServer::currentSocket = -1;  int LSCPServer::currentSocket = -1;
98  std::vector<yyparse_param_t> LSCPServer::Sessions = std::vector<yyparse_param_t>();  std::vector<yyparse_param_t> LSCPServer::Sessions = std::vector<yyparse_param_t>();
99    std::vector<yyparse_param_t>::iterator itCurrentSession = std::vector<yyparse_param_t>::iterator();
100  std::map<int,String> LSCPServer::bufferedNotifies = std::map<int,String>();  std::map<int,String> LSCPServer::bufferedNotifies = std::map<int,String>();
101  std::map<int,String> LSCPServer::bufferedCommands = std::map<int,String>();  std::map<int,String> LSCPServer::bufferedCommands = std::map<int,String>();
102  std::map< LSCPEvent::event_t, std::list<int> > LSCPServer::eventSubscriptions = std::map< LSCPEvent::event_t, std::list<int> >();  std::map< LSCPEvent::event_t, std::list<int> > LSCPServer::eventSubscriptions = std::map< LSCPEvent::event_t, std::list<int> >();
# Line 61  Mutex LSCPServer::NotifyBufferMutex = Mu Line 105  Mutex LSCPServer::NotifyBufferMutex = Mu
105  Mutex LSCPServer::SubscriptionMutex = Mutex();  Mutex LSCPServer::SubscriptionMutex = Mutex();
106  Mutex LSCPServer::RTNotifyMutex = Mutex();  Mutex LSCPServer::RTNotifyMutex = Mutex();
107    
108  LSCPServer::LSCPServer(Sampler* pSampler, long int addr, short int port) : Thread(true, false, 0, -4) {  LSCPServer::LSCPServer(Sampler* pSampler, long int addr, short int port) : Thread(true, false, 0, -4), eventHandler(this) {
109      SocketAddress.sin_family      = AF_INET;      SocketAddress.sin_family      = AF_INET;
110      SocketAddress.sin_addr.s_addr = addr;      SocketAddress.sin_addr.s_addr = addr;
111      SocketAddress.sin_port        = port;      SocketAddress.sin_port        = port;
112      this->pSampler = pSampler;      this->pSampler = pSampler;
113        LSCPEvent::RegisterEvent(LSCPEvent::event_audio_device_count, "AUDIO_OUTPUT_DEVICE_COUNT");
114        LSCPEvent::RegisterEvent(LSCPEvent::event_audio_device_info, "AUDIO_OUTPUT_DEVICE_INFO");
115        LSCPEvent::RegisterEvent(LSCPEvent::event_midi_device_count, "MIDI_INPUT_DEVICE_COUNT");
116        LSCPEvent::RegisterEvent(LSCPEvent::event_midi_device_info, "MIDI_INPUT_DEVICE_INFO");
117      LSCPEvent::RegisterEvent(LSCPEvent::event_channel_count, "CHANNEL_COUNT");      LSCPEvent::RegisterEvent(LSCPEvent::event_channel_count, "CHANNEL_COUNT");
118      LSCPEvent::RegisterEvent(LSCPEvent::event_voice_count, "VOICE_COUNT");      LSCPEvent::RegisterEvent(LSCPEvent::event_voice_count, "VOICE_COUNT");
119      LSCPEvent::RegisterEvent(LSCPEvent::event_stream_count, "STREAM_COUNT");      LSCPEvent::RegisterEvent(LSCPEvent::event_stream_count, "STREAM_COUNT");
120      LSCPEvent::RegisterEvent(LSCPEvent::event_buffer_fill, "BUFFER_FILL");      LSCPEvent::RegisterEvent(LSCPEvent::event_buffer_fill, "BUFFER_FILL");
121      LSCPEvent::RegisterEvent(LSCPEvent::event_channel_info, "CHANNEL_INFO");      LSCPEvent::RegisterEvent(LSCPEvent::event_channel_info, "CHANNEL_INFO");
122        LSCPEvent::RegisterEvent(LSCPEvent::event_fx_send_count, "FX_SEND_COUNT");
123        LSCPEvent::RegisterEvent(LSCPEvent::event_fx_send_info, "FX_SEND_INFO");
124        LSCPEvent::RegisterEvent(LSCPEvent::event_midi_instr_map_count, "MIDI_INSTRUMENT_MAP_COUNT");
125        LSCPEvent::RegisterEvent(LSCPEvent::event_midi_instr_map_info, "MIDI_INSTRUMENT_MAP_INFO");
126        LSCPEvent::RegisterEvent(LSCPEvent::event_midi_instr_count, "MIDI_INSTRUMENT_COUNT");
127        LSCPEvent::RegisterEvent(LSCPEvent::event_midi_instr_info, "MIDI_INSTRUMENT_INFO");
128        LSCPEvent::RegisterEvent(LSCPEvent::event_db_instr_dir_count, "DB_INSTRUMENT_DIRECTORY_COUNT");
129        LSCPEvent::RegisterEvent(LSCPEvent::event_db_instr_dir_info, "DB_INSTRUMENT_DIRECTORY_INFO");
130        LSCPEvent::RegisterEvent(LSCPEvent::event_db_instr_count, "DB_INSTRUMENT_COUNT");
131        LSCPEvent::RegisterEvent(LSCPEvent::event_db_instr_info, "DB_INSTRUMENT_INFO");
132        LSCPEvent::RegisterEvent(LSCPEvent::event_db_instrs_job_info, "DB_INSTRUMENTS_JOB_INFO");
133      LSCPEvent::RegisterEvent(LSCPEvent::event_misc, "MISCELLANEOUS");      LSCPEvent::RegisterEvent(LSCPEvent::event_misc, "MISCELLANEOUS");
134        LSCPEvent::RegisterEvent(LSCPEvent::event_total_stream_count, "TOTAL_STREAM_COUNT");
135        LSCPEvent::RegisterEvent(LSCPEvent::event_total_voice_count, "TOTAL_VOICE_COUNT");
136        LSCPEvent::RegisterEvent(LSCPEvent::event_global_info, "GLOBAL_INFO");
137        LSCPEvent::RegisterEvent(LSCPEvent::event_channel_midi, "CHANNEL_MIDI");
138        LSCPEvent::RegisterEvent(LSCPEvent::event_device_midi, "DEVICE_MIDI");
139      hSocket = -1;      hSocket = -1;
140  }  }
141    
142  LSCPServer::~LSCPServer() {  LSCPServer::~LSCPServer() {
143    #if defined(WIN32)
144        if (hSocket >= 0) closesocket(hSocket);
145    #else
146      if (hSocket >= 0) close(hSocket);      if (hSocket >= 0) close(hSocket);
147    #endif
148    }
149    
150    LSCPServer::EventHandler::EventHandler(LSCPServer* pParent) {
151        this->pParent = pParent;
152    }
153    
154    LSCPServer::EventHandler::~EventHandler() {
155        std::vector<midi_listener_entry> l = channelMidiListeners;
156        channelMidiListeners.clear();
157        for (int i = 0; i < l.size(); i++)
158            delete l[i].pMidiListener;
159    }
160    
161    void LSCPServer::EventHandler::ChannelCountChanged(int NewCount) {
162        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_channel_count, NewCount));
163    }
164    
165    void LSCPServer::EventHandler::ChannelAdded(SamplerChannel* pChannel) {
166        pChannel->AddEngineChangeListener(this);
167    }
168    
169    void LSCPServer::EventHandler::ChannelToBeRemoved(SamplerChannel* pChannel) {
170        if (!pChannel->GetEngineChannel()) return;
171        EngineToBeChanged(pChannel->Index());
172    }
173    
174    void LSCPServer::EventHandler::EngineToBeChanged(int ChannelId) {
175        SamplerChannel* pSamplerChannel =
176            pParent->pSampler->GetSamplerChannel(ChannelId);
177        if (!pSamplerChannel) return;
178        EngineChannel* pEngineChannel =
179            pSamplerChannel->GetEngineChannel();
180        if (!pEngineChannel) return;
181        for (std::vector<midi_listener_entry>::iterator iter = channelMidiListeners.begin(); iter != channelMidiListeners.end(); ++iter) {
182            if ((*iter).pEngineChannel == pEngineChannel) {
183                VirtualMidiDevice* pMidiListener = (*iter).pMidiListener;
184                pEngineChannel->Disconnect(pMidiListener);
185                channelMidiListeners.erase(iter);
186                delete pMidiListener;
187                return;
188            }
189        }
190    }
191    
192    void LSCPServer::EventHandler::EngineChanged(int ChannelId) {
193        SamplerChannel* pSamplerChannel =
194            pParent->pSampler->GetSamplerChannel(ChannelId);
195        if (!pSamplerChannel) return;
196        EngineChannel* pEngineChannel =
197            pSamplerChannel->GetEngineChannel();
198        if (!pEngineChannel) return;
199        VirtualMidiDevice* pMidiListener = new VirtualMidiDevice;
200        pEngineChannel->Connect(pMidiListener);
201        midi_listener_entry entry = {
202            pSamplerChannel, pEngineChannel, pMidiListener
203        };
204        channelMidiListeners.push_back(entry);
205    }
206    
207    void LSCPServer::EventHandler::AudioDeviceCountChanged(int NewCount) {
208        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_audio_device_count, NewCount));
209    }
210    
211    void LSCPServer::EventHandler::MidiDeviceCountChanged(int NewCount) {
212        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_device_count, NewCount));
213    }
214    
215    void LSCPServer::EventHandler::MidiDeviceToBeDestroyed(MidiInputDevice* pDevice) {
216        pDevice->RemoveMidiPortCountListener(this);
217        for (int i = 0; i < pDevice->PortCount(); ++i)
218            MidiPortToBeRemoved(pDevice->GetPort(i));
219    }
220    
221    void LSCPServer::EventHandler::MidiDeviceCreated(MidiInputDevice* pDevice) {
222        pDevice->AddMidiPortCountListener(this);
223        for (int i = 0; i < pDevice->PortCount(); ++i)
224            MidiPortAdded(pDevice->GetPort(i));
225    }
226    
227    void LSCPServer::EventHandler::MidiPortCountChanged(int NewCount) {
228        // yet unused
229    }
230    
231    void LSCPServer::EventHandler::MidiPortToBeRemoved(MidiInputPort* pPort) {
232        for (std::vector<device_midi_listener_entry>::iterator iter = deviceMidiListeners.begin(); iter != deviceMidiListeners.end(); ++iter) {
233            if ((*iter).pPort == pPort) {
234                VirtualMidiDevice* pMidiListener = (*iter).pMidiListener;
235                pPort->Disconnect(pMidiListener);
236                deviceMidiListeners.erase(iter);
237                delete pMidiListener;
238                return;
239            }
240        }
241    }
242    
243    void LSCPServer::EventHandler::MidiPortAdded(MidiInputPort* pPort) {
244        // find out the device ID
245        std::map<uint, MidiInputDevice*> devices =
246            pParent->pSampler->GetMidiInputDevices();
247        for (
248            std::map<uint, MidiInputDevice*>::iterator iter = devices.begin();
249            iter != devices.end(); ++iter
250        ) {
251            if (iter->second == pPort->GetDevice()) { // found
252                VirtualMidiDevice* pMidiListener = new VirtualMidiDevice;
253                pPort->Connect(pMidiListener);
254                device_midi_listener_entry entry = {
255                    pPort, pMidiListener, iter->first
256                };
257                deviceMidiListeners.push_back(entry);
258                return;
259            }
260        }
261    }
262    
263    void LSCPServer::EventHandler::MidiInstrumentCountChanged(int MapId, int NewCount) {
264        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_instr_count, MapId, NewCount));
265    }
266    
267    void LSCPServer::EventHandler::MidiInstrumentInfoChanged(int MapId, int Bank, int Program) {
268        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_instr_info, MapId, Bank, Program));
269    }
270    
271    void LSCPServer::EventHandler::MidiInstrumentMapCountChanged(int NewCount) {
272        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_instr_map_count, NewCount));
273    }
274    
275    void LSCPServer::EventHandler::MidiInstrumentMapInfoChanged(int MapId) {
276        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_instr_map_info, MapId));
277    }
278    
279    void LSCPServer::EventHandler::FxSendCountChanged(int ChannelId, int NewCount) {
280        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_fx_send_count, ChannelId, NewCount));
281    }
282    
283    void LSCPServer::EventHandler::VoiceCountChanged(int ChannelId, int NewCount) {
284        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_voice_count, ChannelId, NewCount));
285    }
286    
287    void LSCPServer::EventHandler::StreamCountChanged(int ChannelId, int NewCount) {
288        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_stream_count, ChannelId, NewCount));
289    }
290    
291    void LSCPServer::EventHandler::BufferFillChanged(int ChannelId, String FillData) {
292        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_buffer_fill, ChannelId, FillData));
293    }
294    
295    void LSCPServer::EventHandler::TotalVoiceCountChanged(int NewCount) {
296        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_total_voice_count, NewCount));
297    }
298    
299    void LSCPServer::EventHandler::TotalStreamCountChanged(int NewCount) {
300        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_total_stream_count, NewCount));
301    }
302    
303    #if HAVE_SQLITE3
304    void LSCPServer::DbInstrumentsEventHandler::DirectoryCountChanged(String Dir) {
305        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instr_dir_count, InstrumentsDb::toEscapedPath(Dir)));
306    }
307    
308    void LSCPServer::DbInstrumentsEventHandler::DirectoryInfoChanged(String Dir) {
309        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instr_dir_info, InstrumentsDb::toEscapedPath(Dir)));
310    }
311    
312    void LSCPServer::DbInstrumentsEventHandler::DirectoryNameChanged(String Dir, String NewName) {
313        Dir = "'" + InstrumentsDb::toEscapedPath(Dir) + "'";
314        NewName = "'" + InstrumentsDb::toEscapedPath(NewName) + "'";
315        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instr_dir_info, "NAME", Dir, NewName));
316    }
317    
318    void LSCPServer::DbInstrumentsEventHandler::InstrumentCountChanged(String Dir) {
319        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instr_count, InstrumentsDb::toEscapedPath(Dir)));
320    }
321    
322    void LSCPServer::DbInstrumentsEventHandler::InstrumentInfoChanged(String Instr) {
323        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instr_info, InstrumentsDb::toEscapedPath(Instr)));
324    }
325    
326    void LSCPServer::DbInstrumentsEventHandler::InstrumentNameChanged(String Instr, String NewName) {
327        Instr = "'" + InstrumentsDb::toEscapedPath(Instr) + "'";
328        NewName = "'" + InstrumentsDb::toEscapedPath(NewName) + "'";
329        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instr_info, "NAME", Instr, NewName));
330  }  }
331    
332    void LSCPServer::DbInstrumentsEventHandler::JobStatusChanged(int JobId) {
333        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_db_instrs_job_info, JobId));
334    }
335    #endif // HAVE_SQLITE3
336    
337    
338  /**  /**
339   * Blocks the calling thread until the LSCP Server is initialized and   * Blocks the calling thread until the LSCP Server is initialized and
340   * accepting socket connections, if the server is already initialized then   * accepting socket connections, if the server is already initialized then
# Line 94  int LSCPServer::WaitUntilInitialized(lon Line 350  int LSCPServer::WaitUntilInitialized(lon
350  }  }
351    
352  int LSCPServer::Main() {  int LSCPServer::Main() {
353            #if defined(WIN32)
354            WSADATA wsaData;
355            int iResult;
356            iResult = WSAStartup(MAKEWORD(2,2), &wsaData);
357            if (iResult != 0) {
358                    std::cerr << "LSCPServer: WSAStartup failed: " << iResult << "\n";
359                    exit(EXIT_FAILURE);
360            }
361            #endif
362      hSocket = socket(AF_INET, SOCK_STREAM, 0);      hSocket = socket(AF_INET, SOCK_STREAM, 0);
363      if (hSocket < 0) {      if (hSocket < 0) {
364          std::cerr << "LSCPServer: Could not create server socket." << std::endl;          std::cerr << "LSCPServer: Could not create server socket." << std::endl;
# Line 107  int LSCPServer::Main() { Line 372  int LSCPServer::Main() {
372              if (bind(hSocket, (sockaddr*) &SocketAddress, sizeof(sockaddr_in)) < 0) {              if (bind(hSocket, (sockaddr*) &SocketAddress, sizeof(sockaddr_in)) < 0) {
373                  if (trial > LSCP_SERVER_BIND_TIMEOUT) {                  if (trial > LSCP_SERVER_BIND_TIMEOUT) {
374                      std::cerr << "gave up!" << std::endl;                      std::cerr << "gave up!" << std::endl;
375                        #if defined(WIN32)
376                        closesocket(hSocket);
377                        #else
378                      close(hSocket);                      close(hSocket);
379                        #endif
380                      //return -1;                      //return -1;
381                      exit(EXIT_FAILURE);                      exit(EXIT_FAILURE);
382                  }                  }
# Line 120  int LSCPServer::Main() { Line 389  int LSCPServer::Main() {
389      listen(hSocket, 1);      listen(hSocket, 1);
390      Initialized.Set(true);      Initialized.Set(true);
391    
392        // Registering event listeners
393        pSampler->AddChannelCountListener(&eventHandler);
394        pSampler->AddAudioDeviceCountListener(&eventHandler);
395        pSampler->AddMidiDeviceCountListener(&eventHandler);
396        pSampler->AddVoiceCountListener(&eventHandler);
397        pSampler->AddStreamCountListener(&eventHandler);
398        pSampler->AddBufferFillListener(&eventHandler);
399        pSampler->AddTotalStreamCountListener(&eventHandler);
400        pSampler->AddTotalVoiceCountListener(&eventHandler);
401        pSampler->AddFxSendCountListener(&eventHandler);
402        MidiInstrumentMapper::AddMidiInstrumentCountListener(&eventHandler);
403        MidiInstrumentMapper::AddMidiInstrumentInfoListener(&eventHandler);
404        MidiInstrumentMapper::AddMidiInstrumentMapCountListener(&eventHandler);
405        MidiInstrumentMapper::AddMidiInstrumentMapInfoListener(&eventHandler);
406    #if HAVE_SQLITE3
407        InstrumentsDb::GetInstrumentsDb()->AddInstrumentsDbListener(&dbInstrumentsEventHandler);
408    #endif
409      // now wait for client connections and handle their requests      // now wait for client connections and handle their requests
410      sockaddr_in client;      sockaddr_in client;
411      int length = sizeof(client);      int length = sizeof(client);
# Line 127  int LSCPServer::Main() { Line 413  int LSCPServer::Main() {
413      FD_SET(hSocket, &fdSet);      FD_SET(hSocket, &fdSet);
414      int maxSessions = hSocket;      int maxSessions = hSocket;
415    
416        timeval timeout;
417    
418      while (true) {      while (true) {
419          fd_set selectSet = fdSet;          #if CONFIG_PTHREAD_TESTCANCEL
420          int retval = select(maxSessions+1, &selectSet, NULL, NULL, NULL);                  TestCancel();
421            #endif
422            // check if some engine channel's parameter / status changed, if so notify the respective LSCP event subscribers
423            {
424                std::set<EngineChannel*> engineChannels = EngineChannelFactory::EngineChannelInstances();
425                std::set<EngineChannel*>::iterator itEngineChannel = engineChannels.begin();
426                std::set<EngineChannel*>::iterator itEnd           = engineChannels.end();
427                for (; itEngineChannel != itEnd; ++itEngineChannel) {
428                    if ((*itEngineChannel)->StatusChanged()) {
429                        SendLSCPNotify(LSCPEvent(LSCPEvent::event_channel_info, (*itEngineChannel)->GetSamplerChannel()->Index()));
430                    }
431    
432                    for (int i = 0; i < (*itEngineChannel)->GetFxSendCount(); i++) {
433                        FxSend* fxs = (*itEngineChannel)->GetFxSend(i);
434                        if(fxs != NULL && fxs->IsInfoChanged()) {
435                            int chn = (*itEngineChannel)->GetSamplerChannel()->Index();
436                            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_fx_send_info, chn, fxs->Id()));
437                            fxs->SetInfoChanged(false);
438                        }
439                    }
440                }
441            }
442    
443            // check if MIDI data arrived on some engine channel
444            for (int i = 0; i < eventHandler.channelMidiListeners.size(); ++i) {
445                const EventHandler::midi_listener_entry entry =
446                    eventHandler.channelMidiListeners[i];
447                VirtualMidiDevice* pMidiListener = entry.pMidiListener;
448                if (pMidiListener->NotesChanged()) {
449                    for (int iNote = 0; iNote < 128; iNote++) {
450                        if (pMidiListener->NoteChanged(iNote)) {
451                            const bool bActive = pMidiListener->NoteIsActive(iNote);
452                            LSCPServer::SendLSCPNotify(
453                                LSCPEvent(
454                                    LSCPEvent::event_channel_midi,
455                                    entry.pSamplerChannel->Index(),
456                                    std::string(bActive ? "NOTE_ON" : "NOTE_OFF"),
457                                    iNote,
458                                    bActive ? pMidiListener->NoteOnVelocity(iNote)
459                                            : pMidiListener->NoteOffVelocity(iNote)
460                                )
461                            );
462                        }
463                    }
464                }
465            }
466    
467            // check if MIDI data arrived on some MIDI device
468            for (int i = 0; i < eventHandler.deviceMidiListeners.size(); ++i) {
469                const EventHandler::device_midi_listener_entry entry =
470                    eventHandler.deviceMidiListeners[i];
471                VirtualMidiDevice* pMidiListener = entry.pMidiListener;
472                if (pMidiListener->NotesChanged()) {
473                    for (int iNote = 0; iNote < 128; iNote++) {
474                        if (pMidiListener->NoteChanged(iNote)) {
475                            const bool bActive = pMidiListener->NoteIsActive(iNote);
476                            LSCPServer::SendLSCPNotify(
477                                LSCPEvent(
478                                    LSCPEvent::event_device_midi,
479                                    entry.uiDeviceID,
480                                    entry.pPort->GetPortNumber(),
481                                    std::string(bActive ? "NOTE_ON" : "NOTE_OFF"),
482                                    iNote,
483                                    bActive ? pMidiListener->NoteOnVelocity(iNote)
484                                            : pMidiListener->NoteOffVelocity(iNote)
485                                )
486                            );
487                        }
488                    }
489                }
490            }
491    
492            //Now let's deliver late notifies (if any)
493            NotifyBufferMutex.Lock();
494            for (std::map<int,String>::iterator iterNotify = bufferedNotifies.begin(); iterNotify != bufferedNotifies.end(); iterNotify++) {
495    #ifdef MSG_NOSIGNAL
496                    send(iterNotify->first, iterNotify->second.c_str(), iterNotify->second.size(), MSG_NOSIGNAL);
497    #else
498                    send(iterNotify->first, iterNotify->second.c_str(), iterNotify->second.size(), 0);
499    #endif
500            }
501            bufferedNotifies.clear();
502            NotifyBufferMutex.Unlock();
503    
504            fd_set selectSet = fdSet;
505            timeout.tv_sec  = 0;
506            timeout.tv_usec = 100000;
507    
508            int retval = select(maxSessions+1, &selectSet, NULL, NULL, &timeout);
509    
510          if (retval == 0)          if (retval == 0)
511                  continue; //Nothing try again                  continue; //Nothing try again
512          if (retval == -1) {          if (retval == -1) {
513                  std::cerr << "LSCPServer: Socket select error." << std::endl;                  std::cerr << "LSCPServer: Socket select error." << std::endl;
514                    #if defined(WIN32)
515                    closesocket(hSocket);
516                    #else
517                  close(hSocket);                  close(hSocket);
518                    #endif
519                  exit(EXIT_FAILURE);                  exit(EXIT_FAILURE);
520          }          }
521    
# Line 146  int LSCPServer::Main() { Line 527  int LSCPServer::Main() {
527                          exit(EXIT_FAILURE);                          exit(EXIT_FAILURE);
528                  }                  }
529    
530                    #if defined(WIN32)
531                    u_long nonblock_io = 1;
532                    if( ioctlsocket(socket, FIONBIO, &nonblock_io) ) {
533                      std::cerr << "LSCPServer: ioctlsocket: set FIONBIO failed. Error " << WSAGetLastError() << std::endl;
534                      exit(EXIT_FAILURE);
535                    }
536            #else
537                  if (fcntl(socket, F_SETFL, O_NONBLOCK)) {                  if (fcntl(socket, F_SETFL, O_NONBLOCK)) {
538                          std::cerr << "LSCPServer: F_SETFL O_NONBLOCK failed." << std::endl;                          std::cerr << "LSCPServer: F_SETFL O_NONBLOCK failed." << std::endl;
539                          exit(EXIT_FAILURE);                          exit(EXIT_FAILURE);
540                  }                  }
541                    #endif
542    
543                  // Parser initialization                  // Parser initialization
544                  yyparse_param_t yyparse_param;                  yyparse_param_t yyparse_param;
# Line 173  int LSCPServer::Main() { Line 562  int LSCPServer::Main() {
562                                  int dummy; // just a temporary hack to fulfill the restart() function prototype                                  int dummy; // just a temporary hack to fulfill the restart() function prototype
563                                  restart(NULL, dummy); // restart the 'scanner'                                  restart(NULL, dummy); // restart the 'scanner'
564                                  currentSocket = (*iter).hSession;  //a hack                                  currentSocket = (*iter).hSession;  //a hack
565                                    itCurrentSession = iter; // another hack
566                                  dmsg(2,("LSCPServer: [%s]\n",bufferedCommands[currentSocket].c_str()));                                  dmsg(2,("LSCPServer: [%s]\n",bufferedCommands[currentSocket].c_str()));
567                                  if ((*iter).bVerbose) { // if echo mode enabled                                  if ((*iter).bVerbose) { // if echo mode enabled
568                                      AnswerClient(bufferedCommands[currentSocket]);                                      AnswerClient(bufferedCommands[currentSocket]);
569                                  }                                  }
570                                  int result = yyparse(&(*iter));                                  int result = yyparse(&(*iter));
571                                  currentSocket = -1;     //continuation of a hack                                  currentSocket = -1;     //continuation of a hack
572                                    itCurrentSession = Sessions.end(); // hack as well
573                                  dmsg(3,("LSCPServer: Done parsing on socket %d.\n", currentSocket));                                  dmsg(3,("LSCPServer: Done parsing on socket %d.\n", currentSocket));
574                                  if (result == LSCP_QUIT) { //Was it a quit command by any chance?                                  if (result == LSCP_QUIT) { //Was it a quit command by any chance?
575                                          CloseConnection(iter);                                          CloseConnection(iter);
# Line 189  int LSCPServer::Main() { Line 580  int LSCPServer::Main() {
580                          break;                          break;
581                  }                  }
582          }          }
   
         // check if some engine channel's parameter / status changed, if so notify the respective LSCP event subscribers  
         {  
             std::set<EngineChannel*> engineChannels = EngineChannelFactory::EngineChannelInstances();  
             std::set<EngineChannel*>::iterator itEngineChannel = engineChannels.begin();  
             std::set<EngineChannel*>::iterator itEnd           = engineChannels.end();  
             for (; itEngineChannel != itEnd; ++itEngineChannel) {  
                 if ((*itEngineChannel)->StatusChanged()) {  
                     SendLSCPNotify(LSCPEvent(LSCPEvent::event_channel_info, (*itEngineChannel)->iSamplerChannelIndex));  
                 }  
             }  
         }  
   
         //Now let's deliver late notifies (if any)  
         NotifyBufferMutex.Lock();  
         for (std::map<int,String>::iterator iterNotify = bufferedNotifies.begin(); iterNotify != bufferedNotifies.end(); iterNotify++) {  
                 send(iterNotify->first, iterNotify->second.c_str(), iterNotify->second.size(), 0);  
                 bufferedNotifies.erase(iterNotify);  
         }  
         NotifyBufferMutex.Unlock();  
583      }      }
584  }  }
585    
# Line 226  void LSCPServer::CloseConnection( std::v Line 597  void LSCPServer::CloseConnection( std::v
597          NotifyMutex.Lock();          NotifyMutex.Lock();
598          bufferedCommands.erase(socket);          bufferedCommands.erase(socket);
599          bufferedNotifies.erase(socket);          bufferedNotifies.erase(socket);
600            #if defined(WIN32)
601            closesocket(socket);
602            #else
603          close(socket);          close(socket);
604            #endif
605          NotifyMutex.Unlock();          NotifyMutex.Unlock();
606  }  }
607    
608    void LSCPServer::LockRTNotify() {
609        RTNotifyMutex.Lock();
610    }
611    
612    void LSCPServer::UnlockRTNotify() {
613        RTNotifyMutex.Unlock();
614    }
615    
616  int LSCPServer::EventSubscribers( std::list<LSCPEvent::event_t> events ) {  int LSCPServer::EventSubscribers( std::list<LSCPEvent::event_t> events ) {
617          int subs = 0;          int subs = 0;
618          SubscriptionMutex.Lock();          SubscriptionMutex.Lock();
# Line 255  void LSCPServer::SendLSCPNotify( LSCPEve Line 638  void LSCPServer::SendLSCPNotify( LSCPEve
638          while (true) {          while (true) {
639                  if (NotifyMutex.Trylock()) {                  if (NotifyMutex.Trylock()) {
640                          for(;iter != end; iter++)                          for(;iter != end; iter++)
641    #ifdef MSG_NOSIGNAL
642                                    send(*iter, notify.c_str(), notify.size(), MSG_NOSIGNAL);
643    #else
644                                  send(*iter, notify.c_str(), notify.size(), 0);                                  send(*iter, notify.c_str(), notify.size(), 0);
645    #endif
646                          NotifyMutex.Unlock();                          NotifyMutex.Unlock();
647                          break;                          break;
648                  } else {                  } else {
# Line 287  extern int GetLSCPCommand( void *buf, in Line 674  extern int GetLSCPCommand( void *buf, in
674          return command.size();          return command.size();
675  }  }
676    
677    extern yyparse_param_t* GetCurrentYaccSession() {
678        return &(*itCurrentSession);
679    }
680    
681  /**  /**
682   * Will be called to try to read the command from the socket   * Will be called to try to read the command from the socket
683   * If command is read, it will return true. Otherwise false is returned.   * If command is read, it will return true. Otherwise false is returned.
# Line 297  bool LSCPServer::GetLSCPCommand( std::ve Line 688  bool LSCPServer::GetLSCPCommand( std::ve
688          char c;          char c;
689          int i = 0;          int i = 0;
690          while (true) {          while (true) {
691                    #if defined(WIN32)
692                    int result = recv(socket, (char *)&c, 1, 0); //Read one character at a time for now
693                    #else
694                  int result = recv(socket, (void *)&c, 1, 0); //Read one character at a time for now                  int result = recv(socket, (void *)&c, 1, 0); //Read one character at a time for now
695                    #endif
696                  if (result == 0) { //socket was selected, so 0 here means client has closed the connection                  if (result == 0) { //socket was selected, so 0 here means client has closed the connection
697                          CloseConnection(iter);                          CloseConnection(iter);
698                          break;                          break;
# Line 307  bool LSCPServer::GetLSCPCommand( std::ve Line 702  bool LSCPServer::GetLSCPCommand( std::ve
702                                  continue; //Ignore CR                                  continue; //Ignore CR
703                          if (c == '\n') {                          if (c == '\n') {
704                                  LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Received \'" + bufferedCommands[socket] + "\' on socket", socket));                                  LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Received \'" + bufferedCommands[socket] + "\' on socket", socket));
705                                  bufferedCommands[socket] += "\n";                                  bufferedCommands[socket] += "\r\n";
706                                  return true; //Complete command was read                                  return true; //Complete command was read
707                          }                          }
708                          bufferedCommands[socket] += c;                          bufferedCommands[socket] += c;
709                  }                  }
710                    #if defined(WIN32)
711                    if (result == SOCKET_ERROR) {
712                        int wsa_lasterror = WSAGetLastError();
713                            if (wsa_lasterror == WSAEWOULDBLOCK) //Would block, try again later.
714                                    return false;
715                            dmsg(2,("LSCPScanner: Socket error after recv() Error %d.\n", wsa_lasterror));
716                            CloseConnection(iter);
717                            break;
718                    }
719                    #else
720                  if (result == -1) {                  if (result == -1) {
721                          if (errno == EAGAIN) //Would block, try again later.                          if (errno == EAGAIN) //Would block, try again later.
722                                  return false;                                  return false;
# Line 350  bool LSCPServer::GetLSCPCommand( std::ve Line 755  bool LSCPServer::GetLSCPCommand( std::ve
755                          CloseConnection(iter);                          CloseConnection(iter);
756                          break;                          break;
757                  }                  }
758                    #endif
759          }          }
760          return false;          return false;
761  }  }
# Line 364  void LSCPServer::AnswerClient(String Ret Line 770  void LSCPServer::AnswerClient(String Ret
770      dmsg(2,("LSCPServer::AnswerClient(ReturnMessage=%s)", ReturnMessage.c_str()));      dmsg(2,("LSCPServer::AnswerClient(ReturnMessage=%s)", ReturnMessage.c_str()));
771      if (currentSocket != -1) {      if (currentSocket != -1) {
772              NotifyMutex.Lock();              NotifyMutex.Lock();
773    #ifdef MSG_NOSIGNAL
774                send(currentSocket, ReturnMessage.c_str(), ReturnMessage.size(), MSG_NOSIGNAL);
775    #else
776              send(currentSocket, ReturnMessage.c_str(), ReturnMessage.size(), 0);              send(currentSocket, ReturnMessage.c_str(), ReturnMessage.size(), 0);
777    #endif
778              NotifyMutex.Unlock();              NotifyMutex.Unlock();
779      }      }
780  }  }
# Line 408  String LSCPServer::CreateAudioOutputDevi Line 818  String LSCPServer::CreateAudioOutputDevi
818          AudioOutputDevice* pDevice = pSampler->CreateAudioOutputDevice(Driver, Parameters);          AudioOutputDevice* pDevice = pSampler->CreateAudioOutputDevice(Driver, Parameters);
819          // search for the created device to get its index          // search for the created device to get its index
820          int index = GetAudioOutputDeviceIndex(pDevice);          int index = GetAudioOutputDeviceIndex(pDevice);
821          if (index == -1) throw LinuxSamplerException("Internal error: could not find created audio output device.");          if (index == -1) throw Exception("Internal error: could not find created audio output device.");
822          result = index; // success          result = index; // success
823      }      }
824      catch (LinuxSamplerException e) {      catch (Exception e) {
825          result.Error(e);          result.Error(e);
826      }      }
827      return result.Produce();      return result.Produce();
# Line 424  String LSCPServer::CreateMidiInputDevice Line 834  String LSCPServer::CreateMidiInputDevice
834          MidiInputDevice* pDevice = pSampler->CreateMidiInputDevice(Driver, Parameters);          MidiInputDevice* pDevice = pSampler->CreateMidiInputDevice(Driver, Parameters);
835          // search for the created device to get its index          // search for the created device to get its index
836          int index = GetMidiInputDeviceIndex(pDevice);          int index = GetMidiInputDeviceIndex(pDevice);
837          if (index == -1) throw LinuxSamplerException("Internal error: could not find created midi input device.");          if (index == -1) throw Exception("Internal error: could not find created midi input device.");
838          result = index; // success          result = index; // success
839      }      }
840      catch (LinuxSamplerException e) {      catch (Exception e) {
841          result.Error(e);          result.Error(e);
842      }      }
843      return result.Produce();      return result.Produce();
# Line 438  String LSCPServer::DestroyAudioOutputDev Line 848  String LSCPServer::DestroyAudioOutputDev
848      LSCPResultSet result;      LSCPResultSet result;
849      try {      try {
850          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
851          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no audio output device with index " + ToString(DeviceIndex) + ".");
852          AudioOutputDevice* pDevice = devices[DeviceIndex];          AudioOutputDevice* pDevice = devices[DeviceIndex];
853          pSampler->DestroyAudioOutputDevice(pDevice);          pSampler->DestroyAudioOutputDevice(pDevice);
854      }      }
855      catch (LinuxSamplerException e) {      catch (Exception e) {
856          result.Error(e);          result.Error(e);
857      }      }
858      return result.Produce();      return result.Produce();
# Line 453  String LSCPServer::DestroyMidiInputDevic Line 863  String LSCPServer::DestroyMidiInputDevic
863      LSCPResultSet result;      LSCPResultSet result;
864      try {      try {
865          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
866          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no audio output device with index " + ToString(DeviceIndex) + ".");
867          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
868          pSampler->DestroyMidiInputDevice(pDevice);          pSampler->DestroyMidiInputDevice(pDevice);
869      }      }
870      catch (LinuxSamplerException e) {      catch (Exception e) {
871          result.Error(e);          result.Error(e);
872      }      }
873      return result.Produce();      return result.Produce();
874  }  }
875    
876    EngineChannel* LSCPServer::GetEngineChannel(uint uiSamplerChannel) {
877        SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
878        if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
879    
880        EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();
881        if (!pEngineChannel) throw Exception("There is no engine deployed on this sampler channel yet");
882    
883        return pEngineChannel;
884    }
885    
886  /**  /**
887   * Will be called by the parser to load an instrument.   * Will be called by the parser to load an instrument.
888   */   */
# Line 471  String LSCPServer::LoadInstrument(String Line 891  String LSCPServer::LoadInstrument(String
891      LSCPResultSet result;      LSCPResultSet result;
892      try {      try {
893          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
894          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
895          EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();          EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();
896          if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel yet");          if (!pEngineChannel) throw Exception("No engine type assigned to sampler channel yet");
897          if (!pSamplerChannel->GetAudioOutputDevice())          if (!pSamplerChannel->GetAudioOutputDevice())
898              throw LinuxSamplerException("No audio output device connected to sampler channel");              throw Exception("No audio output device connected to sampler channel");
899          if (bBackground) {          if (bBackground) {
900              InstrumentLoader.StartNewLoad(Filename, uiInstrument, pEngineChannel);              InstrumentManager::instrument_id_t id;
901                id.FileName = Filename;
902                id.Index    = uiInstrument;
903                InstrumentManager::LoadInstrumentInBackground(id, pEngineChannel);
904          }          }
905          else {          else {
906              // tell the engine channel which instrument to load              // tell the engine channel which instrument to load
# Line 486  String LSCPServer::LoadInstrument(String Line 909  String LSCPServer::LoadInstrument(String
909              pEngineChannel->LoadInstrument();              pEngineChannel->LoadInstrument();
910          }          }
911      }      }
912      catch (LinuxSamplerException e) {      catch (Exception e) {
913           result.Error(e);           result.Error(e);
914      }      }
915      return result.Produce();      return result.Produce();
# Line 501  String LSCPServer::SetEngineType(String Line 924  String LSCPServer::SetEngineType(String
924      LSCPResultSet result;      LSCPResultSet result;
925      try {      try {
926          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
927          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
928          LockRTNotify();          LockRTNotify();
929          pSamplerChannel->SetEngineType(EngineName);          pSamplerChannel->SetEngineType(EngineName);
930          if(HasSoloChannel()) pSamplerChannel->GetEngineChannel()->SetMute(-1);          if(HasSoloChannel()) pSamplerChannel->GetEngineChannel()->SetMute(-1);
931          UnlockRTNotify();          UnlockRTNotify();
932      }      }
933      catch (LinuxSamplerException e) {      catch (Exception e) {
934           result.Error(e);           result.Error(e);
935      }      }
936      return result.Produce();      return result.Produce();
# Line 545  String LSCPServer::ListChannels() { Line 968  String LSCPServer::ListChannels() {
968   */   */
969  String LSCPServer::AddChannel() {  String LSCPServer::AddChannel() {
970      dmsg(2,("LSCPServer: AddChannel()\n"));      dmsg(2,("LSCPServer: AddChannel()\n"));
971        LockRTNotify();
972      SamplerChannel* pSamplerChannel = pSampler->AddSamplerChannel();      SamplerChannel* pSamplerChannel = pSampler->AddSamplerChannel();
973        UnlockRTNotify();
974      LSCPResultSet result(pSamplerChannel->Index());      LSCPResultSet result(pSamplerChannel->Index());
975      return result.Produce();      return result.Produce();
976  }  }
# Line 567  String LSCPServer::RemoveChannel(uint ui Line 992  String LSCPServer::RemoveChannel(uint ui
992   */   */
993  String LSCPServer::GetAvailableEngines() {  String LSCPServer::GetAvailableEngines() {
994      dmsg(2,("LSCPServer: GetAvailableEngines()\n"));      dmsg(2,("LSCPServer: GetAvailableEngines()\n"));
995      LSCPResultSet result("1");      LSCPResultSet result;
996        try {
997            int n = EngineFactory::AvailableEngineTypes().size();
998            result.Add(n);
999        }
1000        catch (Exception e) {
1001            result.Error(e);
1002        }
1003      return result.Produce();      return result.Produce();
1004  }  }
1005    
# Line 576  String LSCPServer::GetAvailableEngines() Line 1008  String LSCPServer::GetAvailableEngines()
1008   */   */
1009  String LSCPServer::ListAvailableEngines() {  String LSCPServer::ListAvailableEngines() {
1010      dmsg(2,("LSCPServer: ListAvailableEngines()\n"));      dmsg(2,("LSCPServer: ListAvailableEngines()\n"));
1011      LSCPResultSet result("\'GIG\'");      LSCPResultSet result;
1012        try {
1013            String s = EngineFactory::AvailableEngineTypesAsString();
1014            result.Add(s);
1015        }
1016        catch (Exception e) {
1017            result.Error(e);
1018        }
1019      return result.Produce();      return result.Produce();
1020  }  }
1021    
# Line 587  String LSCPServer::ListAvailableEngines( Line 1026  String LSCPServer::ListAvailableEngines(
1026  String LSCPServer::GetEngineInfo(String EngineName) {  String LSCPServer::GetEngineInfo(String EngineName) {
1027      dmsg(2,("LSCPServer: GetEngineInfo(EngineName=%s)\n", EngineName.c_str()));      dmsg(2,("LSCPServer: GetEngineInfo(EngineName=%s)\n", EngineName.c_str()));
1028      LSCPResultSet result;      LSCPResultSet result;
1029        LockRTNotify();
1030      try {      try {
1031          Engine* pEngine = EngineFactory::Create(EngineName);          Engine* pEngine = EngineFactory::Create(EngineName);
1032          result.Add("DESCRIPTION", pEngine->Description());          result.Add("DESCRIPTION", _escapeLscpResponse(pEngine->Description()));
1033          result.Add("VERSION",     pEngine->Version());          result.Add("VERSION",     pEngine->Version());
1034          EngineFactory::Destroy(pEngine);          EngineFactory::Destroy(pEngine);
1035      }      }
1036      catch (LinuxSamplerException e) {      catch (Exception e) {
1037           result.Error(e);           result.Error(e);
1038      }      }
1039        UnlockRTNotify();
1040      return result.Produce();      return result.Produce();
1041  }  }
1042    
# Line 608  String LSCPServer::GetChannelInfo(uint u Line 1049  String LSCPServer::GetChannelInfo(uint u
1049      LSCPResultSet result;      LSCPResultSet result;
1050      try {      try {
1051          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1052          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1053          EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();          EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();
1054    
1055          //Defaults values          //Defaults values
# Line 622  String LSCPServer::GetChannelInfo(uint u Line 1063  String LSCPServer::GetChannelInfo(uint u
1063          String AudioRouting;          String AudioRouting;
1064          int Mute = 0;          int Mute = 0;
1065          bool Solo = false;          bool Solo = false;
1066            String MidiInstrumentMap = "NONE";
1067    
1068          if (pEngineChannel) {          if (pEngineChannel) {
1069              EngineName          = pEngineChannel->EngineName();              EngineName          = pEngineChannel->EngineName();
# Line 639  String LSCPServer::GetChannelInfo(uint u Line 1081  String LSCPServer::GetChannelInfo(uint u
1081              }              }
1082              Mute = pEngineChannel->GetMute();              Mute = pEngineChannel->GetMute();
1083              Solo = pEngineChannel->GetSolo();              Solo = pEngineChannel->GetSolo();
1084                if (pEngineChannel->UsesNoMidiInstrumentMap())
1085                    MidiInstrumentMap = "NONE";
1086                else if (pEngineChannel->UsesDefaultMidiInstrumentMap())
1087                    MidiInstrumentMap = "DEFAULT";
1088                else
1089                    MidiInstrumentMap = ToString(pEngineChannel->GetMidiInstrumentMap());
1090          }          }
1091    
1092          result.Add("ENGINE_NAME", EngineName);          result.Add("ENGINE_NAME", EngineName);
# Line 654  String LSCPServer::GetChannelInfo(uint u Line 1102  String LSCPServer::GetChannelInfo(uint u
1102          if (pSamplerChannel->GetMidiInputChannel() == midi_chan_all) result.Add("MIDI_INPUT_CHANNEL", "ALL");          if (pSamplerChannel->GetMidiInputChannel() == midi_chan_all) result.Add("MIDI_INPUT_CHANNEL", "ALL");
1103          else result.Add("MIDI_INPUT_CHANNEL", pSamplerChannel->GetMidiInputChannel());          else result.Add("MIDI_INPUT_CHANNEL", pSamplerChannel->GetMidiInputChannel());
1104    
1105            // convert the filename into the correct encoding as defined for LSCP
1106            // (especially in terms of special characters -> escape sequences)
1107            if (InstrumentFileName != "NONE" && InstrumentFileName != "") {
1108    #if WIN32
1109                InstrumentFileName = Path::fromWindows(InstrumentFileName).toLscp();
1110    #else
1111                // assuming POSIX
1112                InstrumentFileName = Path::fromPosix(InstrumentFileName).toLscp();
1113    #endif
1114            }
1115    
1116          result.Add("INSTRUMENT_FILE", InstrumentFileName);          result.Add("INSTRUMENT_FILE", InstrumentFileName);
1117          result.Add("INSTRUMENT_NR", InstrumentIndex);          result.Add("INSTRUMENT_NR", InstrumentIndex);
1118          result.Add("INSTRUMENT_NAME", InstrumentName);          result.Add("INSTRUMENT_NAME", _escapeLscpResponse(InstrumentName));
1119          result.Add("INSTRUMENT_STATUS", InstrumentStatus);          result.Add("INSTRUMENT_STATUS", InstrumentStatus);
1120          result.Add("MUTE", Mute == -1 ? "MUTED_BY_SOLO" : (Mute ? "true" : "false"));          result.Add("MUTE", Mute == -1 ? "MUTED_BY_SOLO" : (Mute ? "true" : "false"));
1121          result.Add("SOLO", Solo);          result.Add("SOLO", Solo);
1122            result.Add("MIDI_INSTRUMENT_MAP", MidiInstrumentMap);
1123      }      }
1124      catch (LinuxSamplerException e) {      catch (Exception e) {
1125           result.Error(e);           result.Error(e);
1126      }      }
1127      return result.Produce();      return result.Produce();
# Line 675  String LSCPServer::GetVoiceCount(uint ui Line 1135  String LSCPServer::GetVoiceCount(uint ui
1135      dmsg(2,("LSCPServer: GetVoiceCount(SamplerChannel=%d)\n", uiSamplerChannel));      dmsg(2,("LSCPServer: GetVoiceCount(SamplerChannel=%d)\n", uiSamplerChannel));
1136      LSCPResultSet result;      LSCPResultSet result;
1137      try {      try {
1138          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
1139          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pEngineChannel->GetEngine()) throw Exception("No audio output device connected to sampler channel");
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine loaded on sampler channel");  
         if (!pEngineChannel->GetEngine()) throw LinuxSamplerException("No audio output device connected to sampler channel");  
1140          result.Add(pEngineChannel->GetEngine()->VoiceCount());          result.Add(pEngineChannel->GetEngine()->VoiceCount());
1141      }      }
1142      catch (LinuxSamplerException e) {      catch (Exception e) {
1143           result.Error(e);           result.Error(e);
1144      }      }
1145      return result.Produce();      return result.Produce();
# Line 696  String LSCPServer::GetStreamCount(uint u Line 1153  String LSCPServer::GetStreamCount(uint u
1153      dmsg(2,("LSCPServer: GetStreamCount(SamplerChannel=%d)\n", uiSamplerChannel));      dmsg(2,("LSCPServer: GetStreamCount(SamplerChannel=%d)\n", uiSamplerChannel));
1154      LSCPResultSet result;      LSCPResultSet result;
1155      try {      try {
1156          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
1157          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pEngineChannel->GetEngine()) throw Exception("No audio output device connected to sampler channel");
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel");  
         if (!pEngineChannel->GetEngine()) throw LinuxSamplerException("No audio output device connected to sampler channel");  
1158          result.Add(pEngineChannel->GetEngine()->DiskStreamCount());          result.Add(pEngineChannel->GetEngine()->DiskStreamCount());
1159      }      }
1160      catch (LinuxSamplerException e) {      catch (Exception e) {
1161           result.Error(e);           result.Error(e);
1162      }      }
1163      return result.Produce();      return result.Produce();
# Line 717  String LSCPServer::GetBufferFill(fill_re Line 1171  String LSCPServer::GetBufferFill(fill_re
1171      dmsg(2,("LSCPServer: GetBufferFill(ResponseType=%d, SamplerChannel=%d)\n", ResponseType, uiSamplerChannel));      dmsg(2,("LSCPServer: GetBufferFill(ResponseType=%d, SamplerChannel=%d)\n", ResponseType, uiSamplerChannel));
1172      LSCPResultSet result;      LSCPResultSet result;
1173      try {      try {
1174          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
1175          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pEngineChannel->GetEngine()) throw Exception("No audio output device connected to sampler channel");
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel");  
         if (!pEngineChannel->GetEngine()) throw LinuxSamplerException("No audio output device connected to sampler channel");  
1176          if (!pEngineChannel->GetEngine()->DiskStreamSupported()) result.Add("NA");          if (!pEngineChannel->GetEngine()->DiskStreamSupported()) result.Add("NA");
1177          else {          else {
1178              switch (ResponseType) {              switch (ResponseType) {
# Line 732  String LSCPServer::GetBufferFill(fill_re Line 1183  String LSCPServer::GetBufferFill(fill_re
1183                      result.Add(pEngineChannel->GetEngine()->DiskStreamBufferFillPercentage());                      result.Add(pEngineChannel->GetEngine()->DiskStreamBufferFillPercentage());
1184                      break;                      break;
1185                  default:                  default:
1186                      throw LinuxSamplerException("Unknown fill response type");                      throw Exception("Unknown fill response type");
1187              }              }
1188          }          }
1189      }      }
1190      catch (LinuxSamplerException e) {      catch (Exception e) {
1191           result.Error(e);           result.Error(e);
1192      }      }
1193      return result.Produce();      return result.Produce();
# Line 749  String LSCPServer::GetAvailableAudioOutp Line 1200  String LSCPServer::GetAvailableAudioOutp
1200          int n = AudioOutputDeviceFactory::AvailableDrivers().size();          int n = AudioOutputDeviceFactory::AvailableDrivers().size();
1201          result.Add(n);          result.Add(n);
1202      }      }
1203      catch (LinuxSamplerException e) {      catch (Exception e) {
1204          result.Error(e);          result.Error(e);
1205      }      }
1206      return result.Produce();      return result.Produce();
# Line 762  String LSCPServer::ListAvailableAudioOut Line 1213  String LSCPServer::ListAvailableAudioOut
1213          String s = AudioOutputDeviceFactory::AvailableDriversAsString();          String s = AudioOutputDeviceFactory::AvailableDriversAsString();
1214          result.Add(s);          result.Add(s);
1215      }      }
1216      catch (LinuxSamplerException e) {      catch (Exception e) {
1217          result.Error(e);          result.Error(e);
1218      }      }
1219      return result.Produce();      return result.Produce();
# Line 775  String LSCPServer::GetAvailableMidiInput Line 1226  String LSCPServer::GetAvailableMidiInput
1226          int n = MidiInputDeviceFactory::AvailableDrivers().size();          int n = MidiInputDeviceFactory::AvailableDrivers().size();
1227          result.Add(n);          result.Add(n);
1228      }      }
1229      catch (LinuxSamplerException e) {      catch (Exception e) {
1230          result.Error(e);          result.Error(e);
1231      }      }
1232      return result.Produce();      return result.Produce();
# Line 788  String LSCPServer::ListAvailableMidiInpu Line 1239  String LSCPServer::ListAvailableMidiInpu
1239          String s = MidiInputDeviceFactory::AvailableDriversAsString();          String s = MidiInputDeviceFactory::AvailableDriversAsString();
1240          result.Add(s);          result.Add(s);
1241      }      }
1242      catch (LinuxSamplerException e) {      catch (Exception e) {
1243          result.Error(e);          result.Error(e);
1244      }      }
1245      return result.Produce();      return result.Produce();
# Line 812  String LSCPServer::GetMidiInputDriverInf Line 1263  String LSCPServer::GetMidiInputDriverInf
1263              result.Add("PARAMETERS", s);              result.Add("PARAMETERS", s);
1264          }          }
1265      }      }
1266      catch (LinuxSamplerException e) {      catch (Exception e) {
1267          result.Error(e);          result.Error(e);
1268      }      }
1269      return result.Produce();      return result.Produce();
# Line 836  String LSCPServer::GetAudioOutputDriverI Line 1287  String LSCPServer::GetAudioOutputDriverI
1287              result.Add("PARAMETERS", s);              result.Add("PARAMETERS", s);
1288          }          }
1289      }      }
1290      catch (LinuxSamplerException e) {      catch (Exception e) {
1291          result.Error(e);          result.Error(e);
1292      }      }
1293      return result.Produce();      return result.Produce();
# Line 863  String LSCPServer::GetMidiInputDriverPar Line 1314  String LSCPServer::GetMidiInputDriverPar
1314          if (oRangeMax)      result.Add("RANGE_MAX",     *oRangeMax);          if (oRangeMax)      result.Add("RANGE_MAX",     *oRangeMax);
1315          if (oPossibilities) result.Add("POSSIBILITIES", *oPossibilities);          if (oPossibilities) result.Add("POSSIBILITIES", *oPossibilities);
1316      }      }
1317      catch (LinuxSamplerException e) {      catch (Exception e) {
1318          result.Error(e);          result.Error(e);
1319      }      }
1320      return result.Produce();      return result.Produce();
# Line 890  String LSCPServer::GetAudioOutputDriverP Line 1341  String LSCPServer::GetAudioOutputDriverP
1341          if (oRangeMax)      result.Add("RANGE_MAX",     *oRangeMax);          if (oRangeMax)      result.Add("RANGE_MAX",     *oRangeMax);
1342          if (oPossibilities) result.Add("POSSIBILITIES", *oPossibilities);          if (oPossibilities) result.Add("POSSIBILITIES", *oPossibilities);
1343      }      }
1344      catch (LinuxSamplerException e) {      catch (Exception e) {
1345          result.Error(e);          result.Error(e);
1346      }      }
1347      return result.Produce();      return result.Produce();
# Line 903  String LSCPServer::GetAudioOutputDeviceC Line 1354  String LSCPServer::GetAudioOutputDeviceC
1354          uint count = pSampler->AudioOutputDevices();          uint count = pSampler->AudioOutputDevices();
1355          result.Add(count); // success          result.Add(count); // success
1356      }      }
1357      catch (LinuxSamplerException e) {      catch (Exception e) {
1358          result.Error(e);          result.Error(e);
1359      }      }
1360      return result.Produce();      return result.Produce();
# Line 916  String LSCPServer::GetMidiInputDeviceCou Line 1367  String LSCPServer::GetMidiInputDeviceCou
1367          uint count = pSampler->MidiInputDevices();          uint count = pSampler->MidiInputDevices();
1368          result.Add(count); // success          result.Add(count); // success
1369      }      }
1370      catch (LinuxSamplerException e) {      catch (Exception e) {
1371          result.Error(e);          result.Error(e);
1372      }      }
1373      return result.Produce();      return result.Produce();
# Line 935  String LSCPServer::GetAudioOutputDevices Line 1386  String LSCPServer::GetAudioOutputDevices
1386          }          }
1387          result.Add(s);          result.Add(s);
1388      }      }
1389      catch (LinuxSamplerException e) {      catch (Exception e) {
1390          result.Error(e);          result.Error(e);
1391      }      }
1392      return result.Produce();      return result.Produce();
# Line 954  String LSCPServer::GetMidiInputDevices() Line 1405  String LSCPServer::GetMidiInputDevices()
1405          }          }
1406          result.Add(s);          result.Add(s);
1407      }      }
1408      catch (LinuxSamplerException e) {      catch (Exception e) {
1409          result.Error(e);          result.Error(e);
1410      }      }
1411      return result.Produce();      return result.Produce();
# Line 965  String LSCPServer::GetAudioOutputDeviceI Line 1416  String LSCPServer::GetAudioOutputDeviceI
1416      LSCPResultSet result;      LSCPResultSet result;
1417      try {      try {
1418          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1419          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no audio output device with index " + ToString(DeviceIndex) + ".");
1420          AudioOutputDevice* pDevice = devices[DeviceIndex];          AudioOutputDevice* pDevice = devices[DeviceIndex];
1421          result.Add("DRIVER", pDevice->Driver());          result.Add("DRIVER", pDevice->Driver());
1422          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
# Line 974  String LSCPServer::GetAudioOutputDeviceI Line 1425  String LSCPServer::GetAudioOutputDeviceI
1425              result.Add(iter->first, iter->second->Value());              result.Add(iter->first, iter->second->Value());
1426          }          }
1427      }      }
1428      catch (LinuxSamplerException e) {      catch (Exception e) {
1429          result.Error(e);          result.Error(e);
1430      }      }
1431      return result.Produce();      return result.Produce();
# Line 985  String LSCPServer::GetMidiInputDeviceInf Line 1436  String LSCPServer::GetMidiInputDeviceInf
1436      LSCPResultSet result;      LSCPResultSet result;
1437      try {      try {
1438          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1439          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
1440          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
1441          result.Add("DRIVER", pDevice->Driver());          result.Add("DRIVER", pDevice->Driver());
1442          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
# Line 994  String LSCPServer::GetMidiInputDeviceInf Line 1445  String LSCPServer::GetMidiInputDeviceInf
1445              result.Add(iter->first, iter->second->Value());              result.Add(iter->first, iter->second->Value());
1446          }          }
1447      }      }
1448      catch (LinuxSamplerException e) {      catch (Exception e) {
1449          result.Error(e);          result.Error(e);
1450      }      }
1451      return result.Produce();      return result.Produce();
# Line 1005  String LSCPServer::GetMidiInputPortInfo( Line 1456  String LSCPServer::GetMidiInputPortInfo(
1456      try {      try {
1457          // get MIDI input device          // get MIDI input device
1458          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1459          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
1460          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
1461    
1462          // get MIDI port          // get MIDI port
1463          MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);          MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);
1464          if (!pMidiInputPort) throw LinuxSamplerException("There is no MIDI input port with index " + ToString(PortIndex) + ".");          if (!pMidiInputPort) throw Exception("There is no MIDI input port with index " + ToString(PortIndex) + ".");
1465    
1466          // return the values of all MIDI port parameters          // return the values of all MIDI port parameters
1467          std::map<String,DeviceRuntimeParameter*> parameters = pMidiInputPort->PortParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pMidiInputPort->PortParameters();
# Line 1019  String LSCPServer::GetMidiInputPortInfo( Line 1470  String LSCPServer::GetMidiInputPortInfo(
1470              result.Add(iter->first, iter->second->Value());              result.Add(iter->first, iter->second->Value());
1471          }          }
1472      }      }
1473      catch (LinuxSamplerException e) {      catch (Exception e) {
1474          result.Error(e);          result.Error(e);
1475      }      }
1476      return result.Produce();      return result.Produce();
# Line 1031  String LSCPServer::GetAudioOutputChannel Line 1482  String LSCPServer::GetAudioOutputChannel
1482      try {      try {
1483          // get audio output device          // get audio output device
1484          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1485          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw Exception("There is no audio output device with index " + ToString(DeviceId) + ".");
1486          AudioOutputDevice* pDevice = devices[DeviceId];          AudioOutputDevice* pDevice = devices[DeviceId];
1487    
1488          // get audio channel          // get audio channel
1489          AudioChannel* pChannel = pDevice->Channel(ChannelId);          AudioChannel* pChannel = pDevice->Channel(ChannelId);
1490          if (!pChannel) throw LinuxSamplerException("Audio output device does not have audio channel " + ToString(ChannelId) + ".");          if (!pChannel) throw Exception("Audio output device does not have audio channel " + ToString(ChannelId) + ".");
1491    
1492          // return the values of all audio channel parameters          // return the values of all audio channel parameters
1493          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();
# Line 1045  String LSCPServer::GetAudioOutputChannel Line 1496  String LSCPServer::GetAudioOutputChannel
1496              result.Add(iter->first, iter->second->Value());              result.Add(iter->first, iter->second->Value());
1497          }          }
1498      }      }
1499      catch (LinuxSamplerException e) {      catch (Exception e) {
1500          result.Error(e);          result.Error(e);
1501      }      }
1502      return result.Produce();      return result.Produce();
# Line 1057  String LSCPServer::GetMidiInputPortParam Line 1508  String LSCPServer::GetMidiInputPortParam
1508      try {      try {
1509          // get MIDI input device          // get MIDI input device
1510          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1511          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no midi input device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw Exception("There is no midi input device with index " + ToString(DeviceId) + ".");
1512          MidiInputDevice* pDevice = devices[DeviceId];          MidiInputDevice* pDevice = devices[DeviceId];
1513    
1514          // get midi port          // get midi port
1515          MidiInputPort* pPort = pDevice->GetPort(PortId);          MidiInputPort* pPort = pDevice->GetPort(PortId);
1516          if (!pPort) throw LinuxSamplerException("Midi input device does not have port " + ToString(PortId) + ".");          if (!pPort) throw Exception("Midi input device does not have port " + ToString(PortId) + ".");
1517    
1518          // get desired port parameter          // get desired port parameter
1519          std::map<String,DeviceRuntimeParameter*> parameters = pPort->PortParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pPort->PortParameters();
1520          if (!parameters.count(ParameterName)) throw LinuxSamplerException("Midi port does not provide a parameter '" + ParameterName + "'.");          if (!parameters.count(ParameterName)) throw Exception("Midi port does not provide a parameter '" + ParameterName + "'.");
1521          DeviceRuntimeParameter* pParameter = parameters[ParameterName];          DeviceRuntimeParameter* pParameter = parameters[ParameterName];
1522    
1523          // return all fields of this audio channel parameter          // return all fields of this audio channel parameter
# Line 1078  String LSCPServer::GetMidiInputPortParam Line 1529  String LSCPServer::GetMidiInputPortParam
1529          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     *pParameter->RangeMax());          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     *pParameter->RangeMax());
1530          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", *pParameter->Possibilities());          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", *pParameter->Possibilities());
1531      }      }
1532      catch (LinuxSamplerException e) {      catch (Exception e) {
1533          result.Error(e);          result.Error(e);
1534      }      }
1535      return result.Produce();      return result.Produce();
# Line 1090  String LSCPServer::GetAudioOutputChannel Line 1541  String LSCPServer::GetAudioOutputChannel
1541      try {      try {
1542          // get audio output device          // get audio output device
1543          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1544          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw Exception("There is no audio output device with index " + ToString(DeviceId) + ".");
1545          AudioOutputDevice* pDevice = devices[DeviceId];          AudioOutputDevice* pDevice = devices[DeviceId];
1546    
1547          // get audio channel          // get audio channel
1548          AudioChannel* pChannel = pDevice->Channel(ChannelId);          AudioChannel* pChannel = pDevice->Channel(ChannelId);
1549          if (!pChannel) throw LinuxSamplerException("Audio output device does not have audio channel " + ToString(ChannelId) + ".");          if (!pChannel) throw Exception("Audio output device does not have audio channel " + ToString(ChannelId) + ".");
1550    
1551          // get desired audio channel parameter          // get desired audio channel parameter
1552          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();
1553          if (!parameters.count(ParameterName)) throw LinuxSamplerException("Audio channel does not provide a parameter '" + ParameterName + "'.");          if (!parameters.count(ParameterName)) throw Exception("Audio channel does not provide a parameter '" + ParameterName + "'.");
1554          DeviceRuntimeParameter* pParameter = parameters[ParameterName];          DeviceRuntimeParameter* pParameter = parameters[ParameterName];
1555    
1556          // return all fields of this audio channel parameter          // return all fields of this audio channel parameter
# Line 1111  String LSCPServer::GetAudioOutputChannel Line 1562  String LSCPServer::GetAudioOutputChannel
1562          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     *pParameter->RangeMax());          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     *pParameter->RangeMax());
1563          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", *pParameter->Possibilities());          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", *pParameter->Possibilities());
1564      }      }
1565      catch (LinuxSamplerException e) {      catch (Exception e) {
1566          result.Error(e);          result.Error(e);
1567      }      }
1568      return result.Produce();      return result.Produce();
# Line 1123  String LSCPServer::SetAudioOutputChannel Line 1574  String LSCPServer::SetAudioOutputChannel
1574      try {      try {
1575          // get audio output device          // get audio output device
1576          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1577          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw Exception("There is no audio output device with index " + ToString(DeviceId) + ".");
1578          AudioOutputDevice* pDevice = devices[DeviceId];          AudioOutputDevice* pDevice = devices[DeviceId];
1579    
1580          // get audio channel          // get audio channel
1581          AudioChannel* pChannel = pDevice->Channel(ChannelId);          AudioChannel* pChannel = pDevice->Channel(ChannelId);
1582          if (!pChannel) throw LinuxSamplerException("Audio output device does not have audio channel " + ToString(ChannelId) + ".");          if (!pChannel) throw Exception("Audio output device does not have audio channel " + ToString(ChannelId) + ".");
1583    
1584          // get desired audio channel parameter          // get desired audio channel parameter
1585          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();
1586          if (!parameters.count(ParamKey)) throw LinuxSamplerException("Audio channel does not provide a parameter '" + ParamKey + "'.");          if (!parameters.count(ParamKey)) throw Exception("Audio channel does not provide a parameter '" + ParamKey + "'.");
1587          DeviceRuntimeParameter* pParameter = parameters[ParamKey];          DeviceRuntimeParameter* pParameter = parameters[ParamKey];
1588    
1589          // set new channel parameter value          // set new channel parameter value
1590          pParameter->SetValue(ParamVal);          pParameter->SetValue(ParamVal);
1591            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_audio_device_info, DeviceId));
1592      }      }
1593      catch (LinuxSamplerException e) {      catch (Exception e) {
1594          result.Error(e);          result.Error(e);
1595      }      }
1596      return result.Produce();      return result.Produce();
# Line 1149  String LSCPServer::SetAudioOutputDeviceP Line 1601  String LSCPServer::SetAudioOutputDeviceP
1601      LSCPResultSet result;      LSCPResultSet result;
1602      try {      try {
1603          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1604          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no audio output device with index " + ToString(DeviceIndex) + ".");
1605          AudioOutputDevice* pDevice = devices[DeviceIndex];          AudioOutputDevice* pDevice = devices[DeviceIndex];
1606          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
1607          if (!parameters.count(ParamKey)) throw LinuxSamplerException("Audio output device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");          if (!parameters.count(ParamKey)) throw Exception("Audio output device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");
1608          parameters[ParamKey]->SetValue(ParamVal);          parameters[ParamKey]->SetValue(ParamVal);
1609            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_audio_device_info, DeviceIndex));
1610      }      }
1611      catch (LinuxSamplerException e) {      catch (Exception e) {
1612          result.Error(e);          result.Error(e);
1613      }      }
1614      return result.Produce();      return result.Produce();
# Line 1166  String LSCPServer::SetMidiInputDevicePar Line 1619  String LSCPServer::SetMidiInputDevicePar
1619      LSCPResultSet result;      LSCPResultSet result;
1620      try {      try {
1621          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1622          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
1623          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
1624          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
1625          if (!parameters.count(ParamKey)) throw LinuxSamplerException("MIDI input device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");          if (!parameters.count(ParamKey)) throw Exception("MIDI input device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");
1626          parameters[ParamKey]->SetValue(ParamVal);          parameters[ParamKey]->SetValue(ParamVal);
1627            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_device_info, DeviceIndex));
1628      }      }
1629      catch (LinuxSamplerException e) {      catch (Exception e) {
1630          result.Error(e);          result.Error(e);
1631      }      }
1632      return result.Produce();      return result.Produce();
# Line 1184  String LSCPServer::SetMidiInputPortParam Line 1638  String LSCPServer::SetMidiInputPortParam
1638      try {      try {
1639          // get MIDI input device          // get MIDI input device
1640          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1641          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw Exception("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
1642          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
1643    
1644          // get MIDI port          // get MIDI port
1645          MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);          MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);
1646          if (!pMidiInputPort) throw LinuxSamplerException("There is no MIDI input port with index " + ToString(PortIndex) + ".");          if (!pMidiInputPort) throw Exception("There is no MIDI input port with index " + ToString(PortIndex) + ".");
1647    
1648          // set port parameter value          // set port parameter value
1649          std::map<String,DeviceRuntimeParameter*> parameters = pMidiInputPort->PortParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pMidiInputPort->PortParameters();
1650          if (!parameters.count(ParamKey)) throw LinuxSamplerException("MIDI input device " + ToString(PortIndex) + " does not have a parameter '" + ParamKey + "'");          if (!parameters.count(ParamKey)) throw Exception("MIDI input device " + ToString(PortIndex) + " does not have a parameter '" + ParamKey + "'");
1651          parameters[ParamKey]->SetValue(ParamVal);          parameters[ParamKey]->SetValue(ParamVal);
1652            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_midi_device_info, DeviceIndex));
1653      }      }
1654      catch (LinuxSamplerException e) {      catch (Exception e) {
1655          result.Error(e);          result.Error(e);
1656      }      }
1657      return result.Produce();      return result.Produce();
# Line 1211  String LSCPServer::SetAudioOutputChannel Line 1666  String LSCPServer::SetAudioOutputChannel
1666      LSCPResultSet result;      LSCPResultSet result;
1667      try {      try {
1668          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1669          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1670          EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();          EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();
1671          if (!pEngineChannel) throw LinuxSamplerException("No engine type yet assigned to sampler channel " + ToString(uiSamplerChannel));          if (!pEngineChannel) throw Exception("No engine type yet assigned to sampler channel " + ToString(uiSamplerChannel));
1672          if (!pSamplerChannel->GetAudioOutputDevice()) throw LinuxSamplerException("No audio output device connected to sampler channel " + ToString(uiSamplerChannel));          if (!pSamplerChannel->GetAudioOutputDevice()) throw Exception("No audio output device connected to sampler channel " + ToString(uiSamplerChannel));
1673          pEngineChannel->SetOutputChannel(ChannelAudioOutputChannel, AudioOutputDeviceInputChannel);          pEngineChannel->SetOutputChannel(ChannelAudioOutputChannel, AudioOutputDeviceInputChannel);
1674      }      }
1675      catch (LinuxSamplerException e) {      catch (Exception e) {
1676           result.Error(e);           result.Error(e);
1677      }      }
1678      return result.Produce();      return result.Produce();
# Line 1226  String LSCPServer::SetAudioOutputChannel Line 1681  String LSCPServer::SetAudioOutputChannel
1681  String LSCPServer::SetAudioOutputDevice(uint AudioDeviceId, uint uiSamplerChannel) {  String LSCPServer::SetAudioOutputDevice(uint AudioDeviceId, uint uiSamplerChannel) {
1682      dmsg(2,("LSCPServer: SetAudiotOutputDevice(AudioDeviceId=%d, SamplerChannel=%d)\n",AudioDeviceId,uiSamplerChannel));      dmsg(2,("LSCPServer: SetAudiotOutputDevice(AudioDeviceId=%d, SamplerChannel=%d)\n",AudioDeviceId,uiSamplerChannel));
1683      LSCPResultSet result;      LSCPResultSet result;
1684        LockRTNotify();
1685      try {      try {
1686          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1687          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1688          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1689          if (!devices.count(AudioDeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(AudioDeviceId));          if (!devices.count(AudioDeviceId)) throw Exception("There is no audio output device with index " + ToString(AudioDeviceId));
1690          AudioOutputDevice* pDevice = devices[AudioDeviceId];          AudioOutputDevice* pDevice = devices[AudioDeviceId];
1691          pSamplerChannel->SetAudioOutputDevice(pDevice);          pSamplerChannel->SetAudioOutputDevice(pDevice);
1692      }      }
1693      catch (LinuxSamplerException e) {      catch (Exception e) {
1694           result.Error(e);           result.Error(e);
1695      }      }
1696        UnlockRTNotify();
1697      return result.Produce();      return result.Produce();
1698  }  }
1699    
1700  String LSCPServer::SetAudioOutputType(String AudioOutputDriver, uint uiSamplerChannel) {  String LSCPServer::SetAudioOutputType(String AudioOutputDriver, uint uiSamplerChannel) {
1701      dmsg(2,("LSCPServer: SetAudioOutputType(String AudioOutputDriver=%s, SamplerChannel=%d)\n",AudioOutputDriver.c_str(),uiSamplerChannel));      dmsg(2,("LSCPServer: SetAudioOutputType(String AudioOutputDriver=%s, SamplerChannel=%d)\n",AudioOutputDriver.c_str(),uiSamplerChannel));
1702      LSCPResultSet result;      LSCPResultSet result;
1703        LockRTNotify();
1704      try {      try {
1705          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1706          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1707          // Driver type name aliasing...          // Driver type name aliasing...
1708          if (AudioOutputDriver == "Alsa") AudioOutputDriver = "ALSA";          if (AudioOutputDriver == "Alsa") AudioOutputDriver = "ALSA";
1709          if (AudioOutputDriver == "Jack") AudioOutputDriver = "JACK";          if (AudioOutputDriver == "Jack") AudioOutputDriver = "JACK";
# Line 1267  String LSCPServer::SetAudioOutputType(St Line 1725  String LSCPServer::SetAudioOutputType(St
1725          }          }
1726          // Must have a device...          // Must have a device...
1727          if (pDevice == NULL)          if (pDevice == NULL)
1728              throw LinuxSamplerException("Internal error: could not create audio output device.");              throw Exception("Internal error: could not create audio output device.");
1729          // Set it as the current channel device...          // Set it as the current channel device...
1730          pSamplerChannel->SetAudioOutputDevice(pDevice);          pSamplerChannel->SetAudioOutputDevice(pDevice);
1731      }      }
1732      catch (LinuxSamplerException e) {      catch (Exception e) {
1733           result.Error(e);           result.Error(e);
1734      }      }
1735        UnlockRTNotify();
1736      return result.Produce();      return result.Produce();
1737  }  }
1738    
# Line 1282  String LSCPServer::SetMIDIInputPort(uint Line 1741  String LSCPServer::SetMIDIInputPort(uint
1741      LSCPResultSet result;      LSCPResultSet result;
1742      try {      try {
1743          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1744          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1745          pSamplerChannel->SetMidiInputPort(MIDIPort);          pSamplerChannel->SetMidiInputPort(MIDIPort);
1746      }      }
1747      catch (LinuxSamplerException e) {      catch (Exception e) {
1748           result.Error(e);           result.Error(e);
1749      }      }
1750      return result.Produce();      return result.Produce();
# Line 1296  String LSCPServer::SetMIDIInputChannel(u Line 1755  String LSCPServer::SetMIDIInputChannel(u
1755      LSCPResultSet result;      LSCPResultSet result;
1756      try {      try {
1757          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1758          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1759          pSamplerChannel->SetMidiInputChannel((midi_chan_t) MIDIChannel);          pSamplerChannel->SetMidiInputChannel((midi_chan_t) MIDIChannel);
1760      }      }
1761      catch (LinuxSamplerException e) {      catch (Exception e) {
1762           result.Error(e);           result.Error(e);
1763      }      }
1764      return result.Produce();      return result.Produce();
# Line 1310  String LSCPServer::SetMIDIInputDevice(ui Line 1769  String LSCPServer::SetMIDIInputDevice(ui
1769      LSCPResultSet result;      LSCPResultSet result;
1770      try {      try {
1771          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1772          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1773          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1774          if (!devices.count(MIDIDeviceId)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(MIDIDeviceId));          if (!devices.count(MIDIDeviceId)) throw Exception("There is no MIDI input device with index " + ToString(MIDIDeviceId));
1775          MidiInputDevice* pDevice = devices[MIDIDeviceId];          MidiInputDevice* pDevice = devices[MIDIDeviceId];
1776          pSamplerChannel->SetMidiInputDevice(pDevice);          pSamplerChannel->SetMidiInputDevice(pDevice);
1777      }      }
1778      catch (LinuxSamplerException e) {      catch (Exception e) {
1779           result.Error(e);           result.Error(e);
1780      }      }
1781      return result.Produce();      return result.Produce();
# Line 1327  String LSCPServer::SetMIDIInputType(Stri Line 1786  String LSCPServer::SetMIDIInputType(Stri
1786      LSCPResultSet result;      LSCPResultSet result;
1787      try {      try {
1788          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1789          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1790          // Driver type name aliasing...          // Driver type name aliasing...
1791          if (MidiInputDriver == "Alsa") MidiInputDriver = "ALSA";          if (MidiInputDriver == "Alsa") MidiInputDriver = "ALSA";
1792          // Check if there's one MIDI input device already created          // Check if there's one MIDI input device already created
# Line 1351  String LSCPServer::SetMIDIInputType(Stri Line 1810  String LSCPServer::SetMIDIInputType(Stri
1810          }          }
1811          // Must have a device...          // Must have a device...
1812          if (pDevice == NULL)          if (pDevice == NULL)
1813              throw LinuxSamplerException("Internal error: could not create MIDI input device.");              throw Exception("Internal error: could not create MIDI input device.");
1814          // Set it as the current channel device...          // Set it as the current channel device...
1815          pSamplerChannel->SetMidiInputDevice(pDevice);          pSamplerChannel->SetMidiInputDevice(pDevice);
1816      }      }
1817      catch (LinuxSamplerException e) {      catch (Exception e) {
1818           result.Error(e);           result.Error(e);
1819      }      }
1820      return result.Produce();      return result.Produce();
# Line 1370  String LSCPServer::SetMIDIInput(uint MID Line 1829  String LSCPServer::SetMIDIInput(uint MID
1829      LSCPResultSet result;      LSCPResultSet result;
1830      try {      try {
1831          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1832          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw Exception("Invalid sampler channel number " + ToString(uiSamplerChannel));
1833          std::map<uint, MidiInputDevice*> devices =  pSampler->GetMidiInputDevices();          std::map<uint, MidiInputDevice*> devices =  pSampler->GetMidiInputDevices();
1834          if (!devices.count(MIDIDeviceId)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(MIDIDeviceId));          if (!devices.count(MIDIDeviceId)) throw Exception("There is no MIDI input device with index " + ToString(MIDIDeviceId));
1835          MidiInputDevice* pDevice = devices[MIDIDeviceId];          MidiInputDevice* pDevice = devices[MIDIDeviceId];
1836          pSamplerChannel->SetMidiInput(pDevice, MIDIPort, (midi_chan_t) MIDIChannel);          pSamplerChannel->SetMidiInput(pDevice, MIDIPort, (midi_chan_t) MIDIChannel);
1837      }      }
1838      catch (LinuxSamplerException e) {      catch (Exception e) {
1839           result.Error(e);           result.Error(e);
1840      }      }
1841      return result.Produce();      return result.Produce();
# Line 1390  String LSCPServer::SetVolume(double dVol Line 1849  String LSCPServer::SetVolume(double dVol
1849      dmsg(2,("LSCPServer: SetVolume(Volume=%f, SamplerChannel=%d)\n", dVolume, uiSamplerChannel));      dmsg(2,("LSCPServer: SetVolume(Volume=%f, SamplerChannel=%d)\n", dVolume, uiSamplerChannel));
1850      LSCPResultSet result;      LSCPResultSet result;
1851      try {      try {
1852          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
         if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));  
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel");  
1853          pEngineChannel->Volume(dVolume);          pEngineChannel->Volume(dVolume);
1854      }      }
1855      catch (LinuxSamplerException e) {      catch (Exception e) {
1856           result.Error(e);           result.Error(e);
1857      }      }
1858      return result.Produce();      return result.Produce();
# Line 1409  String LSCPServer::SetChannelMute(bool b Line 1865  String LSCPServer::SetChannelMute(bool b
1865      dmsg(2,("LSCPServer: SetChannelMute(bMute=%d,uiSamplerChannel=%d)\n",bMute,uiSamplerChannel));      dmsg(2,("LSCPServer: SetChannelMute(bMute=%d,uiSamplerChannel=%d)\n",bMute,uiSamplerChannel));
1866      LSCPResultSet result;      LSCPResultSet result;
1867      try {      try {
1868          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
         if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));  
   
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel");  
1869    
1870          if(!bMute) pEngineChannel->SetMute((HasSoloChannel() && !pEngineChannel->GetSolo()) ? -1 : 0);          if(!bMute) pEngineChannel->SetMute((HasSoloChannel() && !pEngineChannel->GetSolo()) ? -1 : 0);
1871          else pEngineChannel->SetMute(1);          else pEngineChannel->SetMute(1);
1872      } catch (LinuxSamplerException e) {      } catch (Exception e) {
1873          result.Error(e);          result.Error(e);
1874      }      }
1875      return result.Produce();      return result.Produce();
# Line 1430  String LSCPServer::SetChannelSolo(bool b Line 1882  String LSCPServer::SetChannelSolo(bool b
1882      dmsg(2,("LSCPServer: SetChannelSolo(bSolo=%d,uiSamplerChannel=%d)\n",bSolo,uiSamplerChannel));      dmsg(2,("LSCPServer: SetChannelSolo(bSolo=%d,uiSamplerChannel=%d)\n",bSolo,uiSamplerChannel));
1883      LSCPResultSet result;      LSCPResultSet result;
1884      try {      try {
1885          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
         if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));  
   
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel");  
1886    
1887          bool oldSolo = pEngineChannel->GetSolo();          bool oldSolo = pEngineChannel->GetSolo();
1888          bool hadSoloChannel = HasSoloChannel();          bool hadSoloChannel = HasSoloChannel();
1889            
1890          pEngineChannel->SetSolo(bSolo);          pEngineChannel->SetSolo(bSolo);
1891            
1892          if(!oldSolo && bSolo) {          if(!oldSolo && bSolo) {
1893              if(pEngineChannel->GetMute() == -1) pEngineChannel->SetMute(0);              if(pEngineChannel->GetMute() == -1) pEngineChannel->SetMute(0);
1894              if(!hadSoloChannel) MuteNonSoloChannels();              if(!hadSoloChannel) MuteNonSoloChannels();
1895          }          }
1896            
1897          if(oldSolo && !bSolo) {          if(oldSolo && !bSolo) {
1898              if(!HasSoloChannel()) UnmuteChannels();              if(!HasSoloChannel()) UnmuteChannels();
1899              else if(!pEngineChannel->GetMute()) pEngineChannel->SetMute(-1);              else if(!pEngineChannel->GetMute()) pEngineChannel->SetMute(-1);
1900          }          }
1901      } catch (LinuxSamplerException e) {      } catch (Exception e) {
1902          result.Error(e);          result.Error(e);
1903      }      }
1904      return result.Produce();      return result.Produce();
# Line 1503  void  LSCPServer::UnmuteChannels() { Line 1951  void  LSCPServer::UnmuteChannels() {
1951      }      }
1952  }  }
1953    
1954    String LSCPServer::AddOrReplaceMIDIInstrumentMapping(uint MidiMapID, uint MidiBank, uint MidiProg, String EngineType, String InstrumentFile, uint InstrumentIndex, float Volume, MidiInstrumentMapper::mode_t LoadMode, String Name, bool bModal) {
1955        dmsg(2,("LSCPServer: AddOrReplaceMIDIInstrumentMapping()\n"));
1956    
1957        midi_prog_index_t idx;
1958        idx.midi_bank_msb = (MidiBank >> 7) & 0x7f;
1959        idx.midi_bank_lsb = MidiBank & 0x7f;
1960        idx.midi_prog     = MidiProg;
1961    
1962        MidiInstrumentMapper::entry_t entry;
1963        entry.EngineName      = EngineType;
1964        entry.InstrumentFile  = InstrumentFile;
1965        entry.InstrumentIndex = InstrumentIndex;
1966        entry.LoadMode        = LoadMode;
1967        entry.Volume          = Volume;
1968        entry.Name            = Name;
1969    
1970        LSCPResultSet result;
1971        try {
1972            // PERSISTENT mapping commands might block for a long time, so in
1973            // that case we add/replace the mapping in another thread in case
1974            // the NON_MODAL argument was supplied, non persistent mappings
1975            // should return immediately, so we don't need to do that for them
1976            bool bInBackground = (entry.LoadMode == MidiInstrumentMapper::PERSISTENT && !bModal);
1977            MidiInstrumentMapper::AddOrReplaceEntry(MidiMapID, idx, entry, bInBackground);
1978        } catch (Exception e) {
1979            result.Error(e);
1980        }
1981        return result.Produce();
1982    }
1983    
1984    String LSCPServer::RemoveMIDIInstrumentMapping(uint MidiMapID, uint MidiBank, uint MidiProg) {
1985        dmsg(2,("LSCPServer: RemoveMIDIInstrumentMapping()\n"));
1986    
1987        midi_prog_index_t idx;
1988        idx.midi_bank_msb = (MidiBank >> 7) & 0x7f;
1989        idx.midi_bank_lsb = MidiBank & 0x7f;
1990        idx.midi_prog     = MidiProg;
1991    
1992        LSCPResultSet result;
1993        try {
1994            MidiInstrumentMapper::RemoveEntry(MidiMapID, idx);
1995        } catch (Exception e) {
1996            result.Error(e);
1997        }
1998        return result.Produce();
1999    }
2000    
2001    String LSCPServer::GetMidiInstrumentMappings(uint MidiMapID) {
2002        dmsg(2,("LSCPServer: GetMidiInstrumentMappings()\n"));
2003        LSCPResultSet result;
2004        try {
2005            result.Add(MidiInstrumentMapper::GetInstrumentCount(MidiMapID));
2006        } catch (Exception e) {
2007            result.Error(e);
2008        }
2009        return result.Produce();
2010    }
2011    
2012    
2013    String LSCPServer::GetAllMidiInstrumentMappings() {
2014        dmsg(2,("LSCPServer: GetAllMidiInstrumentMappings()\n"));
2015        LSCPResultSet result;
2016        try {
2017            result.Add(MidiInstrumentMapper::GetInstrumentCount());
2018        } catch (Exception e) {
2019            result.Error(e);
2020        }
2021        return result.Produce();
2022    }
2023    
2024    String LSCPServer::GetMidiInstrumentMapping(uint MidiMapID, uint MidiBank, uint MidiProg) {
2025        dmsg(2,("LSCPServer: GetMidiIstrumentMapping()\n"));
2026        LSCPResultSet result;
2027        try {
2028            MidiInstrumentMapper::entry_t entry = MidiInstrumentMapper::GetEntry(MidiMapID, MidiBank, MidiProg);
2029            // convert the filename into the correct encoding as defined for LSCP
2030            // (especially in terms of special characters -> escape sequences)
2031    #if WIN32
2032            const String instrumentFileName = Path::fromWindows(entry.InstrumentFile).toLscp();
2033    #else
2034            // assuming POSIX
2035            const String instrumentFileName = Path::fromPosix(entry.InstrumentFile).toLscp();
2036    #endif
2037    
2038            result.Add("NAME", _escapeLscpResponse(entry.Name));
2039            result.Add("ENGINE_NAME", entry.EngineName);
2040            result.Add("INSTRUMENT_FILE", instrumentFileName);
2041            result.Add("INSTRUMENT_NR", (int) entry.InstrumentIndex);
2042            String instrumentName;
2043            Engine* pEngine = EngineFactory::Create(entry.EngineName);
2044            if (pEngine) {
2045                if (pEngine->GetInstrumentManager()) {
2046                    InstrumentManager::instrument_id_t instrID;
2047                    instrID.FileName = entry.InstrumentFile;
2048                    instrID.Index    = entry.InstrumentIndex;
2049                    instrumentName = pEngine->GetInstrumentManager()->GetInstrumentName(instrID);
2050                }
2051                EngineFactory::Destroy(pEngine);
2052            }
2053            result.Add("INSTRUMENT_NAME", _escapeLscpResponse(instrumentName));
2054            switch (entry.LoadMode) {
2055                case MidiInstrumentMapper::ON_DEMAND:
2056                    result.Add("LOAD_MODE", "ON_DEMAND");
2057                    break;
2058                case MidiInstrumentMapper::ON_DEMAND_HOLD:
2059                    result.Add("LOAD_MODE", "ON_DEMAND_HOLD");
2060                    break;
2061                case MidiInstrumentMapper::PERSISTENT:
2062                    result.Add("LOAD_MODE", "PERSISTENT");
2063                    break;
2064                default:
2065                    throw Exception("entry reflects invalid LOAD_MODE, consider this as a bug!");
2066            }
2067            result.Add("VOLUME", entry.Volume);
2068        } catch (Exception e) {
2069            result.Error(e);
2070        }
2071        return result.Produce();
2072    }
2073    
2074    String LSCPServer::ListMidiInstrumentMappings(uint MidiMapID) {
2075        dmsg(2,("LSCPServer: ListMidiInstrumentMappings()\n"));
2076        LSCPResultSet result;
2077        try {
2078            String s;
2079            std::map<midi_prog_index_t,MidiInstrumentMapper::entry_t> mappings = MidiInstrumentMapper::Entries(MidiMapID);
2080            std::map<midi_prog_index_t,MidiInstrumentMapper::entry_t>::iterator iter = mappings.begin();
2081            for (; iter != mappings.end(); iter++) {
2082                if (s.size()) s += ",";
2083                s += "{" + ToString(MidiMapID) + ","
2084                         + ToString((int(iter->first.midi_bank_msb) << 7) | int(iter->first.midi_bank_lsb)) + ","
2085                         + ToString(int(iter->first.midi_prog)) + "}";
2086            }
2087            result.Add(s);
2088        } catch (Exception e) {
2089            result.Error(e);
2090        }
2091        return result.Produce();
2092    }
2093    
2094    String LSCPServer::ListAllMidiInstrumentMappings() {
2095        dmsg(2,("LSCPServer: ListAllMidiInstrumentMappings()\n"));
2096        LSCPResultSet result;
2097        try {
2098            std::vector<int> maps = MidiInstrumentMapper::Maps();
2099            String s;
2100            for (int i = 0; i < maps.size(); i++) {
2101                std::map<midi_prog_index_t,MidiInstrumentMapper::entry_t> mappings = MidiInstrumentMapper::Entries(maps[i]);
2102                std::map<midi_prog_index_t,MidiInstrumentMapper::entry_t>::iterator iter = mappings.begin();
2103                for (; iter != mappings.end(); iter++) {
2104                    if (s.size()) s += ",";
2105                    s += "{" + ToString(maps[i]) + ","
2106                             + ToString((int(iter->first.midi_bank_msb) << 7) | int(iter->first.midi_bank_lsb)) + ","
2107                             + ToString(int(iter->first.midi_prog)) + "}";
2108                }
2109            }
2110            result.Add(s);
2111        } catch (Exception e) {
2112            result.Error(e);
2113        }
2114        return result.Produce();
2115    }
2116    
2117    String LSCPServer::ClearMidiInstrumentMappings(uint MidiMapID) {
2118        dmsg(2,("LSCPServer: ClearMidiInstrumentMappings()\n"));
2119        LSCPResultSet result;
2120        try {
2121            MidiInstrumentMapper::RemoveAllEntries(MidiMapID);
2122        } catch (Exception e) {
2123            result.Error(e);
2124        }
2125        return result.Produce();
2126    }
2127    
2128    String LSCPServer::ClearAllMidiInstrumentMappings() {
2129        dmsg(2,("LSCPServer: ClearAllMidiInstrumentMappings()\n"));
2130        LSCPResultSet result;
2131        try {
2132            std::vector<int> maps = MidiInstrumentMapper::Maps();
2133            for (int i = 0; i < maps.size(); i++)
2134                MidiInstrumentMapper::RemoveAllEntries(maps[i]);
2135        } catch (Exception e) {
2136            result.Error(e);
2137        }
2138        return result.Produce();
2139    }
2140    
2141    String LSCPServer::AddMidiInstrumentMap(String MapName) {
2142        dmsg(2,("LSCPServer: AddMidiInstrumentMap()\n"));
2143        LSCPResultSet result;
2144        try {
2145            int MapID = MidiInstrumentMapper::AddMap(MapName);
2146            result = LSCPResultSet(MapID);
2147        } catch (Exception e) {
2148            result.Error(e);
2149        }
2150        return result.Produce();
2151    }
2152    
2153    String LSCPServer::RemoveMidiInstrumentMap(uint MidiMapID) {
2154        dmsg(2,("LSCPServer: RemoveMidiInstrumentMap()\n"));
2155        LSCPResultSet result;
2156        try {
2157            MidiInstrumentMapper::RemoveMap(MidiMapID);
2158        } catch (Exception e) {
2159            result.Error(e);
2160        }
2161        return result.Produce();
2162    }
2163    
2164    String LSCPServer::RemoveAllMidiInstrumentMaps() {
2165        dmsg(2,("LSCPServer: RemoveAllMidiInstrumentMaps()\n"));
2166        LSCPResultSet result;
2167        try {
2168            MidiInstrumentMapper::RemoveAllMaps();
2169        } catch (Exception e) {
2170            result.Error(e);
2171        }
2172        return result.Produce();
2173    }
2174    
2175    String LSCPServer::GetMidiInstrumentMaps() {
2176        dmsg(2,("LSCPServer: GetMidiInstrumentMaps()\n"));
2177        LSCPResultSet result;
2178        try {
2179            result.Add(MidiInstrumentMapper::Maps().size());
2180        } catch (Exception e) {
2181            result.Error(e);
2182        }
2183        return result.Produce();
2184    }
2185    
2186    String LSCPServer::ListMidiInstrumentMaps() {
2187        dmsg(2,("LSCPServer: ListMidiInstrumentMaps()\n"));
2188        LSCPResultSet result;
2189        try {
2190            std::vector<int> maps = MidiInstrumentMapper::Maps();
2191            String sList;
2192            for (int i = 0; i < maps.size(); i++) {
2193                if (sList != "") sList += ",";
2194                sList += ToString(maps[i]);
2195            }
2196            result.Add(sList);
2197        } catch (Exception e) {
2198            result.Error(e);
2199        }
2200        return result.Produce();
2201    }
2202    
2203    String LSCPServer::GetMidiInstrumentMap(uint MidiMapID) {
2204        dmsg(2,("LSCPServer: GetMidiInstrumentMap()\n"));
2205        LSCPResultSet result;
2206        try {
2207            result.Add("NAME", _escapeLscpResponse(MidiInstrumentMapper::MapName(MidiMapID)));
2208            result.Add("DEFAULT", MidiInstrumentMapper::GetDefaultMap() == MidiMapID);
2209        } catch (Exception e) {
2210            result.Error(e);
2211        }
2212        return result.Produce();
2213    }
2214    
2215    String LSCPServer::SetMidiInstrumentMapName(uint MidiMapID, String NewName) {
2216        dmsg(2,("LSCPServer: SetMidiInstrumentMapName()\n"));
2217        LSCPResultSet result;
2218        try {
2219            MidiInstrumentMapper::RenameMap(MidiMapID, NewName);
2220        } catch (Exception e) {
2221            result.Error(e);
2222        }
2223        return result.Produce();
2224    }
2225    
2226    /**
2227     * Set the MIDI instrument map the given sampler channel shall use for
2228     * handling MIDI program change messages. There are the following two
2229     * special (negative) values:
2230     *
2231     *    - (-1) :  set to NONE (ignore program changes)
2232     *    - (-2) :  set to DEFAULT map
2233     */
2234    String LSCPServer::SetChannelMap(uint uiSamplerChannel, int MidiMapID) {
2235        dmsg(2,("LSCPServer: SetChannelMap()\n"));
2236        LSCPResultSet result;
2237        try {
2238            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2239    
2240            if      (MidiMapID == -1) pEngineChannel->SetMidiInstrumentMapToNone();
2241            else if (MidiMapID == -2) pEngineChannel->SetMidiInstrumentMapToDefault();
2242            else                      pEngineChannel->SetMidiInstrumentMap(MidiMapID);
2243        } catch (Exception e) {
2244            result.Error(e);
2245        }
2246        return result.Produce();
2247    }
2248    
2249    String LSCPServer::CreateFxSend(uint uiSamplerChannel, uint MidiCtrl, String Name) {
2250        dmsg(2,("LSCPServer: CreateFxSend()\n"));
2251        LSCPResultSet result;
2252        try {
2253            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2254    
2255            FxSend* pFxSend = pEngineChannel->AddFxSend(MidiCtrl, Name);
2256            if (!pFxSend) throw Exception("Could not add FxSend, don't ask, I don't know why (probably a bug)");
2257    
2258            result = LSCPResultSet(pFxSend->Id()); // success
2259        } catch (Exception e) {
2260            result.Error(e);
2261        }
2262        return result.Produce();
2263    }
2264    
2265    String LSCPServer::DestroyFxSend(uint uiSamplerChannel, uint FxSendID) {
2266        dmsg(2,("LSCPServer: DestroyFxSend()\n"));
2267        LSCPResultSet result;
2268        try {
2269            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2270    
2271            FxSend* pFxSend = NULL;
2272            for (int i = 0; i < pEngineChannel->GetFxSendCount(); i++) {
2273                if (pEngineChannel->GetFxSend(i)->Id() == FxSendID) {
2274                    pFxSend = pEngineChannel->GetFxSend(i);
2275                    break;
2276                }
2277            }
2278            if (!pFxSend) throw Exception("There is no FxSend with that ID on the given sampler channel");
2279            pEngineChannel->RemoveFxSend(pFxSend);
2280        } catch (Exception e) {
2281            result.Error(e);
2282        }
2283        return result.Produce();
2284    }
2285    
2286    String LSCPServer::GetFxSends(uint uiSamplerChannel) {
2287        dmsg(2,("LSCPServer: GetFxSends()\n"));
2288        LSCPResultSet result;
2289        try {
2290            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2291    
2292            result.Add(pEngineChannel->GetFxSendCount());
2293        } catch (Exception e) {
2294            result.Error(e);
2295        }
2296        return result.Produce();
2297    }
2298    
2299    String LSCPServer::ListFxSends(uint uiSamplerChannel) {
2300        dmsg(2,("LSCPServer: ListFxSends()\n"));
2301        LSCPResultSet result;
2302        String list;
2303        try {
2304            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2305    
2306            for (int i = 0; i < pEngineChannel->GetFxSendCount(); i++) {
2307                FxSend* pFxSend = pEngineChannel->GetFxSend(i);
2308                if (list != "") list += ",";
2309                list += ToString(pFxSend->Id());
2310            }
2311            result.Add(list);
2312        } catch (Exception e) {
2313            result.Error(e);
2314        }
2315        return result.Produce();
2316    }
2317    
2318    FxSend* LSCPServer::GetFxSend(uint uiSamplerChannel, uint FxSendID) {
2319        EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2320    
2321        FxSend* pFxSend = NULL;
2322        for (int i = 0; i < pEngineChannel->GetFxSendCount(); i++) {
2323            if (pEngineChannel->GetFxSend(i)->Id() == FxSendID) {
2324                pFxSend = pEngineChannel->GetFxSend(i);
2325                break;
2326            }
2327        }
2328        if (!pFxSend) throw Exception("There is no FxSend with that ID on the given sampler channel");
2329        return pFxSend;
2330    }
2331    
2332    String LSCPServer::GetFxSendInfo(uint uiSamplerChannel, uint FxSendID) {
2333        dmsg(2,("LSCPServer: GetFxSendInfo()\n"));
2334        LSCPResultSet result;
2335        try {
2336            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2337            FxSend* pFxSend = GetFxSend(uiSamplerChannel, FxSendID);
2338    
2339            // gather audio routing informations
2340            String AudioRouting;
2341            for (int chan = 0; chan < pEngineChannel->Channels(); chan++) {
2342                if (AudioRouting != "") AudioRouting += ",";
2343                AudioRouting += ToString(pFxSend->DestinationChannel(chan));
2344            }
2345    
2346            // success
2347            result.Add("NAME", _escapeLscpResponse(pFxSend->Name()));
2348            result.Add("MIDI_CONTROLLER", pFxSend->MidiController());
2349            result.Add("LEVEL", ToString(pFxSend->Level()));
2350            result.Add("AUDIO_OUTPUT_ROUTING", AudioRouting);
2351        } catch (Exception e) {
2352            result.Error(e);
2353        }
2354        return result.Produce();
2355    }
2356    
2357    String LSCPServer::SetFxSendName(uint uiSamplerChannel, uint FxSendID, String Name) {
2358        dmsg(2,("LSCPServer: SetFxSendName()\n"));
2359        LSCPResultSet result;
2360        try {
2361            FxSend* pFxSend = GetFxSend(uiSamplerChannel, FxSendID);
2362    
2363            pFxSend->SetName(Name);
2364            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_fx_send_info, uiSamplerChannel, FxSendID));
2365        } catch (Exception e) {
2366            result.Error(e);
2367        }
2368        return result.Produce();
2369    }
2370    
2371    String LSCPServer::SetFxSendAudioOutputChannel(uint uiSamplerChannel, uint FxSendID, uint FxSendChannel, uint DeviceChannel) {
2372        dmsg(2,("LSCPServer: SetFxSendAudioOutputChannel()\n"));
2373        LSCPResultSet result;
2374        try {
2375            FxSend* pFxSend = GetFxSend(uiSamplerChannel, FxSendID);
2376    
2377            pFxSend->SetDestinationChannel(FxSendChannel, DeviceChannel);
2378            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_fx_send_info, uiSamplerChannel, FxSendID));
2379        } catch (Exception e) {
2380            result.Error(e);
2381        }
2382        return result.Produce();
2383    }
2384    
2385    String LSCPServer::SetFxSendMidiController(uint uiSamplerChannel, uint FxSendID, uint MidiController) {
2386        dmsg(2,("LSCPServer: SetFxSendMidiController()\n"));
2387        LSCPResultSet result;
2388        try {
2389            FxSend* pFxSend = GetFxSend(uiSamplerChannel, FxSendID);
2390    
2391            pFxSend->SetMidiController(MidiController);
2392            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_fx_send_info, uiSamplerChannel, FxSendID));
2393        } catch (Exception e) {
2394            result.Error(e);
2395        }
2396        return result.Produce();
2397    }
2398    
2399    String LSCPServer::SetFxSendLevel(uint uiSamplerChannel, uint FxSendID, double dLevel) {
2400        dmsg(2,("LSCPServer: SetFxSendLevel()\n"));
2401        LSCPResultSet result;
2402        try {
2403            FxSend* pFxSend = GetFxSend(uiSamplerChannel, FxSendID);
2404    
2405            pFxSend->SetLevel((float)dLevel);
2406            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_fx_send_info, uiSamplerChannel, FxSendID));
2407        } catch (Exception e) {
2408            result.Error(e);
2409        }
2410        return result.Produce();
2411    }
2412    
2413    String LSCPServer::EditSamplerChannelInstrument(uint uiSamplerChannel) {
2414        dmsg(2,("LSCPServer: EditSamplerChannelInstrument(SamplerChannel=%d)\n", uiSamplerChannel));
2415        LSCPResultSet result;
2416        try {
2417            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2418            if (pEngineChannel->InstrumentStatus() < 0) throw Exception("No instrument loaded to sampler channel");
2419            Engine* pEngine = pEngineChannel->GetEngine();
2420            InstrumentManager* pInstrumentManager = pEngine->GetInstrumentManager();
2421            if (!pInstrumentManager) throw Exception("Engine does not provide an instrument manager");
2422            InstrumentManager::instrument_id_t instrumentID;
2423            instrumentID.FileName = pEngineChannel->InstrumentFileName();
2424            instrumentID.Index    = pEngineChannel->InstrumentIndex();
2425            pInstrumentManager->LaunchInstrumentEditor(instrumentID);
2426        } catch (Exception e) {
2427            result.Error(e);
2428        }
2429        return result.Produce();
2430    }
2431    
2432    String LSCPServer::SendChannelMidiData(String MidiMsg, uint uiSamplerChannel, uint Arg1, uint Arg2) {
2433        dmsg(2,("LSCPServer: SendChannelMidiData(MidiMsg=%s,uiSamplerChannel=%d,Arg1=%d,Arg2=%d)\n", MidiMsg.c_str(), uiSamplerChannel, Arg1, Arg2));
2434        LSCPResultSet result;
2435        try {
2436            EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
2437    
2438            if (Arg1 > 127 || Arg2 > 127) {
2439                throw Exception("Invalid MIDI message");
2440            }
2441    
2442            VirtualMidiDevice* pMidiDevice = NULL;
2443            std::vector<EventHandler::midi_listener_entry>::iterator iter = eventHandler.channelMidiListeners.begin();
2444            for (; iter != eventHandler.channelMidiListeners.end(); ++iter) {
2445                if ((*iter).pEngineChannel == pEngineChannel) {
2446                    pMidiDevice = (*iter).pMidiListener;
2447                    break;
2448                }
2449            }
2450            
2451            if(pMidiDevice == NULL) throw Exception("Couldn't find virtual MIDI device");
2452    
2453            if (MidiMsg == "NOTE_ON") {
2454                pMidiDevice->SendNoteOnToDevice(Arg1, Arg2);
2455                bool b = pMidiDevice->SendNoteOnToSampler(Arg1, Arg2);
2456                if (!b) throw Exception("MIDI event failed: " + MidiMsg + " " + ToString(Arg1) + " " + ToString(Arg2));
2457            } else if (MidiMsg == "NOTE_OFF") {
2458                pMidiDevice->SendNoteOffToDevice(Arg1, Arg2);
2459                bool b = pMidiDevice->SendNoteOffToSampler(Arg1, Arg2);
2460                if (!b) throw Exception("MIDI event failed: " + MidiMsg + " " + ToString(Arg1) + " " + ToString(Arg2));
2461            } else {
2462                throw Exception("Unknown MIDI message type: " + MidiMsg);
2463            }
2464        } catch (Exception e) {
2465            result.Error(e);
2466        }
2467        return result.Produce();
2468    }
2469    
2470  /**  /**
2471   * Will be called by the parser to reset a particular sampler channel.   * Will be called by the parser to reset a particular sampler channel.
2472   */   */
# Line 1510  String LSCPServer::ResetChannel(uint uiS Line 2474  String LSCPServer::ResetChannel(uint uiS
2474      dmsg(2,("LSCPServer: ResetChannel(SamplerChannel=%d)\n", uiSamplerChannel));      dmsg(2,("LSCPServer: ResetChannel(SamplerChannel=%d)\n", uiSamplerChannel));
2475      LSCPResultSet result;      LSCPResultSet result;
2476      try {      try {
2477          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          EngineChannel* pEngineChannel = GetEngineChannel(uiSamplerChannel);
         if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));  
         EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
         if (!pEngineChannel) throw LinuxSamplerException("No engine type assigned to sampler channel");  
2478          pEngineChannel->Reset();          pEngineChannel->Reset();
2479      }      }
2480      catch (LinuxSamplerException e) {      catch (Exception e) {
2481           result.Error(e);           result.Error(e);
2482      }      }
2483      return result.Produce();      return result.Produce();
# Line 1538  String LSCPServer::ResetSampler() { Line 2499  String LSCPServer::ResetSampler() {
2499   */   */
2500  String LSCPServer::GetServerInfo() {  String LSCPServer::GetServerInfo() {
2501      dmsg(2,("LSCPServer: GetServerInfo()\n"));      dmsg(2,("LSCPServer: GetServerInfo()\n"));
2502        const std::string description =
2503            _escapeLscpResponse("LinuxSampler - modular, streaming capable sampler");
2504      LSCPResultSet result;      LSCPResultSet result;
2505      result.Add("DESCRIPTION", "LinuxSampler - modular, streaming capable sampler");      result.Add("DESCRIPTION", description);
2506      result.Add("VERSION", VERSION);      result.Add("VERSION", VERSION);
2507      result.Add("PROTOCOL_VERSION", "1.0");      result.Add("PROTOCOL_VERSION", ToString(LSCP_RELEASE_MAJOR) + "." + ToString(LSCP_RELEASE_MINOR));
2508    #if HAVE_SQLITE3
2509        result.Add("INSTRUMENTS_DB_SUPPORT", "yes");
2510    #else
2511        result.Add("INSTRUMENTS_DB_SUPPORT", "no");
2512    #endif
2513    
2514        return result.Produce();
2515    }
2516    
2517    /**
2518     * Will be called by the parser to return the current number of all active streams.
2519     */
2520    String LSCPServer::GetTotalStreamCount() {
2521        dmsg(2,("LSCPServer: GetTotalStreamCount()\n"));
2522        LSCPResultSet result;
2523        result.Add(pSampler->GetDiskStreamCount());
2524        return result.Produce();
2525    }
2526    
2527    /**
2528     * Will be called by the parser to return the current number of all active voices.
2529     */
2530    String LSCPServer::GetTotalVoiceCount() {
2531        dmsg(2,("LSCPServer: GetTotalVoiceCount()\n"));
2532        LSCPResultSet result;
2533        result.Add(pSampler->GetVoiceCount());
2534        return result.Produce();
2535    }
2536    
2537    /**
2538     * Will be called by the parser to return the maximum number of voices.
2539     */
2540    String LSCPServer::GetTotalVoiceCountMax() {
2541        dmsg(2,("LSCPServer: GetTotalVoiceCountMax()\n"));
2542        LSCPResultSet result;
2543        result.Add(EngineFactory::EngineInstances().size() * CONFIG_MAX_VOICES);
2544        return result.Produce();
2545    }
2546    
2547    String LSCPServer::GetGlobalVolume() {
2548        LSCPResultSet result;
2549        result.Add(ToString(GLOBAL_VOLUME)); // see common/global.cpp
2550        return result.Produce();
2551    }
2552    
2553    String LSCPServer::SetGlobalVolume(double dVolume) {
2554        LSCPResultSet result;
2555        try {
2556            if (dVolume < 0) throw Exception("Volume may not be negative");
2557            GLOBAL_VOLUME = dVolume; // see common/global_private.cpp
2558            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_global_info, "VOLUME", GLOBAL_VOLUME));
2559        } catch (Exception e) {
2560            result.Error(e);
2561        }
2562        return result.Produce();
2563    }
2564    
2565    String LSCPServer::GetFileInstruments(String Filename) {
2566        dmsg(2,("LSCPServer: GetFileInstruments(String Filename=%s)\n",Filename.c_str()));
2567        LSCPResultSet result;
2568        try {
2569            VerifyFile(Filename);
2570        } catch (Exception e) {
2571            result.Error(e);
2572            return result.Produce();
2573        }
2574        // try to find a sampler engine that can handle the file
2575        bool bFound = false;
2576        std::vector<String> engineTypes = EngineFactory::AvailableEngineTypes();
2577        for (int i = 0; !bFound && i < engineTypes.size(); i++) {
2578            Engine* pEngine = NULL;
2579            try {
2580                pEngine = EngineFactory::Create(engineTypes[i]);
2581                if (!pEngine) throw Exception("Internal error: could not create '" + engineTypes[i] + "' engine");
2582                InstrumentManager* pManager = pEngine->GetInstrumentManager();
2583                if (pManager) {
2584                    std::vector<InstrumentManager::instrument_id_t> IDs =
2585                        pManager->GetInstrumentFileContent(Filename);
2586                    // return the amount of instruments in the file
2587                    result.Add(IDs.size());
2588                    // no more need to ask other engine types
2589                    bFound = true;
2590                } else dmsg(1,("Warning: engine '%s' does not provide an instrument manager\n", engineTypes[i].c_str()));
2591            } catch (Exception e) {
2592                // NOOP, as exception is thrown if engine doesn't support file
2593            }
2594            if (pEngine) EngineFactory::Destroy(pEngine);
2595        }
2596    
2597        if (!bFound) result.Error("Unknown file format");
2598        return result.Produce();
2599    }
2600    
2601    String LSCPServer::ListFileInstruments(String Filename) {
2602        dmsg(2,("LSCPServer: ListFileInstruments(String Filename=%s)\n",Filename.c_str()));
2603        LSCPResultSet result;
2604        try {
2605            VerifyFile(Filename);
2606        } catch (Exception e) {
2607            result.Error(e);
2608            return result.Produce();
2609        }
2610        // try to find a sampler engine that can handle the file
2611        bool bFound = false;
2612        std::vector<String> engineTypes = EngineFactory::AvailableEngineTypes();
2613        for (int i = 0; !bFound && i < engineTypes.size(); i++) {
2614            Engine* pEngine = NULL;
2615            try {
2616                pEngine = EngineFactory::Create(engineTypes[i]);
2617                if (!pEngine) throw Exception("Internal error: could not create '" + engineTypes[i] + "' engine");
2618                InstrumentManager* pManager = pEngine->GetInstrumentManager();
2619                if (pManager) {
2620                    std::vector<InstrumentManager::instrument_id_t> IDs =
2621                        pManager->GetInstrumentFileContent(Filename);
2622                    // return a list of IDs of the instruments in the file
2623                    String s;
2624                    for (int j = 0; j < IDs.size(); j++) {
2625                        if (s.size()) s += ",";
2626                        s += ToString(IDs[j].Index);
2627                    }
2628                    result.Add(s);
2629                    // no more need to ask other engine types
2630                    bFound = true;
2631                } else dmsg(1,("Warning: engine '%s' does not provide an instrument manager\n", engineTypes[i].c_str()));
2632            } catch (Exception e) {
2633                // NOOP, as exception is thrown if engine doesn't support file
2634            }
2635            if (pEngine) EngineFactory::Destroy(pEngine);
2636        }
2637    
2638        if (!bFound) result.Error("Unknown file format");
2639        return result.Produce();
2640    }
2641    
2642    String LSCPServer::GetFileInstrumentInfo(String Filename, uint InstrumentID) {
2643        dmsg(2,("LSCPServer: GetFileInstrumentInfo(String Filename=%s, InstrumentID=%d)\n",Filename.c_str(),InstrumentID));
2644        LSCPResultSet result;
2645        try {
2646            VerifyFile(Filename);
2647        } catch (Exception e) {
2648            result.Error(e);
2649            return result.Produce();
2650        }
2651        InstrumentManager::instrument_id_t id;
2652        id.FileName = Filename;
2653        id.Index    = InstrumentID;
2654        // try to find a sampler engine that can handle the file
2655        bool bFound = false;
2656        bool bFatalErr = false;
2657        std::vector<String> engineTypes = EngineFactory::AvailableEngineTypes();
2658        for (int i = 0; !bFound && !bFatalErr && i < engineTypes.size(); i++) {
2659            Engine* pEngine = NULL;
2660            try {
2661                pEngine = EngineFactory::Create(engineTypes[i]);
2662                if (!pEngine) throw Exception("Internal error: could not create '" + engineTypes[i] + "' engine");
2663                InstrumentManager* pManager = pEngine->GetInstrumentManager();
2664                if (pManager) {
2665                    // check if the instrument index is valid
2666                    // FIXME: this won't work if an engine only supports parts of the instrument file
2667                    std::vector<InstrumentManager::instrument_id_t> IDs =
2668                        pManager->GetInstrumentFileContent(Filename);
2669                    if (std::find(IDs.begin(), IDs.end(), id) == IDs.end()) {
2670                        std::stringstream ss;
2671                        ss << "Invalid instrument index " << InstrumentID << " for instrument file '" << Filename << "'";
2672                        bFatalErr = true;
2673                        throw Exception(ss.str());
2674                    }
2675                    // get the info of the requested instrument
2676                    InstrumentManager::instrument_info_t info =
2677                        pManager->GetInstrumentInfo(id);
2678                    // return detailed informations about the file
2679                    result.Add("NAME", info.InstrumentName);
2680                    result.Add("FORMAT_FAMILY", engineTypes[i]);
2681                    result.Add("FORMAT_VERSION", info.FormatVersion);
2682                    result.Add("PRODUCT", info.Product);
2683                    result.Add("ARTISTS", info.Artists);
2684    
2685                    std::stringstream ss;
2686                    bool b = false;
2687                    for (int i = 0; i < 128; i++) {
2688                        if (info.KeyBindings[i]) {
2689                            if (b) ss << ',';
2690                            ss << i; b = true;
2691                        }
2692                    }
2693                    result.Add("KEY_BINDINGS", ss.str());
2694    
2695                    b = false;
2696                    std::stringstream ss2;
2697                    for (int i = 0; i < 128; i++) {
2698                        if (info.KeySwitchBindings[i]) {
2699                            if (b) ss2 << ',';
2700                            ss2 << i; b = true;
2701                        }
2702                    }
2703                    result.Add("KEYSWITCH_BINDINGS", ss2.str());
2704                    // no more need to ask other engine types
2705                    bFound = true;
2706                } else dmsg(1,("Warning: engine '%s' does not provide an instrument manager\n", engineTypes[i].c_str()));
2707            } catch (Exception e) {
2708                // usually NOOP, as exception is thrown if engine doesn't support file
2709                if (bFatalErr) result.Error(e);
2710            }
2711            if (pEngine) EngineFactory::Destroy(pEngine);
2712        }
2713    
2714        if (!bFound && !bFatalErr) result.Error("Unknown file format");
2715      return result.Produce();      return result.Produce();
2716  }  }
2717    
2718    void LSCPServer::VerifyFile(String Filename) {
2719        #if WIN32
2720        WIN32_FIND_DATA win32FileAttributeData;
2721        BOOL res = GetFileAttributesEx( Filename.c_str(), GetFileExInfoStandard, &win32FileAttributeData );
2722        if (!res) {
2723            std::stringstream ss;
2724            ss << "File does not exist, GetFileAttributesEx failed `" << Filename << "`: Error " << GetLastError();
2725            throw Exception(ss.str());
2726        }
2727        if ( win32FileAttributeData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) {
2728            throw Exception("Directory is specified");
2729        }
2730        #else
2731        struct stat statBuf;
2732        int res = stat(Filename.c_str(), &statBuf);
2733        if (res) {
2734            std::stringstream ss;
2735            ss << "Fail to stat `" << Filename << "`: " << strerror(errno);
2736            throw Exception(ss.str());
2737        }
2738    
2739        if (S_ISDIR(statBuf.st_mode)) {
2740            throw Exception("Directory is specified");
2741        }
2742        #endif
2743    }
2744    
2745  /**  /**
2746   * Will be called by the parser to subscribe a client (frontend) on the   * Will be called by the parser to subscribe a client (frontend) on the
2747   * server for receiving event messages.   * server for receiving event messages.
# Line 1571  String LSCPServer::UnsubscribeNotificati Line 2768  String LSCPServer::UnsubscribeNotificati
2768      return result.Produce();      return result.Produce();
2769  }  }
2770    
2771  static int select_callback(void * lscpResultSet, int argc,  String LSCPServer::AddDbInstrumentDirectory(String Dir) {
2772                          char **argv, char **azColName)      dmsg(2,("LSCPServer: AddDbInstrumentDirectory(Dir=%s)\n", Dir.c_str()));
2773  {      LSCPResultSet result;
2774      LSCPResultSet* resultSet = (LSCPResultSet*) lscpResultSet;  #if HAVE_SQLITE3
2775      resultSet->Add(argc, argv);      try {
2776      return 0;          InstrumentsDb::GetInstrumentsDb()->AddDirectory(Dir);
2777        } catch (Exception e) {
2778             result.Error(e);
2779        }
2780    #else
2781        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2782    #endif
2783        return result.Produce();
2784    }
2785    
2786    String LSCPServer::RemoveDbInstrumentDirectory(String Dir, bool Force) {
2787        dmsg(2,("LSCPServer: RemoveDbInstrumentDirectory(Dir=%s,Force=%d)\n", Dir.c_str(), Force));
2788        LSCPResultSet result;
2789    #if HAVE_SQLITE3
2790        try {
2791            InstrumentsDb::GetInstrumentsDb()->RemoveDirectory(Dir, Force);
2792        } catch (Exception e) {
2793             result.Error(e);
2794        }
2795    #else
2796        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2797    #endif
2798        return result.Produce();
2799  }  }
2800    
2801  String LSCPServer::QueryDatabase(String query) {  String LSCPServer::GetDbInstrumentDirectoryCount(String Dir, bool Recursive) {
2802        dmsg(2,("LSCPServer: GetDbInstrumentDirectoryCount(Dir=%s,Recursive=%d)\n", Dir.c_str(), Recursive));
2803      LSCPResultSet result;      LSCPResultSet result;
2804  #if HAVE_SQLITE3  #if HAVE_SQLITE3
2805      char* zErrMsg = NULL;      try {
2806      sqlite3 *db;          result.Add(InstrumentsDb::GetInstrumentsDb()->GetDirectoryCount(Dir, Recursive));
2807      String selectStr = "SELECT " + query;      } catch (Exception e) {
2808             result.Error(e);
2809        }
2810    #else
2811        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2812    #endif
2813        return result.Produce();
2814    }
2815    
2816    String LSCPServer::GetDbInstrumentDirectories(String Dir, bool Recursive) {
2817        dmsg(2,("LSCPServer: GetDbInstrumentDirectories(Dir=%s,Recursive=%d)\n", Dir.c_str(), Recursive));
2818        LSCPResultSet result;
2819    #if HAVE_SQLITE3
2820        try {
2821            String list;
2822            StringListPtr dirs = InstrumentsDb::GetInstrumentsDb()->GetDirectories(Dir, Recursive);
2823    
2824            for (int i = 0; i < dirs->size(); i++) {
2825                if (list != "") list += ",";
2826                list += "'" + InstrumentsDb::toEscapedPath(dirs->at(i)) + "'";
2827            }
2828    
2829            result.Add(list);
2830        } catch (Exception e) {
2831             result.Error(e);
2832        }
2833    #else
2834        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2835    #endif
2836        return result.Produce();
2837    }
2838    
2839    String LSCPServer::GetDbInstrumentDirectoryInfo(String Dir) {
2840        dmsg(2,("LSCPServer: GetDbInstrumentDirectoryInfo(Dir=%s)\n", Dir.c_str()));
2841        LSCPResultSet result;
2842    #if HAVE_SQLITE3
2843        try {
2844            DbDirectory info = InstrumentsDb::GetInstrumentsDb()->GetDirectoryInfo(Dir);
2845    
2846      int rc = sqlite3_open("linuxsampler.db", &db);          result.Add("DESCRIPTION", _escapeLscpResponse(info.Description));
2847      if (rc == SQLITE_OK)          result.Add("CREATED", info.Created);
2848      {          result.Add("MODIFIED", info.Modified);
2849              rc = sqlite3_exec(db, selectStr.c_str(), select_callback, &result, &zErrMsg);      } catch (Exception e) {
2850             result.Error(e);
2851      }      }
2852      if ( rc != SQLITE_OK )  #else
2853      {      result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2854              result.Error(String(zErrMsg), rc);  #endif
2855        return result.Produce();
2856    }
2857    
2858    String LSCPServer::SetDbInstrumentDirectoryName(String Dir, String Name) {
2859        dmsg(2,("LSCPServer: SetDbInstrumentDirectoryName(Dir=%s,Name=%s)\n", Dir.c_str(), Name.c_str()));
2860        LSCPResultSet result;
2861    #if HAVE_SQLITE3
2862        try {
2863            InstrumentsDb::GetInstrumentsDb()->RenameDirectory(Dir, Name);
2864        } catch (Exception e) {
2865             result.Error(e);
2866      }      }
     sqlite3_close(db);  
2867  #else  #else
2868      result.Error(String("SQLITE3 was not installed when linuxsampler was built. SELECT statement is not available."), 0);      result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2869  #endif  #endif
2870      return result.Produce();      return result.Produce();
2871  }  }
2872    
2873    String LSCPServer::MoveDbInstrumentDirectory(String Dir, String Dst) {
2874        dmsg(2,("LSCPServer: MoveDbInstrumentDirectory(Dir=%s,Dst=%s)\n", Dir.c_str(), Dst.c_str()));
2875        LSCPResultSet result;
2876    #if HAVE_SQLITE3
2877        try {
2878            InstrumentsDb::GetInstrumentsDb()->MoveDirectory(Dir, Dst);
2879        } catch (Exception e) {
2880             result.Error(e);
2881        }
2882    #else
2883        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2884    #endif
2885        return result.Produce();
2886    }
2887    
2888    String LSCPServer::CopyDbInstrumentDirectory(String Dir, String Dst) {
2889        dmsg(2,("LSCPServer: CopyDbInstrumentDirectory(Dir=%s,Dst=%s)\n", Dir.c_str(), Dst.c_str()));
2890        LSCPResultSet result;
2891    #if HAVE_SQLITE3
2892        try {
2893            InstrumentsDb::GetInstrumentsDb()->CopyDirectory(Dir, Dst);
2894        } catch (Exception e) {
2895             result.Error(e);
2896        }
2897    #else
2898        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2899    #endif
2900        return result.Produce();
2901    }
2902    
2903    String LSCPServer::SetDbInstrumentDirectoryDescription(String Dir, String Desc) {
2904        dmsg(2,("LSCPServer: SetDbInstrumentDirectoryDescription(Dir=%s,Desc=%s)\n", Dir.c_str(), Desc.c_str()));
2905        LSCPResultSet result;
2906    #if HAVE_SQLITE3
2907        try {
2908            InstrumentsDb::GetInstrumentsDb()->SetDirectoryDescription(Dir, Desc);
2909        } catch (Exception e) {
2910             result.Error(e);
2911        }
2912    #else
2913        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2914    #endif
2915        return result.Produce();
2916    }
2917    
2918    String LSCPServer::AddDbInstruments(String DbDir, String FilePath, int Index, bool bBackground) {
2919        dmsg(2,("LSCPServer: AddDbInstruments(DbDir=%s,FilePath=%s,Index=%d,bBackground=%d)\n", DbDir.c_str(), FilePath.c_str(), Index, bBackground));
2920        LSCPResultSet result;
2921    #if HAVE_SQLITE3
2922        try {
2923            int id;
2924            InstrumentsDb* db = InstrumentsDb::GetInstrumentsDb();
2925            id = db->AddInstruments(DbDir, FilePath, Index, bBackground);
2926            if (bBackground) result = id;
2927        } catch (Exception e) {
2928             result.Error(e);
2929        }
2930    #else
2931        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2932    #endif
2933        return result.Produce();
2934    }
2935    
2936    String LSCPServer::AddDbInstruments(String ScanMode, String DbDir, String FsDir, bool bBackground, bool insDir) {
2937        dmsg(2,("LSCPServer: AddDbInstruments(ScanMode=%s,DbDir=%s,FsDir=%s,bBackground=%d,insDir=%d)\n", ScanMode.c_str(), DbDir.c_str(), FsDir.c_str(), bBackground, insDir));
2938        LSCPResultSet result;
2939    #if HAVE_SQLITE3
2940        try {
2941            int id;
2942            InstrumentsDb* db = InstrumentsDb::GetInstrumentsDb();
2943            if (ScanMode.compare("RECURSIVE") == 0) {
2944                id = db->AddInstruments(RECURSIVE, DbDir, FsDir, bBackground, insDir);
2945            } else if (ScanMode.compare("NON_RECURSIVE") == 0) {
2946                id = db->AddInstruments(NON_RECURSIVE, DbDir, FsDir, bBackground, insDir);
2947            } else if (ScanMode.compare("FLAT") == 0) {
2948                id = db->AddInstruments(FLAT, DbDir, FsDir, bBackground, insDir);
2949            } else {
2950                throw Exception("Unknown scan mode: " + ScanMode);
2951            }
2952    
2953            if (bBackground) result = id;
2954        } catch (Exception e) {
2955             result.Error(e);
2956        }
2957    #else
2958        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2959    #endif
2960        return result.Produce();
2961    }
2962    
2963    String LSCPServer::RemoveDbInstrument(String Instr) {
2964        dmsg(2,("LSCPServer: RemoveDbInstrument(Instr=%s)\n", Instr.c_str()));
2965        LSCPResultSet result;
2966    #if HAVE_SQLITE3
2967        try {
2968            InstrumentsDb::GetInstrumentsDb()->RemoveInstrument(Instr);
2969        } catch (Exception e) {
2970             result.Error(e);
2971        }
2972    #else
2973        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2974    #endif
2975        return result.Produce();
2976    }
2977    
2978    String LSCPServer::GetDbInstrumentCount(String Dir, bool Recursive) {
2979        dmsg(2,("LSCPServer: GetDbInstrumentCount(Dir=%s,Recursive=%d)\n", Dir.c_str(), Recursive));
2980        LSCPResultSet result;
2981    #if HAVE_SQLITE3
2982        try {
2983            result.Add(InstrumentsDb::GetInstrumentsDb()->GetInstrumentCount(Dir, Recursive));
2984        } catch (Exception e) {
2985             result.Error(e);
2986        }
2987    #else
2988        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
2989    #endif
2990        return result.Produce();
2991    }
2992    
2993    String LSCPServer::GetDbInstruments(String Dir, bool Recursive) {
2994        dmsg(2,("LSCPServer: GetDbInstruments(Dir=%s,Recursive=%d)\n", Dir.c_str(), Recursive));
2995        LSCPResultSet result;
2996    #if HAVE_SQLITE3
2997        try {
2998            String list;
2999            StringListPtr instrs = InstrumentsDb::GetInstrumentsDb()->GetInstruments(Dir, Recursive);
3000    
3001            for (int i = 0; i < instrs->size(); i++) {
3002                if (list != "") list += ",";
3003                list += "'" + InstrumentsDb::toEscapedPath(instrs->at(i)) + "'";
3004            }
3005    
3006            result.Add(list);
3007        } catch (Exception e) {
3008             result.Error(e);
3009        }
3010    #else
3011        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3012    #endif
3013        return result.Produce();
3014    }
3015    
3016    String LSCPServer::GetDbInstrumentInfo(String Instr) {
3017        dmsg(2,("LSCPServer: GetDbInstrumentInfo(Instr=%s)\n", Instr.c_str()));
3018        LSCPResultSet result;
3019    #if HAVE_SQLITE3
3020        try {
3021            DbInstrument info = InstrumentsDb::GetInstrumentsDb()->GetInstrumentInfo(Instr);
3022    
3023            result.Add("INSTRUMENT_FILE", info.InstrFile);
3024            result.Add("INSTRUMENT_NR", info.InstrNr);
3025            result.Add("FORMAT_FAMILY", info.FormatFamily);
3026            result.Add("FORMAT_VERSION", info.FormatVersion);
3027            result.Add("SIZE", (int)info.Size);
3028            result.Add("CREATED", info.Created);
3029            result.Add("MODIFIED", info.Modified);
3030            result.Add("DESCRIPTION", _escapeLscpResponse(info.Description));
3031            result.Add("IS_DRUM", info.IsDrum);
3032            result.Add("PRODUCT", _escapeLscpResponse(info.Product));
3033            result.Add("ARTISTS", _escapeLscpResponse(info.Artists));
3034            result.Add("KEYWORDS", _escapeLscpResponse(info.Keywords));
3035        } catch (Exception e) {
3036             result.Error(e);
3037        }
3038    #else
3039        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3040    #endif
3041        return result.Produce();
3042    }
3043    
3044    String LSCPServer::GetDbInstrumentsJobInfo(int JobId) {
3045        dmsg(2,("LSCPServer: GetDbInstrumentsJobInfo(JobId=%d)\n", JobId));
3046        LSCPResultSet result;
3047    #if HAVE_SQLITE3
3048        try {
3049            ScanJob job = InstrumentsDb::GetInstrumentsDb()->Jobs.GetJobById(JobId);
3050    
3051            result.Add("FILES_TOTAL", job.FilesTotal);
3052            result.Add("FILES_SCANNED", job.FilesScanned);
3053            result.Add("SCANNING", job.Scanning);
3054            result.Add("STATUS", job.Status);
3055        } catch (Exception e) {
3056             result.Error(e);
3057        }
3058    #else
3059        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3060    #endif
3061        return result.Produce();
3062    }
3063    
3064    String LSCPServer::SetDbInstrumentName(String Instr, String Name) {
3065        dmsg(2,("LSCPServer: SetDbInstrumentName(Instr=%s,Name=%s)\n", Instr.c_str(), Name.c_str()));
3066        LSCPResultSet result;
3067    #if HAVE_SQLITE3
3068        try {
3069            InstrumentsDb::GetInstrumentsDb()->RenameInstrument(Instr, Name);
3070        } catch (Exception e) {
3071             result.Error(e);
3072        }
3073    #else
3074        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3075    #endif
3076        return result.Produce();
3077    }
3078    
3079    String LSCPServer::MoveDbInstrument(String Instr, String Dst) {
3080        dmsg(2,("LSCPServer: MoveDbInstrument(Instr=%s,Dst=%s)\n", Instr.c_str(), Dst.c_str()));
3081        LSCPResultSet result;
3082    #if HAVE_SQLITE3
3083        try {
3084            InstrumentsDb::GetInstrumentsDb()->MoveInstrument(Instr, Dst);
3085        } catch (Exception e) {
3086             result.Error(e);
3087        }
3088    #else
3089        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3090    #endif
3091        return result.Produce();
3092    }
3093    
3094    String LSCPServer::CopyDbInstrument(String Instr, String Dst) {
3095        dmsg(2,("LSCPServer: CopyDbInstrument(Instr=%s,Dst=%s)\n", Instr.c_str(), Dst.c_str()));
3096        LSCPResultSet result;
3097    #if HAVE_SQLITE3
3098        try {
3099            InstrumentsDb::GetInstrumentsDb()->CopyInstrument(Instr, Dst);
3100        } catch (Exception e) {
3101             result.Error(e);
3102        }
3103    #else
3104        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3105    #endif
3106        return result.Produce();
3107    }
3108    
3109    String LSCPServer::SetDbInstrumentDescription(String Instr, String Desc) {
3110        dmsg(2,("LSCPServer: SetDbInstrumentDescription(Instr=%s,Desc=%s)\n", Instr.c_str(), Desc.c_str()));
3111        LSCPResultSet result;
3112    #if HAVE_SQLITE3
3113        try {
3114            InstrumentsDb::GetInstrumentsDb()->SetInstrumentDescription(Instr, Desc);
3115        } catch (Exception e) {
3116             result.Error(e);
3117        }
3118    #else
3119        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3120    #endif
3121        return result.Produce();
3122    }
3123    
3124    String LSCPServer::SetDbInstrumentFilePath(String OldPath, String NewPath) {
3125        dmsg(2,("LSCPServer: SetDbInstrumentFilePath(OldPath=%s,NewPath=%s)\n", OldPath.c_str(), NewPath.c_str()));
3126        LSCPResultSet result;
3127    #if HAVE_SQLITE3
3128        try {
3129            InstrumentsDb::GetInstrumentsDb()->SetInstrumentFilePath(OldPath, NewPath);
3130        } catch (Exception e) {
3131             result.Error(e);
3132        }
3133    #else
3134        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3135    #endif
3136        return result.Produce();
3137    }
3138    
3139    String LSCPServer::FindLostDbInstrumentFiles() {
3140        dmsg(2,("LSCPServer: FindLostDbInstrumentFiles()\n"));
3141        LSCPResultSet result;
3142    #if HAVE_SQLITE3
3143        try {
3144            String list;
3145            StringListPtr pLostFiles = InstrumentsDb::GetInstrumentsDb()->FindLostInstrumentFiles();
3146    
3147            for (int i = 0; i < pLostFiles->size(); i++) {
3148                if (list != "") list += ",";
3149                list += "'" + pLostFiles->at(i) + "'";
3150            }
3151    
3152            result.Add(list);
3153        } catch (Exception e) {
3154             result.Error(e);
3155        }
3156    #else
3157        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3158    #endif
3159        return result.Produce();
3160    }
3161    
3162    String LSCPServer::FindDbInstrumentDirectories(String Dir, std::map<String,String> Parameters, bool Recursive) {
3163        dmsg(2,("LSCPServer: FindDbInstrumentDirectories(Dir=%s)\n", Dir.c_str()));
3164        LSCPResultSet result;
3165    #if HAVE_SQLITE3
3166        try {
3167            SearchQuery Query;
3168            std::map<String,String>::iterator iter;
3169            for (iter = Parameters.begin(); iter != Parameters.end(); iter++) {
3170                if (iter->first.compare("NAME") == 0) {
3171                    Query.Name = iter->second;
3172                } else if (iter->first.compare("CREATED") == 0) {
3173                    Query.SetCreated(iter->second);
3174                } else if (iter->first.compare("MODIFIED") == 0) {
3175                    Query.SetModified(iter->second);
3176                } else if (iter->first.compare("DESCRIPTION") == 0) {
3177                    Query.Description = iter->second;
3178                } else {
3179                    throw Exception("Unknown search criteria: " + iter->first);
3180                }
3181            }
3182    
3183            String list;
3184            StringListPtr pDirectories =
3185                InstrumentsDb::GetInstrumentsDb()->FindDirectories(Dir, &Query, Recursive);
3186    
3187            for (int i = 0; i < pDirectories->size(); i++) {
3188                if (list != "") list += ",";
3189                list += "'" + InstrumentsDb::toEscapedPath(pDirectories->at(i)) + "'";
3190            }
3191    
3192            result.Add(list);
3193        } catch (Exception e) {
3194             result.Error(e);
3195        }
3196    #else
3197        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3198    #endif
3199        return result.Produce();
3200    }
3201    
3202    String LSCPServer::FindDbInstruments(String Dir, std::map<String,String> Parameters, bool Recursive) {
3203        dmsg(2,("LSCPServer: FindDbInstruments(Dir=%s)\n", Dir.c_str()));
3204        LSCPResultSet result;
3205    #if HAVE_SQLITE3
3206        try {
3207            SearchQuery Query;
3208            std::map<String,String>::iterator iter;
3209            for (iter = Parameters.begin(); iter != Parameters.end(); iter++) {
3210                if (iter->first.compare("NAME") == 0) {
3211                    Query.Name = iter->second;
3212                } else if (iter->first.compare("FORMAT_FAMILIES") == 0) {
3213                    Query.SetFormatFamilies(iter->second);
3214                } else if (iter->first.compare("SIZE") == 0) {
3215                    Query.SetSize(iter->second);
3216                } else if (iter->first.compare("CREATED") == 0) {
3217                    Query.SetCreated(iter->second);
3218                } else if (iter->first.compare("MODIFIED") == 0) {
3219                    Query.SetModified(iter->second);
3220                } else if (iter->first.compare("DESCRIPTION") == 0) {
3221                    Query.Description = iter->second;
3222                } else if (iter->first.compare("IS_DRUM") == 0) {
3223                    if (!strcasecmp(iter->second.c_str(), "true")) {
3224                        Query.InstrType = SearchQuery::DRUM;
3225                    } else {
3226                        Query.InstrType = SearchQuery::CHROMATIC;
3227                    }
3228                } else if (iter->first.compare("PRODUCT") == 0) {
3229                     Query.Product = iter->second;
3230                } else if (iter->first.compare("ARTISTS") == 0) {
3231                     Query.Artists = iter->second;
3232                } else if (iter->first.compare("KEYWORDS") == 0) {
3233                     Query.Keywords = iter->second;
3234                } else {
3235                    throw Exception("Unknown search criteria: " + iter->first);
3236                }
3237            }
3238    
3239            String list;
3240            StringListPtr pInstruments =
3241                InstrumentsDb::GetInstrumentsDb()->FindInstruments(Dir, &Query, Recursive);
3242    
3243            for (int i = 0; i < pInstruments->size(); i++) {
3244                if (list != "") list += ",";
3245                list += "'" + InstrumentsDb::toEscapedPath(pInstruments->at(i)) + "'";
3246            }
3247    
3248            result.Add(list);
3249        } catch (Exception e) {
3250             result.Error(e);
3251        }
3252    #else
3253        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3254    #endif
3255        return result.Produce();
3256    }
3257    
3258    String LSCPServer::FormatInstrumentsDb() {
3259        dmsg(2,("LSCPServer: FormatInstrumentsDb()\n"));
3260        LSCPResultSet result;
3261    #if HAVE_SQLITE3
3262        try {
3263            InstrumentsDb::GetInstrumentsDb()->Format();
3264        } catch (Exception e) {
3265             result.Error(e);
3266        }
3267    #else
3268        result.Error(String(DOESNT_HAVE_SQLITE3), 0);
3269    #endif
3270        return result.Produce();
3271    }
3272    
3273    
3274  /**  /**
3275   * Will be called by the parser to enable or disable echo mode; if echo   * Will be called by the parser to enable or disable echo mode; if echo
3276   * mode is enabled, all commands from the client will (immediately) be   * mode is enabled, all commands from the client will (immediately) be
# Line 1613  String LSCPServer::SetEcho(yyparse_param Line 3282  String LSCPServer::SetEcho(yyparse_param
3282      try {      try {
3283          if      (boolean_value == 0) pSession->bVerbose = false;          if      (boolean_value == 0) pSession->bVerbose = false;
3284          else if (boolean_value == 1) pSession->bVerbose = true;          else if (boolean_value == 1) pSession->bVerbose = true;
3285          else throw LinuxSamplerException("Not a boolean value, must either be 0 or 1");          else throw Exception("Not a boolean value, must either be 0 or 1");
3286      }      }
3287      catch (LinuxSamplerException e) {      catch (Exception e) {
3288           result.Error(e);           result.Error(e);
3289      }      }
3290      return result.Produce();      return result.Produce();
3291  }  }
3292    
3293    }

Legend:
Removed from v.705  
changed lines
  Added in v.1781

  ViewVC Help
Powered by ViewVC