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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
#ifndef WWW_H
#define WWW_H
#if ENABLE_WWW
#if (WEBPLUG || UNITY_IPHONE || UNITY_ANDROID || UNITY_FLASH || UNITY_XENON || UNITY_PS3 || UNITY_WINRT)
#define WWW_USE_CURL 0
#else
#define WWW_USE_CURL 1
#endif
#define WWW_USE_BROWSER WEBPLUG && !WWW_USE_CURL
#if WWW_USE_CURL
#include "External/Curl/include/minimalcurl.h"
#endif
#include <stdlib.h>
#include <string.h>
#include "Runtime/Threads/Mutex.h"
#include "Runtime/Threads/Thread.h"
#include "Runtime/Threads/AtomicRefCounter.h"
#include "Runtime/GameCode/CallDelayed.h"
#include "Runtime/Utilities/LogAssert.h"
#include "Runtime/Input/TimeManager.h"
#include "Runtime/Utilities/NonCopyable.h"
/// The time since startup
double GetTimeSinceStartup ();
class Thread;
class Download;
class UnityWebStream;
class AsyncCachedUnityWebStream;
class AssetBundle;
class AudioClip;
#include <map>
enum WWWType {
kWWWTypeCurl,
kWWWTypeBrowser,
kWWWTypeCached,
kWWWTypeCrossDomainChecked,
kWWWFlash
};
class WWW : private NonCopyable
{
private:
UnityWebStream* m_UnityWebStream;
bool m_DidParseUnityWebStream;
int m_StreamingPosition;
#if SUPPORT_REPRODUCE_LOG
int m_ReproRemapCount;
#endif
AudioClip* m_AudioClip;
protected:
bool m_Cached;
int m_CacheVersion;
UInt32 m_RequestedCRC;
friend class WWWCached;
ThreadPriority m_ThreadPriority;
string m_ResponseHeaders;
void FeedUnityWebStream (bool isCompleted);
bool SetErrorFromResponseHeaders (); // Returns true when error is set, otherwise returns false
UInt32 GetEstimatedDownloadSize() const;
public:
class AutoLock
{
public:
AutoLock( WWW& www )
: m_WWW(&www)
{
www.LockPartialData();
}
~AutoLock()
{
m_WWW->UnlockPartialData();
}
private:
AutoLock(const AutoLock&);
AutoLock& operator=(const AutoLock&);
private:
WWW* m_WWW;
};
enum SecurityPolicy
{
kSecurityPolicyDontKnowYet=0,
kSecurityPolicyAllowAccess=1,
kSecurityPolicyDenyAccess=2
};
WWW (bool cached, int cacheVersion, UInt32 crc)
// Private members (initialized by the order of their definition)
: m_UnityWebStream(NULL)
, m_DidParseUnityWebStream(false)
, m_StreamingPosition(0)
#if SUPPORT_REPRODUCE_LOG
, m_ReproRemapCount(0)
#endif
, m_AudioClip(NULL)
// Protected members
, m_Cached(cached)
, m_CacheVersion(cacheVersion)
, m_RequestedCRC(crc)
, m_ThreadPriority(kNormalPriority)
, m_ResponseHeaders() // Initially empty
// Private thread-safe reference counter
, m_RefCount()
{}
typedef std::map<std::string,std::string> WWWHeaders;
static WWW* Create (const char* url, const char * in_postData, int in_postLength, const WWWHeaders& in_headers, bool crossDomainChecked = true, bool cached = false, int cacheVersion = 0, UInt32 crc = 0);
virtual const UInt8* GetData() = 0;
virtual const UInt8* GetPartialData() const = 0;
virtual size_t GetSize() = 0;
virtual size_t GetPartialSize() const = 0;
virtual double GetETA() const = 0; //seconds remaining until we're done.
virtual void LockPartialData() = 0;
virtual void UnlockPartialData() = 0;
// Returns true when the download is complete or failed.
virtual void Cancel() = 0;
bool IsDone() const;
virtual float GetProgress() const = 0;
virtual float GetUploadProgress() const = 0;
virtual const char* GetError() = 0;
virtual void SetError (const std::string& error) {}
virtual const char* GetUrl() const = 0;
virtual std::string GetResponseHeaders();
virtual bool HasDownloadedOrMayBlock () = 0;
virtual void BlockUntilDone () = 0;
virtual SecurityPolicy GetSecurityPolicy() const;
virtual WWWType GetType () const = 0;
virtual UnityWebStream* GetUnityWebStream () const;
virtual bool IsCached () const;
void CallWhenDone(DelayedCall* func, Object* o, void* userData, CleanupUserData* cleanup);
#if SUPPORT_THREADS
ThreadPriority GetThreadPriority() const { return m_ThreadPriority; }
virtual void SetThreadPriority( ThreadPriority priority );
#endif
#if SUPPORT_REPRODUCE_LOG
int* GetReproRemapCount () { return &m_ReproRemapCount; }
#endif
AudioClip* GetAudioClip() const { return m_AudioClip; }
void SetAudioClip(AudioClip* clip) { m_AudioClip = clip; }
protected:
virtual ~WWW ();
#if ENABLE_WEBPLAYER_SECURITY
friend class WWWCrossDomainChecked;
#endif
virtual bool IsDownloadingDone() const = 0;
public:
/// These functions must be thread safe as they are called from the garbage collector thread
void Retain();
void Release();
private:
AtomicRefCounter m_RefCount;
};
#if WWW_USE_BROWSER
class WWWBrowser : public WWW
{
Download* m_Download;
std::vector<UInt8> m_Buffer;
double m_Eta;
double m_StartDownloadTime;
std::string m_Url;
std::string m_Error;
std::string m_HeadersString;
char* m_PostData;
size_t m_PostLength;
int m_LockedPartialData;
int GetTotalBytesUntilLoadable() const;
public:
WWWBrowser (const char* postDataPtr, int postDataLength, const WWWHeaders& headers, bool cached, int cacheVersion, UInt32 crc);
virtual const UInt8* GetData();
virtual size_t GetSize();
virtual bool IsDownloadingDone() const;
virtual float GetProgress() const;
virtual float GetUploadProgress() const;
virtual const char* GetError();
virtual void SetError (const std::string& error);
virtual const char* GetUrl() const;
virtual const UInt8* GetPartialData() const;
virtual size_t GetPartialSize() const;
virtual void LockPartialData();
virtual void UnlockPartialData();
virtual double GetETA() const; //seconds remaining until we're done.
virtual bool HasDownloadedOrMayBlock ();
virtual void BlockUntilDone ();
virtual void Cancel ();
void ForceProgressDownload ();
virtual WWWType GetType () const { return kWWWTypeBrowser; }
static int ProgressDownload(Download* download);
public:
static WWWBrowser* CreateBrowser (const char* url, const char * in_postData, int in_postLength, const WWWHeaders& in_headers, bool cached, int cacheVersion, UInt32 crc);
protected:
virtual ~WWWBrowser ();
};
#endif // WWW_USE_BROWSER
#if WWW_USE_CURL
class WWWCurl : public WWW
{
private:
size_t alloc_size;
curl_slist* curlHeaders;
curl_slist* GetHeaderSList () ;
Mutex mutex;
size_t size;
UInt8* data;
char* errorBuffer;
bool abortDownload;
float progress;
float uploadProgress;
unsigned totalSize;
double eta;
double startTime;
char* postData;
int postLength; // -1 for GET requests
int postPosition;
WWWHeaders requestHeaders;
size_t AppendBytes(void * moreData, size_t bytes);
size_t PostBytes(void * moreData, size_t bytes);
CURLcode GetURL( const char* url );
Thread thread;
char* url;
int result;
void DoInit( const char* in_url, const char * in_postData, int in_postLength, const WWWHeaders& in_headers);
void Cleanup();
static size_t WriteCallback(void * data, size_t size, size_t elements, WWWCurl * myData);
static size_t ReadCallback(void * data, size_t size, size_t elements, WWWCurl * myData);
static size_t HeaderCallback(void * data, size_t size, size_t elements, WWWCurl * myData);
static int ProgressCallback (WWWCurl *myData, double dltotal, double dlnow, double ultotal, double ulnow);
public:
WWWCurl( const char* in_url, const char * in_postData, int in_postLength, const WWWHeaders& in_headers, bool cached, int cacheVersion, UInt32 crc );
virtual bool IsDownloadingDone() const;
virtual const UInt8* GetData();
virtual const char* GetError();
virtual void SetError (const std::string& error);
virtual const char* GetUrl() const;
virtual size_t GetSize();
virtual const UInt8* GetPartialData() const;
virtual size_t GetPartialSize() const;
virtual float GetProgress() const;
virtual float GetUploadProgress() const;
virtual double GetETA() const;
virtual void LockPartialData();
virtual void UnlockPartialData();
virtual bool HasDownloadedOrMayBlock ();
virtual void Cancel ();
virtual void SetThreadPriority( ThreadPriority priority );
void BlockUntilDone();
virtual WWWType GetType () const { return kWWWTypeCurl; }
virtual std::string GetResponseHeaders();
protected:
~WWWCurl();
private:
void StartThread();
static void* WWW_ThreadEntryPoint(void* data);
UInt32 GetEstimatedDownloadSize() const;
};
#endif // WWW_USE_CURL
class WWWDelayCall {
private:
WWW* m_wait_for;
DelayedCall* m_func;
Object* m_o;
void * m_userData;
CleanupUserData* m_cleanup;
public:
WWWDelayCall(WWW* www, DelayedCall* func, Object* o, void* userData, CleanupUserData* cleanup);
~WWWDelayCall();
static void Callback(Object* o, void* userData);
static void Cleanup(void* userData);
static bool MatchForCancel(void* callBackUserData, void* cancelUserData);
};
#if ENABLE_WEBPLAYER_SECURITY
void ProcessCrossDomainRequestsFromNonMainThread();
class WWWCrossDomainCheckedImpl;
class WWWCrossDomainChecked : public WWW
{
private:
const char* m_PostData;
int m_PostDataLength;
std::string m_PostDataDataCopy;
WWWHeaders m_Headers;
WWWCrossDomainCheckedImpl* m_CrossChecker;
WWW* m_WWW;
bool CanCreateDownloader() const;
bool RequestLooksSafeEnoughToMakeWithoutPolicyAccess() const;
void StartEmbeddedDownload();
void BlockedStartEmbeddedDownload();
public:
WWWCrossDomainChecked (const char* url, const char* postData, int postDataLength, const WWWHeaders& headers, bool cached, int cacheVersion, UInt32 crc);
virtual SecurityPolicy GetSecurityPolicy() const;
virtual UnityWebStream* GetUnityWebStream() const;
virtual const UInt8* GetData();
virtual const UInt8* GetPartialData() const;
virtual size_t GetSize();
virtual size_t GetPartialSize() const;
virtual double GetETA() const;
virtual bool IsCached () const;
virtual void LockPartialData();
virtual void UnlockPartialData();
// Returns true when the download is complete or failed.
virtual void Cancel();
virtual bool IsDownloadingDone() const;
virtual float GetProgress() const;
virtual float GetUploadProgress() const { return 0.f; }
virtual const char* GetError();
virtual const char* GetUrl() const;
virtual std::string GetResponseHeaders();
virtual bool HasDownloadedOrMayBlock ();
virtual void BlockUntilDone ();
virtual void SetThreadPriority( ThreadPriority priority );
virtual WWWType GetType () const { return kWWWTypeCrossDomainChecked; }
protected:
~WWWCrossDomainChecked ();
};
#endif //ENABLE_WEBPLAYER_SECURITY
// Constant error strings
extern const char* kWWWErrCustomHeadersWithGET;
extern const char* kWWWErrZeroPostData;
extern const char* kWWWErrNULLPostDataWithPositiveLength;
extern const char* kWWWErrCancelled;
extern const char* kWWWErrPostDataWithNonHTTPSchema;
extern const char* kWWWErrHeadersWithNonHTTPSchema;
double CalculateEta (int downloadedBytes, int totalBytes, double startTime);
const char* GetCachedWWWError(const WWW& www, std::string& err);
#if !UNITY_FLASH
std::string DecodeEscapedURL(const std::string& url);
#endif
#endif // ENABLE_WWW
#endif // WWW_H
|