-
Notifications
You must be signed in to change notification settings - Fork 7
/
VK.Params.pas
224 lines (189 loc) · 5.45 KB
/
VK.Params.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
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
unit VK.Params;
interface
uses
System.Classes, System.JSON, System.Generics.Collections, VK.Entity.Common;
type
IJSONParam = interface
function ToJsonString(FreeObject: Boolean = False): string;
end;
TJSONParam = class(TInterfacedObject, IJSONParam)
private
FJSON: TJSONObject;
procedure SetJSON(const Value: TJSONObject);
public
constructor Create; virtual;
destructor Destroy; override;
function Add(const Key: string; const Value: string): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: Integer): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: Extended): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: Boolean): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: TDateTime; Format: string = ''): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: TJSONValue): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: TJSONParam): TJSONParam; overload; virtual;
function Add(const Key: string; const Value: TVkEntity): TJSONParam; overload; virtual;
function Add(const Key: string; Value: TArray<string>): TJSONParam; overload; virtual;
function Add(const Key: string; Value: TArray<TJSONValue>): TJSONParam; overload; virtual;
function Add(const Key: string; Value: TArray<TJSONParam>): TJSONParam; overload; virtual;
function Add<T: TVkEntity, constructor>(const Key: string; Value: TArray<T>): TJSONParam; overload;
function GetOrCreate(const Name: string): TJSONObject; overload;
function GetOrCreate<T: TJSONValue, constructor>(const Name: string): T; overload;
procedure Delete(const Key: string); virtual;
procedure Clear; virtual;
property JSON: TJSONObject read FJSON write SetJSON;
function ToJsonString(FreeObject: Boolean = False): string; virtual;
end;
implementation
uses
System.SysUtils;
{ Fetch }
type
Fetch<T> = class
type
TFetchProc = reference to procedure(const Element: T);
public
class procedure All(const Items: TArray<T>; Proc: TFetchProc);
end;
{ Fetch<T> }
class procedure Fetch<T>.All(const Items: TArray<T>; Proc: TFetchProc);
var
Item: T;
begin
for Item in Items do
Proc(Item);
end;
{ TJSONParam }
function TJSONParam.Add(const Key, Value: string): TJSONParam;
begin
Delete(Key);
FJSON.AddPair(Key, Value);
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: TJSONValue): TJSONParam;
begin
Delete(Key);
FJSON.AddPair(Key, Value);
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: TJSONParam): TJSONParam;
begin
Add(Key, TJSONValue(Value.JSON.Clone));
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: TDateTime; Format: string): TJSONParam;
begin
if Format.IsEmpty then
Format := FormatSettings.ShortDateFormat;
Add(Key, FormatDateTime(Format, Value));
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: Boolean): TJSONParam;
begin
Add(Key, TJSONBool.Create(Value));
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: Integer): TJSONParam;
begin
Add(Key, TJSONNumber.Create(Value));
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: Extended): TJSONParam;
begin
Add(Key, TJSONNumber.Create(Value));
Result := Self;
end;
function TJSONParam.Add(const Key: string; Value: TArray<TJSONValue>): TJSONParam;
var
JArr: TJSONArray;
begin
JArr := TJSONArray.Create;
Fetch<TJSONValue>.All(Value, JArr.AddElement);
Add(Key, JArr);
Result := Self;
end;
function TJSONParam.Add<T>(const Key: string; Value: TArray<T>): TJSONParam;
var
JArr: TJSONArray;
Item: T;
begin
JArr := TJSONArray.Create;
for Item in Value do
JArr.AddElement(Item.ToJsonObject);
Add(Key, JArr);
Result := Self;
end;
function TJSONParam.Add(const Key: string; Value: TArray<TJSONParam>): TJSONParam;
var
JArr: TJSONArray;
Item: TJSONParam;
begin
JArr := TJSONArray.Create;
for Item in Value do
begin
JArr.AddElement(Item.JSON);
Item.JSON := nil;
end;
Add(Key, JArr);
Result := Self;
end;
function TJSONParam.Add(const Key: string; Value: TArray<string>): TJSONParam;
var
JArr: TJSONArray;
Item: string;
begin
JArr := TJSONArray.Create;
for Item in Value do
JArr.Add(Item);
Add(Key, JArr);
Result := Self;
end;
function TJSONParam.Add(const Key: string; const Value: TVkEntity): TJSONParam;
begin
Add(Key, Value.ToJsonString);
Result := Self;
end;
procedure TJSONParam.Clear;
begin
FJSON.Free;
FJSON := TJSONObject.Create;
end;
constructor TJSONParam.Create;
begin
FJSON := TJSONObject.Create;
end;
procedure TJSONParam.Delete(const Key: string);
var
Item: TJSONPair;
begin
Item := FJSON.RemovePair(Key);
if Assigned(Item) then
Item.Free;
end;
destructor TJSONParam.Destroy;
begin
if Assigned(FJSON) then
FJSON.Free;
inherited;
end;
function TJSONParam.GetOrCreate<T>(const Name: string): T;
begin
if not FJSON.TryGetValue<T>(Name, Result) then
begin
Result := T.Create;
FJSON.AddPair(Name, Result);
end;
end;
function TJSONParam.GetOrCreate(const Name: string): TJSONObject;
begin
Result := GetOrCreate<TJSONObject>(Name);
end;
procedure TJSONParam.SetJSON(const Value: TJSONObject);
begin
FJSON := Value;
end;
function TJSONParam.ToJsonString(FreeObject: Boolean): string;
begin
Result := FJSON.ToJSON;
if FreeObject then
Free;
end;
end.