forked from exilon/QuickLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Quick.Json.fpc.Compatibility.pas
134 lines (105 loc) · 2.8 KB
/
Quick.Json.fpc.Compatibility.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
unit Quick.Json.fpc.Compatibility;
{$i QuickLib.inc}
interface
uses
Classes,
SysUtils,
fpjson,
jsonparser;
type
TJsonPair = class
private
fJsonString : string;
fJsonValue : TJsonData;
public
constructor Create(const aName : string; aValue : TJsonData);
property JsonString : string read fJsonString write fJsonString;
property JsonValue : TJsonData read fJsonValue write fJsonValue;
end;
{ TJsonArray }
TJsonArray = class(fpjson.TJSONArray)
public
procedure AddElement(aValue : TJsonData);
end;
{ TJsonObject }
TJsonObject = class(fpjson.TJsonObject)
private
function GetPair(Index : Integer): TJsonPair;
public
procedure AddPair(aValue : TJsonPair); overload;
procedure AddPair(const aName : TJsonStringType; aValue : TJsonData); overload;
class function ParseJSONValue(const JSON: string; const UseUTF8: Boolean = True): TJSONData;
function GetValue(const aName : string) : TJsonData;
function ToJson : TJSONStringType;
property Pairs[Index : Integer] : TJsonPair read GetPair; default;
end;
TJsonValue = TJsonData;
TJsonNumber = class(fpjson.TJsonIntegerNumber)
public
constructor Create(aValue : Integer); overload;
constructor Create(aValue : Extended); overload;
end;
TJsonString = class(fpjson.TJsonString)
public
constructor Create(const aValue : string); overload;
end;
TJsonBool = class(fpjson.TJSONBoolean)
public
constructor Create(aValue : Boolean);
end;
implementation
{ TJsonArray }
procedure TJsonArray.AddElement(aValue: TJsonData);
begin
Add(aValue);
end;
function TJsonObject.GetPair(Index : Integer): TJsonPair;
begin
Result := TJsonPair.Create(Self.Names[Index],Self.Items[Index]);
end;
procedure TJsonObject.AddPair(aValue : TJsonPair);
begin
Add(aValue.JsonString,aValue.JsonValue);
end;
procedure TJsonObject.AddPair(const aName: TJsonStringType; aValue: TJsonData);
begin
Add(aName,aValue);
end;
class function TJsonObject.ParseJSONValue(const JSON: string; const UseUTF8: Boolean = True): TJSONData;
begin
Result := GetJson(JSON,UseUTF8);
end;
function TJsonObject.ToJson : TJSONStringType;
begin
try
Result := AsJson;
except
raise Exception.Create('Json not valid');
end;
end;
function TJsonObject.GetValue(const aName : string) : TJsonData;
begin
Result := Find(aName);
end;
constructor TJsonPair.Create(const aName : string; aValue : TJsonData);
begin
fJsonString := aName;
fJsonValue := aValue;
end;
constructor TJsonNumber.Create(aValue : Integer);
begin
inherited Create(aValue);
end;
constructor TJsonNumber.Create(aValue : Extended);
begin
Create(aValue);
end;
constructor TJsonBool.Create(aValue : Boolean);
begin
inherited Create(aValue);
end;
constructor TJsonString.Create(const aValue : string);
begin
inherited Create(aValue);
end;
end.