You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @17774255, Release-5.0 @17791557 and Dev-PerfTest @17789485 [CL 17794212 by aurel cordonnier in ue5-release-engine-test branch]
357 lines
9.1 KiB
C++
357 lines
9.1 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Misc/CoreMisc.h"
|
|
#include "Interfaces/IHttpRequest.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
class FHttpManager;
|
|
|
|
/**
|
|
* Module for Http request implementations
|
|
* Use FHttpFactory to create a new Http request
|
|
*/
|
|
class FHttpModule :
|
|
public IModuleInterface, public FSelfRegisteringExec
|
|
{
|
|
|
|
public:
|
|
|
|
// FSelfRegisteringExec
|
|
|
|
/**
|
|
* Handle exec commands starting with "HTTP"
|
|
*
|
|
* @param InWorld the world context
|
|
* @param Cmd the exec command being executed
|
|
* @param Ar the archive to log results to
|
|
*
|
|
* @return true if the handler consumed the input, false to continue searching handlers
|
|
*/
|
|
virtual bool Exec(UWorld* InWorld, const TCHAR* Cmd, FOutputDevice& Ar) override;
|
|
|
|
/**
|
|
* Exec command handlers
|
|
*/
|
|
bool HandleHTTPCommand( const TCHAR* Cmd, FOutputDevice& Ar );
|
|
|
|
// FHttpModule
|
|
|
|
/**
|
|
* Singleton-like access to this module's interface. This is just for convenience!
|
|
* Beware of calling this during the shutdown phase, though. Your module might have been unloaded already.
|
|
*
|
|
* @return Returns singleton instance, loading the module on demand if needed
|
|
*/
|
|
HTTP_API static FHttpModule& Get();
|
|
|
|
/**
|
|
* Update all config-based values
|
|
*/
|
|
HTTP_API void UpdateConfigs();
|
|
|
|
/**
|
|
* Instantiates a new Http request for the current platform
|
|
*
|
|
* @return new Http request instance
|
|
*/
|
|
virtual TSharedRef<IHttpRequest, ESPMode::ThreadSafe> CreateRequest();
|
|
|
|
/**
|
|
* Only meant to be used by Http request/response implementations
|
|
*
|
|
* @return Http request manager used by the module
|
|
*/
|
|
inline FHttpManager& GetHttpManager()
|
|
{
|
|
check(HttpManager != NULL);
|
|
return *HttpManager;
|
|
}
|
|
|
|
/**
|
|
* @return timeout in seconds for the entire http request to complete
|
|
*/
|
|
inline float GetHttpTimeout() const
|
|
{
|
|
return HttpTimeout;
|
|
}
|
|
|
|
/**
|
|
* Sets timeout in seconds for the entire http request to complete
|
|
*/
|
|
inline void SetHttpTimeout(float TimeOutInSec)
|
|
{
|
|
HttpTimeout = TimeOutInSec;
|
|
}
|
|
|
|
/**
|
|
* @return timeout in seconds to establish the connection
|
|
*/
|
|
inline float GetHttpConnectionTimeout() const
|
|
{
|
|
return HttpConnectionTimeout;
|
|
}
|
|
|
|
/**
|
|
* @return timeout in seconds to receive a response on the connection
|
|
*/
|
|
inline float GetHttpReceiveTimeout() const
|
|
{
|
|
return HttpReceiveTimeout;
|
|
}
|
|
|
|
/**
|
|
* @return timeout in seconds to send a request on the connection
|
|
*/
|
|
inline float GetHttpSendTimeout() const
|
|
{
|
|
return HttpSendTimeout;
|
|
}
|
|
|
|
/**
|
|
* @return max number of simultaneous connections to a specific server
|
|
*/
|
|
inline int32 GetHttpMaxConnectionsPerServer() const
|
|
{
|
|
return HttpMaxConnectionsPerServer;
|
|
}
|
|
|
|
/**
|
|
* @return max read buffer size for http requests
|
|
*/
|
|
inline int32 GetMaxReadBufferSize() const
|
|
{
|
|
return MaxReadBufferSize;
|
|
}
|
|
|
|
/**
|
|
* Sets the maximum size for the read buffer
|
|
* @param SizeInBytes The maximum number of bytes to use for the read buffer
|
|
*/
|
|
inline void SetMaxReadBufferSize(int32 SizeInBytes)
|
|
{
|
|
MaxReadBufferSize = SizeInBytes;
|
|
}
|
|
|
|
/**
|
|
* @return true if http requests are enabled
|
|
*/
|
|
inline bool IsHttpEnabled() const
|
|
{
|
|
return bEnableHttp;
|
|
}
|
|
|
|
/**
|
|
* toggle null http implementation
|
|
*/
|
|
inline void ToggleNullHttp(bool bEnabled)
|
|
{
|
|
bUseNullHttp = bEnabled;
|
|
}
|
|
|
|
/**
|
|
* @return true if null http is being used
|
|
*/
|
|
inline bool IsNullHttpEnabled() const
|
|
{
|
|
return bUseNullHttp;
|
|
}
|
|
|
|
/**
|
|
* @return min delay time for each http request
|
|
*/
|
|
inline float GetHttpDelayTime() const
|
|
{
|
|
return HttpDelayTime;
|
|
}
|
|
|
|
/**
|
|
* Set the min delay time for each http request
|
|
*/
|
|
inline void SetHttpDelayTime(float InHttpDelayTime)
|
|
{
|
|
HttpDelayTime = InHttpDelayTime;
|
|
}
|
|
|
|
/**
|
|
* @return Target tick rate of an active http thread
|
|
*/
|
|
inline float GetHttpThreadActiveFrameTimeInSeconds() const
|
|
{
|
|
return HttpThreadActiveFrameTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* Set the target tick rate of an active http thread
|
|
*/
|
|
inline void SetHttpThreadActiveFrameTimeInSeconds(float InHttpThreadActiveFrameTimeInSeconds)
|
|
{
|
|
HttpThreadActiveFrameTimeInSeconds = InHttpThreadActiveFrameTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* @return Minimum sleep time of an active http thread
|
|
*/
|
|
inline float GetHttpThreadActiveMinimumSleepTimeInSeconds() const
|
|
{
|
|
return HttpThreadActiveMinimumSleepTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* Set the minimum sleep time of an active http thread
|
|
*/
|
|
inline void SetHttpThreadActiveMinimumSleepTimeInSeconds(float InHttpThreadActiveMinimumSleepTimeInSeconds)
|
|
{
|
|
HttpThreadActiveMinimumSleepTimeInSeconds = InHttpThreadActiveMinimumSleepTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* @return Target tick rate of an idle http thread
|
|
*/
|
|
inline float GetHttpThreadIdleFrameTimeInSeconds() const
|
|
{
|
|
return HttpThreadIdleFrameTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* Set the target tick rate of an idle http thread
|
|
*/
|
|
inline void SetHttpThreadIdleFrameTimeInSeconds(float InHttpThreadIdleFrameTimeInSeconds)
|
|
{
|
|
HttpThreadIdleFrameTimeInSeconds = InHttpThreadIdleFrameTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* @return Minimum sleep time when idle, waiting for requests
|
|
*/
|
|
inline float GetHttpThreadIdleMinimumSleepTimeInSeconds() const
|
|
{
|
|
return HttpThreadIdleMinimumSleepTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* Set the minimum sleep time when idle, waiting for requests
|
|
*/
|
|
inline void SetHttpThreadIdleMinimumSleepTimeInSeconds(float InHttpThreadIdleMinimumSleepTimeInSeconds)
|
|
{
|
|
HttpThreadIdleMinimumSleepTimeInSeconds = InHttpThreadIdleMinimumSleepTimeInSeconds;
|
|
}
|
|
|
|
/**
|
|
* Get the default headers that are appended to every request
|
|
* @return the default headers
|
|
*/
|
|
const TMap<FString, FString>& GetDefaultHeaders() const { return DefaultHeaders; }
|
|
|
|
/**
|
|
* Add a default header to be appended to future requests
|
|
* If a request already specifies this header, then the defaulted version will not be used
|
|
* @param HeaderName - Name of the header (e.g., "Content-Type")
|
|
* @param HeaderValue - Value of the header
|
|
*/
|
|
void AddDefaultHeader(const FString& HeaderName, const FString& HeaderValue) { DefaultHeaders.Emplace(HeaderName, HeaderValue); }
|
|
|
|
/**
|
|
* @returns The current proxy address.
|
|
*/
|
|
inline const FString& GetProxyAddress() const
|
|
{
|
|
return ProxyAddress;
|
|
}
|
|
|
|
/**
|
|
* Setter for the proxy address.
|
|
* @param InProxyAddress - New proxy address to use.
|
|
*/
|
|
inline void SetProxyAddress(const FString& InProxyAddress)
|
|
{
|
|
ProxyAddress = InProxyAddress;
|
|
}
|
|
|
|
/**
|
|
* Method to check dynamic proxy setting support.
|
|
* @returns Whether this http implementation supports dynamic proxy setting.
|
|
*/
|
|
inline bool SupportsDynamicProxy() const
|
|
{
|
|
return bSupportsDynamicProxy;
|
|
}
|
|
|
|
/**
|
|
* @returns the list of domains allowed to be visited in a shipping build
|
|
*/
|
|
inline const TArray<FString>& GetAllowedDomains() const
|
|
{
|
|
return AllowedDomains;
|
|
}
|
|
|
|
private:
|
|
|
|
// IModuleInterface
|
|
|
|
/**
|
|
* Called when Http module is loaded
|
|
* load dependant modules
|
|
*/
|
|
virtual void StartupModule() override;
|
|
|
|
/**
|
|
* Called after Http module is loaded
|
|
* Initialize platform specific parts of Http handling
|
|
*/
|
|
virtual void PostLoadCallback() override;
|
|
|
|
/**
|
|
* Called before Http module is unloaded
|
|
* Shutdown platform specific parts of Http handling
|
|
*/
|
|
virtual void PreUnloadCallback() override;
|
|
|
|
/**
|
|
* Called when Http module is unloaded
|
|
*/
|
|
virtual void ShutdownModule() override;
|
|
|
|
|
|
/** Keeps track of Http requests while they are being processed */
|
|
FHttpManager* HttpManager;
|
|
/** timeout in seconds for the entire http request to complete. 0 is no timeout */
|
|
float HttpTimeout;
|
|
/** timeout in seconds to establish the connection. -1 for system defaults, 0 is no timeout */
|
|
float HttpConnectionTimeout;
|
|
/** timeout in seconds to receive a response on the connection. -1 for system defaults */
|
|
float HttpReceiveTimeout;
|
|
/** timeout in seconds to send a request on the connection. -1 for system defaults */
|
|
float HttpSendTimeout;
|
|
/** total time to delay the request */
|
|
float HttpDelayTime;
|
|
/** Time in seconds to use as frame time when actively processing requests. 0 means no frame time. */
|
|
float HttpThreadActiveFrameTimeInSeconds;
|
|
/** Time in seconds to sleep minimally when actively processing requests. */
|
|
float HttpThreadActiveMinimumSleepTimeInSeconds;
|
|
/** Time in seconds to use as frame time when idle, waiting for requests. 0 means no frame time. */
|
|
float HttpThreadIdleFrameTimeInSeconds;
|
|
/** Time in seconds to sleep minimally when idle, waiting for requests. */
|
|
float HttpThreadIdleMinimumSleepTimeInSeconds;
|
|
/** Max number of simultaneous connections to a specific server */
|
|
int32 HttpMaxConnectionsPerServer;
|
|
/** Max buffer size for individual http reads */
|
|
int32 MaxReadBufferSize;
|
|
/** toggles http requests */
|
|
bool bEnableHttp;
|
|
/** toggles null (mock) http requests */
|
|
bool bUseNullHttp;
|
|
/** Default headers - each request will include these headers, using the default value if not overridden */
|
|
TMap<FString, FString> DefaultHeaders;
|
|
/** singleton for the module while loaded and available */
|
|
static FHttpModule* Singleton;
|
|
/** The address to use for proxy, in format IPADDRESS:PORT */
|
|
FString ProxyAddress;
|
|
/** Whether or not the http implementation we are using supports dynamic proxy setting. */
|
|
bool bSupportsDynamicProxy;
|
|
/** List of domains that can be accessed. If Empty then no filtering is applied */
|
|
TArray<FString> AllowedDomains;
|
|
};
|