-
Notifications
You must be signed in to change notification settings - Fork 0
/
guideclient.c
121 lines (101 loc) · 3.42 KB
/
guideclient.c
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
/*
* Copyright (C) 2002 John Todd Larason <jtl@molehill.org>
*
* 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 2 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.
*/
#include "rtv.h"
#include "guideclient.h"
#include "httpclient.h"
#include <string.h>
#include <stdio.h>
#define MIN(x,y) ((x)<(y)?(x):(y))
struct snapshot_data
{
int firsttime;
int filesize;
int bytes_read;
char * timestamp;
char * buf;
u32 status;
};
static void get_snapshot_callback(unsigned char * buf, size_t len, void * vd)
{
struct snapshot_data * data = vd;
unsigned char * buf_data_start;
unsigned long bytes_to_read;
if (data->firsttime) {
unsigned char * end, * equal, * cur;
data->firsttime = 0;
/* First line: error code */
cur = buf;
end = strchr(cur, '\n');
if (end) *end = '\0';
data->status = strtoul(cur, NULL, 16);
if (!end) return;
do {
cur = end + 1;
if (*cur == '#') {
end = strchr(cur, '\0');
len -= (end - buf);
buf_data_start = end;
break;
}
end = strchr(cur, '\n');
if (!end) return;
*end = '\0';
equal = strchr(cur, '=');
if (!equal) return;
if (strncmp(cur, "guide_file_name=", equal-cur+1) == 0) {
data->timestamp = malloc(strlen(equal+1)+1);
strcpy(data->timestamp, equal+1);
} else if (strncmp(cur, "FileLength=", equal-cur+1) == 0) {
data->filesize = strtoul(equal+1, NULL, 0);
data->buf = malloc(data->filesize);
} /* also "RemoteFileName", but we don't expose it */
} while (1);
} else {
buf_data_start = buf;
}
bytes_to_read = MIN(len, (unsigned)(data->filesize - data->bytes_read));
memcpy(data->buf + data->bytes_read, buf_data_start, bytes_to_read);
data->bytes_read += bytes_to_read;
free(buf);
}
unsigned long guide_client_get_snapshot(unsigned char ** presult,
unsigned char ** ptimestamp,
unsigned long * psize,
const char * address,
const char * cur_timestamp)
{
struct snapshot_data data;
char url[512];
struct hc * hc;
memset(&data, 0, sizeof data);
data.firsttime = 1;
data.status = -1;
sprintf(url, "http://%s/http_replay_guide-get_snapshot?"
"guide_file_name=%s&serial_no=RTV4080K0000000000",
address,
cur_timestamp);
hc = hc_start_request(url);
if (!hc) {
perror("Error: guide_client_get_snapshot(): hc_start_request()");
goto exit;
}
hc_send_request(hc);
hc_read_pieces(hc, get_snapshot_callback, &data);
hc_free(hc);
*ptimestamp = data.timestamp;
*presult = data.buf;
*psize = data.filesize;
exit:
return data.status;
}