1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00

no stream object necessary

This commit is contained in:
psyc://psyced.org/~lynX 2011-08-24 11:42:05 +02:00
commit bc54f4b3c2
5 changed files with 34 additions and 14 deletions

View file

@ -30,6 +30,7 @@ volatile string http_message;
volatile int http_status, port, fetching, ssl;
volatile string buffer, thehost, url, fetched, host, resource, method;
volatile mixed rbody;
volatile int stream;
int parse_status(string all);
int parse_header(string all);
@ -37,9 +38,10 @@ int buffer_content(string all);
string qHost() { return thehost; }
varargs void fetch(string murl, string meth, mixed body, mapping hdrs) {
varargs void fetch(string murl, string meth, mixed body, mapping hdrs, int strm) {
method = meth || "GET";
rbody = body;
stream = strm;
if (hdrs) rheaders += hdrs;
if (url != murl) {
// accept.c does this for us:
@ -183,9 +185,16 @@ int parse_header(string all) {
return 1;
}
int buffer_content(string all) {
P2(("%O body %O\n", ME, all))
buffer += all + "\n";
int buffer_content(string data) {
P2(("%O body %O\n", ME, data))
if (stream) {
mixed *waiter;
foreach (waiter : qToArray(ME)) {
funcall(waiter[0], data, waiter[1] ? fheaders : copy(fheaders), http_status, 1);
}
} else {
buffer += data + "\n";
}
next_input_to(#'buffer_content);
return 1;
}
@ -198,8 +207,12 @@ disconnected(remainder) {
//if (headers["etag"])
// rheaders["if-none-match"] = headers["etag"]; // heise does not work with etag
fetched = buffer;
if (remainder) fetched += remainder;
if (stream) {
fetched = remainder;
} else {
fetched = buffer;
if (remainder) fetched += remainder;
}
fheaders = headers;
buffer = headers = 0;
switch (http_status) {

View file

@ -25,7 +25,7 @@ volatile int authorized = 0;
oauth_success() {}
oauth_error() {}
varargs void fetch(object ua, string url, string method, mapping post, mapping oauth) {
varargs void fetch(object ua, string url, string method, mapping post, mapping oauth, int stream) {
P3((">> oauth:fetch(%O, %O, %O)\n", url, method, oauth))
unless (method) method = "GET";
unless (post) post = ([]);
@ -53,7 +53,7 @@ varargs void fetch(object ua, string url, string method, mapping post, mapping o
foreach (string key, string value : oauth)
p += (strlen(p) ? "," : "") + key + "=\"" + urlencode(to_string(value)) + "\"";
ua->fetch(url, method, post, (["authorization": "OAuth " + p]));
ua->fetch(url, method, post, (["authorization": "OAuth " + p]), stream);
}
void parse_request_token(string body, mapping headers, int http_status) {