/[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 155 by senkov, Mon Jun 28 04:30:11 2004 UTC revision 392 by schoenebeck, Sat Feb 19 02:40:24 2005 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                              *
7   *                                                                         *   *                                                                         *
8   *   This program 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  *
10   *   the Free Software Foundation; either version 2 of the License, or     *   *   the Free Software Foundation; either version 2 of the License, or     *
11   *   (at your option) any later version.                                   *   *   (at your option) any later version.                                   *
12   *                                                                         *   *                                                                         *
13   *   This program is distributed in the hope that it will be useful,       *   *   This library is distributed in the hope that it will be useful,       *
14   *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *   *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16   *   GNU General Public License for more details.                          *   *   GNU General Public License for more details.                          *
17   *                                                                         *   *                                                                         *
18   *   You should have received a copy of the GNU General Public License     *   *   You should have received a copy of the GNU General Public License     *
19   *   along with this program; if not, write to the Free Software           *   *   along with this library; if not, write to the Free Software           *
20   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston,                 *   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston,                 *
21   *   MA  02111-1307  USA                                                   *   *   MA  02111-1307  USA                                                   *
22   ***************************************************************************/   ***************************************************************************/
23    
24  #include "lscpserver.h"  #include "lscpserver.h"
25  #include "lscpresultset.h"  #include "lscpresultset.h"
26    #include "lscpevent.h"
27    
28  #include "../engines/gig/Engine.h"  #include "../engines/gig/Engine.h"
29  #include "../audiodriver/AudioOutputDeviceFactory.h"  #include "../drivers/audio/AudioOutputDeviceFactory.h"
30  #include "../mididriver/MidiInputDeviceFactory.h"  #include "../drivers/midi/MidiInputDeviceFactory.h"
31    
32  LSCPServer::LSCPServer(Sampler* pSampler) : Thread(false, 0, -4) {  /**
33     * Below are a few static members of the LSCPServer class.
34     * The big assumption here is that LSCPServer is going to remain a singleton.
35     * These members are used to support client connections.
36     * Class handles multiple connections at the same time using select() and non-blocking recv()
37     * Commands are processed by a single LSCPServer thread.
38     * Notifications are delivered either by the thread that originated them
39     * or (if the resultset is currently in progress) by the LSCPServer thread
40     * after the resultset was sent out.
41     * This makes sure that resultsets can not be interrupted by notifications.
42     * This also makes sure that the thread sending notification is not blocked
43     * by the LSCPServer thread.
44     */
45    fd_set LSCPServer::fdSet;
46    int LSCPServer::currentSocket = -1;
47    std::vector<yyparse_param_t> LSCPServer::Sessions = std::vector<yyparse_param_t>();
48    std::map<int,String> LSCPServer::bufferedNotifies = std::map<int,String>();
49    std::map<int,String> LSCPServer::bufferedCommands = std::map<int,String>();
50    std::map< LSCPEvent::event_t, std::list<int> > LSCPServer::eventSubscriptions = std::map< LSCPEvent::event_t, std::list<int> >();
51    Mutex LSCPServer::NotifyMutex = Mutex();
52    Mutex LSCPServer::NotifyBufferMutex = Mutex();
53    Mutex LSCPServer::SubscriptionMutex = Mutex();
54    Mutex LSCPServer::RTNotifyMutex = Mutex();
55    
56    LSCPServer::LSCPServer(Sampler* pSampler) : Thread(true, false, 0, -4) {
57      this->pSampler = pSampler;      this->pSampler = pSampler;
58        LSCPEvent::RegisterEvent(LSCPEvent::event_channels, "CHANNELS");
59        LSCPEvent::RegisterEvent(LSCPEvent::event_voice_count, "VOICE_COUNT");
60        LSCPEvent::RegisterEvent(LSCPEvent::event_stream_count, "STREAM_COUNT");
61        LSCPEvent::RegisterEvent(LSCPEvent::event_buffer_fill, "BUFFER_FILL");
62        LSCPEvent::RegisterEvent(LSCPEvent::event_info, "INFO");
63        LSCPEvent::RegisterEvent(LSCPEvent::event_misc, "MISCELLANEOUS");
64    }
65    
66    /**
67     * Blocks the calling thread until the LSCP Server is initialized and
68     * accepting socket connections, if the server is already initialized then
69     * this method will return immediately.
70     * @param TimeoutSeconds     - optional: max. wait time in seconds
71     *                             (default: 0s)
72     * @param TimeoutNanoSeconds - optional: max wait time in nano seconds
73     *                             (default: 0ns)
74     * @returns  0 on success, a value less than 0 if timeout exceeded
75     */
76    int LSCPServer::WaitUntilInitialized(long TimeoutSeconds, long TimeoutNanoSeconds) {
77        return Initialized.WaitAndUnlockIf(false, TimeoutSeconds, TimeoutNanoSeconds);
78  }  }
79    
80  int LSCPServer::Main() {  int LSCPServer::Main() {
81      hSocket = socket(AF_INET, SOCK_STREAM, 0);      int hSocket = socket(AF_INET, SOCK_STREAM, 0);
82      if (hSocket < 0) {      if (hSocket < 0) {
83          std::cerr << "LSCPServer: Could not create server socket." << std::endl;          std::cerr << "LSCPServer: Could not create server socket." << std::endl;
84          //return -1;          //return -1;
# Line 44  int LSCPServer::Main() { Line 90  int LSCPServer::Main() {
90      SocketAddress.sin_addr.s_addr = htonl(INADDR_ANY);      SocketAddress.sin_addr.s_addr = htonl(INADDR_ANY);
91    
92      if (bind(hSocket, (sockaddr*) &SocketAddress, sizeof(sockaddr_in)) < 0) {      if (bind(hSocket, (sockaddr*) &SocketAddress, sizeof(sockaddr_in)) < 0) {
93          std::cerr << "LSCPServer: Could not bind server socket." << std::endl;          std::cerr << "LSCPServer: Could not bind server socket, retrying for " << ToString(LSCP_SERVER_BIND_TIMEOUT) << " seconds...";
94          close(hSocket);          for (int trial = 0; true; trial++) { // retry for LSCP_SERVER_BIND_TIMEOUT seconds
95          //return -1;              if (bind(hSocket, (sockaddr*) &SocketAddress, sizeof(sockaddr_in)) < 0) {
96          exit(EXIT_FAILURE);                  if (trial > LSCP_SERVER_BIND_TIMEOUT) {
97                        std::cerr << "gave up!" << std::endl;
98                        close(hSocket);
99                        //return -1;
100                        exit(EXIT_FAILURE);
101                    }
102                    else sleep(1); // sleep 1s
103                }
104                else break; // success
105            }
106      }      }
107    
108      listen(hSocket, 1);      listen(hSocket, 1);
109      dmsg(1,("LSCPServer: Server running.\n")); // server running      Initialized.Set(true);
110    
111      // now wait for client connections and handle their requests      // now wait for client connections and handle their requests
112      sockaddr_in client;      sockaddr_in client;
113      int length = sizeof(client);      int length = sizeof(client);
114        FD_ZERO(&fdSet);
115        FD_SET(hSocket, &fdSet);
116        int maxSessions = hSocket;
117    
118      while (true) {      while (true) {
119          hSession = accept(hSocket, (sockaddr*) &client, (socklen_t*) &length);          fd_set selectSet = fdSet;
120          if (hSession < 0) {          int retval = select(maxSessions+1, &selectSet, NULL, NULL, NULL);
121              std::cerr << "LSCPServer: Client connection failed." << std::endl;          if (retval == 0)
122              close(hSocket);                  continue; //Nothing try again
123              //return -1;          if (retval == -1) {
124              exit(EXIT_FAILURE);                  std::cerr << "LSCPServer: Socket select error." << std::endl;
125          }                  close(hSocket);
126                    exit(EXIT_FAILURE);
127          dmsg(1,("LSCPServer: Client connection established.\n"));          }
128          //send(hSession, "Welcome!\r\n", 10, 0);  
129            //Accept new connections now (if any)
130          // Parser invocation          if (FD_ISSET(hSocket, &selectSet)) {
131          yyparse_param_t yyparse_param;                  int socket = accept(hSocket, (sockaddr*) &client, (socklen_t*) &length);
132          yyparse_param.pServer = this;                  if (socket < 0) {
133          yylex_init(&yyparse_param.pScanner);                          std::cerr << "LSCPServer: Client connection failed." << std::endl;
134          while (yyparse(&yyparse_param) == LSCP_SYNTAX_ERROR); // recall parser in case of syntax error                          exit(EXIT_FAILURE);
135          yylex_destroy(yyparse_param.pScanner);                  }
136    
137                    if (fcntl(socket, F_SETFL, O_NONBLOCK)) {
138                            std::cerr << "LSCPServer: F_SETFL O_NONBLOCK failed." << std::endl;
139                            exit(EXIT_FAILURE);
140                    }
141    
142                    // Parser initialization
143                    yyparse_param_t yyparse_param;
144                    yyparse_param.pServer  = this;
145                    yyparse_param.hSession = socket;
146    
147                    Sessions.push_back(yyparse_param);
148                    FD_SET(socket, &fdSet);
149                    if (socket > maxSessions)
150                            maxSessions = socket;
151                    dmsg(1,("LSCPServer: Client connection established on socket:%d.\n", socket));
152                    LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Client connection established on socket", socket));
153                    continue; //Maybe this was the only selected socket, better select again
154            }
155    
156            //Something was selected and it was not the hSocket, so it must be some command(s) coming.
157            for (std::vector<yyparse_param_t>::iterator iter = Sessions.begin(); iter != Sessions.end(); iter++) {
158                    if (FD_ISSET((*iter).hSession, &selectSet)) {   //Was it this socket?
159                            if (GetLSCPCommand(iter)) {     //Have we read the entire command?
160                                    dmsg(3,("LSCPServer: Got command on socket %d, calling parser.\n", currentSocket));
161                                    int dummy; // just a temporary hack to fulfill the restart() function prototype
162                                    restart(NULL, dummy); // restart the 'scanner'
163                                    currentSocket = (*iter).hSession;  //a hack
164                                    if ((*iter).bVerbose) { // if echo mode enabled
165                                        AnswerClient(bufferedCommands[currentSocket]);
166                                    }
167                                    int result = yyparse(&(*iter));
168                                    currentSocket = -1;     //continuation of a hack
169                                    dmsg(3,("LSCPServer: Done parsing on socket %d.\n", currentSocket));
170                                    if (result == LSCP_QUIT) { //Was it a quit command by any chance?
171                                            CloseConnection(iter);
172                                    }
173                            }
174                            //socket may have been closed, iter may be invalid, get out of the loop for now.
175                            //we'll be back if there is data.
176                            break;
177                    }
178            }
179    
180          close(hSession);          //Now let's deliver late notifies (if any)
181          dmsg(1,("LSCPServer: Client connection terminated.\n"));          NotifyBufferMutex.Lock();
182            for (std::map<int,String>::iterator iterNotify = bufferedNotifies.begin(); iterNotify != bufferedNotifies.end(); iterNotify++) {
183                    send(iterNotify->first, iterNotify->second.c_str(), iterNotify->second.size(), 0);
184                    bufferedNotifies.erase(iterNotify);
185            }
186            NotifyBufferMutex.Unlock();
187      }      }
188  }  }
189    
190    void LSCPServer::CloseConnection( std::vector<yyparse_param_t>::iterator iter ) {
191            int socket = (*iter).hSession;
192            dmsg(1,("LSCPServer: Client connection terminated on socket:%d.\n",socket));
193            LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Client connection terminated on socket", socket));
194            Sessions.erase(iter);
195            FD_CLR(socket,  &fdSet);
196            SubscriptionMutex.Lock(); //Must unsubscribe this socket from all events (if any)
197            for (std::map< LSCPEvent::event_t, std::list<int> >::iterator iter = eventSubscriptions.begin(); iter != eventSubscriptions.end(); iter++) {
198                    iter->second.remove(socket);
199            }
200            SubscriptionMutex.Unlock();
201            NotifyMutex.Lock();
202            bufferedCommands.erase(socket);
203            bufferedNotifies.erase(socket);
204            close(socket);
205            NotifyMutex.Unlock();
206    }
207    
208    int LSCPServer::EventSubscribers( std::list<LSCPEvent::event_t> events ) {
209            int subs = 0;
210            SubscriptionMutex.Lock();
211            for( std::list<LSCPEvent::event_t>::iterator iter = events.begin();
212                            iter != events.end(); iter++)
213            {
214                    subs += eventSubscriptions.count(*iter);
215            }
216            SubscriptionMutex.Unlock();
217            return subs;
218    }
219    
220    void LSCPServer::SendLSCPNotify( LSCPEvent event ) {
221            SubscriptionMutex.Lock();
222            if (eventSubscriptions.count(event.GetType()) == 0) {
223                    SubscriptionMutex.Unlock();     //Nobody is subscribed to this event
224                    return;
225            }
226            std::list<int>::iterator iter = eventSubscriptions[event.GetType()].begin();
227            std::list<int>::iterator end = eventSubscriptions[event.GetType()].end();
228            String notify = event.Produce();
229    
230            while (true) {
231                    if (NotifyMutex.Trylock()) {
232                            for(;iter != end; iter++)
233                                    send(*iter, notify.c_str(), notify.size(), 0);
234                            NotifyMutex.Unlock();
235                            break;
236                    } else {
237                            if (NotifyBufferMutex.Trylock()) {
238                                    for(;iter != end; iter++)
239                                            bufferedNotifies[*iter] += notify;
240                                    NotifyBufferMutex.Unlock();
241                                    break;
242                            }
243                    }
244            }
245            SubscriptionMutex.Unlock();
246    }
247    
248    extern int GetLSCPCommand( void *buf, int max_size ) {
249            String command = LSCPServer::bufferedCommands[LSCPServer::currentSocket];
250            if (command.size() == 0) {              //Parser wants input but we have nothing.
251                    strcpy((char*) buf, "\n");      //So give it an empty command
252                    return 1;                       //to keep it happy.
253            }
254    
255            if (max_size < command.size()) {
256                    std::cerr << "getLSCPCommand: Flex buffer too small, ignoring the command." << std::endl;
257                    return 0;       //This will never happen
258            }
259    
260            strcpy((char*) buf, command.c_str());
261            LSCPServer::bufferedCommands.erase(LSCPServer::currentSocket);
262            return command.size();
263    }
264    
265    /**
266     * Will be called to try to read the command from the socket
267     * If command is read, it will return true. Otherwise false is returned.
268     * In any case the received portion (complete or incomplete) is saved into bufferedCommand map.
269     */
270    bool LSCPServer::GetLSCPCommand( std::vector<yyparse_param_t>::iterator iter ) {
271            int socket = (*iter).hSession;
272            char c;
273            int i = 0;
274            while (true) {
275                    int result = recv(socket, (void *)&c, 1, 0); //Read one character at a time for now
276                    if (result == 0) { //socket was selected, so 0 here means client has closed the connection
277                            CloseConnection(iter);
278                            break;
279                    }
280                    if (result == 1) {
281                            if (c == '\r')
282                                    continue; //Ignore CR
283                            if (c == '\n') {
284                                    LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_misc, "Received \'" + bufferedCommands[socket] + "\' on socket", socket));
285                                    bufferedCommands[socket] += "\n";
286                                    return true; //Complete command was read
287                            }
288                            bufferedCommands[socket] += c;
289                    }
290                    if (result == -1) {
291                            if (errno == EAGAIN) //Would block, try again later.
292                                    return false;
293                            switch(errno) {
294                                    case EBADF:
295                                            dmsg(2,("LSCPScanner: The argument s is an invalid descriptor.\n"));
296                                            break;
297                                    case ECONNREFUSED:
298                                            dmsg(2,("LSCPScanner: A remote host refused to allow the network connection (typically because it is not running the requested service).\n"));
299                                            break;
300                                    case ENOTCONN:
301                                            dmsg(2,("LSCPScanner: The socket is associated with a connection-oriented protocol and has not been connected (see connect(2) and accept(2)).\n"));
302                                            break;
303                                    case ENOTSOCK:
304                                            dmsg(2,("LSCPScanner: The argument s does not refer to a socket.\n"));
305                                            break;
306                                    case EAGAIN:
307                                            dmsg(2,("LSCPScanner: The socket is marked non-blocking and the receive operation would block, or a receive timeout had been set and the timeout expired before data was received.\n"));
308                                            break;
309                                    case EINTR:
310                                            dmsg(2,("LSCPScanner: The receive was interrupted by delivery of a signal before any data were available.\n"));
311                                            break;
312                                    case EFAULT:
313                                            dmsg(2,("LSCPScanner: The receive buffer pointer(s) point outside the process's address space.\n"));
314                                            break;
315                                    case EINVAL:
316                                            dmsg(2,("LSCPScanner: Invalid argument passed.\n"));
317                                            break;
318                                    case ENOMEM:
319                                            dmsg(2,("LSCPScanner: Could not allocate memory for recvmsg.\n"));
320                                            break;
321                                    default:
322                                            dmsg(2,("LSCPScanner: Unknown recv() error.\n"));
323                                            break;
324                            }
325                            CloseConnection(iter);
326                            break;
327                    }
328            }
329            return false;
330    }
331    
332  /**  /**
333   * Will be called by the parser whenever it wants to send an answer to the   * Will be called by the parser whenever it wants to send an answer to the
334   * client / frontend.   * client / frontend.
# Line 88  int LSCPServer::Main() { Line 337  int LSCPServer::Main() {
337   */   */
338  void LSCPServer::AnswerClient(String ReturnMessage) {  void LSCPServer::AnswerClient(String ReturnMessage) {
339      dmsg(2,("LSCPServer::AnswerClient(ReturnMessage=%s)", ReturnMessage.c_str()));      dmsg(2,("LSCPServer::AnswerClient(ReturnMessage=%s)", ReturnMessage.c_str()));
340      send(hSession, ReturnMessage.c_str(), ReturnMessage.size(), 0);      if (currentSocket != -1) {
341                NotifyMutex.Lock();
342                send(currentSocket, ReturnMessage.c_str(), ReturnMessage.size(), 0);
343                NotifyMutex.Unlock();
344        }
345  }  }
346    
347  /**  /**
# Line 160  String LSCPServer::DestroyAudioOutputDev Line 413  String LSCPServer::DestroyAudioOutputDev
413      LSCPResultSet result;      LSCPResultSet result;
414      try {      try {
415          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
416          if (!devices[DeviceIndex]) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");
417          AudioOutputDevice* pDevice = devices[DeviceIndex];          AudioOutputDevice* pDevice = devices[DeviceIndex];
418          pSampler->DestroyAudioOutputDevice(pDevice);          pSampler->DestroyAudioOutputDevice(pDevice);
419      }      }
# Line 175  String LSCPServer::DestroyMidiInputDevic Line 428  String LSCPServer::DestroyMidiInputDevic
428      LSCPResultSet result;      LSCPResultSet result;
429      try {      try {
430          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
431            if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");
432          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
         if (!pDevice) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");  
433          pSampler->DestroyMidiInputDevice(pDevice);          pSampler->DestroyMidiInputDevice(pDevice);
434      }      }
435      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 193  String LSCPServer::LoadInstrument(String Line 446  String LSCPServer::LoadInstrument(String
446      LSCPResultSet result;      LSCPResultSet result;
447      try {      try {
448          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
449          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
450          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
451          if (!pEngine) throw LinuxSamplerException("No engine loaded on channel");          if (!pEngine) throw LinuxSamplerException("No engine loaded on sampler channel");
452          if (pSamplerChannel->GetAudioOutputDevice() == NULL)          if (!pSamplerChannel->GetAudioOutputDevice())
453              throw LinuxSamplerException("No audio output device on channel");              throw LinuxSamplerException("No audio output device connected to sampler channel");
454          if (bBackground) {          if (bBackground) {
455              LSCPLoadInstrument *pLoadInstrument = new LSCPLoadInstrument(pEngine, Filename.c_str(), uiInstrument);              InstrumentLoader.StartNewLoad(Filename, uiInstrument, pEngine);
456              pLoadInstrument->StartThread();          }
457            else {
458                // tell the engine which instrument to load
459                pEngine->PrepareLoadInstrument(Filename.c_str(), uiInstrument);
460                // actually start to load the instrument (blocks until completed)
461                pEngine->LoadInstrument();
462          }          }
         else pEngine->LoadInstrument(Filename.c_str(), uiInstrument);  
463      }      }
464      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
465           result.Error(e);           result.Error(e);
# Line 221  String LSCPServer::LoadEngine(String Eng Line 478  String LSCPServer::LoadEngine(String Eng
478          if ((EngineName == "GigEngine") || (EngineName == "gig")) type = Engine::type_gig;          if ((EngineName == "GigEngine") || (EngineName == "gig")) type = Engine::type_gig;
479          else throw LinuxSamplerException("Unknown engine type");          else throw LinuxSamplerException("Unknown engine type");
480          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
481          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
482            LockRTNotify();
483          pSamplerChannel->LoadEngine(type);          pSamplerChannel->LoadEngine(type);
484            UnlockRTNotify();
485      }      }
486      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
487           result.Error(e);           result.Error(e);
# Line 241  String LSCPServer::GetChannels() { Line 500  String LSCPServer::GetChannels() {
500  }  }
501    
502  /**  /**
503     * Will be called by the parser to get the list of sampler channels.
504     */
505    String LSCPServer::ListChannels() {
506        dmsg(2,("LSCPServer: ListChannels()\n"));
507        String list;
508        std::map<uint,SamplerChannel*> channels = pSampler->GetSamplerChannels();
509        std::map<uint,SamplerChannel*>::iterator iter = channels.begin();
510        for (; iter != channels.end(); iter++) {
511            if (list != "") list += ",";
512            list += ToString(iter->first);
513        }
514        LSCPResultSet result;
515        result.Add(list);
516        return result.Produce();
517    }
518    
519    /**
520   * Will be called by the parser to add a sampler channel.   * Will be called by the parser to add a sampler channel.
521   */   */
522  String LSCPServer::AddChannel() {  String LSCPServer::AddChannel() {
# Line 256  String LSCPServer::AddChannel() { Line 532  String LSCPServer::AddChannel() {
532  String LSCPServer::RemoveChannel(uint uiSamplerChannel) {  String LSCPServer::RemoveChannel(uint uiSamplerChannel) {
533      dmsg(2,("LSCPServer: RemoveChannel(SamplerChannel=%d)\n", uiSamplerChannel));      dmsg(2,("LSCPServer: RemoveChannel(SamplerChannel=%d)\n", uiSamplerChannel));
534      LSCPResultSet result;      LSCPResultSet result;
535        LockRTNotify();
536      pSampler->RemoveSamplerChannel(uiSamplerChannel);      pSampler->RemoveSamplerChannel(uiSamplerChannel);
537        UnlockRTNotify();
538      return result.Produce();      return result.Produce();
539  }  }
540    
# Line 278  String LSCPServer::GetEngineInfo(String Line 556  String LSCPServer::GetEngineInfo(String
556      try {      try {
557          if ((EngineName == "GigEngine") || (EngineName == "gig")) {          if ((EngineName == "GigEngine") || (EngineName == "gig")) {
558              Engine* pEngine = new LinuxSampler::gig::Engine;              Engine* pEngine = new LinuxSampler::gig::Engine;
559              result.Add(pEngine->Description());              result.Add("DESCRIPTION", pEngine->Description());
560              result.Add(pEngine->Version());              result.Add("VERSION",     pEngine->Version());
561              delete pEngine;              delete pEngine;
562          }          }
563          else throw LinuxSamplerException("Unknown engine type");          else throw LinuxSamplerException("Unknown engine type");
# Line 299  String LSCPServer::GetChannelInfo(uint u Line 577  String LSCPServer::GetChannelInfo(uint u
577      LSCPResultSet result;      LSCPResultSet result;
578      try {      try {
579          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
580          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
581          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
582    
583          //Defaults values          //Defaults values
584          String EngineName = "NONE";          String EngineName = "NONE";
585          float Volume = 0;          float Volume = 0.0f;
586          String InstrumentFileName = "NONE";          String InstrumentFileName = "NONE";
587            String InstrumentName = "NONE";
588          int InstrumentIndex = -1;          int InstrumentIndex = -1;
589          int InstrumentStatus = -1;          int InstrumentStatus = -1;
590            int AudioOutputChannels = 0;
591            String AudioRouting;
592    
593          if (pEngine) {          if (pEngine) {
594              EngineName =  pEngine->EngineName();              EngineName =  pEngine->EngineName();
595                AudioOutputChannels = pEngine->Channels();
596              Volume = pEngine->Volume();              Volume = pEngine->Volume();
597              InstrumentStatus = pEngine->InstrumentStatus();              InstrumentStatus = pEngine->InstrumentStatus();
598              InstrumentIndex = pEngine->InstrumentIndex();              InstrumentIndex = pEngine->InstrumentIndex();
599              if (InstrumentIndex != -1)              if (InstrumentIndex != -1)
600                {
601                  InstrumentFileName = pEngine->InstrumentFileName();                  InstrumentFileName = pEngine->InstrumentFileName();
602                    InstrumentName = pEngine->InstrumentName();
603                }
604                for (int chan = 0; chan < pEngine->Channels(); chan++) {
605                    if (AudioRouting != "") AudioRouting += ",";
606                    AudioRouting += ToString(pEngine->OutputChannel(chan));
607                }
608          }          }
609    
610          result.Add("ENGINE_NAME", EngineName);          result.Add("ENGINE_NAME", EngineName);
# Line 323  String LSCPServer::GetChannelInfo(uint u Line 612  String LSCPServer::GetChannelInfo(uint u
612    
613          //Some not-so-hardcoded stuff to make GUI look good          //Some not-so-hardcoded stuff to make GUI look good
614          result.Add("AUDIO_OUTPUT_DEVICE", GetAudioOutputDeviceIndex(pSamplerChannel->GetAudioOutputDevice()));          result.Add("AUDIO_OUTPUT_DEVICE", GetAudioOutputDeviceIndex(pSamplerChannel->GetAudioOutputDevice()));
615          result.Add("AUDIO_OUTPUT_CHANNELS", "2");          result.Add("AUDIO_OUTPUT_CHANNELS", AudioOutputChannels);
616          result.Add("AUDIO_OUTPUT_ROUTING", "0,1");          result.Add("AUDIO_OUTPUT_ROUTING", AudioRouting);
617    
618            result.Add("MIDI_INPUT_DEVICE", GetMidiInputDeviceIndex(pSamplerChannel->GetMidiInputDevice()));
619            result.Add("MIDI_INPUT_PORT", pSamplerChannel->GetMidiInputPort());
620            if (pSamplerChannel->GetMidiInputChannel() == MidiInputPort::midi_chan_all) result.Add("MIDI_INPUT_CHANNEL", "ALL");
621            else result.Add("MIDI_INPUT_CHANNEL", pSamplerChannel->GetMidiInputChannel());
622    
623          result.Add("INSTRUMENT_FILE", InstrumentFileName);          result.Add("INSTRUMENT_FILE", InstrumentFileName);
624          result.Add("INSTRUMENT_NR", InstrumentIndex);          result.Add("INSTRUMENT_NR", InstrumentIndex);
625            result.Add("INSTRUMENT_NAME", InstrumentName);
626          result.Add("INSTRUMENT_STATUS", InstrumentStatus);          result.Add("INSTRUMENT_STATUS", InstrumentStatus);
   
         MidiInputDevice *pDevice = pSamplerChannel->GetMidiInputDevice();  
         if (pDevice) {  
                 result.Add("MIDI_INPUT_DEVICE", GetMidiInputDeviceIndex(pDevice));  
                 MidiInputDevice::MidiInputPort *pPort = pSamplerChannel->GetMidiInputPort();  
                 if (pPort) {  
                         result.Add("MIDI_INPUT_PORT", (int)pPort->GetPortNumber());  
                         result.Add("MIDI_INPUT_CHANNEL", (int)pSamplerChannel->GetMidiInputChannel());  
                 }  
   
         }  
627      }      }
628      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
629           result.Error(e);           result.Error(e);
# Line 356  String LSCPServer::GetVoiceCount(uint ui Line 640  String LSCPServer::GetVoiceCount(uint ui
640      LSCPResultSet result;      LSCPResultSet result;
641      try {      try {
642          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
643          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
644          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
645          if (!pEngine) throw LinuxSamplerException("No engine loaded on channel");          if (!pEngine) throw LinuxSamplerException("No engine loaded on sampler channel");
646          result.Add(pEngine->VoiceCount());          result.Add(pEngine->VoiceCount());
647      }      }
648      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 376  String LSCPServer::GetStreamCount(uint u Line 660  String LSCPServer::GetStreamCount(uint u
660      LSCPResultSet result;      LSCPResultSet result;
661      try {      try {
662          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
663          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
664          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
665          if (!pEngine) throw LinuxSamplerException("No engine loaded on channel");          if (!pEngine) throw LinuxSamplerException("No engine loaded on sampler channel");
666          result.Add(pEngine->DiskStreamCount());          result.Add(pEngine->DiskStreamCount());
667      }      }
668      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 396  String LSCPServer::GetBufferFill(fill_re Line 680  String LSCPServer::GetBufferFill(fill_re
680      LSCPResultSet result;      LSCPResultSet result;
681      try {      try {
682          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
683          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
684          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
685          if (!pEngine) throw LinuxSamplerException("No engine loaded on channel");          if (!pEngine) throw LinuxSamplerException("No engine loaded on sampler channel");
686          if (!pEngine->DiskStreamSupported())          if (!pEngine->DiskStreamSupported())
687              result.Add("NA");              result.Add("NA");
688          else {          else {
# Line 495  String LSCPServer::GetAudioOutputDriverI Line 779  String LSCPServer::GetAudioOutputDriverI
779  }  }
780    
781  String LSCPServer::GetMidiInputDriverParameterInfo(String Driver, String Parameter, std::map<String,String> DependencyList) {  String LSCPServer::GetMidiInputDriverParameterInfo(String Driver, String Parameter, std::map<String,String> DependencyList) {
782      dmsg(2,("LSCPServer: GetMidiInputDriverParameterInfo(Driver=%s,Parameter=%s)\n",Driver.c_str(),Parameter.c_str()));      dmsg(2,("LSCPServer: GetMidiInputDriverParameterInfo(Driver=%s,Parameter=%s,DependencyListSize=%d)\n",Driver.c_str(),Parameter.c_str(),DependencyList.size()));
783      LSCPResultSet result;      LSCPResultSet result;
784      try {      try {
785          DeviceCreationParameter* pParameter = MidiInputDeviceFactory::GetDriverParameter(Driver, Parameter);          DeviceCreationParameter* pParameter = MidiInputDeviceFactory::GetDriverParameter(Driver, Parameter);
# Line 504  String LSCPServer::GetMidiInputDriverPar Line 788  String LSCPServer::GetMidiInputDriverPar
788          result.Add("MANDATORY",    pParameter->Mandatory());          result.Add("MANDATORY",    pParameter->Mandatory());
789          result.Add("FIX",          pParameter->Fix());          result.Add("FIX",          pParameter->Fix());
790          result.Add("MULTIPLICITY", pParameter->Multiplicity());          result.Add("MULTIPLICITY", pParameter->Multiplicity());
791          if (pParameter->Depends())       result.Add("DEPENDS",       pParameter->Depends());          optional<String> oDepends       = pParameter->Depends();
792          if (pParameter->Default())       result.Add("DEFAULT",       pParameter->Default());          optional<String> oDefault       = pParameter->Default(DependencyList);
793          if (pParameter->RangeMin())      result.Add("RANGE_MIN",     pParameter->RangeMin());          optional<String> oRangeMin      = pParameter->RangeMin(DependencyList);
794          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     pParameter->RangeMax());          optional<String> oRangeMax      = pParameter->RangeMax(DependencyList);
795          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", pParameter->Possibilities());          optional<String> oPossibilities = pParameter->Possibilities(DependencyList);
796            if (oDepends)       result.Add("DEPENDS",       *oDepends);
797            if (oDefault)       result.Add("DEFAULT",       *oDefault);
798            if (oRangeMin)      result.Add("RANGE_MIN",     *oRangeMin);
799            if (oRangeMax)      result.Add("RANGE_MAX",     *oRangeMax);
800            if (oPossibilities) result.Add("POSSIBILITIES", *oPossibilities);
801      }      }
802      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
803          result.Error(e);          result.Error(e);
# Line 517  String LSCPServer::GetMidiInputDriverPar Line 806  String LSCPServer::GetMidiInputDriverPar
806  }  }
807    
808  String LSCPServer::GetAudioOutputDriverParameterInfo(String Driver, String Parameter, std::map<String,String> DependencyList) {  String LSCPServer::GetAudioOutputDriverParameterInfo(String Driver, String Parameter, std::map<String,String> DependencyList) {
809      dmsg(2,("LSCPServer: GetAudioOutputDriverParameterInfo(Driver=%s,Parameter=%s)\n",Driver.c_str(),Parameter.c_str()));      dmsg(2,("LSCPServer: GetAudioOutputDriverParameterInfo(Driver=%s,Parameter=%s,DependencyListSize=%d)\n",Driver.c_str(),Parameter.c_str(),DependencyList.size()));
810      LSCPResultSet result;      LSCPResultSet result;
811      try {      try {
812          DeviceCreationParameter* pParameter = AudioOutputDeviceFactory::GetDriverParameter(Driver, Parameter);          DeviceCreationParameter* pParameter = AudioOutputDeviceFactory::GetDriverParameter(Driver, Parameter);
# Line 526  String LSCPServer::GetAudioOutputDriverP Line 815  String LSCPServer::GetAudioOutputDriverP
815          result.Add("MANDATORY",    pParameter->Mandatory());          result.Add("MANDATORY",    pParameter->Mandatory());
816          result.Add("FIX",          pParameter->Fix());          result.Add("FIX",          pParameter->Fix());
817          result.Add("MULTIPLICITY", pParameter->Multiplicity());          result.Add("MULTIPLICITY", pParameter->Multiplicity());
818          if (pParameter->Depends())       result.Add("DEPENDS",       pParameter->Depends());          optional<String> oDepends       = pParameter->Depends();
819          if (pParameter->Default())       result.Add("DEFAULT",       pParameter->Default());          optional<String> oDefault       = pParameter->Default(DependencyList);
820          if (pParameter->RangeMin())      result.Add("RANGE_MIN",     pParameter->RangeMin());          optional<String> oRangeMin      = pParameter->RangeMin(DependencyList);
821          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     pParameter->RangeMax());          optional<String> oRangeMax      = pParameter->RangeMax(DependencyList);
822          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", pParameter->Possibilities());          optional<String> oPossibilities = pParameter->Possibilities(DependencyList);
823            if (oDepends)       result.Add("DEPENDS",       *oDepends);
824            if (oDefault)       result.Add("DEFAULT",       *oDefault);
825            if (oRangeMin)      result.Add("RANGE_MIN",     *oRangeMin);
826            if (oRangeMax)      result.Add("RANGE_MAX",     *oRangeMax);
827            if (oPossibilities) result.Add("POSSIBILITIES", *oPossibilities);
828      }      }
829      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
830          result.Error(e);          result.Error(e);
# Line 607  String LSCPServer::GetAudioOutputDeviceI Line 901  String LSCPServer::GetAudioOutputDeviceI
901      LSCPResultSet result;      LSCPResultSet result;
902      try {      try {
903          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
904          if (!devices[DeviceIndex]) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");
905          AudioOutputDevice* pDevice = devices[DeviceIndex];          AudioOutputDevice* pDevice = devices[DeviceIndex];
906          result.Add("driver", pDevice->Driver());          result.Add("DRIVER", pDevice->Driver());
907          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
908          std::map<String,DeviceCreationParameter*>::iterator iter = parameters.begin();          std::map<String,DeviceCreationParameter*>::iterator iter = parameters.begin();
909          for (; iter != parameters.end(); iter++) {          for (; iter != parameters.end(); iter++) {
# Line 627  String LSCPServer::GetMidiInputDeviceInf Line 921  String LSCPServer::GetMidiInputDeviceInf
921      LSCPResultSet result;      LSCPResultSet result;
922      try {      try {
923          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
924            if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
925          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
926          if (!pDevice) throw LinuxSamplerException("There is no midi input device with index " + ToString(DeviceIndex) + ".");          result.Add("DRIVER", pDevice->Driver());
         result.Add("driver", pDevice->Driver());  
927          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
928          std::map<String,DeviceCreationParameter*>::iterator iter = parameters.begin();          std::map<String,DeviceCreationParameter*>::iterator iter = parameters.begin();
929          for (; iter != parameters.end(); iter++) {          for (; iter != parameters.end(); iter++) {
# Line 645  String LSCPServer::GetMidiInputPortInfo( Line 939  String LSCPServer::GetMidiInputPortInfo(
939      dmsg(2,("LSCPServer: GetMidiInputPortInfo(DeviceIndex=%d, PortIndex=%d)\n",DeviceIndex, PortIndex));      dmsg(2,("LSCPServer: GetMidiInputPortInfo(DeviceIndex=%d, PortIndex=%d)\n",DeviceIndex, PortIndex));
940      LSCPResultSet result;      LSCPResultSet result;
941      try {      try {
942            // get MIDI input device
943          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
944            if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
945          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
946          if (!pDevice) throw LinuxSamplerException("There is no midi input device with index " + ToString(DeviceIndex) + ".");  
947          MidiInputDevice::MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);          // get MIDI port
948          if (!pMidiInputPort) throw LinuxSamplerException("There is no midi input port with index " + ToString(PortIndex) + ".");          MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);
949          std::map<String,DeviceCreationParameter*> parameters = pMidiInputPort->DeviceParameters();          if (!pMidiInputPort) throw LinuxSamplerException("There is no MIDI input port with index " + ToString(PortIndex) + ".");
950          std::map<String,DeviceCreationParameter*>::iterator iter = parameters.begin();  
951            // return the values of all MIDI port parameters
952            std::map<String,DeviceRuntimeParameter*> parameters = pMidiInputPort->PortParameters();
953            std::map<String,DeviceRuntimeParameter*>::iterator iter = parameters.begin();
954          for (; iter != parameters.end(); iter++) {          for (; iter != parameters.end(); iter++) {
955              result.Add(iter->first, iter->second->Value());              result.Add(iter->first, iter->second->Value());
956          }          }
# Line 668  String LSCPServer::GetAudioOutputChannel Line 967  String LSCPServer::GetAudioOutputChannel
967      try {      try {
968          // get audio output device          // get audio output device
969          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
970          if (!devices[DeviceId]) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");
971          AudioOutputDevice* pDevice = devices[DeviceId];          AudioOutputDevice* pDevice = devices[DeviceId];
972    
973          // get audio channel          // get audio channel
974          AudioChannel* pChannel = pDevice->Channel(ChannelId);          AudioChannel* pChannel = pDevice->Channel(ChannelId);
975          if (!pChannel) throw LinuxSamplerException("Audio ouotput device does not have channel " + ToString(ChannelId) + ".");          if (!pChannel) throw LinuxSamplerException("Audio output device does not have audio channel " + ToString(ChannelId) + ".");
976    
977          // return the values of all audio channel parameters          // return the values of all audio channel parameters
978          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();
# Line 688  String LSCPServer::GetAudioOutputChannel Line 987  String LSCPServer::GetAudioOutputChannel
987      return result.Produce();      return result.Produce();
988  }  }
989    
990    String LSCPServer::GetMidiInputPortParameterInfo(uint DeviceId, uint PortId, String ParameterName) {
991        dmsg(2,("LSCPServer: GetMidiInputPortParameterInfo(DeviceId=%d,PortId=%d,ParameterName=%s)\n",DeviceId,PortId,ParameterName.c_str()));
992        LSCPResultSet result;
993        try {
994            // get MIDI input device
995            std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
996            if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no midi input device with index " + ToString(DeviceId) + ".");
997            MidiInputDevice* pDevice = devices[DeviceId];
998    
999            // get midi port
1000            MidiInputPort* pPort = pDevice->GetPort(PortId);
1001            if (!pPort) throw LinuxSamplerException("Midi input device does not have port " + ToString(PortId) + ".");
1002    
1003            // get desired port parameter
1004            std::map<String,DeviceRuntimeParameter*> parameters = pPort->PortParameters();
1005            if (!parameters.count(ParameterName)) throw LinuxSamplerException("Midi port does not provide a parameter '" + ParameterName + "'.");
1006            DeviceRuntimeParameter* pParameter = parameters[ParameterName];
1007    
1008            // return all fields of this audio channel parameter
1009            result.Add("TYPE",         pParameter->Type());
1010            result.Add("DESCRIPTION",  pParameter->Description());
1011            result.Add("FIX",          pParameter->Fix());
1012            result.Add("MULTIPLICITY", pParameter->Multiplicity());
1013            if (pParameter->RangeMin())      result.Add("RANGE_MIN",     *pParameter->RangeMin());
1014            if (pParameter->RangeMax())      result.Add("RANGE_MAX",     *pParameter->RangeMax());
1015            if (pParameter->Possibilities()) result.Add("POSSIBILITIES", *pParameter->Possibilities());
1016        }
1017        catch (LinuxSamplerException e) {
1018            result.Error(e);
1019        }
1020        return result.Produce();
1021    }
1022    
1023  String LSCPServer::GetAudioOutputChannelParameterInfo(uint DeviceId, uint ChannelId, String ParameterName) {  String LSCPServer::GetAudioOutputChannelParameterInfo(uint DeviceId, uint ChannelId, String ParameterName) {
1024      dmsg(2,("LSCPServer: GetAudioOutputChannelParameterInfo(DeviceId=%d,ChannelId=%d,ParameterName=%s)\n",DeviceId,ChannelId,ParameterName.c_str()));      dmsg(2,("LSCPServer: GetAudioOutputChannelParameterInfo(DeviceId=%d,ChannelId=%d,ParameterName=%s)\n",DeviceId,ChannelId,ParameterName.c_str()));
1025      LSCPResultSet result;      LSCPResultSet result;
1026      try {      try {
1027          // get audio output device          // get audio output device
1028          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1029          if (!devices[DeviceId]) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");
1030          AudioOutputDevice* pDevice = devices[DeviceId];          AudioOutputDevice* pDevice = devices[DeviceId];
1031    
1032          // get audio channel          // get audio channel
1033          AudioChannel* pChannel = pDevice->Channel(ChannelId);          AudioChannel* pChannel = pDevice->Channel(ChannelId);
1034          if (!pChannel) throw LinuxSamplerException("Audio output device does not have channel " + ToString(ChannelId) + ".");          if (!pChannel) throw LinuxSamplerException("Audio output device does not have audio channel " + ToString(ChannelId) + ".");
1035    
1036          // get desired audio channel parameter          // get desired audio channel parameter
1037          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();
1038          if (!parameters[ParameterName]) throw LinuxSamplerException("Audio channel does not provide a parameter '" + ParameterName + "'.");          if (!parameters.count(ParameterName)) throw LinuxSamplerException("Audio channel does not provide a parameter '" + ParameterName + "'.");
1039          DeviceRuntimeParameter* pParameter = parameters[ParameterName];          DeviceRuntimeParameter* pParameter = parameters[ParameterName];
1040    
1041          // return all fields of this audio channel parameter          // return all fields of this audio channel parameter
# Line 711  String LSCPServer::GetAudioOutputChannel Line 1043  String LSCPServer::GetAudioOutputChannel
1043          result.Add("DESCRIPTION",  pParameter->Description());          result.Add("DESCRIPTION",  pParameter->Description());
1044          result.Add("FIX",          pParameter->Fix());          result.Add("FIX",          pParameter->Fix());
1045          result.Add("MULTIPLICITY", pParameter->Multiplicity());          result.Add("MULTIPLICITY", pParameter->Multiplicity());
1046          if (pParameter->RangeMin())      result.Add("RANGE_MIN",     pParameter->RangeMin());          if (pParameter->RangeMin())      result.Add("RANGE_MIN",     *pParameter->RangeMin());
1047          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     pParameter->RangeMax());          if (pParameter->RangeMax())      result.Add("RANGE_MAX",     *pParameter->RangeMax());
1048          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", pParameter->Possibilities());          if (pParameter->Possibilities()) result.Add("POSSIBILITIES", *pParameter->Possibilities());
1049      }      }
1050      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
1051          result.Error(e);          result.Error(e);
# Line 727  String LSCPServer::SetAudioOutputChannel Line 1059  String LSCPServer::SetAudioOutputChannel
1059      try {      try {
1060          // get audio output device          // get audio output device
1061          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1062          if (!devices[DeviceId]) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");          if (!devices.count(DeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceId) + ".");
1063          AudioOutputDevice* pDevice = devices[DeviceId];          AudioOutputDevice* pDevice = devices[DeviceId];
1064    
1065          // get audio channel          // get audio channel
1066          AudioChannel* pChannel = pDevice->Channel(ChannelId);          AudioChannel* pChannel = pDevice->Channel(ChannelId);
1067          if (!pChannel) throw LinuxSamplerException("Audio output device does not have channel " + ToString(ChannelId) + ".");          if (!pChannel) throw LinuxSamplerException("Audio output device does not have audio channel " + ToString(ChannelId) + ".");
1068    
1069          // get desired audio channel parameter          // get desired audio channel parameter
1070          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();          std::map<String,DeviceRuntimeParameter*> parameters = pChannel->ChannelParameters();
1071          if (!parameters[ParamKey]) throw LinuxSamplerException("Audio channel does not provide a parameter '" + ParamKey + "'.");          if (!parameters.count(ParamKey)) throw LinuxSamplerException("Audio channel does not provide a parameter '" + ParamKey + "'.");
1072          DeviceRuntimeParameter* pParameter = parameters[ParamKey];          DeviceRuntimeParameter* pParameter = parameters[ParamKey];
1073    
1074          // set new channel parameter value          // set new channel parameter value
# Line 753  String LSCPServer::SetAudioOutputDeviceP Line 1085  String LSCPServer::SetAudioOutputDeviceP
1085      LSCPResultSet result;      LSCPResultSet result;
1086      try {      try {
1087          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint,AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1088          if (!devices[DeviceIndex]) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no audio output device with index " + ToString(DeviceIndex) + ".");
1089          AudioOutputDevice* pDevice = devices[DeviceIndex];          AudioOutputDevice* pDevice = devices[DeviceIndex];
1090          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
1091          if (!parameters[ParamKey]) throw LinuxSamplerException("Audio output device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");          if (!parameters.count(ParamKey)) throw LinuxSamplerException("Audio output device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");
1092          parameters[ParamKey]->SetValue(ParamVal);          parameters[ParamKey]->SetValue(ParamVal);
1093      }      }
1094      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 770  String LSCPServer::SetMidiInputDevicePar Line 1102  String LSCPServer::SetMidiInputDevicePar
1102      LSCPResultSet result;      LSCPResultSet result;
1103      try {      try {
1104          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1105          if (!devices[DeviceIndex]) throw LinuxSamplerException("There is no midi input device with index " + ToString(DeviceIndex) + ".");          if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
1106          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
1107          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();          std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
1108          if (!parameters[ParamKey]) throw LinuxSamplerException("Midi input device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");          if (!parameters.count(ParamKey)) throw LinuxSamplerException("MIDI input device " + ToString(DeviceIndex) + " does not have a device parameter '" + ParamKey + "'");
1109          parameters[ParamKey]->SetValue(ParamVal);          parameters[ParamKey]->SetValue(ParamVal);
1110      }      }
1111      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 786  String LSCPServer::SetMidiInputPortParam Line 1118  String LSCPServer::SetMidiInputPortParam
1118      dmsg(2,("LSCPServer: SetMidiOutputDeviceParameter(DeviceIndex=%d,ParamKey=%s,ParamVal=%s)\n",DeviceIndex,ParamKey.c_str(),ParamVal.c_str()));      dmsg(2,("LSCPServer: SetMidiOutputDeviceParameter(DeviceIndex=%d,ParamKey=%s,ParamVal=%s)\n",DeviceIndex,ParamKey.c_str(),ParamVal.c_str()));
1119      LSCPResultSet result;      LSCPResultSet result;
1120      try {      try {
1121            // get MIDI input device
1122          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();          std::map<uint,MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1123            if (!devices.count(DeviceIndex)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(DeviceIndex) + ".");
1124          MidiInputDevice* pDevice = devices[DeviceIndex];          MidiInputDevice* pDevice = devices[DeviceIndex];
1125          if (!pDevice) throw LinuxSamplerException("There is no midi input device with index " + ToString(DeviceIndex) + ".");  
1126          MidiInputDevice::MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);          // get MIDI port
1127          if (!pMidiInputPort) throw LinuxSamplerException("There is no midi input port with index " + ToString(PortIndex) + ".");          MidiInputPort* pMidiInputPort = pDevice->GetPort(PortIndex);
1128          std::map<String,DeviceCreationParameter*> parameters = pMidiInputPort->DeviceParameters();          if (!pMidiInputPort) throw LinuxSamplerException("There is no MIDI input port with index " + ToString(PortIndex) + ".");
1129          if (!parameters[ParamKey]) throw LinuxSamplerException("Midi input device " + ToString(PortIndex) + " does not have a parameter '" + ParamKey + "'");  
1130            // set port parameter value
1131            std::map<String,DeviceRuntimeParameter*> parameters = pMidiInputPort->PortParameters();
1132            if (!parameters.count(ParamKey)) throw LinuxSamplerException("MIDI input device " + ToString(PortIndex) + " does not have a parameter '" + ParamKey + "'");
1133          parameters[ParamKey]->SetValue(ParamVal);          parameters[ParamKey]->SetValue(ParamVal);
1134      }      }
1135      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 807  String LSCPServer::SetMidiInputPortParam Line 1144  String LSCPServer::SetMidiInputPortParam
1144   */   */
1145  String LSCPServer::SetAudioOutputChannel(uint ChannelAudioOutputChannel, uint AudioOutputDeviceInputChannel, uint uiSamplerChannel) {  String LSCPServer::SetAudioOutputChannel(uint ChannelAudioOutputChannel, uint AudioOutputDeviceInputChannel, uint uiSamplerChannel) {
1146      dmsg(2,("LSCPServer: SetAudioOutputChannel(ChannelAudioOutputChannel=%d, AudioOutputDeviceInputChannel=%d, SamplerChannel=%d)\n",ChannelAudioOutputChannel,AudioOutputDeviceInputChannel,uiSamplerChannel));      dmsg(2,("LSCPServer: SetAudioOutputChannel(ChannelAudioOutputChannel=%d, AudioOutputDeviceInputChannel=%d, SamplerChannel=%d)\n",ChannelAudioOutputChannel,AudioOutputDeviceInputChannel,uiSamplerChannel));
1147      return "ERR:0:Not implemented yet.\r\n"; //FIXME: Add support for this in resultset class?      LSCPResultSet result;
1148        try {
1149            SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1150            if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1151            Engine* pEngine = pSamplerChannel->GetEngine();
1152            if (!pEngine) throw LinuxSamplerException("No engine deployed on sampler channel " + ToString(uiSamplerChannel));
1153            if (!pSamplerChannel->GetAudioOutputDevice()) throw LinuxSamplerException("No audio output device connected to sampler channel " + ToString(uiSamplerChannel));
1154            pEngine->SetOutputChannel(ChannelAudioOutputChannel, AudioOutputDeviceInputChannel);
1155        }
1156        catch (LinuxSamplerException e) {
1157             result.Error(e);
1158        }
1159        return result.Produce();
1160    }
1161    
1162    String LSCPServer::SetAudioOutputDevice(uint AudioDeviceId, uint uiSamplerChannel) {
1163        dmsg(2,("LSCPServer: SetAudiotOutputDevice(AudioDeviceId=%d, SamplerChannel=%d)\n",AudioDeviceId,uiSamplerChannel));
1164        LSCPResultSet result;
1165        try {
1166            SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1167            if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1168            std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();
1169            if (!devices.count(AudioDeviceId)) throw LinuxSamplerException("There is no audio output device with index " + ToString(AudioDeviceId));
1170            AudioOutputDevice* pDevice = devices[AudioDeviceId];
1171            pSamplerChannel->SetAudioOutputDevice(pDevice);
1172        }
1173        catch (LinuxSamplerException e) {
1174             result.Error(e);
1175        }
1176        return result.Produce();
1177  }  }
1178    
1179  String LSCPServer::SetAudioOutputType(String AudioOutputDriver, uint uiSamplerChannel) {  String LSCPServer::SetAudioOutputType(String AudioOutputDriver, uint uiSamplerChannel) {
# Line 815  String LSCPServer::SetAudioOutputType(St Line 1181  String LSCPServer::SetAudioOutputType(St
1181      LSCPResultSet result;      LSCPResultSet result;
1182      try {      try {
1183          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1184          if (!pSamplerChannel) throw LinuxSamplerException("Invalid channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1185          // Driver type name aliasing...          // Driver type name aliasing...
1186          if (AudioOutputDriver == "ALSA") AudioOutputDriver = "Alsa";          if (AudioOutputDriver == "Alsa") AudioOutputDriver = "ALSA";
1187          if (AudioOutputDriver == "JACK") AudioOutputDriver = "Jack";                  if (AudioOutputDriver == "Jack") AudioOutputDriver = "JACK";
1188          // Check if there's one audio output device already created          // Check if there's one audio output device already created
1189          // for the intended audio driver type (AudioOutputDriver)...          // for the intended audio driver type (AudioOutputDriver)...
1190          AudioOutputDevice *pDevice = NULL;          AudioOutputDevice *pDevice = NULL;
# Line 847  String LSCPServer::SetAudioOutputType(St Line 1213  String LSCPServer::SetAudioOutputType(St
1213      return result.Produce();      return result.Produce();
1214  }  }
1215    
1216  String LSCPServer::SetMIDIInputType(String MidiInputDriver, uint uiSamplerChannel) {  String LSCPServer::SetMIDIInputPort(uint MIDIPort, uint uiSamplerChannel) {
1217      dmsg(2,("LSCPServer: SetMIDIInputType(String MidiInputDriver=%s, SamplerChannel=%d)\n",MidiInputDriver.c_str(),uiSamplerChannel));      dmsg(2,("LSCPServer: SetMIDIInputPort(MIDIPort=%d, SamplerChannel=%d)\n",MIDIPort,uiSamplerChannel));
1218      LSCPResultSet result;      LSCPResultSet result;
1219      try {      try {
1220  #if 1          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1221          throw LinuxSamplerException("Command deprecated");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1222  #else          pSamplerChannel->SetMidiInputPort(MIDIPort);
         SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);  
         if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");  
         // FIXME: workaround until MIDI driver configuration is implemented (using a Factory class for the MIDI input drivers then, like its already done for audio output drivers)  
         if (MidiInputDriver == "ALSA") MidiInputDriver = "Alsa";  
         if (MidiInputDriver != "Alsa") throw LinuxSamplerException("Unknown MIDI input driver '" + MidiInputDriver + "'.");  
         MidiInputDevice::type_t MidiInputType = MidiInputDevice::type_alsa;  
         pSamplerChannel->SetMidiInputDevice(MidiInputType);  
 #endif  
1223      }      }
1224      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
1225           result.Error(e);           result.Error(e);
# Line 869  String LSCPServer::SetMIDIInputType(Stri Line 1227  String LSCPServer::SetMIDIInputType(Stri
1227      return result.Produce();      return result.Produce();
1228  }  }
1229    
1230  /**  String LSCPServer::SetMIDIInputChannel(uint MIDIChannel, uint uiSamplerChannel) {
1231   * Will be called by the parser to change the MIDI input device, port and channel on which      dmsg(2,("LSCPServer: SetMIDIInputChannel(MIDIChannel=%d, SamplerChannel=%d)\n",MIDIChannel,uiSamplerChannel));
  * engine of a particular sampler channel should listen to.  
  */  
 String LSCPServer::SetMIDIInput(uint MIDIDevice, uint MIDIPort, uint MIDIChannel, uint uiSamplerChannel) {  
     dmsg(2,("LSCPServer: SetMIDIInput(MIDIDevice=%d, MIDIPort=%d, MIDIChannel=%d, SamplerChannel=%d)\n", MIDIDevice, MIDIPort, MIDIChannel, uiSamplerChannel));  
1232      LSCPResultSet result;      LSCPResultSet result;
1233      try {      try {
1234          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1235          if (!pSamplerChannel) throw LinuxSamplerException("Invalid channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1236          std::map<uint, MidiInputDevice*> devices =  pSampler->GetMidiInputDevices();          pSamplerChannel->SetMidiInputChannel((MidiInputPort::midi_chan_t) MIDIChannel);
         MidiInputDevice* pDevice = devices[MIDIDevice];  
         if (!pDevice) throw LinuxSamplerException("There is no midi input device with index " + ToString(MIDIDevice));  
         pSamplerChannel->SetMidiInputPort(pDevice, MIDIPort, (MidiInputDevice::MidiInputPort::midi_chan_t) MIDIChannel);  
1237      }      }
1238      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
1239           result.Error(e);           result.Error(e);
# Line 890  String LSCPServer::SetMIDIInput(uint MID Line 1241  String LSCPServer::SetMIDIInput(uint MID
1241      return result.Produce();      return result.Produce();
1242  }  }
1243    
1244  String LSCPServer::SetAudioOutputDevice(uint AudioDeviceId, uint uiSamplerChannel) {  String LSCPServer::SetMIDIInputDevice(uint MIDIDeviceId, uint uiSamplerChannel) {
1245        dmsg(2,("LSCPServer: SetMIDIInputDevice(MIDIDeviceId=%d, SamplerChannel=%d)\n",MIDIDeviceId,uiSamplerChannel));
1246      LSCPResultSet result;      LSCPResultSet result;
1247      try {      try {
1248          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1249          if (!pSamplerChannel) throw LinuxSamplerException("Invalid channel number " + ToString(uiSamplerChannel));          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1250          std::map<uint, AudioOutputDevice*> devices = pSampler->GetAudioOutputDevices();          std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1251          AudioOutputDevice* pDevice = devices[AudioDeviceId];          if (!devices.count(MIDIDeviceId)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(MIDIDeviceId));
1252          if (!pDevice) throw LinuxSamplerException("There is no audio output device with index " + ToString(AudioDeviceId));          MidiInputDevice* pDevice = devices[MIDIDeviceId];
1253          pSamplerChannel->SetAudioOutputDevice(pDevice);          pSamplerChannel->SetMidiInputDevice(pDevice);
1254        }
1255        catch (LinuxSamplerException e) {
1256             result.Error(e);
1257        }
1258        return result.Produce();
1259    }
1260    
1261    String LSCPServer::SetMIDIInputType(String MidiInputDriver, uint uiSamplerChannel) {
1262        dmsg(2,("LSCPServer: SetMIDIInputType(String MidiInputDriver=%s, SamplerChannel=%d)\n",MidiInputDriver.c_str(),uiSamplerChannel));
1263        LSCPResultSet result;
1264        try {
1265            SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1266            if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1267            // Driver type name aliasing...
1268            if (MidiInputDriver == "Alsa") MidiInputDriver = "ALSA";
1269            // Check if there's one MIDI input device already created
1270            // for the intended MIDI driver type (MidiInputDriver)...
1271            MidiInputDevice *pDevice = NULL;
1272            std::map<uint, MidiInputDevice*> devices = pSampler->GetMidiInputDevices();
1273            std::map<uint, MidiInputDevice*>::iterator iter = devices.begin();
1274            for (; iter != devices.end(); iter++) {
1275                if ((iter->second)->Driver() == MidiInputDriver) {
1276                    pDevice = iter->second;
1277                    break;
1278                }
1279            }
1280            // If it doesn't exist, create a new one with default parameters...
1281            if (pDevice == NULL) {
1282                std::map<String,String> params;
1283                pDevice = pSampler->CreateMidiInputDevice(MidiInputDriver, params);
1284                // Make it with at least one initial port.
1285                std::map<String,DeviceCreationParameter*> parameters = pDevice->DeviceParameters();
1286                parameters["PORTS"]->SetValue("1");
1287            }
1288            // Must have a device...
1289            if (pDevice == NULL)
1290                throw LinuxSamplerException("Internal error: could not create MIDI input device.");
1291            // Set it as the current channel device...
1292            pSamplerChannel->SetMidiInputDevice(pDevice);
1293        }
1294        catch (LinuxSamplerException e) {
1295             result.Error(e);
1296        }
1297        return result.Produce();
1298    }
1299    
1300    /**
1301     * Will be called by the parser to change the MIDI input device, port and channel on which
1302     * engine of a particular sampler channel should listen to.
1303     */
1304    String LSCPServer::SetMIDIInput(uint MIDIDeviceId, uint MIDIPort, uint MIDIChannel, uint uiSamplerChannel) {
1305        dmsg(2,("LSCPServer: SetMIDIInput(MIDIDeviceId=%d, MIDIPort=%d, MIDIChannel=%d, SamplerChannel=%d)\n", MIDIDeviceId, MIDIPort, MIDIChannel, uiSamplerChannel));
1306        LSCPResultSet result;
1307        try {
1308            SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1309            if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1310            std::map<uint, MidiInputDevice*> devices =  pSampler->GetMidiInputDevices();
1311            if (!devices.count(MIDIDeviceId)) throw LinuxSamplerException("There is no MIDI input device with index " + ToString(MIDIDeviceId));
1312            MidiInputDevice* pDevice = devices[MIDIDeviceId];
1313            pSamplerChannel->SetMidiInput(pDevice, MIDIPort, (MidiInputPort::midi_chan_t) MIDIChannel);
1314      }      }
1315      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
1316           result.Error(e);           result.Error(e);
# Line 910  String LSCPServer::SetAudioOutputDevice( Line 1322  String LSCPServer::SetAudioOutputDevice(
1322   * Will be called by the parser to change the global volume factor on a   * Will be called by the parser to change the global volume factor on a
1323   * particular sampler channel.   * particular sampler channel.
1324   */   */
1325  String LSCPServer::SetVolume(double Volume, uint uiSamplerChannel) {  String LSCPServer::SetVolume(double dVolume, uint uiSamplerChannel) {
1326      dmsg(2,("LSCPServer: SetVolume(Volume=%f, SamplerChannel=%d)\n", Volume, uiSamplerChannel));      dmsg(2,("LSCPServer: SetVolume(Volume=%f, SamplerChannel=%d)\n", dVolume, uiSamplerChannel));
1327      LSCPResultSet result;      LSCPResultSet result;
1328      try {      try {
1329          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1330          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1331          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
1332          if (!pEngine) throw LinuxSamplerException("No engine loaded on channel");          if (!pEngine) throw LinuxSamplerException("No engine loaded on sampler channel");
1333          pEngine->Volume(Volume);          pEngine->Volume(dVolume);
1334      }      }
1335      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
1336           result.Error(e);           result.Error(e);
# Line 934  String LSCPServer::ResetChannel(uint uiS Line 1346  String LSCPServer::ResetChannel(uint uiS
1346      LSCPResultSet result;      LSCPResultSet result;
1347      try {      try {
1348          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);          SamplerChannel* pSamplerChannel = pSampler->GetSamplerChannel(uiSamplerChannel);
1349          if (!pSamplerChannel) throw LinuxSamplerException("Index out of bounds");          if (!pSamplerChannel) throw LinuxSamplerException("Invalid sampler channel number " + ToString(uiSamplerChannel));
1350          Engine* pEngine = pSamplerChannel->GetEngine();          Engine* pEngine = pSamplerChannel->GetEngine();
1351          if (!pEngine) throw LinuxSamplerException("No engine loaded on channel");          if (!pEngine) throw LinuxSamplerException("No engine loaded on sampler channel");
1352          pEngine->Reset();          pEngine->Reset();
1353      }      }
1354      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
# Line 946  String LSCPServer::ResetChannel(uint uiS Line 1358  String LSCPServer::ResetChannel(uint uiS
1358  }  }
1359    
1360  /**  /**
1361     * Will be called by the parser to reset the whole sampler.
1362     */
1363    String LSCPServer::ResetSampler() {
1364        dmsg(2,("LSCPServer: ResetSampler()\n"));
1365        pSampler->Reset();
1366        LSCPResultSet result;
1367        return result.Produce();
1368    }
1369    
1370    /**
1371   * 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
1372   * server for receiving event messages.   * server for receiving event messages.
1373   */   */
1374  String LSCPServer::SubscribeNotification(event_t Event) {  String LSCPServer::SubscribeNotification(LSCPEvent::event_t type) {
1375      dmsg(2,("LSCPServer: SubscribeNotification(Event=%d)\n", Event));      dmsg(2,("LSCPServer: SubscribeNotification(Event=%s)\n", LSCPEvent::Name(type).c_str()));
1376      return "ERR:0:Not implemented yet.\r\n";      LSCPResultSet result;
1377        SubscriptionMutex.Lock();
1378        eventSubscriptions[type].push_back(currentSocket);
1379        SubscriptionMutex.Unlock();
1380        return result.Produce();
1381  }  }
1382    
1383  /**  /**
1384   * Will be called by the parser to unsubscribe a client on the server   * Will be called by the parser to unsubscribe a client on the server
1385   * for not receiving further event messages.   * for not receiving further event messages.
1386   */   */
1387  String LSCPServer::UnsubscribeNotification(event_t Event) {  String LSCPServer::UnsubscribeNotification(LSCPEvent::event_t type) {
1388      dmsg(2,("LSCPServer: UnsubscribeNotification(Event=%d)\n", Event));      dmsg(2,("LSCPServer: UnsubscribeNotification(Event=%s)\n", LSCPEvent::Name(type).c_str()));
1389      return "ERR:0:Not implemented yet.\r\n";      LSCPResultSet result;
1390  }      SubscriptionMutex.Lock();
1391        eventSubscriptions[type].remove(currentSocket);
1392        SubscriptionMutex.Unlock();
1393  // Instrument loader constructor.      return result.Produce();
 LSCPLoadInstrument::LSCPLoadInstrument(Engine* pEngine, String Filename, uint uiInstrument)  
     : Thread(false, 0, -4)  
 {  
     this->pEngine = pEngine;  
     this->Filename = Filename;  
     this->uiInstrument = uiInstrument;  
1394  }  }
1395    
1396  // Instrument loader process.  /**
1397  int LSCPLoadInstrument::Main()   * Will be called by the parser to enable or disable echo mode; if echo
1398  {   * mode is enabled, all commands from the client will (immediately) be
1399     * echoed back to the client.
1400     */
1401    String LSCPServer::SetEcho(yyparse_param_t* pSession, double boolean_value) {
1402        dmsg(2,("LSCPServer: SetEcho(val=%f)\n", boolean_value));
1403        LSCPResultSet result;
1404      try {      try {
1405          pEngine->LoadInstrument(Filename.c_str(), uiInstrument);          if      (boolean_value == 0) pSession->bVerbose = false;
1406            else if (boolean_value == 1) pSession->bVerbose = true;
1407            else throw LinuxSamplerException("Not a boolean value, must either be 0 or 1");
1408      }      }
   
1409      catch (LinuxSamplerException e) {      catch (LinuxSamplerException e) {
1410          e.PrintMessage();           result.Error(e);
1411      }      }
1412        return result.Produce();
     // Always re-enable the engine.  
     pEngine->Enable();  
   
     // FIXME: Shoot ourselves on the foot?  
     delete this;  
1413  }  }

Legend:
Removed from v.155  
changed lines
  Added in v.392

  ViewVC Help
Powered by ViewVC