/[svn]/liblscp/trunk/examples/example_client.c
ViewVC logotype

Diff of /liblscp/trunk/examples/example_client.c

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

revision 147 by capela, Fri Jun 25 16:35:17 2004 UTC revision 1019 by capela, Thu Jan 11 12:33:05 2007 UTC
# Line 1  Line 1 
1  // example_client.c  // example_client.c
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004, rncbc aka Rui Nuno Capela. All rights reserved.     liblscp - LinuxSampler Control Protocol API
5       Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 13  Line 14 
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License along
18     along with this program; if not, write to the Free Software     with this program; if not, write to the Free Software Foundation, Inc.,
19     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21  *****************************************************************************/  *****************************************************************************/
22    
# Line 34  static WSADATA _wsaData; Line 35  static WSADATA _wsaData;
35    
36  lscp_status_t client_callback ( lscp_client_t *pClient, lscp_event_t event, const char *pchData, int cchData, void *pvData )  lscp_status_t client_callback ( lscp_client_t *pClient, lscp_event_t event, const char *pchData, int cchData, void *pvData )
37  {  {
38      lscp_status_t ret = LSCP_FAILED;          lscp_status_t ret = LSCP_FAILED;
39    
40      char *pszData = (char *) malloc(cchData + 1);          char *pszData = (char *) malloc(cchData + 1);
41      if (pszData) {          if (pszData) {
42          memcpy(pszData, pchData, cchData);                  memcpy(pszData, pchData, cchData);
43          pszData[cchData] = (char) 0;                  pszData[cchData] = (char) 0;
44          printf("client_callback: event=%s (0x%04x) [%s]\n", lscp_event_to_text(event), (int) event, pszData);                  printf("client_callback: event=%s (0x%04x) [%s]\n", lscp_event_to_text(event), (int) event, pszData);
45          free(pszData);                  free(pszData);
46          ret = LSCP_OK;                  ret = LSCP_OK;
47      }          }
48    
49      return ret;          return ret;
50  }  }
51    
52  ////////////////////////////////////////////////////////////////////////  ////////////////////////////////////////////////////////////////////////
53    
54    int client_test_int ( int i )
55    {
56            printf("%d\n", i);
57            return (i >= 0 ? 0 : 1);
58    }
59    
60    
61    int client_test_status ( lscp_status_t s )
62    {
63            const char *pszStatus;
64    
65            switch (s) {
66            case LSCP_OK:         pszStatus = "OK";       break;
67            case LSCP_FAILED:     pszStatus = "FAILED";   break;
68            case LSCP_ERROR:      pszStatus = "ERROR";    break;
69            case LSCP_WARNING:    pszStatus = "WARNING";  break;
70            case LSCP_TIMEOUT:    pszStatus = "TIMEOUT";  break;
71            case LSCP_QUIT:       pszStatus = "QUIT";     break;
72            default:              pszStatus = "NONE";     break;
73            }
74            printf("%s\n", pszStatus);
75            return (s == LSCP_OK ? 0 : 1);
76    }
77    
78    
79    int client_test_isplit ( int *piSplit )
80    {
81            int i;
82    
83            printf("{");
84            for (i = 0; piSplit && piSplit[i] >= 0; i++) {
85                    if (i > 0)
86                            printf(",");
87                    printf(" %d", piSplit[i]);
88            }
89            printf(" }\n");
90            return 0;
91    }
92    
93    
94    int client_test_szsplit ( char **ppszSplit )
95    {
96            int i;
97    
98            printf("{");
99            for (i = 0; ppszSplit && ppszSplit[i]; i++) {
100                    if (i > 0)
101                            printf(",");
102                    printf(" %s", ppszSplit[i]);
103            }
104            printf(" }\n");
105            return 0;
106    }
107    
108    
109    int client_test_params ( lscp_param_t *pParams )
110    {
111            int i;
112    
113            printf("{");
114            for (i = 0; pParams && pParams[i].key; i++) {
115                    if (i > 0)
116                            printf(",");
117                    printf(" %s='%s'", pParams[i].key, pParams[i].value);
118            }
119            printf(" }\n");
120            return 0;
121    }
122    
123    
124    int client_test_midi_instruments ( lscp_midi_instrument_t *pInstrs )
125    {
126            int i;
127    
128            printf("{");
129            for (i = 0; pInstrs && pInstrs[i].prog >= 0; i++) {
130                    if (i > 0)
131                            printf(",");
132                    printf("{%d,%d,%d}", pInstrs[i].map, pInstrs[i].bank, pInstrs[i].prog);
133            }
134            printf(" }\n");
135            return 0;
136    }
137    
138    
139    int client_test_param_info ( lscp_param_info_t *pParamInfo )
140    {
141            const char *pszType;
142    
143            if (pParamInfo == NULL) {
144                    printf("(nil)\n");
145                    return 1;
146            }
147            switch (pParamInfo->type) {
148            case LSCP_TYPE_BOOL:      pszType = "BOOL";   break;
149            case LSCP_TYPE_INT:       pszType = "INT";    break;
150            case LSCP_TYPE_FLOAT:     pszType = "FLOAT";  break;
151            case LSCP_TYPE_STRING:    pszType = "STRING"; break;
152            default:                  pszType = "NONE";   break;
153            }
154            printf("{\n");
155            printf("    param_info.type          = %d (%s)\n", (int) pParamInfo->type, pszType);
156            printf("    param_info.description   = %s\n", pParamInfo->description);
157            printf("    param_info.mandatory     = %d\n", pParamInfo->mandatory);
158            printf("    param_info.fix           = %d\n", pParamInfo->fix);
159            printf("    param_info.multiplicity  = %d\n", pParamInfo->multiplicity);
160            printf("    param_info.depends       = "); client_test_szsplit(pParamInfo->depends);
161            printf("    param_info.defaultv      = %s\n", pParamInfo->defaultv);
162            printf("    param_info.range_min     = %s\n", pParamInfo->range_min);
163            printf("    param_info.range_max     = %s\n", pParamInfo->range_max);
164            printf("    param_info.possibilities = "); client_test_szsplit(pParamInfo->possibilities);
165            printf("  }\n");
166            return 0;
167    }
168    
169    
170    int client_test_driver_info ( lscp_driver_info_t *pDriverInfo )
171    {
172            if (pDriverInfo == NULL) {
173                    printf("(nil)\n");
174                    return 1;
175            }
176            printf("{\n");
177            printf("    driver_info.description = %s\n", pDriverInfo->description);
178            printf("    driver_info.version     = %s\n", pDriverInfo->version);
179            printf("    driver_info.parameters  = "); client_test_szsplit(pDriverInfo->parameters);
180            printf("  }\n");
181            return 0;
182    }
183    
184    
185    int client_test_device_info ( lscp_device_info_t *pDeviceInfo )
186    {
187            if (pDeviceInfo == NULL) {
188                    printf("(nil)\n");
189                    return 1;
190            }
191            printf("{\n");
192            printf("    device_info.driver = %s\n", pDeviceInfo->driver);
193            printf("    device_info.params = "); client_test_params(pDeviceInfo->params);
194            printf("  }\n");
195            return 0;
196    }
197    
198    
199    int client_test_device_port_info ( lscp_device_port_info_t *pDevicePortInfo )
200    {
201            if (pDevicePortInfo == NULL) {
202                    printf("(nil)\n");
203                    return 1;
204            }
205            printf("{\n");
206            printf("    device_port_info.name   = %s\n", pDevicePortInfo->name);
207            printf("    device_port_info.params = "); client_test_params(pDevicePortInfo->params);
208            printf("  }\n");
209            return 0;
210    }
211    
212    
213    int client_test_server_info ( lscp_server_info_t *pServerInfo )
214    {
215            if (pServerInfo == NULL) {
216                    printf("(nil)\n");
217                    return 1;
218            }
219            printf("{\n");
220            printf("    server_info.description      = %s\n", pServerInfo->description);
221            printf("    server_info.version          = %s\n", pServerInfo->version);
222            printf("    server_info.protocol_version = %s\n", pServerInfo->protocol_version);
223            printf("  }\n");
224            return 0;
225    }
226    
227    
228    int client_test_engine_info ( lscp_engine_info_t *pEngineInfo )
229    {
230            if (pEngineInfo == NULL) {
231                    printf("(nil)\n");
232                    return 1;
233            }
234            printf("{\n");
235            printf("    engine_info.description = %s\n", pEngineInfo->description);
236            printf("    engine_info.version     = %s\n", pEngineInfo->version);
237            printf("  }\n");
238            return 0;
239    }
240    
241    
242    int client_test_channel_info ( lscp_channel_info_t *pChannelInfo )
243    {
244            if (pChannelInfo == NULL) {
245                    printf("(nil)\n");
246                    return 1;
247            }
248            printf("{\n");
249            printf("    channel_info.engine_name       = %s\n", pChannelInfo->engine_name);
250            printf("    channel_info.audio_device      = %d\n", pChannelInfo->audio_device);
251            printf("    channel_info.audio_channels    = %d\n", pChannelInfo->audio_channels);
252            printf("    channel_info.audio_routing     = "); client_test_szsplit(pChannelInfo->audio_routing);
253            printf("    channel_info.instrument_file   = %s\n", pChannelInfo->instrument_file);
254            printf("    channel_info.instrument_nr     = %d\n", pChannelInfo->instrument_nr);
255            printf("    channel_info.instrument_name   = %s\n", pChannelInfo->instrument_name);
256            printf("    channel_info.instrument_status = %d\n", pChannelInfo->instrument_status);
257            printf("    channel_info.midi_device       = %d\n", pChannelInfo->midi_device);
258            printf("    channel_info.midi_port         = %d\n", pChannelInfo->midi_port);
259            printf("    channel_info.midi_channel      = %d\n", pChannelInfo->midi_channel);
260            printf("    channel_info.midi_map          = %d\n", pChannelInfo->midi_map);
261            printf("    channel_info.volume            = %g\n", pChannelInfo->volume);
262            printf("    channel_info.mute              = %d\n", pChannelInfo->mute);
263            printf("    channel_info.solo              = %d\n", pChannelInfo->solo);
264            printf("  }\n");
265            return 0;
266    }
267    
268    
269    int client_test_buffer_fill ( lscp_buffer_fill_t *pBufferFill )
270    {
271            if (pBufferFill == NULL) {
272                    printf("(nil)\n");
273                    return 1;
274            }
275            printf("{ <%p> }\n", pBufferFill);
276            return 0;
277    }
278    
279    
280    int client_test_load_mode ( lscp_load_mode_t load_mode )
281    {
282            const char *pszLoadMode;
283    
284            switch (load_mode) {
285            case LSCP_LOAD_ON_DEMAND:      pszLoadMode = "ON_DEMAND";      break;
286            case LSCP_LOAD_ON_DEMAND_HOLD: pszLoadMode = "ON_DEMAND_HOLD"; break;
287            case LSCP_LOAD_PERSISTENT:     pszLoadMode = "PERSISTENT";     break;
288            default:                       pszLoadMode = "DEFAULT";        break;
289            }
290            printf("%s\n", pszLoadMode);
291            return 0;
292    }
293    
294    
295    int client_test_midi_instrument_info ( lscp_midi_instrument_info_t *pInstrInfo )
296    {
297            if (pInstrInfo == NULL) {
298                    printf("(nil)\n");
299                    return 1;
300            }
301            printf("{\n");
302            printf("    midi_instrument_info.name            = %s\n", pInstrInfo->name);
303            printf("    midi_instrument_info.engine_name     = %s\n", pInstrInfo->engine_name);
304            printf("    midi_instrument_info.instrument_file = %s\n", pInstrInfo->instrument_file);
305            printf("    midi_instrument_info.instrument_nr   = %d\n", pInstrInfo->instrument_nr);
306            printf("    midi_instrument_info.instrument_name = %s\n", pInstrInfo->instrument_name);
307            printf("    midi_instrument_info.load_mode       = "); client_test_load_mode(pInstrInfo->load_mode);
308            printf("    midi_instrument_info.volume          = %g\n", pInstrInfo->volume);
309            printf("  }\n");
310            return 0;
311    }
312    
313    
314    ////////////////////////////////////////////////////////////////////////
315    
316    static int g_test_step  = 0;
317    static int g_test_count = 0;
318    static int g_test_fails = 0;
319    
320    
321  void  client_test_start   ( clock_t *pclk ) { *pclk = clock(); }  void  client_test_start   ( clock_t *pclk ) { *pclk = clock(); }
322  float client_test_elapsed ( clock_t *pclk ) { return (float) ((long) clock() - *pclk) / (float) CLOCKS_PER_SEC; }  float client_test_elapsed ( clock_t *pclk ) { return (float) ((long) clock() - *pclk) / (float) CLOCKS_PER_SEC; }
323    
324  #define CLIENT_TEST(p, x) { clock_t c; void *v;\  typedef int *                        isplit;
325      printf(#x ":\n"); client_test_start(&c); v = (void *) (x); \  typedef char **                      szsplit;
326      printf("  elapsed=%gs\n", client_test_elapsed(&c)); \  typedef lscp_status_t                status;
327      printf("  ret=%p (%d)\n", v, (int) v); \  typedef lscp_driver_info_t *         driver_info;
328      printf("  errno=%d\n", lscp_client_get_errno(p)); \  typedef lscp_device_info_t *         device_info;
329      printf("  result=\"%s\"\n", lscp_client_get_result(p)); }  typedef lscp_device_port_info_t *    device_port_info;
330    typedef lscp_param_info_t  *         param_info;
331  void client_test ( lscp_client_t *pClient )  typedef lscp_server_info_t *         server_info;
332  {  typedef lscp_engine_info_t *         engine_info;
333      const char **ppszAudioDrivers, **ppszMidiDrivers, **ppszEngines;  typedef lscp_channel_info_t *        channel_info;
334      const char *pszAudioDriver, *pszMidiDriver, *pszEngine;  typedef lscp_buffer_fill_t *         buffer_fill;
335      int iAudioDriver, iMidiDriver, iEngine;  typedef lscp_midi_instrument_t *     midi_instruments;
336      int iSamplerChannel;  typedef lscp_midi_instrument_info_t *midi_instrument_info;
337    
338      CLIENT_TEST(pClient, ppszAudioDrivers = lscp_get_available_audio_drivers(pClient));  #define CLIENT_TEST(p, t, x) { clock_t c; void *v; g_test_count++; \
339      if (ppszAudioDrivers == NULL) {          printf("\n" #x ":\n"); client_test_start(&c); v = (void *) (x); \
340          fprintf(stderr, "client_test: No audio drivers available.\n");          printf("  elapsed=%gs  errno=%d  result='%s...' ret=", \
341          return;                  client_test_elapsed(&c), \
342      }                  lscp_client_get_errno(p), \
343                    lscp_client_get_result(p)); \
344      CLIENT_TEST(pClient, ppszMidiDrivers = lscp_get_available_midi_drivers(pClient));          if (client_test_##t((t)(v))) { g_test_fails++; getchar(); } \
345      if (ppszMidiDrivers == NULL) {          else if (g_test_step) getchar(); }
346          fprintf(stderr, "client_test: No MIDI drivers available.\n");  
         return;  
     }  
   
     CLIENT_TEST(pClient, ppszEngines = lscp_get_available_engines(pClient));  
     if (ppszEngines == NULL) {  
         fprintf(stderr, "client_test: No engines available.\n");  
         return;  
     }  
   
     CLIENT_TEST(pClient, lscp_get_audio_devices(pClient));  
     CLIENT_TEST(pClient, lscp_list_audio_devices(pClient));  
   
     CLIENT_TEST(pClient, lscp_get_midi_devices(pClient));  
     CLIENT_TEST(pClient, lscp_list_midi_devices(pClient));  
   
     for (iAudioDriver = 0; ppszAudioDrivers[iAudioDriver]; iAudioDriver++) {  
      pszAudioDriver = ppszAudioDrivers[iAudioDriver];  
      printf("\n--- pszAudioDriver=\"%s\" ---\n", pszAudioDriver);  
      CLIENT_TEST(pClient, lscp_get_audio_driver_info(pClient, pszAudioDriver));  
      for (iMidiDriver = 0; ppszMidiDrivers[iMidiDriver]; iMidiDriver++) {  
       pszMidiDriver = ppszMidiDrivers[iMidiDriver];  
       printf("\n--- pszMidiDriver=\"%s\" ---\n", pszMidiDriver);  
       CLIENT_TEST(pClient, lscp_get_midi_driver_info(pClient, pszMidiDriver));  
       for (iEngine = 0; ppszEngines[iEngine]; iEngine++) {  
         pszEngine = ppszEngines[iEngine];  
         printf("\n--- pszEngine=\"%s\" ---\n", pszEngine);  
         CLIENT_TEST(pClient, lscp_get_engine_info(pClient, pszEngine));  
         CLIENT_TEST(pClient, lscp_get_channels(pClient));  
         CLIENT_TEST(pClient, lscp_list_channels(pClient));  
         CLIENT_TEST(pClient, iSamplerChannel = lscp_add_channel(pClient));  
         printf(">>> iSamplerChannel=\"%d\"\n", iSamplerChannel);  
         CLIENT_TEST(pClient, lscp_get_channel_info(pClient, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_load_engine(pClient, pszEngine, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_load_instrument(pClient, "DefaultInstrument.gig", 0, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_get_channel_voice_count(pClient, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_get_channel_stream_count(pClient, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_get_channel_buffer_fill(pClient, LSCP_USAGE_BYTES, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_get_channel_buffer_fill(pClient, LSCP_USAGE_PERCENTAGE, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_set_channel_audio_type(pClient, iSamplerChannel, pszAudioDriver));  
         CLIENT_TEST(pClient, lscp_set_channel_audio_device(pClient, iSamplerChannel, 0));  
         CLIENT_TEST(pClient, lscp_set_channel_audio_channel(pClient, iSamplerChannel, 0, 1));  
         CLIENT_TEST(pClient, lscp_set_channel_midi_type(pClient, iSamplerChannel, pszMidiDriver));  
         CLIENT_TEST(pClient, lscp_set_channel_midi_device(pClient, iSamplerChannel, 0));  
         CLIENT_TEST(pClient, lscp_set_channel_midi_channel(pClient, iSamplerChannel, 0));  
         CLIENT_TEST(pClient, lscp_set_channel_midi_port(pClient, iSamplerChannel, 0));  
         CLIENT_TEST(pClient, lscp_set_channel_volume(pClient, iSamplerChannel, 0.5));  
         CLIENT_TEST(pClient, lscp_get_channel_info(pClient, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_reset_channel(pClient, iSamplerChannel));  
         CLIENT_TEST(pClient, lscp_remove_channel(pClient, iSamplerChannel));  
         printf("\n");  
       }  
      }  
     }  
347    
348    void client_test_engine ( lscp_client_t *pClient, const char *pszEngine, const char *pszAudioDriver, int iAudioDevice, const char *pszMidiDriver, int iMidiDevice )
349    {
350            int iSamplerChannel;
351            lscp_midi_instrument_t midi_instr;
352            int i, j, k;
353    
354            printf("\n--- pszEngine=\"%s\" pszAudioDevice=\"%s\" iAudioDevice=%d pszMidiDevice=\"%s\" iMidiDevice=%d ---\n", pszEngine, pszAudioDriver, iAudioDevice, pszMidiDriver, iMidiDevice);
355            CLIENT_TEST(pClient, engine_info, lscp_get_engine_info(pClient, pszEngine));
356            CLIENT_TEST(pClient, int, lscp_get_total_voice_count(pClient));
357            CLIENT_TEST(pClient, int, lscp_get_total_voice_count_max(pClient));
358            CLIENT_TEST(pClient, int, lscp_get_channels(pClient));
359            CLIENT_TEST(pClient, isplit, lscp_list_channels(pClient));
360            CLIENT_TEST(pClient, int, iSamplerChannel = lscp_add_channel(pClient));
361            printf("\n--- iSamplerChannel=%d ---\n", iSamplerChannel);
362            CLIENT_TEST(pClient, channel_info, lscp_get_channel_info(pClient, iSamplerChannel));
363            CLIENT_TEST(pClient, status, lscp_load_engine(pClient, pszEngine, iSamplerChannel));
364            CLIENT_TEST(pClient, status, lscp_load_instrument(pClient, "DefaultInstrument.gig", 0, iSamplerChannel));
365            CLIENT_TEST(pClient, int, lscp_get_channel_voice_count(pClient, iSamplerChannel));
366            CLIENT_TEST(pClient, int, lscp_get_channel_stream_count(pClient, iSamplerChannel));
367            CLIENT_TEST(pClient, int, lscp_get_channel_stream_usage(pClient, iSamplerChannel));
368            CLIENT_TEST(pClient, buffer_fill, lscp_get_channel_buffer_fill(pClient, LSCP_USAGE_BYTES, iSamplerChannel));
369            CLIENT_TEST(pClient, buffer_fill, lscp_get_channel_buffer_fill(pClient, LSCP_USAGE_PERCENTAGE, iSamplerChannel));
370            CLIENT_TEST(pClient, status, lscp_set_channel_audio_type(pClient, iSamplerChannel, pszAudioDriver));
371            CLIENT_TEST(pClient, status, lscp_set_channel_audio_device(pClient, iSamplerChannel, 0));
372            CLIENT_TEST(pClient, status, lscp_set_channel_audio_channel(pClient, iSamplerChannel, 0, 1));
373            CLIENT_TEST(pClient, status, lscp_set_channel_midi_type(pClient, iSamplerChannel, pszMidiDriver));
374            CLIENT_TEST(pClient, status, lscp_set_channel_midi_device(pClient, iSamplerChannel, 0));
375            CLIENT_TEST(pClient, status, lscp_set_channel_midi_channel(pClient, iSamplerChannel, 0));
376            CLIENT_TEST(pClient, status, lscp_set_channel_midi_port(pClient, iSamplerChannel, 0));
377            CLIENT_TEST(pClient, status, lscp_set_channel_volume(pClient, iSamplerChannel, 0.5));
378            CLIENT_TEST(pClient, status, lscp_set_channel_mute(pClient, iSamplerChannel, 1));
379            CLIENT_TEST(pClient, status, lscp_set_channel_solo(pClient, iSamplerChannel, 1));
380            CLIENT_TEST(pClient, channel_info, lscp_get_channel_info(pClient, iSamplerChannel));
381            CLIENT_TEST(pClient, status, lscp_reset_channel(pClient, iSamplerChannel));
382            CLIENT_TEST(pClient, status, lscp_remove_channel(pClient, iSamplerChannel));
383    
384            for (i = 0; i < 2; i++) {
385                    CLIENT_TEST(pClient, int, lscp_add_midi_instrument_map(pClient, NULL));
386                    for (j = 0; j < 4; j++) {
387                            for (k = 0; k < 8; k++) {
388                                    midi_instr.map  = i;
389                                    midi_instr.bank = j;
390                                    midi_instr.prog = k;
391                                    CLIENT_TEST(pClient, status, lscp_map_midi_instrument(pClient, &midi_instr, pszEngine, "DefaultInstrument.gig", 0, 1.0f, LSCP_LOAD_ON_DEMAND, "DummyName"));
392                            }
393                    }
394                    CLIENT_TEST(pClient, status, lscp_set_midi_instrument_map_name(pClient, i, "DummyMapName"));
395            }
396    
397            CLIENT_TEST(pClient, int, lscp_get_midi_instruments(pClient, LSCP_MIDI_MAP_ALL));
398            CLIENT_TEST(pClient, midi_instruments, lscp_list_midi_instruments(pClient, LSCP_MIDI_MAP_ALL));
399    
400            for (i = 0; i < 2; i++) {
401                    for (j = 0; j < 4; j++) {
402                            for (k = 0; k < 8; k++) {
403                                    midi_instr.map  = i;
404                                    midi_instr.bank = j;
405                                    midi_instr.prog = k;
406                                    CLIENT_TEST(pClient, midi_instrument_info, lscp_get_midi_instrument_info(pClient, &midi_instr));
407                                    CLIENT_TEST(pClient, status, lscp_unmap_midi_instrument(pClient, &midi_instr));
408                            }
409                    }
410                    CLIENT_TEST(pClient, int, lscp_remove_midi_instrument_map(pClient, i));
411            }
412            
413            CLIENT_TEST(pClient, status, lscp_clear_midi_instruments(pClient, LSCP_MIDI_MAP_ALL));
414  }  }
415    
416    
417    void client_test_midi_port ( lscp_client_t *pClient, int iMidiDevice, int iMidiPort )
418    {
419            lscp_device_port_info_t *pMidiPortInfo;
420            const char *pszParam;
421            int i;
422    
423            printf("\n--- iMidiDevice=%d iMidiPort=%d ---\n", iMidiDevice, iMidiPort);
424            CLIENT_TEST(pClient, device_port_info, pMidiPortInfo = lscp_get_midi_port_info(pClient, iMidiDevice, iMidiPort));
425            if (pMidiPortInfo && pMidiPortInfo->params) {
426                    for (i = 0; pMidiPortInfo->params[i].key; i++) {
427                            pszParam = pMidiPortInfo->params[i].key;
428                            printf("\n--- iMidiDevice=%d iMidiPort=%d pszParam=\"%s\" ---\n", iMidiDevice, iMidiPort, pszParam);
429                            CLIENT_TEST(pClient, param_info, lscp_get_midi_port_param_info(pClient, iMidiDevice, iMidiPort, pszParam));
430                    }
431            }
432    }
433    
434    
435    void client_test_audio_channel ( lscp_client_t *pClient, int iAudioDevice, int iAudioChannel )
436    {
437            lscp_device_port_info_t *pAudioChannelInfo;
438            const char *pszParam;
439            int i;
440    
441            printf("\n--- iAudioDevice=%d iAudioChannel=%d ---\n", iAudioDevice, iAudioChannel);
442            CLIENT_TEST(pClient, device_port_info, pAudioChannelInfo = lscp_get_audio_channel_info(pClient, iAudioDevice, iAudioChannel));
443            if (pAudioChannelInfo && pAudioChannelInfo->params) {
444                    for (i = 0; pAudioChannelInfo->params[i].key; i++) {
445                            pszParam = pAudioChannelInfo->params[i].key;
446                            printf("\n--- iAudioDevice=%d iAudioChannel=%d pszParam=\"%s\" ---\n", iAudioDevice, iAudioChannel, pszParam);
447                            CLIENT_TEST(pClient, param_info, lscp_get_audio_channel_param_info(pClient, iAudioDevice, iAudioChannel, pszParam));
448                    }
449            }
450    }
451    
452    
453    void client_test_midi_device ( lscp_client_t *pClient, int iMidiDevice )
454    {
455            lscp_device_info_t *pDeviceInfo;
456            const char *pszValue;
457            int iMidiPort, iMidiPorts;
458    
459            printf("\n--- iMidiDevice=%d ---\n", iMidiDevice);
460            CLIENT_TEST(pClient, device_info, pDeviceInfo = lscp_get_midi_device_info(pClient, iMidiDevice));
461            if (pDeviceInfo && pDeviceInfo->params) {
462                    pszValue = lscp_get_param_value(pDeviceInfo->params, "ports");
463                    if (pszValue) {
464                            iMidiPorts = atoi(pszValue);
465                            for (iMidiPort = 0; iMidiPort < iMidiPorts; iMidiPort++)
466                                    client_test_midi_port(pClient, iMidiDevice, iMidiPort);
467                    }
468            }
469    }
470    
471    
472    void client_test_audio_device ( lscp_client_t *pClient, int iAudioDevice )
473    {
474            lscp_device_info_t *pDeviceInfo;
475            const char *pszValue;
476            int iAudioChannel, iAudioChannels;
477    
478            printf("\n--- iAudioDevice=%d ---\n", iAudioDevice);
479            CLIENT_TEST(pClient, device_info, pDeviceInfo = lscp_get_audio_device_info(pClient, iAudioDevice));
480            if (pDeviceInfo && pDeviceInfo->params) {
481                    pszValue = lscp_get_param_value(pDeviceInfo->params, "channels");
482                    if (pszValue) {
483                            iAudioChannels = atoi(pszValue);
484                            for (iAudioChannel = 0; iAudioChannel < iAudioChannels; iAudioChannel++)
485                                    client_test_audio_channel(pClient, iAudioDevice, iAudioChannel);
486                    }
487            }
488    }
489    
490    
491    void client_test_midi_driver ( lscp_client_t *pClient, const char *pszMidiDriver )
492    {
493            lscp_driver_info_t *pDriverInfo;
494            const char *pszParam;
495            int i;
496    
497            printf("\n--- pszMidiDriver=\"%s\" ---\n", pszMidiDriver);
498            CLIENT_TEST(pClient, driver_info, pDriverInfo = lscp_get_midi_driver_info(pClient, pszMidiDriver));
499            if (pDriverInfo && pDriverInfo->parameters) {
500                    for (i = 0; pDriverInfo->parameters[i]; i++) {
501                            pszParam = pDriverInfo->parameters[i];
502                            printf("\n--- pszMidiDriver=\"%s\" pszParam=\"%s\" ---\n", pszMidiDriver, pszParam);
503                            CLIENT_TEST(pClient, param_info, lscp_get_midi_driver_param_info(pClient, pszMidiDriver, pszParam, NULL));
504                    }
505            }
506    }
507    
508    
509    void client_test_audio_driver ( lscp_client_t *pClient, const char *pszAudioDriver )
510    {
511            lscp_driver_info_t *pDriverInfo;
512            const char *pszParam;
513            int i;
514    
515            printf("\n--- pszAudioDriver=\"%s\" ---\n", pszAudioDriver);
516            CLIENT_TEST(pClient, driver_info, pDriverInfo = lscp_get_audio_driver_info(pClient, pszAudioDriver));
517            if (pDriverInfo && pDriverInfo->parameters) {
518                    for (i = 0; pDriverInfo->parameters[i]; i++) {
519                            pszParam = pDriverInfo->parameters[i];
520                            printf("\n--- pszAudioDriver=\"%s\" pszParam=\"%s\" ---\n", pszAudioDriver, pszParam);
521                            CLIENT_TEST(pClient, param_info, lscp_get_audio_driver_param_info(pClient, pszAudioDriver, pszParam, NULL));
522                    }
523            }
524    }
525    
526    
527    void client_test_all ( lscp_client_t *pClient, int step )
528    {
529            const char **ppszAudioDrivers, **ppszMidiDrivers, **ppszEngines;
530            const char *pszAudioDriver, *pszMidiDriver, *pszEngine;
531            int iAudioDriver, iMidiDriver, iEngine;
532            int iAudio, iAudioDevice, iMidi, iMidiDevice;
533            int iNewAudioDevice, iNewMidiDevice;
534            int *piAudioDevices, *piMidiDevices;
535    
536            g_test_step  = step;
537            g_test_count = 0;
538            g_test_fails = 0;
539    
540            CLIENT_TEST(pClient, server_info, lscp_get_server_info(pClient));
541    
542            CLIENT_TEST(pClient, int, lscp_get_available_audio_drivers(pClient));
543            CLIENT_TEST(pClient, szsplit, ppszAudioDrivers = lscp_list_available_audio_drivers(pClient));
544            if (ppszAudioDrivers == NULL) {
545                    fprintf(stderr, "client_test: No audio drivers available.\n");
546                    return;
547            }
548    
549            CLIENT_TEST(pClient, int, lscp_get_available_midi_drivers(pClient));
550            CLIENT_TEST(pClient, szsplit, ppszMidiDrivers = lscp_list_available_midi_drivers(pClient));
551            if (ppszMidiDrivers == NULL) {
552                    fprintf(stderr, "client_test: No MIDI drivers available.\n");
553                    return;
554            }
555    
556            CLIENT_TEST(pClient, int, lscp_get_available_engines(pClient));
557            CLIENT_TEST(pClient, szsplit, ppszEngines = lscp_list_available_engines(pClient));
558            if (ppszEngines == NULL) {
559                    fprintf(stderr, "client_test: No engines available.\n");
560                    return;
561            }
562    
563            for (iAudioDriver = 0; ppszAudioDrivers[iAudioDriver]; iAudioDriver++) {
564                    pszAudioDriver = ppszAudioDrivers[iAudioDriver];
565                    client_test_audio_driver(pClient, pszAudioDriver);
566                    CLIENT_TEST(pClient, int, iNewAudioDevice = lscp_create_audio_device(pClient, pszAudioDriver, NULL));
567                    CLIENT_TEST(pClient, int, lscp_get_audio_devices(pClient));
568                    CLIENT_TEST(pClient, isplit, piAudioDevices = lscp_list_audio_devices(pClient));
569                    for (iAudio = 0; piAudioDevices && piAudioDevices[iAudio] >= 0; iAudio++) {
570                            iAudioDevice = piAudioDevices[iAudio];
571                            client_test_audio_device(pClient, iAudioDevice);
572                            for (iMidiDriver = 0; ppszMidiDrivers[iMidiDriver]; iMidiDriver++) {
573                                    pszMidiDriver = ppszMidiDrivers[iMidiDriver];
574                                    client_test_midi_driver(pClient, pszMidiDriver);
575                                    CLIENT_TEST(pClient, int, iNewMidiDevice = lscp_create_midi_device(pClient, pszMidiDriver, NULL));
576                                    CLIENT_TEST(pClient, int, lscp_get_midi_devices(pClient));
577                                    CLIENT_TEST(pClient, isplit, piMidiDevices = lscp_list_midi_devices(pClient));
578                                    for (iMidi = 0; piMidiDevices && piMidiDevices[iMidi] >= 0; iMidi++) {
579                                            iMidiDevice = piMidiDevices[iMidi];
580                                            client_test_midi_device(pClient, iMidiDevice);
581                                            for (iEngine = 0; ppszEngines[iEngine]; iEngine++) {
582                                                    pszEngine = ppszEngines[iEngine];
583                                                    client_test_engine(pClient, pszEngine, pszAudioDriver, iAudioDevice, pszMidiDriver, iMidiDevice);
584                                            }
585                                    }
586                                    CLIENT_TEST(pClient, status, lscp_destroy_midi_device(pClient, iNewMidiDevice));
587                            }
588                    }
589                    CLIENT_TEST(pClient, status, lscp_destroy_audio_device(pClient, iNewAudioDevice));
590            }
591    
592            CLIENT_TEST(pClient, status, lscp_set_volume(pClient, 0.123f));
593            CLIENT_TEST(pClient, int, (int) (100.0f * lscp_get_volume(pClient)));
594    
595            CLIENT_TEST(pClient, status, lscp_reset_sampler(pClient));
596            
597            printf("\n\n");
598            printf("  Total: %d tests, %d failed.\n\n", g_test_count, g_test_fails);
599    }
600    
601    
602  ////////////////////////////////////////////////////////////////////////  ////////////////////////////////////////////////////////////////////////
603    
604  void client_usage (void)  void client_usage (void)
605  {  {
606      printf("\n  %s %s (Build: %s)\n", lscp_client_package(), lscp_client_version(), lscp_client_build());          printf("\n  %s %s (Build: %s)\n", lscp_client_package(), lscp_client_version(), lscp_client_build());
607    
608      fputs("\n  Available client commands: help, test, exit, quit, subscribe, unsubscribe", stdout);          fputs("\n  Available commands: help, test[step], exit, quit, subscribe, unsubscribe", stdout);
609      fputs("\n  (all else are sent verbatim to server)\n\n", stdout);          fputs("\n  (all else are sent verbatim to server)\n\n", stdout);
610    
611  }  }
612    
613  void client_prompt (void)  void client_prompt (void)
614  {  {
615      fputs("lscp_client> ", stdout);          fputs("lscp_client> ", stdout);
616  }  }
617    
618  int main (int argc, char *argv[] )  int main (int argc, char *argv[] )
619  {  {
620      lscp_client_t *pClient;          lscp_client_t *pClient;
621      char *pszHost = "localhost";          char *pszHost = "localhost";
622      char  szLine[1024];          char  szLine[1024];
623      int  cchLine;          int  cchLine;
624      lscp_status_t ret;          lscp_status_t ret;
625    
626  #if defined(WIN32)  #if defined(WIN32)
627      if (WSAStartup(MAKEWORD(1, 1), &_wsaData) != 0) {          if (WSAStartup(MAKEWORD(1, 1), &_wsaData) != 0) {
628          fprintf(stderr, "lscp_client: WSAStartup failed.\n");                  fprintf(stderr, "lscp_client: WSAStartup failed.\n");
629          return -1;                  return -1;
630      }          }
631  #endif  #endif
632    
633      if (argc > 1)          if (argc > 1)
634          pszHost = argv[1];                  pszHost = argv[1];
635    
636      pClient = lscp_client_create(pszHost, SERVER_PORT, client_callback, NULL);          pClient = lscp_client_create(pszHost, SERVER_PORT, client_callback, NULL);
637      if (pClient == NULL)          if (pClient == NULL)
638          return -1;                  return -1;
639    
640      client_usage();          client_usage();
641      client_prompt();          client_prompt();
642    
643      while (fgets(szLine, sizeof(szLine) - 3, stdin)) {          while (fgets(szLine, sizeof(szLine) - 3, stdin)) {
644    
645          cchLine = strlen(szLine);                  cchLine = strlen(szLine);
646          while (cchLine > 0 && (szLine[cchLine - 1] == '\n' || szLine[cchLine - 1] == '\r'))                  while (cchLine > 0 && (szLine[cchLine - 1] == '\n' || szLine[cchLine - 1] == '\r'))
647              cchLine--;                          cchLine--;
648          szLine[cchLine] = '\0';                  szLine[cchLine] = '\0';
649    
650          if (strcmp(szLine, "exit") == 0 || strcmp(szLine, "quit") == 0)                  if (strcmp(szLine, "exit") == 0 || strcmp(szLine, "quit") == 0)
651              break;                          break;
652          else                  else
653          if (strcmp(szLine, "subscribe") == 0)                  if (strcmp(szLine, "subscribe") == 0)
654              lscp_client_subscribe(pClient, LSCP_EVENT_MISCELLANEOUS);                          lscp_client_subscribe(pClient, LSCP_EVENT_MISCELLANEOUS);
655          else                  else
656          if (strcmp(szLine, "unsubscribe") == 0)                  if (strcmp(szLine, "unsubscribe") == 0)
657              lscp_client_unsubscribe(pClient, LSCP_EVENT_MISCELLANEOUS);                          lscp_client_unsubscribe(pClient, LSCP_EVENT_MISCELLANEOUS);
658          else                  else
659          if (strcmp(szLine, "test") == 0)                  if (strcmp(szLine, "test") == 0)
660              client_test(pClient);                          client_test_all(pClient, 0);
661          else                  else
662          if (cchLine > 0 && strcmp(szLine, "help") != 0) {                  if (strcmp(szLine, "teststep") == 0 || strcmp(szLine, "test step") == 0)
663              szLine[cchLine++] = '\r';                          client_test_all(pClient, 1);
664              szLine[cchLine++] = '\n';                  else
665              szLine[cchLine]   = '\0';                  if (cchLine > 0 && strcmp(szLine, "help") != 0) {
666              ret = lscp_client_query(pClient, szLine);                          szLine[cchLine++] = '\r';
667              printf("%s\n(errno = %d)\n", lscp_client_get_result(pClient), lscp_client_get_errno(pClient));                          szLine[cchLine++] = '\n';
668              if (ret == LSCP_QUIT)                          szLine[cchLine]   = '\0';
669                  break;                          ret = lscp_client_query(pClient, szLine);
670          }                          printf("%s\n(errno = %d)\n", lscp_client_get_result(pClient), lscp_client_get_errno(pClient));
671          else client_usage();                          if (ret == LSCP_QUIT)
672                                    break;
673                    }
674                    else client_usage();
675    
676          client_prompt();                  client_prompt();
677      }          }
678    
679      lscp_client_destroy(pClient);          lscp_client_destroy(pClient);
680    
681  #if defined(WIN32)  #if defined(WIN32)
682      WSACleanup();          WSACleanup();
683  #endif  #endif
684    
685      return 0;          return 0;
686  }  }
687    
688  // end of example_client.c  // end of example_client.c

Legend:
Removed from v.147  
changed lines
  Added in v.1019

  ViewVC Help
Powered by ViewVC