Implement consume, single mode.
[libmpd.git] / example / speedtest / example.c
blobf033df7fd04868f477165067ac97824c82f26e54
1 /* libmpd (high level libmpdclient library)
2 * Copyright (C) 2004-2009 Qball Cow <qball@sarine.nl>
3 * Project homepage: http://gmpcwiki.sarine.nl/
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "../../src/libmpdclient.h"
22 #include <stdio.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <stdlib.h>
27 int main(int argc, char ** argv) {
28 char *string;
29 mpd_Connection * conn;
30 conn = mpd_newConnection("192.150.0.108",6600,10);
32 if(conn->error) {
33 fprintf(stderr,"%s\n",conn->errorStr);
34 mpd_closeConnection(conn);
35 return -1;
37 int i=0;
38 // for(i=0;i<1000;i++)
39 // {
40 /*/
41 mpd_sendCommandsCommand(conn);
42 while (( string = mpd_getNextCommand(conn)) != NULL)
44 //printf("%s\n", string);
45 free(string);
47 mpd_finishCommand(conn);
49 // }
58 for(i=0;i<100;i++)
60 mpd_sendPlChangesCommand(conn,0);
61 mpd_InfoEntity *ent = NULL;
62 while((ent = mpd_getNextInfoEntity(conn)) != NULL){
63 // printf("%s\n", ent->info.song->artist);
64 mpd_freeInfoEntity(ent);
67 mpd_closeConnection(conn);
69 return 0;