forked from kabavol/LMSMonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsliminfo.c
More file actions
299 lines (247 loc) · 7.7 KB
/
Copy pathsliminfo.c
File metadata and controls
299 lines (247 loc) · 7.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*
* sliminfo.c
*
* (c) 2015 László TÓTH
*
* Todo: Reconect to server
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* See <http://www.gnu.org/licenses/> to get a copy of the GNU General
* Public License.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <poll.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>
#include <pthread.h>
#include "common.h"
#include "tagUtils.h"
#include "sliminfo.h"
int LMSPort;
char *LMSHost = NULL;
char playerID[BSIZE] = {0};
char query[BSIZE] = {0};
char stb[BSIZE];
int sockFD = 0;
struct sockaddr_in serv_addr;
tag tagStore[MAXTAG_TYPES];
int refreshRequ;
pthread_t sliminfoThread;
int discoverPlayer(char *playerName) {
char qBuffer[BSIZE];
char aBuffer[BSIZE];
int bytes;
// I've not found this feature in the CLI spec,
// but if you send the player name, the server answer with the player ID.
if (playerName != NULL) {
if(strlen(playerName) > (BSIZE/3)) { abort("ERROR too long player name!"); }
encode(playerName, aBuffer);
sprintf(qBuffer, "%s\n", aBuffer);
if (write(sockFD, qBuffer, strlen(qBuffer)) < 0) { abort("ERROR writing to socket!"); }
if ((bytes = read(sockFD, aBuffer, BSIZE-1)) < 0) { abort("ERROR reading from socket!"); }
aBuffer[bytes] = 0;
if (strncmp(qBuffer, aBuffer, strlen(aBuffer)) == 0) { abort("Player not found!"); }
decode(aBuffer, playerID);
} else {
return -1;
}
sprintf (stb, "PlayerName: %s, PlayerID: %s\n", playerName, playerID);
putMSG (stb, LL_INFO);
return 0;
}
int setStaticServer(void) {
LMSPort = 9090;
LMSHost = NULL; // autodiscovery
// LMSHost = (char *)"127.0.0.1";
// LMSHost = (char *)"192.168.1.252";
return 0;
}
/*
* LMS server discover
*
* code from: https://code.google.com/p/squeezelite/source/browse/slimproto.c
*
*/
in_addr_t getServerAddress(void) {
#define PORT 3483
struct sockaddr_in d;
struct sockaddr_in s;
char *buf;
struct pollfd pollinfo;
if (LMSHost != NULL) {
// Static server address
memset(&s, 0, sizeof(s));
inet_pton(AF_INET, LMSHost, &(s.sin_addr));
} else {
// Discover server address
int disc_sock = socket(AF_INET, SOCK_DGRAM, 0);
socklen_t enable = 1;
setsockopt(disc_sock, SOL_SOCKET, SO_BROADCAST, (const void *)&enable, sizeof(enable));
buf = (char *)"e";
memset(&d, 0, sizeof(d));
d.sin_family = AF_INET;
d.sin_port = htons(PORT);
d.sin_addr.s_addr = htonl(INADDR_BROADCAST);
pollinfo.fd = disc_sock;
pollinfo.events = POLLIN;
do {
putMSG ("Sending discovery...\n", LL_INFO);
memset(&s, 0, sizeof(s));
if (sendto(disc_sock, buf, 1, 0, (struct sockaddr *)&d, sizeof(d)) < 0) {
putMSG ("Error sending disovery\n", LL_INFO);
}
if (poll(&pollinfo, 1, 5000) == 1) {
char readbuf[10];
socklen_t slen = sizeof(s);
recvfrom(disc_sock, readbuf, 10, 0, (struct sockaddr *)&s, &slen);
sprintf(stb, "Got response from: %s:%d\n", inet_ntoa(s.sin_addr), ntohs(s.sin_port));
putMSG (stb, LL_INFO);
}
} while (s.sin_addr.s_addr == 0);
close(disc_sock);
}
return s.sin_addr.s_addr;
}
/*******************************************************************************
*
******************************************************************************/
void askRefresh(void) {
refreshRequ = true;
}
/*******************************************************************************
*
******************************************************************************/
int isRefreshed(void) {
return !refreshRequ;
}
/*******************************************************************************
*
******************************************************************************/
void refreshed(void) {
refreshRequ = false;
}
/*******************************************************************************
*
******************************************************************************/
int connectServer(void) {
int sfd;
if (setStaticServer() < 0) {
abort("Failed to find LMS server!");
}
if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
abort("Failed to opening socket!");
}
memset(&serv_addr, 0, sizeof(serv_addr));
// memcpy(&serv_addr.sin_addr.s_addr, server->h_addr, server->h_length);
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = getServerAddress();
serv_addr.sin_port = htons(LMSPort);
if (connect(sfd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0) {
fprintf(stderr, "No such host: %s\n", inet_ntoa(serv_addr.sin_addr));
close(sfd);
return -1;
}
return sfd;
}
/*******************************************************************************
*
******************************************************************************/
void closeSliminfo(void) {
if (sockFD > 0) {
close(sockFD);
}
for(int i = 0; i < MAXTAG_TYPES; i++) {
if(tagStore[i].tagData != NULL) {
free(tagStore[i].tagData);
}
}
}
/*******************************************************************************
*
******************************************************************************/
tag *initTagStore(void) {
tagStore[SAMPLESIZE].name = "samplesize";
tagStore[SAMPLERATE].name = "samplerate";
tagStore[TIME].name = "time";
tagStore[DURATION].name = "duration";
tagStore[TITLE].name = "title";
tagStore[ALBUM].name = "album";
tagStore[ARTIST].name = "artist";
tagStore[ALBUMARTIST].name = "albumartist";
tagStore[COMPOSER].name = "composer";
tagStore[CONDUCTOR].name = "conductor";
tagStore[MODE].name = "mode";
for(int i = 0; i < MAXTAG_TYPES; i++) {
if ((tagStore[i].tagData = (char *)malloc(MAXTAG_DATA * sizeof(char))) == NULL) {
closeSliminfo();
return NULL;
} else {
tagStore[i].displayName = "";
tagStore[i].valid = false;
tagStore[i].changed = false;
}
}
return tagStore;
}
void *serverPolling(void *x_voidptr){
char buffer[BSIZE];
char tagData[BSIZE];
int rbytes;
while (true) {
if (!isRefreshed()) {
if (write(sockFD, query, strlen(query)) < 0) { abort("ERROR writing to socket"); }
if ((rbytes = read(sockFD, buffer, BSIZE-1)) < 0) { abort("ERROR reading from socket"); }
buffer[rbytes] = 0;
for(int i = 0; i < MAXTAG_TYPES; i++) {
if ((getTag((char *)tagStore[i].name, buffer, tagData, BSIZE)) != NULL) {
if (strcmp(tagData, tagStore[i].tagData) != 0) {
strncpy(tagStore[i].tagData, tagData, MAXTAG_DATA);
tagStore[i].changed = true;
}
tagStore[i].valid = true;
} else {
tagStore[i].valid = false;
}
}
// pTime = getMinute("time", buffer);
// duration = getMinute("duration", buffer);
// printf("%3ld:%02ld %s %ld:%02ld\n", pTime/60, pTime%60, isPlaying(buffer) ? ">" : "II", duration/60, duration%60);
// printf("\n");
refreshed();
sleep(1);
}
}
return NULL;
}
tag *initSliminfo(char *playerName) {
if (setStaticServer() < 0) { return NULL; }
if ((sockFD = connectServer()) < 0) { return NULL; }
if (discoverPlayer(playerName) < 0) { return NULL; }
sprintf(query, "%s status - 1 tags:aAlCIT\n", playerID); // alrTy
int x = 0;
if (initTagStore() != NULL) {
askRefresh();
if (pthread_create(&sliminfoThread, NULL, serverPolling, &x) != 0) {
closeSliminfo();
abort("Failed to create sliminfo thread!");
}
} else {return NULL;}
return tagStore;
}