forked from HemulGM/DelphiOpenAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenAI.API.Params.pas
278 lines (235 loc) · 6.58 KB
/
OpenAI.API.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
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
unit OpenAI.API.Params;
interface
uses
System.Classes, System.JSON, System.SysUtils, System.Types, System.RTTI,
REST.JsonReflect, REST.Json.Interceptors, System.Generics.Collections;
type
TJSONInterceptorStringToString = class(TJSONInterceptor)
constructor Create; reintroduce;
protected
RTTI: TRttiContext;
end;
type
TJSONParam = class
private
FJSON: TJSONObject;
procedure SetJSON(const Value: TJSONObject);
function GetCount: Integer;
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; Value: TArray<string>): TJSONParam; overload; virtual;
function Add(const Key: string; Value: TArray<Integer>): TJSONParam; overload; virtual;
function Add(const Key: string; Value: TArray<Extended>): 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 GetOrCreateObject(const Name: string): TJSONObject;
function GetOrCreate<T: TJSONValue, constructor>(const Name: string): T;
procedure Delete(const Key: string); virtual;
procedure Clear; virtual;
property Count: Integer read GetCount;
property JSON: TJSONObject read FJSON write SetJSON;
function ToJsonString(FreeObject: Boolean = False): string; virtual;
function ToStringPairs: TArray<TPair<string, string>>;
function ToStream: TStringStream;
end;
const
DATE_FORMAT = 'YYYY-MM-DD';
TIME_FORMAT = 'HH:NN:SS';
DATE_TIME_FORMAT = DATE_FORMAT + ' ' + TIME_FORMAT;
implementation
uses
System.DateUtils;
{ TJSONInterceptorStringToString }
constructor TJSONInterceptorStringToString.Create;
begin
ConverterType := ctString;
ReverterType := rtString;
end;
{ 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 := DATE_TIME_FORMAT;
Add(Key, FormatDateTime(Format, System.DateUtils.TTimeZone.local.ToUniversalTime(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(const Key: string; Value: TArray<TJSONParam>): TJSONParam;
var
JArr: TJSONArray;
Item: TJSONParam;
begin
JArr := TJSONArray.Create;
for Item in Value do
try
JArr.AddElement(Item.JSON);
Item.JSON := nil;
finally
Item.Free;
end;
Add(Key, JArr);
Result := Self;
end;
function TJSONParam.Add(const Key: string; Value: TArray<Extended>): TJSONParam;
var
JArr: TJSONArray;
Item: Extended;
begin
JArr := TJSONArray.Create;
for Item in Value do
JArr.Add(Item);
Add(Key, JArr);
Result := Self;
end;
function TJSONParam.Add(const Key: string; Value: TArray<Integer>): TJSONParam;
var
JArr: TJSONArray;
Item: Integer;
begin
JArr := TJSONArray.Create;
for Item in Value do
JArr.Add(Item);
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;
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.GetCount: Integer;
begin
Result := FJSON.Count;
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.GetOrCreateObject(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;
function TJSONParam.ToStream: TStringStream;
begin
Result := TStringStream.Create;
try
Result.WriteString(ToJsonString);
Result.Position := 0;
except
Result.Free;
raise;
end;
end;
function TJSONParam.ToStringPairs: TArray<TPair<string, string>>;
begin
for var Pair in FJSON do
Result := Result + [TPair<string, string>.Create(Pair.JsonString.Value, Pair.JsonValue.AsType<string>)];
end;
end.