45939109b4
Integrated the classes in the Network Kit (libbnetapi.so). Only the foundation classed BUrl, BUrlContext, BNetworkCookie, BNetworkCookieJar and the private HttpTime code is currently compiled. The BUrlProtocol currently contains some misplaced BUrlProtocolHttp specific stuff, and the HTTP stuff itself has a dependency on libcrypto and should live in an add-on instead. I've sprinkled some TODOs in the code, and I've done some renaming compared to the last version of the GSoC patch. Any help to bring this further along is appreciated. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39161 a95241bf-73f2-0310-859d-f6bbb57e9c96
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*
|
|
* Copyright 2010 Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _B_URL_SYNCHRONOUS_REQUEST_H_
|
|
#define _B_URL_SYNCHRONOUS_REQUEST_H_
|
|
|
|
|
|
#include <UrlRequest.h>
|
|
#include <UrlProtocolListener.h>
|
|
|
|
|
|
class BUrlSynchronousRequest : public BUrlRequest, public BUrlProtocolListener {
|
|
public:
|
|
BUrlSynchronousRequest(BUrl& url);
|
|
virtual ~BUrlSynchronousRequest() { };
|
|
|
|
// Synchronous wait
|
|
virtual status_t Perform();
|
|
virtual status_t WaitUntilCompletion();
|
|
|
|
// Protocol hooks
|
|
virtual void ConnectionOpened(BUrlProtocol* caller);
|
|
virtual void HostnameResolved(BUrlProtocol* caller,
|
|
const char* ip);
|
|
virtual void ResponseStarted(BUrlProtocol* caller);
|
|
virtual void HeadersReceived(BUrlProtocol* caller);
|
|
virtual void DataReceived(BUrlProtocol* caller,
|
|
const char* data, ssize_t size);
|
|
virtual void DownloadProgress(BUrlProtocol* caller,
|
|
ssize_t bytesReceived, ssize_t bytesTotal);
|
|
virtual void UploadProgress(BUrlProtocol* caller,
|
|
ssize_t bytesSent, ssize_t bytesTotal);
|
|
virtual void RequestCompleted(BUrlProtocol* caller,
|
|
bool success);
|
|
|
|
|
|
protected:
|
|
bool fRequestComplete;
|
|
};
|
|
|
|
|
|
#endif // _B_URL_SYNCHRONOUS_REQUEST_H_
|