mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 18:56:49 +01:00
ce64ffdb90
In order to prevent classes between libnetapi.so with the legacy API and applications using the libnetservices.a library, the latter will have the classes in a distinct namespace. In the implementation, both libbnetapi.so and libnetservices.a will use the same header and source files. If LIBNETAPI_DEPRECATED is defined during build, the headers and source will have binary compatible behavior. Otherwise, the classes and other objects will be put in the HaikuExt namespace. In order to build the libbnetapi.so and libnetservices.a with the proper build configuration, there is a stub `src/kits/net/libnetapi_deprecated` folder that applies the special configuration to the source files. Currently HaikuDepot, Webpositive, libshared.a and the http_streamer add on use the compatible API in libbnetapi.so. Change-Id: Ic73e9f271ef75749adda46f6f72e9a0b2851b461 Reviewed-on: https://review.haiku-os.org/c/haiku/+/3667 Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
59 lines
1.5 KiB
C++
59 lines
1.5 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>
|
|
|
|
|
|
#ifndef LIBNETAPI_DEPRECATED
|
|
namespace BPrivate {
|
|
|
|
namespace Network {
|
|
#endif
|
|
|
|
class BUrlSynchronousRequest : public BUrlRequest, public BUrlProtocolListener {
|
|
public:
|
|
BUrlSynchronousRequest(BUrlRequest& asynchronousRequest);
|
|
virtual ~BUrlSynchronousRequest() { };
|
|
|
|
// Synchronous wait
|
|
virtual status_t Perform();
|
|
virtual status_t WaitUntilCompletion();
|
|
|
|
// Protocol hooks
|
|
virtual void ConnectionOpened(BUrlRequest* caller);
|
|
virtual void HostnameResolved(BUrlRequest* caller,
|
|
const char* ip);
|
|
virtual void ResponseStarted(BUrlRequest* caller);
|
|
virtual void HeadersReceived(BUrlRequest* caller,
|
|
const BUrlResult& result);
|
|
virtual void DataReceived(BUrlRequest* caller,
|
|
const char* data, off_t position,
|
|
ssize_t size);
|
|
virtual void DownloadProgress(BUrlRequest* caller,
|
|
ssize_t bytesReceived, ssize_t bytesTotal);
|
|
virtual void UploadProgress(BUrlRequest* caller,
|
|
ssize_t bytesSent, ssize_t bytesTotal);
|
|
virtual void RequestCompleted(BUrlRequest* caller,
|
|
bool success);
|
|
|
|
|
|
protected:
|
|
bool fRequestComplete;
|
|
BUrlRequest& fWrappedRequest;
|
|
};
|
|
|
|
|
|
#ifndef LIBNETAPI_DEPRECATED
|
|
} // namespace Network
|
|
|
|
} // namespace BPrivate
|
|
#endif
|
|
|
|
#endif // _B_URL_SYNCHRONOUS_REQUEST_H_
|