-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcurl.session.property_modules.writer.pas
131 lines (114 loc) · 5.08 KB
/
curl.session.property_modules.writer.pas
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
(******************************************************************************)
(* libPasCURL *)
(* delphi and object pascal wrapper around cURL library *)
(* https://github.com/curl/curl *)
(* *)
(* Copyright (c) 2020 Ivan Semenkov *)
(* https://github.com/isemenkov/libpascurl ivan@semenkov.pro *)
(* Ukraine *)
(******************************************************************************)
(* *)
(* This source is free software; you can redistribute it and/or modify it *)
(* under the terms of the GNU General Public License as published by the Free *)
(* Software Foundation; either version 3 of the License. *)
(* *)
(* This code is distributed in the hope that it will be useful, but WITHOUT *)
(* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *)
(* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *)
(* more details. *)
(* *)
(* A copy of the GNU General Public License is available on the World Wide *)
(* Web at <http://www.gnu.org/copyleft/gpl.html>. You can also obtain it by *)
(* writing to the Free Software Foundation, Inc., 51 Franklin Street - Fifth *)
(* Floor, Boston, MA 02110-1335, USA. *)
(* *)
(******************************************************************************)
unit curl.session.property_modules.writer;
{$IFDEF FPC}
{$mode objfpc}{$H+}
{$ENDIF}
{$IFOPT D+}
{$DEFINE DEBUG}
{$ENDIF}
interface
uses
SysUtils, libpascurl, curl.utils.errors_stack, container.memorybuffer,
utils.datasize, curl.session.property_module;
type
TModuleWriter = class(TPropertyModule)
public
type
{ Set callback for writing received data. }
TDownloadFunction = function (ABuffer : PChar; ASize : LongWord) :
LongWord of object;
public
constructor Create (ACURL : libpascurl.CURL; AErrorsStack : PErrorsStack;
ABuffer : PMemoryBuffer);
public
const
MIN_BUFFER_SIZE = 1024;
MAX_BUFFER_SIZE = CURL_MAX_READ_SIZE;
protected
FBuffer : PMemoryBuffer;
FDownloadFunction : TDownloadFunction;
{ Set preferred receive buffer size. }
procedure SetBufferSize (ASize : TDataSize);
protected
{ Set callback for writing received data.
This callback function gets called by libcurl as soon as there is data
received that needs to be saved. For most transfers, this callback gets
called many times and each invoke delivers another chunk of data. }
property DownloadCallback : TDownloadFunction read FDownloadFunction
write FDownloadFunction;
{ Set preferred receive buffer size.
Specifying your preferred size (in bytes) for the receive buffer in
libcurl. The maximum buffer size allowed to be set is MAX_BUFFER_SIZE. }
property BufferSize : TDataSize write SetBufferSize;
private
class function DownloadFunctionCallback (APtr : PChar; ASize : LongWord;
ANmemb : LongWord; AData : Pointer) : LongWord; static; cdecl;
function DownloadFunction (APtr : PChar; ASize : LongWord) : LongWord;
end;
implementation
{ TModuleWriter }
class function TModuleWriter.DownloadFunctionCallback (APtr : PChar; ASize :
LongWord; ANmemb : LongWord; AData : Pointer) : LongWord; cdecl;
begin
if Assigned(TModuleWriter(AData).FDownloadFunction) then
begin
Result := TModuleWriter(AData).FDownloadFunction(APtr, ASize * ANmemb);
end else
begin
Result := TModuleWriter(AData).DownloadFunction(APtr, ASize * ANmemb);
end;
end;
constructor TModuleWriter.Create (ACURL : libpascurl.CURL; AErrorsStack :
PErrorsStack; ABuffer : PMemoryBuffer);
begin
inherited Create(ACURL, AErrorsStack);
FBuffer := ABuffer;
Option(CURLOPT_WRITEDATA, Pointer(Self));
Option(CURLOPT_WRITEFUNCTION, @TModuleWriter.DownloadFunctionCallback);
end;
function TModuleWriter.DownloadFunction (APtr : PChar; ASize : LongWord) :
LongWord;
var
size : Cardinal;
begin
size := FBuffer^.GetBufferDataSize;
Move(APtr^, FBuffer^.GetAppendBuffer(ASize)^, ASize);
FBuffer^.SetBufferDataSize(size + ASize);
Result := ASize;
end;
procedure TModuleWriter.SetBufferSize (ASize : TDataSize);
begin
if ASize.Bytes < MIN_BUFFER_SIZE then
begin
ASize.Bytes := MIN_BUFFER_SIZE;
end else if ASize.Bytes > MAX_BUFFER_SIZE then
begin
ASize.Bytes := MAX_BUFFER_SIZE;
end;
Option(CURLOPT_BUFFERSIZE, Longint(ASize.Bytes));
end;
end.