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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
|
/* http.c
* Copyright (C) 2002 Evgeny Chukreev <codedj@echo.ru>
* Copyright (C) 2002 Andy Lo A Foe <andy@loafoe.com>
*
* This file is part of AlsaPlayer.
*
* AlsaPlayer 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.
*
* AlsaPlayer 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/
#include "config.h"
#include <stdlib.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/time.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <pthread.h>
#include "reader.h"
#include "alsaplayer_error.h"
#include "utilities.h"
#include "prefs.h"
#include "ap_string.h"
#include "ap_unused.h"
typedef struct http_desc_t_ {
/* Info about stream */
char *host, *path;
int port;
int sock;
long size; /* Total size of stream (0 if unknown ) */
int seekable;
/* Info about reading */
int direction; /* Reading direction. */
int played_parts; /* How much parts (of 16) use for played data */
long pos; /* Current position where reader is */
/* Buffer stuff */
pthread_t buffer_thread;
pthread_mutex_t buffer_lock;
void *buffer;
int buffer_pos; /* Pos of the byte which will be readed from server */
int begin; /* Pos of first byte in the buffer. */
int len; /* Length of the buffered data. */
/* Metadata stuff */
pthread_mutex_t meta_lock;
char *metadata;
int icy_metaint;
/* Variables to notify buffer_thread about one pass of non-blocking mode */
pthread_cond_t dont_wait_signal;
int dont_wait;
/* Variables to notify http_read when we have new data block for this function */
pthread_cond_t new_datablock_signal;
int new_datablock;
/* Status of this stream */
int error; /* 0 if none */
int going; /* True if buffer is filling. */
/* Callback info */
reader_status_type status;
void *data;
} http_desc_t;
/* How much data we should read at once? (bytes)*/
#define HTTP_BLOCK_SIZE (32*1024)
/* How long should be buffer? (bytes) */
#define DEFAULT_HTTP_BUFFER_SIZE (1*1024*1024)
int http_buffer_size;
/* Maximum waiting time in thread (secs, float) */
#define MAX_WAIT_TIME 1000000.0
/* Debug mode on/off */
/*#define DEBUG_HTTP_BUFFERING 0*/
/* --------------------------------------------------------------- */
/* ----------------------------- MISC FUNCTIONS ------------------ */
static int cond_timedwait_relative (pthread_cond_t *cond, pthread_mutex_t *mut, unsigned long delay)
{
struct timeval now;
struct timespec timeout;
gettimeofday (&now, NULL);
timeout.tv_sec = now.tv_sec + delay / 1000000;
timeout.tv_nsec = (now.tv_usec + delay % 1000000) * 1000;
return pthread_cond_timedwait (cond, mut, &timeout);
}
/* ------------------------------------------------ */
static int calc_time_to_wait (http_desc_t *desc)
{
int timetowait;
int suggested_len = ((long int)http_buffer_size * (long int)(16-desc->played_parts)) / 16;
int useless_buffer_len = desc->pos - desc->begin;
int useful_buffer_len = desc->len - useless_buffer_len;
/* if size of stream is known we could use it to limit suggested len */
if (desc->size) {
int rest_of_stream = desc->size - desc->buffer_pos;
if (rest_of_stream < suggested_len)
suggested_len = rest_of_stream;
};
/* check for possible overtime */
if (useful_buffer_len > suggested_len)
return (int)MAX_WAIT_TIME;
/* calculate waiting time */
timetowait = (int)((float)useful_buffer_len / (float)suggested_len * MAX_WAIT_TIME);
return timetowait;
}
/* ------------------------------------------------ */
static void
shrink_buffer (http_desc_t *desc)
{
int low_pos = desc->begin + ((long int)http_buffer_size * (long int)desc->played_parts) / 16;
/* trying to shrink buffer */
if (desc->len + HTTP_BLOCK_SIZE > http_buffer_size && desc->pos > low_pos) {
void *newbuf;
int shrinking_len = desc->pos - low_pos;
desc->len -= shrinking_len;
desc->begin += shrinking_len;
/* allocate new buffer with the part of old one */
newbuf = malloc (desc->len);
memcpy (newbuf, desc->buffer + shrinking_len, desc->len);
/* replace old buffer */
free (desc->buffer);
desc->buffer = newbuf;
}
}
/* ------------------------------------------------ */
static void
status_notify (http_desc_t *desc)
{
char sbuf[1024];
if (!desc->dont_wait && desc->status) {
int bck_len = desc->pos - desc->begin;
int fwd_len = desc->len - bck_len;
if (desc->seekable)
snprintf (sbuf, 1023, "Buf %dK | %dK", fwd_len/1024, bck_len/1024);
else
snprintf (sbuf, 1023, "Buf %dK", fwd_len/1024);
desc->status (desc->data, sbuf);
}
}
/* ------------------------------------------------ */
#ifdef DEBUG_HTTP_BUFFERING
static void print_debug_info (http_desc_t *desc)
{
struct timeval now;
gettimeofday (&now, NULL);
printf ("%lld %ld %d %d %ld %d\n", (long long int)now.tv_sec * 1000 + (long long int)now.tv_usec/1000,
desc->size, desc->begin, desc->begin + desc->len,
desc->pos, desc->buffer_pos);
}
#endif
/* --------------------------------------------------------------- */
/* ---------------------- NETWORK RELATED FUNCTIONS -------------- */
/* ******************************************************************* */
/* Parse URI. */
static int parse_uri (const char *uri, char **host, int *port, char **path)
{
char *slash, *colon;
int l;
*port = 80;
/* Trying to find end of a host part */
slash = strchr (uri+7, '/');
colon = strchr (uri+7, ':');
if ((slash && colon && slash > colon) || (!slash && colon)) {
/* As I see, there is port specified */
char *s;
*port = (int)strtol (colon+1, &s, 10);
/* Test, port should be digit */
if ((slash && s!=slash) || (!slash && *s!='\0')) {
alsaplayer_error ("\nHTTP: Couldn't open %s: Port -- parse error.", uri);
return -1;
}
/* Calculate host part length */
l = colon - uri - 7;
} else {
/* Calculate host part length */
l = slash ? slash - uri - 7 : (int) strlen (uri+7);
}
/* Reset port if URI looks like 'foo.bar:/aaa.mp3' */
if (colon && slash && slash==colon+1)
*port = 80;
/* Split URI */
//if (*host)
// free(*host);
*host = malloc (l+1);
ap_strlcpy (*host, uri+7, l+1);
//if (*path)
// free(*path);
*path = strdup (slash ? slash : "/");
return 0;
} /* end of: parse_uri */
/* ******************************************************************* */
/* Sleep for data. */
static int sleep_for_data (int sock)
{
fd_set set;
struct timeval tv;
tv.tv_sec = 5;
tv.tv_usec = 0;
FD_ZERO (&set);
FD_SET (sock, &set);
if (select (sock+1, &set, NULL, NULL, &tv) < 1) {
alsaplayer_error ("HTTP: Connection is too slow.");
return 1;
}
return 0;
} /* end of: sleep_for_data */
/* ******************************************************************* */
/* Receive response head. */
static int get_response_head (int sock, char *response, int max)
{
int len = 0;
while (len < 4 || memcmp (response + len - 4, "\r\n\r\n", 4)) {
/* check for overflow */
if (len >= max) {
alsaplayer_error ("HTTP: Response is too long.");
return 1;
}
/* wait for data */
if (sleep_for_data (sock)) return 1;
/* read */
if (read (sock, response + len, 1) <=0 )
break;
len += 1;
}
/* terminate string */
response [len] = '\0';
return 0;
} /* end of: get_response_head */
/* ******************************************************************* */
/* Read data from stream. */
/* Returns amount of data readed. */
static int read_data (int sock, void *ptr, size_t size)
{
int len;
/* wait for data */
if (sleep_for_data (sock)) {
return -1;
}
len = recv (sock, ptr, size, 0);
if (len == -1 && errno == EAGAIN) {
return 0;
}
return len;
} /* end of: read_data */
/* ******************************************************************* */
/* Buffer filling thread. */
static void buffer_thread (http_desc_t *desc)
{
pthread_mutex_t mut; /* Temporary mutex. */
int BLOCK_SIZE = HTTP_BLOCK_SIZE;
void *ibuffer;
int rest = 0;
int metasize = 0, metapos = 0, extra_read = 0;
char *p;
/* Init */
pthread_mutex_init (&mut, NULL);
if (desc->icy_metaint) {
BLOCK_SIZE = (HTTP_BLOCK_SIZE > desc->icy_metaint) ? desc->icy_metaint : HTTP_BLOCK_SIZE;
}
ibuffer = malloc (BLOCK_SIZE << 1);
/* Process while main thread allow it. */
while (desc->going) {
void *newbuf;
int readed;
#ifdef DEBUG_HTTP_BUFFERING
print_debug_info (desc);
#endif
rest = metasize = 0;
/* trying to shrink buffer */
pthread_mutex_lock (&desc->buffer_lock);
shrink_buffer (desc);
pthread_mutex_unlock (&desc->buffer_lock);
/* let them know about our state, heh */
status_notify (desc);
/* check for overflow */
if (desc->len > http_buffer_size) {
/* Notice waiting function that the new block of data has arrived */
desc->new_datablock = 1;
pthread_cond_signal (&desc->new_datablock_signal);
/* Make pause */
if (!desc->dont_wait) {
pthread_mutex_lock (&mut);
cond_timedwait_relative (&desc->dont_wait_signal, &mut, calc_time_to_wait (desc));
pthread_mutex_unlock (&mut);
} else {
desc->dont_wait--;
}
continue;
}
/* read to internal buffer */
readed = read_data (desc->sock, ibuffer, BLOCK_SIZE);
/* reasons to stop */
if (readed == 0) {
desc->going = 0;
} else if (readed <0) {
desc->error = 1;
desc->going = 0;
} else {
/* Something readed */
/* Metadata stuff */
if (desc->icy_metaint > 0 &&
(desc->buffer_pos+readed) > desc->icy_metaint) {
/* Metadata block is next! */
rest = (desc->buffer_pos+readed) - desc->icy_metaint;
p = ((char *)ibuffer);
p += (readed-rest);
metapos = (readed-rest);
if (rest) {
metasize = *(int8_t *)p;
metasize <<= 4;
if (rest < metasize) {
/* Uh oh, big trouble ahead, or maybe not? */
extra_read = read_data (desc->sock, ibuffer+readed, metasize);
readed += extra_read;
rest += extra_read;
}
if (metasize > 4080) {
alsaplayer_error("Invalid metasize (%d)", metasize);
} else if (metasize > 0) {
p++;
p[metasize] = '\0';
pthread_mutex_lock (&desc->meta_lock);
if (desc->metadata) {
free(desc->metadata);
}
desc->metadata = malloc(strlen(p)+1);
memcpy(desc->metadata, p, strlen(p));
pthread_mutex_unlock (&desc->meta_lock);
} else {
/* Metadata is zero length */
}
} else {
alsaplayer_error("Rest = 0???");
}
metasize++; /* Length byte */
} else {
desc->buffer_pos += readed;
}
/* These operations are fast. -> doesn't break reader_read */
/* ---------------- lock buffer ( */
pthread_mutex_lock (&desc->buffer_lock);
/* enlarge buffer */
newbuf = malloc (desc->len + (BLOCK_SIZE * 2)); /* HTTP_BLOCK_SIZE */
memcpy (newbuf, desc->buffer, desc->len);
if (metasize) {
memcpy(newbuf + desc->len, ibuffer, metapos);
memcpy(newbuf + desc->len + metapos, ibuffer+metapos+metasize, rest - metasize);
readed -= metasize;
desc->buffer_pos = rest - metasize;
} else {
memcpy (newbuf + desc->len, ibuffer, readed);
}
/* switch buffers */
free (desc->buffer);
desc->buffer = newbuf;
desc->len += readed;
/* unlock buffer ) */
pthread_mutex_unlock (&desc->buffer_lock);
}
/* Notice waiting function that the new block of data has arrived */
desc->new_datablock = 1;
pthread_cond_signal (&desc->new_datablock_signal);
/* Do wait */
if (desc->going && !desc->dont_wait) {
pthread_mutex_lock (&mut);
cond_timedwait_relative (&desc->dont_wait_signal, &mut, calc_time_to_wait (desc));
pthread_mutex_unlock (&mut);
}
if (desc->dont_wait)
desc->dont_wait--;
}
free (ibuffer);
pthread_exit (NULL);
} /* end of: buffer_thread */
/* ******************************************************************* */
/* close exist connection, and open new one */
/* follow redirect URLs if encountered */
static int reconnect (http_desc_t *desc, char *redirect)
{
char request [2048];
char response [10240];
char *s;
int error;
socklen_t error_len;
struct hostent *hp;
struct sockaddr_in address;
fd_set set;
struct timeval tv;
int flags;
int rc = 0;
/* Clear error status */
desc->error = 0;
/* Stop filling thread */
if (desc->going) {
desc->going = 0;
desc->dont_wait = 10;
pthread_cond_signal (&desc->dont_wait_signal);
pthread_join (desc->buffer_thread, NULL);
}
/* Close connection */
if (desc->sock) {
close (desc->sock);
desc->sock = 0;
}
/* Free buffer */
if (desc->buffer) {
free (desc->buffer);
desc->buffer = NULL;
}
desc->begin = 0;
desc->len = 0;
/* Look up for host IP */
if (!(hp = gethostbyname (desc->host))) {
alsaplayer_error ("HTTP: Couldn't look up host %s.", desc->host);
return 1;
}
/* Open socket */
desc->sock = socket (AF_INET, SOCK_STREAM, 0);
if (desc->sock==-1) {
alsaplayer_error ("HTTP: Couldn't open socket.");
return 1;
}
flags = fcntl (desc->sock, F_GETFL, 0);
fcntl (desc->sock, F_SETFL, flags | O_NONBLOCK);
/* Fill address struct */
address.sin_family = AF_INET;
address.sin_port = htons (desc->port);
memcpy (&address.sin_addr.s_addr, *(hp->h_addr_list), sizeof (address.sin_addr.s_addr));
/* Start connection */
if (connect (desc->sock, (struct sockaddr *) &address, sizeof (struct sockaddr_in)) == -1) {
if (errno != EINPROGRESS) {
alsaplayer_error ("HTTP: Couldn't connect to host %s:%u", desc->host, desc->port);
return 1;
}
}
/* Wait for connection */
tv.tv_sec = 10;
tv.tv_usec = 0;
FD_ZERO (&set);
FD_SET (desc->sock, &set);
if (select (desc->sock+1, NULL, &set, NULL, &tv) < 1) {
alsaplayer_error ("HTTP: Connection is too slow.");
return 1;
}
/* Test for errors while connected */
error_len = sizeof (error);
getsockopt (desc->sock, SOL_SOCKET, SO_ERROR, &error, &error_len);
if (error) {
alsaplayer_error ("HTTP: Couldn't connect to host %s:%u", desc->host, desc->port);
return 1;
}
/* Send request for remote file */
snprintf (request, 2048, "GET %s HTTP/1.1\r\n"
"Host: %s\r\n"
"Connection: close\r\n"
"User-Agent: %s/%s\r\n"
"Range: bytes=%ld-\r\n"
"Icy-Metadata: 1\r\n"
"\r\n",
desc->path, desc->host, PACKAGE, VERSION,
desc->pos);
//alsaplayer_error("%s", request);
write (desc->sock, request, strlen (request));
desc->begin = desc->pos;
desc->buffer_pos = 0;
/* Get response */
if (get_response_head (desc->sock, response, 10240))
return 1;
/* Check protocol */
if (!strncmp (response, "HTTP/1.0 ", 9)) {
desc->seekable = 0;
} else if (!strncmp (response, "HTTP/1.1 ", 9)) {
desc->seekable = 1;
} else if (!strncmp (response, "ICY 200 OK", 10)) {
desc->seekable = 0;
rc = 200;
//alsaplayer_error("%s", response);
} else if (!strncmp (response, "ICY 400 Server Full", 19)) {
rc = 400;
} else if (!strncmp (response, "ICY 404", 7)) {
rc = 404;
} else {
if (strlen(response)) {
alsaplayer_error ("HTTP: Wrong server protocol for http://%s:%u%s",
desc->host, desc->port, desc->path);
alsaplayer_error("ERROR:\n\"%s\"", response);
}
return 1;
}
/* Check return code */
if (strstr(response, "HTTP"))
rc = atoi (response + 9);
if (rc != 200 && rc != 206) {
/* Wrong code */
if (rc == 404) {
/* 404 */
alsaplayer_error ("HTTP: File not found: http://%s:%u%s",
desc->host, desc->port, desc->path);
return 1;
} else if (rc == 302) {
s = strstr(response, "302");
if (s) {
//alsaplayer_error("%s", s);
s = strstr(response, "Location: ");
if (s && redirect) {
/* Parse redirect */
if (sscanf(s, "Location: %[^\r]", redirect)) {
/* alsaplayer_error("Redirection: %s", redirect); */
}
}
return 1;
}
} else if (rc == 400) {
if (desc->status) {
desc->status(desc->data, "Server is full");
}
if (redirect)
redirect[0] = 0;
return 1;
} else if (rc == 401) {
if (desc->status) {
desc->status(desc->data, "Unauthorized access");
}
if (redirect)
redirect[0] = 0;
return 1;
} else if (rc == 404) {
if (desc->status) {
desc->status(desc->data, "Resource not found");
}
if (redirect)
redirect[0] = 0;
return 1;
} else {
/* unknown */
alsaplayer_error ("HTTP: We don't support %d response code: http://%s:%u%s",
rc, desc->host, desc->port, desc->path);
if (redirect)
redirect[0] = 0;
return 1;
}
}
/* Looking for size */
s = strstr (response, "\r\nContent-Length: ");
if (s) {
/* Set size only once */
if (!desc->size)
desc->size = atol (s+18);
} else {
desc->seekable = 0;
}
/* Look for icy-metaint */
s = strstr (response, "\r\nicy-metaint:");
if (s) {
desc->icy_metaint = atoi(s+14);
//alsaplayer_error("Found metaint: %d", desc->icy_metaint);
} else {
desc->icy_metaint = 0;
}
/* Setup played parts */
desc->played_parts = desc->seekable ? 5 : 0;
/* Attach thread to fill a buffer */
desc->going = 1;
pthread_create (&desc->buffer_thread, NULL, (void* (*)(void *)) buffer_thread, desc);
return 0;
} /* end of: reconnect */
/* --------------------------------------------------------------- */
/* ------------------------------------ PLUGIN FUNCTIONS --------- */
/* ******************************************************************* */
/* close stream */
static void http_close(void *d)
{
http_desc_t *desc = (http_desc_t*)d;
/* stop buffering thread */
if (desc->going) {
desc->going = 0;
desc->dont_wait = 10000;
pthread_cond_signal (&desc->dont_wait_signal);
pthread_join (desc->buffer_thread, NULL);
}
/* free resources */
if (desc->host) free (desc->host);
if (desc->path) free (desc->path);
if (desc->metadata) free (desc->metadata);
if (desc->sock) close (desc->sock);
if (desc->buffer) free (desc->buffer);
free (desc);
} /* end of http_close */
/* ******************************************************************* */
/* open stream */
static void *http_open(const char *uri, reader_status_type status, void *data)
{
http_desc_t *desc;
char redirect[10240];
int tries = 0;
/* Alloc descripor and init members. */
desc = malloc (sizeof (http_desc_t));
desc->going = 0;
desc->new_datablock = 0;
desc->dont_wait = 0;
desc->sock = 0;
desc->size = 0;
desc->pos = 0;
desc->buffer = NULL;
desc->buffer_pos = 0;
desc->begin = 0;
desc->len = 0;
desc->direction = 0;
desc->metadata = NULL;
desc->host = NULL;
desc->path = NULL;
desc->status = status;
desc->data = data;
pthread_mutex_init (&desc->buffer_lock, NULL);
pthread_mutex_init (&desc->meta_lock, NULL);
pthread_cond_init (&desc->new_datablock_signal, NULL);
pthread_cond_init (&desc->dont_wait_signal, NULL);
/* Parse URI */
if (parse_uri (uri, &desc->host, &desc->port, &desc->path)) {
http_close (desc);
return NULL;
}
/* Connect */
if (desc->status) {
desc->status(desc->data, "Connecting");
}
while (tries++ < 5) {
redirect[0] = 0;
if (reconnect (desc, redirect)) {
if (*redirect) {
if (parse_uri (redirect, &desc->host, &desc->port, &desc->path)) {
http_close(desc);
return NULL;
}
}
continue;
} else { /* Success! */
return desc;
}
}
http_close (desc);
return NULL;
}
/* ******************************************************************* */
/* test function */
static float http_can_handle(const char *uri)
{
/* Check for prefix */
if (strncmp (uri, "http://", 7)) return 0.0;
return 1.0;
}
/* ******************************************************************* */
/* init plugin */
static int http_init(void)
{
http_buffer_size = prefs_get_int (ap_prefs, "http", "buffer_size", DEFAULT_HTTP_BUFFER_SIZE);
/* Be sure http.buffer_size is available in config */
prefs_set_int (ap_prefs, "http", "buffer_size", http_buffer_size);
return 1;
}
/* ******************************************************************* */
/* shutdown plugin */
static void http_shutdown(void)
{
return;
}
/* ***************************************************************** */
/* read metadata from stream */
static size_t http_metadata (void *d, size_t size, void *data)
{
http_desc_t *desc = (http_desc_t*)d;
size_t msize;
pthread_mutex_lock (&desc->meta_lock);
if (!desc->metadata) {
pthread_mutex_unlock (&desc->meta_lock);
return 0;
}
msize = strlen(desc->metadata);
if (msize > size)
msize = size;
memcpy(data, desc->metadata, msize);
pthread_mutex_unlock (&desc->meta_lock);
return msize;
}
/* ***************************************************************** */
/* read from stream */
static size_t http_read (void *ptr, size_t size, void *d)
{
http_desc_t *desc = (http_desc_t*)d;
pthread_mutex_t mut; /* temporary mutex. What is for? ;) */
int tocopy; /* how much bytes we got? */
/* Init temp mutex */
pthread_mutex_init (&mut, NULL);
/* check for reopen */
if (desc->begin > desc->pos
|| desc->begin + desc->len + 3*HTTP_BLOCK_SIZE < desc->pos
|| (!desc->going && desc->pos < desc->size))
reconnect (desc, NULL);
/* wait while the buffer will has entire block */
while (1) {
size_t readed;
/* check for error */
if (desc->error) {
return 0;
}
/* We will work with buffer... we have to lock it! */
pthread_mutex_lock (&desc->buffer_lock);
readed = desc->begin + desc->len - desc->pos;
/* done? */
if (readed > 0 && readed >= size) {
tocopy = size;
break;
}
/* EOF reached and there is some data */
if (!desc->going && readed > 0) {
tocopy = readed;
break;
}
/* EOF reached and there is no data readed*/
if (!desc->going) {
tocopy = 0;
break;
}
/* break waiting */
desc->dont_wait = 1;
pthread_cond_signal (&desc->dont_wait_signal);
/* Allow buffer_thread to use buffer */
pthread_mutex_unlock (&desc->buffer_lock);
/* Wait for next portion of data */
if (!desc->new_datablock) {
pthread_mutex_lock (&mut);
pthread_cond_wait (&desc->new_datablock_signal, &mut);
pthread_mutex_unlock (&mut);
} else {
desc->new_datablock --;
}
}
/* copy result If there are data to copy */
if (tocopy) {
memcpy (ptr, desc->buffer + desc->pos - desc->begin, tocopy);
desc->pos += tocopy;
/* let them know about new state, heh */
status_notify (desc);
}
/* Allow buffer_thread to use buffer. */
pthread_mutex_unlock (&desc->buffer_lock);
return tocopy;
} /* http_read */
/* ******************************************************************* */
/* seek in stream */
static int http_seek (void *d, long offset, int whence)
{
http_desc_t *desc = (http_desc_t*)d;
if (!desc->seekable) return -1;
if (whence == SEEK_SET)
desc->pos = offset;
else if (whence == SEEK_END)
desc->pos = desc->size + offset;
else
desc->pos += offset;
return 0;
}
/* ******************************************************************* */
/* Return current position in stream. */
static long http_tell (void *d)
{
http_desc_t *desc = (http_desc_t*)d;
return desc->pos;
}
/* ******************************************************************* */
/* directory test */
static float http_can_expand (const char * UNUSED (uri))
{
return 0.0;
}
/* ******************************************************************* */
/* expand directory */
static char **http_expand (const char * UNUSED (uri))
{
return NULL;
}
/* ******************************************************************* */
/* seekable */
static int http_seekable (void *d)
{
return ((http_desc_t*)d)->seekable;
}
/* ******************************************************************* */
/* amount of data in stream */
static long http_length (void *d)
{
http_desc_t *desc = (http_desc_t*)d;
if (!desc->seekable)
return -1;
return desc->size;
}
/* ******************************************************************* */
static int http_eof (void *d)
{
http_desc_t *desc = (http_desc_t*)d;
if (!desc->seekable)
return 0;
return !(desc->pos < desc->size);
}
/* #################################################################### */
/* info about this plugin */
reader_plugin http_plugin = {
READER_PLUGIN_VERSION,
"HTTP reader v1.3",
"Evgeny Chukreev",
NULL,
http_init,
http_shutdown,
http_can_handle,
http_open,
http_close,
http_read,
http_metadata,
http_seek,
http_tell,
http_can_expand,
http_expand,
http_length,
http_eof,
http_seekable
};
/* ******************************************************************* */
/* return info about this plugin */
reader_plugin *reader_plugin_info(void)
{
return &http_plugin;
}
|