http.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:21k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*  XMMS - Cross-platform multimedia player
  2.  *  Copyright (C) 1998-2000  Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17.  */
  18. /* modified for FLAC support by Steven Richman (2003) */
  19. #include <sys/types.h>
  20. #include <sys/socket.h>
  21. #include <sys/time.h>
  22. #include <netinet/in.h>
  23. #include <arpa/inet.h>
  24. #include <netdb.h>
  25. #include <glib.h>
  26. #include <string.h>
  27. #include <fcntl.h>
  28. #include <unistd.h>
  29. #include <errno.h>
  30. #include <stdio.h>
  31. #include <stdlib.h>
  32. #include <pthread.h>
  33. #include <xmms/util.h>
  34. #include <xmms/plugin.h>
  35. #ifdef HAVE_CONFIG_H
  36. #include <config.h>
  37. #endif
  38. #include "configure.h"
  39. #include "plugin_common/locale_hack.h"
  40. #include "FLAC/format.h"
  41. #include "plugin.h"
  42. #ifndef HAVE_SOCKLEN_T
  43. typedef unsigned int socklen_t;
  44. #endif
  45. #define min(x,y) ((x)<(y)?(x):(y))
  46. #define min3(x,y,z) (min(x,y)<(z)?min(x,y):(z))
  47. #define min4(x,y,z,w) (min3(x,y,z)<(w)?min3(x,y,z):(w))
  48. static gchar *icy_name = NULL;
  49. static gint icy_metaint = 0;
  50. extern InputPlugin flac_ip;
  51. #undef DEBUG_UDP
  52. /* Static udp channel functions */
  53. static int udp_establish_listener (gint *sock);
  54. static int udp_check_for_data(gint sock);
  55. static char *flac_http_get_title(char *url);
  56. static gboolean prebuffering, going, eof = FALSE;
  57. static gint sock, rd_index, wr_index, buffer_length, prebuffer_length;
  58. static guint64 buffer_read = 0;
  59. static gchar *buffer;
  60. static guint64 offset;
  61. static pthread_t thread;
  62. static GtkWidget *error_dialog = NULL;
  63. static FILE *output_file = NULL;
  64. #define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
  65. /* Encode the string S of length LENGTH to base64 format and place it
  66.    to STORE.  STORE will be 0-terminated, and must point to a writable
  67.    buffer of at least 1+BASE64_LENGTH(length) bytes.  */
  68. static void base64_encode (const gchar *s, gchar *store, gint length)
  69. {
  70. /* Conversion table.  */
  71. static gchar tbl[64] = {
  72. 'A','B','C','D','E','F','G','H',
  73. 'I','J','K','L','M','N','O','P',
  74. 'Q','R','S','T','U','V','W','X',
  75. 'Y','Z','a','b','c','d','e','f',
  76. 'g','h','i','j','k','l','m','n',
  77. 'o','p','q','r','s','t','u','v',
  78. 'w','x','y','z','0','1','2','3',
  79. '4','5','6','7','8','9','+','/'
  80. };
  81. gint i;
  82. guchar *p = (guchar *)store;
  83. /* Transform the 3x8 bits to 4x6 bits, as required by base64.  */
  84. for (i = 0; i < length; i += 3)
  85. {
  86. *p++ = tbl[s[0] >> 2];
  87. *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
  88. *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
  89. *p++ = tbl[s[2] & 0x3f];
  90. s += 3;
  91. }
  92. /* Pad the result if necessary...  */
  93. if (i == length + 1)
  94. *(p - 1) = '=';
  95. else if (i == length + 2)
  96. *(p - 1) = *(p - 2) = '=';
  97. /* ...and zero-terminate it.  */
  98. *p = '';
  99. }
  100. /* Create the authentication header contents for the `Basic' scheme.
  101.    This is done by encoding the string `USER:PASS' in base64 and
  102.    prepending `HEADER: Basic ' to it.  */
  103. static gchar *basic_authentication_encode (const gchar *user, const gchar *passwd, const gchar *header)
  104. {
  105. gchar *t1, *t2, *res;
  106. gint len1 = strlen (user) + 1 + strlen (passwd);
  107. gint len2 = BASE64_LENGTH (len1);
  108. t1 = g_strdup_printf("%s:%s", user, passwd);
  109. t2 = g_malloc0(len2 + 1);
  110. base64_encode (t1, t2, len1);
  111. res = g_strdup_printf("%s: Basic %srn", header, t2);
  112. g_free(t2);
  113. g_free(t1);
  114. return res;
  115. }
  116. static void parse_url(const gchar * url, gchar ** user, gchar ** pass, gchar ** host, int *port, gchar ** filename)
  117. {
  118. gchar *h, *p, *pt, *f, *temp, *ptr;
  119. temp = g_strdup(url);
  120. ptr = temp;
  121. if (!strncasecmp("http://", ptr, 7))
  122. ptr += 7;
  123. h = strchr(ptr, '@');
  124. f = strchr(ptr, '/');
  125. if (h != NULL && (!f || h < f))
  126. {
  127. *h = '';
  128. p = strchr(ptr, ':');
  129. if (p != NULL && p < h)
  130. {
  131. *p = '';
  132. p++;
  133. *pass = g_strdup(p);
  134. }
  135. else
  136. *pass = NULL;
  137. *user = g_strdup(ptr);
  138. h++;
  139. ptr = h;
  140. }
  141. else
  142. {
  143. *user = NULL;
  144. *pass = NULL;
  145. h = ptr;
  146. }
  147. pt = strchr(ptr, ':');
  148. if (pt != NULL && (f == NULL || pt < f))
  149. {
  150. *pt = '';
  151. *port = atoi(pt + 1);
  152. }
  153. else
  154. {
  155. if (f)
  156. *f = '';
  157. *port = 80;
  158. }
  159. *host = g_strdup(h);
  160. if (f)
  161. *filename = g_strdup(f + 1);
  162. else
  163. *filename = NULL;
  164. g_free(temp);
  165. }
  166. void flac_http_close(void)
  167. {
  168. going = FALSE;
  169. pthread_join(thread, NULL);
  170. g_free(icy_name);
  171. icy_name = NULL;
  172. }
  173. static gint http_used(void)
  174. {
  175. if (wr_index >= rd_index)
  176. return wr_index - rd_index;
  177. return buffer_length - (rd_index - wr_index);
  178. }
  179. static gint http_free(void)
  180. {
  181. if (rd_index > wr_index)
  182. return (rd_index - wr_index) - 1;
  183. return (buffer_length - (wr_index - rd_index)) - 1;
  184. }
  185. static void http_wait_for_data(gint bytes)
  186. {
  187. while ((prebuffering || http_used() < bytes) && !eof && going)
  188. xmms_usleep(10000);
  189. }
  190. static void show_error_message(gchar *error)
  191. {
  192. if(!error_dialog)
  193. {
  194. GDK_THREADS_ENTER();
  195. error_dialog = xmms_show_message(_("Error"), error, _("Ok"), FALSE,
  196.  NULL, NULL);
  197. gtk_signal_connect(GTK_OBJECT(error_dialog),
  198.    "destroy",
  199.    GTK_SIGNAL_FUNC(gtk_widget_destroyed),
  200.    &error_dialog);
  201. GDK_THREADS_LEAVE();
  202. }
  203. }
  204. int flac_http_read(gpointer data, gint length)
  205. {
  206. gint len, cnt, off = 0, meta_len, meta_off = 0, i;
  207. gchar *meta_data, **tags, *temp, *title;
  208. if (length > buffer_length) {
  209. length = buffer_length;
  210. }
  211. http_wait_for_data(length);
  212. if (!going)
  213. return 0;
  214. len = min(http_used(), length);
  215. while (len && http_used())
  216. {
  217. if ((flac_cfg.stream.cast_title_streaming) && (icy_metaint > 0) && (buffer_read % icy_metaint) == 0 && (buffer_read > 0))
  218. {
  219. meta_len = *((guchar *) buffer + rd_index) * 16;
  220. rd_index = (rd_index + 1) % buffer_length;
  221. if (meta_len > 0)
  222. {
  223. http_wait_for_data(meta_len);
  224. meta_data = g_malloc0(meta_len);
  225. if (http_used() >= meta_len)
  226. {
  227. while (meta_len)
  228. {
  229. cnt = min(meta_len, buffer_length - rd_index);
  230. memcpy(meta_data + meta_off, buffer + rd_index, cnt);
  231. rd_index = (rd_index + cnt) % buffer_length;
  232. meta_len -= cnt;
  233. meta_off += cnt;
  234. }
  235. tags = g_strsplit(meta_data, "';", 0);
  236. for (i = 0; tags[i]; i++)
  237. {
  238. if (!strncasecmp(tags[i], "StreamTitle=", 12))
  239. {
  240. temp = g_strdup(tags[i] + 13);
  241. title = g_strdup_printf("%s (%s)", temp, icy_name);
  242. set_track_info(title, -1);
  243. g_free(title);
  244. g_free(temp);
  245. }
  246. }
  247. g_strfreev(tags);
  248. }
  249. g_free(meta_data);
  250. }
  251. if (!http_used())
  252. http_wait_for_data(length - off);
  253. cnt = min3(len, buffer_length - rd_index, http_used());
  254. }
  255. else if ((icy_metaint > 0) && (flac_cfg.stream.cast_title_streaming))
  256. cnt = min4(len, buffer_length - rd_index, http_used(), icy_metaint - (gint) (buffer_read % icy_metaint));
  257. else
  258. cnt = min3(len, buffer_length - rd_index, http_used());
  259. if (output_file)
  260. fwrite(buffer + rd_index, 1, cnt, output_file);
  261. memcpy((gchar *)data + off, buffer + rd_index, cnt);
  262. rd_index = (rd_index + cnt) % buffer_length;
  263. buffer_read += cnt;
  264. len -= cnt;
  265. off += cnt;
  266. }
  267. if (!off) {
  268. fprintf(stderr, "returning zeron");
  269. }
  270. return off;
  271. }
  272. static gboolean http_check_for_data(void)
  273. {
  274. fd_set set;
  275. struct timeval tv;
  276. gint ret;
  277. tv.tv_sec = 0;
  278. tv.tv_usec = 20000;
  279. FD_ZERO(&set);
  280. FD_SET(sock, &set);
  281. ret = select(sock + 1, &set, NULL, NULL, &tv);
  282. if (ret > 0)
  283. return TRUE;
  284. return FALSE;
  285. }
  286. gint flac_http_read_line(gchar * buf, gint size)
  287. {
  288. gint i = 0;
  289. while (going && i < size - 1)
  290. {
  291. if (http_check_for_data())
  292. {
  293. if (read(sock, buf + i, 1) <= 0)
  294. return -1;
  295. if (buf[i] == 'n')
  296. break;
  297. if (buf[i] != 'r')
  298. i++;
  299. }
  300. }
  301. if (!going)
  302. return -1;
  303. buf[i] = '';
  304. return i;
  305. }
  306. /* returns the file descriptor of the socket, or -1 on error */
  307. static int http_connect (gchar *url_, gboolean head, guint64 offset)
  308. {
  309. gchar line[1024], *user, *pass, *host, *filename,
  310.      *status, *url, *temp, *file;
  311. gchar *chost;
  312. gint cnt, error, err_len, port, cport;
  313. gboolean redirect;
  314. int udp_sock = 0;
  315. fd_set set;
  316. struct hostent *hp;
  317. struct sockaddr_in address;
  318. struct timeval tv;
  319. url = g_strdup (url_);
  320. do
  321. {
  322. redirect=FALSE;
  323. g_strstrip(url);
  324. parse_url(url, &user, &pass, &host, &port, &filename);
  325. if ((!filename || !*filename) && url[strlen(url) - 1] != '/')
  326. temp = g_strconcat(url, "/", NULL);
  327. else
  328. temp = g_strdup(url);
  329. g_free(url);
  330. url = temp;
  331. chost = flac_cfg.stream.use_proxy ? flac_cfg.stream.proxy_host : host;
  332. cport = flac_cfg.stream.use_proxy ? flac_cfg.stream.proxy_port : port;
  333. sock = socket(AF_INET, SOCK_STREAM, 0);
  334. fcntl(sock, F_SETFL, O_NONBLOCK);
  335. address.sin_family = AF_INET;
  336. status = g_strdup_printf(_("LOOKING UP %s"), chost);
  337. flac_ip.set_info_text(status);
  338. g_free(status);
  339. if (!(hp = gethostbyname(chost)))
  340. {
  341. status = g_strdup_printf(_("Couldn't look up host %s"), chost);
  342. show_error_message(status);
  343. g_free(status);
  344. flac_ip.set_info_text(NULL);
  345. eof = TRUE;
  346. }
  347. if (!eof)
  348. {
  349. memcpy(&address.sin_addr.s_addr, *(hp->h_addr_list), sizeof (address.sin_addr.s_addr));
  350. address.sin_port = (gint) g_htons(cport);
  351. status = g_strdup_printf(_("CONNECTING TO %s:%d"), chost, cport);
  352. flac_ip.set_info_text(status);
  353. g_free(status);
  354. if (connect(sock, (struct sockaddr *) &address, sizeof (struct sockaddr_in)) == -1)
  355. {
  356. if (errno != EINPROGRESS)
  357. {
  358. status = g_strdup_printf(_("Couldn't connect to host %s"), chost);
  359. show_error_message(status);
  360. g_free(status);
  361. flac_ip.set_info_text(NULL);
  362. eof = TRUE;
  363. }
  364. }
  365. while (going)
  366. {
  367. tv.tv_sec = 0;
  368. tv.tv_usec = 10000;
  369. FD_ZERO(&set);
  370. FD_SET(sock, &set);
  371. if (select(sock + 1, NULL, &set, NULL, &tv) > 0)
  372. {
  373. err_len = sizeof (error);
  374. getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &err_len);
  375. if (error)
  376. {
  377. status = g_strdup_printf(_("Couldn't connect to host %s"),
  378.  chost);
  379. show_error_message(status);
  380. g_free(status);
  381. flac_ip.set_info_text(NULL);
  382. eof = TRUE;
  383. }
  384. break;
  385. }
  386. }
  387. if (!eof)
  388. {
  389. gchar *auth = NULL, *proxy_auth = NULL;
  390. gchar udpspace[30];
  391. int udp_port;
  392. if (flac_cfg.stream.use_udp_channel)
  393. {
  394. udp_port = udp_establish_listener (&udp_sock);
  395. if (udp_port > 0) 
  396. sprintf (udpspace, "x-audiocast-udpport: %drn", udp_port);
  397. else
  398. udp_sock = 0;
  399. }
  400. if(user && pass)
  401. auth = basic_authentication_encode(user, pass, "Authorization");
  402. if (flac_cfg.stream.use_proxy)
  403. {
  404. file = g_strdup(url);
  405. if(flac_cfg.stream.proxy_use_auth && flac_cfg.stream.proxy_user && flac_cfg.stream.proxy_pass)
  406. {
  407. proxy_auth = basic_authentication_encode(flac_cfg.stream.proxy_user,
  408.  flac_cfg.stream.proxy_pass,
  409.  "Proxy-Authorization");
  410. }
  411. }
  412. else
  413. file = g_strconcat("/", filename, NULL);
  414. temp = g_strdup_printf("GET %s HTTP/1.0rn"
  415.        "Host: %srn"
  416.        "User-Agent: %s/%srn"
  417.        "%s%s%s%s",
  418.        file, host, "Reference FLAC Player", FLAC__VERSION_STRING, 
  419.        proxy_auth ? proxy_auth : "", auth ? auth : "",
  420.        flac_cfg.stream.cast_title_streaming ?  "Icy-MetaData:1rn" : "",
  421.        flac_cfg.stream.use_udp_channel ? udpspace : "");
  422. if (offset && !head) {
  423. gchar *temp_dead = temp;
  424. temp = g_strconcat ("%sRange: %ll-rn", temp, offset);
  425. fprintf (stderr, "%s", temp);
  426. g_free (temp_dead);
  427. }
  428. g_free(file);
  429. if(proxy_auth)
  430. g_free(proxy_auth);
  431. if(auth)
  432. g_free(auth);
  433. write(sock, temp, strlen(temp));
  434. write(sock, "rn", 2);
  435. g_free(temp);
  436. flac_ip.set_info_text(_("CONNECTED: WAITING FOR REPLY"));
  437. while (going && !eof)
  438.   {
  439. if (http_check_for_data())
  440. {
  441. if (flac_http_read_line(line, 1024))
  442. {
  443. status = strchr(line, ' ');
  444. if (status)
  445. {
  446. if (status[1] == '2')
  447. break;
  448. else if(status[1] == '3' && status[2] == '0' && status[3] == '2')
  449. {
  450. while(going)
  451. {
  452. if(http_check_for_data())
  453. {
  454. if((cnt = flac_http_read_line(line, 1024)) != -1)
  455. {
  456. if(!cnt)
  457. break;
  458. if(!strncmp(line, "Location:", 9))
  459. {
  460. g_free(url);
  461. url = g_strdup(line+10);
  462. }
  463. }
  464. else
  465. {
  466. eof=TRUE;
  467. flac_ip.set_info_text(NULL);
  468. break;
  469. }
  470. }
  471. }
  472. redirect=TRUE;
  473. break;
  474. }
  475. else
  476. {
  477. status = g_strdup_printf(_("Couldn't connect to host %snServer reported: %s"), chost, status);
  478. show_error_message(status);
  479. g_free(status);
  480. break;
  481. }
  482. }
  483. }
  484. else
  485. {
  486. eof = TRUE;
  487. flac_ip.set_info_text(NULL);
  488. }
  489. }
  490. }
  491. while (going && !redirect)
  492. {
  493. if (http_check_for_data())
  494. {
  495. if ((cnt = flac_http_read_line(line, 1024)) != -1)
  496. {
  497. if (!cnt)
  498. break;
  499. if (!strncmp(line, "icy-name:", 9))
  500. icy_name = g_strdup(line + 9);
  501. else if (!strncmp(line, "x-audiocast-name:", 17))
  502. icy_name = g_strdup(line + 17);
  503. if (!strncmp(line, "icy-metaint:", 12))
  504. icy_metaint = atoi(line + 12);
  505. if (!strncmp(line, "x-audiocast-udpport:", 20)) {
  506. #ifdef DEBUG_UDP
  507. fprintf (stderr, "Server wants udp messages on port %dn", atoi (line + 20));
  508. #endif
  509. /*udp_serverport = atoi (line + 20);*/
  510. }
  511. }
  512. else
  513. {
  514. eof = TRUE;
  515. flac_ip.set_info_text(NULL);
  516. break;
  517. }
  518. }
  519. }
  520. }
  521. }
  522. if(redirect)
  523. {
  524. if (output_file)
  525. {
  526. fclose(output_file);
  527. output_file = NULL;
  528. }
  529. close(sock);
  530. }
  531. g_free(user);
  532. g_free(pass);
  533. g_free(host);
  534. g_free(filename);
  535. } while(redirect);
  536. g_free(url);
  537. return eof ? -1 : sock;
  538. }
  539. static void *http_buffer_loop(void *arg)
  540. {
  541. gchar *status, *url, *temp, *file;
  542. gint cnt, written;
  543. int udp_sock = 0;
  544. url = (gchar *) arg;
  545. sock = http_connect (url, false, offset);
  546. if (sock >= 0 && flac_cfg.stream.save_http_stream) {
  547. gchar *output_name;
  548. file = flac_http_get_title(url);
  549. output_name = file;
  550. if (!strncasecmp(output_name, "http://", 7))
  551. output_name += 7;
  552. temp = strrchr(output_name, '.');
  553. if (temp && (!strcasecmp(temp, ".fla") || !strcasecmp(temp, ".flac")))
  554. *temp = '';
  555. while ((temp = strchr(output_name, '/')))
  556. *temp = '_';
  557. output_name = g_strdup_printf("%s/%s.flac", flac_cfg.stream.save_http_path, output_name);
  558. g_free(file);
  559. output_file = fopen(output_name, "wb");
  560. g_free(output_name);
  561. }
  562. while (going)
  563. {
  564. if (!http_used() && !flac_ip.output->buffer_playing())
  565. prebuffering = TRUE;
  566. if (http_free() > 0 && !eof)
  567. {
  568. if (http_check_for_data())
  569. {
  570. cnt = min(http_free(), buffer_length - wr_index);
  571. if (cnt > 1024)
  572. cnt = 1024;
  573. written = read(sock, buffer + wr_index, cnt);
  574. if (written <= 0)
  575. {
  576. eof = TRUE;
  577. if (prebuffering)
  578. {
  579. prebuffering = FALSE;
  580. flac_ip.set_info_text(NULL);
  581. }
  582. }
  583. else
  584. wr_index = (wr_index + written) % buffer_length;
  585. }
  586. if (prebuffering)
  587. {
  588. if (http_used() > prebuffer_length)
  589. {
  590. prebuffering = FALSE;
  591. flac_ip.set_info_text(NULL);
  592. }
  593. else
  594. {
  595. status = g_strdup_printf(_("PRE-BUFFERING: %dKB/%dKB"), http_used() / 1024, prebuffer_length / 1024);
  596. flac_ip.set_info_text(status);
  597. g_free(status);
  598. }
  599. }
  600. }
  601. else
  602. xmms_usleep(10000);
  603. if (flac_cfg.stream.use_udp_channel && udp_sock != 0)
  604. if (udp_check_for_data(udp_sock) < 0)
  605. {
  606. close(udp_sock);
  607. udp_sock = 0;
  608. }
  609. }
  610. if (output_file)
  611. {
  612. fclose(output_file);
  613. output_file = NULL;
  614. }
  615. if (sock >= 0) {
  616. close(sock);
  617. }
  618. if (udp_sock != 0)
  619. close(udp_sock);
  620. g_free(buffer);
  621. g_free(url);
  622. pthread_exit(NULL);
  623. return NULL; /* avoid compiler warning */
  624. }
  625. int flac_http_open(gchar * _url, guint64 _offset)
  626. {
  627. gchar *url;
  628. url = g_strdup(_url);
  629. rd_index = 0;
  630. wr_index = 0;
  631. buffer_length = flac_cfg.stream.http_buffer_size * 1024;
  632. prebuffer_length = (buffer_length * flac_cfg.stream.http_prebuffer) / 100;
  633. buffer_read = 0;
  634. icy_metaint = 0;
  635. prebuffering = TRUE;
  636. going = TRUE;
  637. eof = FALSE;
  638. buffer = g_malloc(buffer_length);
  639. offset = _offset;
  640. pthread_create(&thread, NULL, http_buffer_loop, url);
  641. return 0;
  642. }
  643. char *flac_http_get_title(char *url)
  644. {
  645. if (icy_name)
  646. return g_strdup(icy_name);
  647. if (g_basename(url) && strlen(g_basename(url)) > 0)
  648. return g_strdup(g_basename(url));
  649. return g_strdup(url);
  650. }
  651. /* Start UDP Channel specific stuff */
  652. /* Find a good local udp port and bind udp_sock to it, return the port */
  653. static int udp_establish_listener(int *sock)
  654. {
  655. struct sockaddr_in sin;
  656. socklen_t sinlen = sizeof (struct sockaddr_in);
  657. #ifdef DEBUG_UDP
  658. fprintf (stderr,"Establishing udp listenern");
  659. #endif
  660. if ((*sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
  661. {
  662. g_log(NULL, G_LOG_LEVEL_CRITICAL,
  663.       "udp_establish_listener(): unable to create socket");
  664. return -1;
  665. }
  666. memset(&sin, 0, sinlen);
  667. sin.sin_family = AF_INET;
  668. sin.sin_addr.s_addr = g_htonl(INADDR_ANY);
  669. if (bind(*sock, (struct sockaddr *)&sin, sinlen) < 0)
  670. {
  671. g_log(NULL, G_LOG_LEVEL_CRITICAL,
  672.       "udp_establish_listener():  Failed to bind socket to localhost: %s", strerror(errno));
  673. close(*sock);
  674. return -1;
  675. }
  676. if (fcntl(*sock, F_SETFL, O_NONBLOCK) < 0)
  677. {
  678. g_log(NULL, G_LOG_LEVEL_CRITICAL,
  679.       "udp_establish_listener():  Failed to set flags: %s", strerror(errno));
  680. close(*sock);
  681. return -1;
  682. }
  683. memset(&sin, 0, sinlen);
  684. if (getsockname(*sock, (struct sockaddr *)&sin, &sinlen) < 0)
  685. {
  686. g_log(NULL, G_LOG_LEVEL_CRITICAL,
  687.       "udp_establish_listener():  Failed to retrieve socket info: %s", strerror(errno));
  688. close(*sock);
  689. return -1;
  690. }
  691. #ifdef DEBUG_UDP
  692. fprintf (stderr,"Listening on local %s:%dn", inet_ntoa(sin.sin_addr), g_ntohs(sin.sin_port));
  693. #endif
  694. return g_ntohs(sin.sin_port);
  695. }
  696. static int udp_check_for_data(int sock)
  697. {
  698. char buf[1025], **lines;
  699. char *valptr;
  700. gchar *title;
  701. gint len, i;
  702. struct sockaddr_in from;
  703. socklen_t fromlen;
  704. fromlen = sizeof(struct sockaddr_in);
  705. if ((len = recvfrom(sock, buf, 1024, 0, (struct sockaddr *)&from, &fromlen)) < 0)
  706. {
  707. if (errno != EAGAIN)
  708. {
  709. g_log(NULL, G_LOG_LEVEL_CRITICAL,
  710.       "udp_read_data(): Error reading from socket: %s", strerror(errno));
  711. return -1;
  712. }
  713. return 0;
  714. }
  715. buf[len] = '';
  716. #ifdef DEBUG_UDP
  717. fprintf (stderr,"Received: [%s]n", buf);
  718. #endif
  719. lines = g_strsplit(buf, "n", 0);
  720. if (!lines)
  721. return 0;
  722. for (i = 0; lines[i]; i++)
  723. {
  724. while ((lines[i][strlen(lines[i]) - 1] == 'n') ||
  725.        (lines[i][strlen(lines[i]) - 1] == 'r'))
  726. lines[i][strlen(lines[i]) - 1] = '';
  727. valptr = strchr(lines[i], ':');
  728. if (!valptr)
  729. continue;
  730. else
  731. valptr++;
  732. g_strstrip(valptr);
  733. if (!strlen(valptr))
  734. continue;
  735. if (strstr(lines[i], "x-audiocast-streamtitle") != NULL)
  736. {
  737. title = g_strdup_printf ("%s (%s)", valptr, icy_name);
  738. if (going)
  739. set_track_info(title, -1);
  740. g_free (title);
  741. }
  742. #if 0
  743. else if (strstr(lines[i], "x-audiocast-streamlength") != NULL)
  744. {
  745. if (atoi(valptr) != -1)
  746. set_track_info(NULL, atoi(valptr));
  747. }
  748. #endif
  749. else if (strstr(lines[i], "x-audiocast-streammsg") != NULL)
  750. {
  751. /* set_track_info(title, -1); */
  752. /*   xmms_show_message(_("Message"), valptr, _("Ok"), */
  753. /*     FALSE, NULL, NULL); */
  754. g_message("Stream_message: %s", valptr);
  755. }
  756. #if 0
  757. /* Use this to direct your webbrowser.. yeah right.. */
  758. else if (strstr(lines[i], "x-audiocast-streamurl") != NULL)
  759. {
  760. if (lasturl && g_strcmp (valptr, lasturl))
  761. {
  762. c_message (stderr, "Song URL: %sn", valptr);
  763. g_free (lasturl);
  764. lasturl = g_strdup (valptr);
  765. }
  766. }
  767. #endif
  768. else if (strstr(lines[i], "x-audiocast-udpseqnr:") != NULL)
  769. {
  770. gchar obuf[60];
  771. sprintf(obuf, "x-audiocast-ack: %ld rn", atol(valptr));
  772. if (sendto(sock, obuf, strlen(obuf), 0, (struct sockaddr *) &from, fromlen) < 0)
  773. {
  774. g_log(NULL, G_LOG_LEVEL_WARNING,
  775.       "udp_check_for_data(): Unable to send ack to server: %s", strerror(errno));
  776. }
  777. #ifdef DEBUG_UDP
  778. else
  779. fprintf(stderr,"Sent ack: %s", obuf);
  780. fprintf (stderr,"Remote: %s:%dn", inet_ntoa(from.sin_addr), g_ntohs(from.sin_port));
  781. #endif
  782. }
  783. }
  784. g_strfreev(lines);
  785. return 0;
  786. }