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
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_C_PPB_URL_REQUEST_INFO_H_
#define PPAPI_C_PPB_URL_REQUEST_INFO_H_
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_time.h"
struct PP_Var;
typedef enum {
PP_URLREQUESTPROPERTY_URL, // string
PP_URLREQUESTPROPERTY_METHOD, // string
PP_URLREQUESTPROPERTY_HEADERS, // string, \n-delim
PP_URLREQUESTPROPERTY_STREAMTOFILE, // PP_Bool (default=PP_FALSE)
PP_URLREQUESTPROPERTY_FOLLOWREDIRECTS, // PP_Bool (default=PP_TRUE)
// Set to true if you want to be able to poll the download progress via the
// URLLoader.GetDownloadProgress function.
//
// Boolean (default = PP_FALSE).
PP_URLREQUESTPROPERTY_RECORDDOWNLOADPROGRESS,
// Set to true if you want to be able to pull the upload progress via the
// URLLoader.GetUploadProgress function.
//
// Boolean (default = PP_FALSE).
PP_URLREQUESTPROPERTY_RECORDUPLOADPROGRESS
} PP_URLRequestProperty;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_URLRequestProperty, 4);
#define PPB_URLREQUESTINFO_INTERFACE "PPB_URLRequestInfo;0.1"
struct PPB_URLRequestInfo {
// Create a new URLRequestInfo object. Returns 0 if the module is invalid.
PP_Resource (*Create)(PP_Module module);
// Returns PP_TRUE if the given resource is an URLRequestInfo. Returns
// PP_FALSE if the resource is invalid or some type other than an
// URLRequestInfo.
PP_Bool (*IsURLRequestInfo)(PP_Resource resource);
// Sets a request property. Returns PP_FALSE if any of the parameters are
// invalid, PP_TRUE on success. The value property must be the correct type
// according to the property being set.
PP_Bool (*SetProperty)(PP_Resource request,
PP_URLRequestProperty property,
struct PP_Var value);
// Append data to the request body.
//
// A Content-Length request header will be automatically generated.
//
// Returns PP_FALSE if any of the parameters are invalid, PP_TRUE on success.
PP_Bool (*AppendDataToBody)(PP_Resource request,
const char* data,
uint32_t len);
// Append a file reference to be uploaded.
//
// A sub-range of the file starting from start_offset may be specified. If
// number_of_bytes is -1, then the sub-range to upload extends to the end of
// the file.
//
// An optional (non-zero) last modified time stamp may be provided, which
// will be used to validate that the file was not modified since the given
// time before it is uploaded. The upload will fail with an error code of
// PP_Error_FileChanged if the file has been modified since the given time.
// If expected_last_modified_time is 0, then no validation is performed.
//
// A Content-Length request header will be automatically generated.
//
// Returns PP_FALSE if any of the parameters are invalid, PP_TRUE on success.
PP_Bool (*AppendFileToBody)(PP_Resource request,
PP_Resource file_ref,
int64_t start_offset,
int64_t number_of_bytes,
PP_Time expected_last_modified_time);
};
#endif // PPAPI_C_PPB_URL_REQUEST_INFO_H_
|