Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AsXMLString #29

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 66 additions & 1 deletion djson.pas
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ TdJSON = class(TObject)
class function ParseFile(const APath: string): TdJSON;

function AsJSONString(FancyFormat: Boolean = true; SpaceChar: String = #09): String;
function AsXMLString(Name : string; Indent : integer): String;

property Parent: TdJSON read FParent;
property IsList: boolean read FIsList;
Expand Down Expand Up @@ -105,6 +106,71 @@ function TdJSON.AsJSONString(FancyFormat: Boolean; SpaceChar: String): String;
Result := jsonString(FancyFormat, 0, SpaceChar);
end;

function TdJSON.AsXMLString(Name : string; Indent: integer): String;
var
sub: TPair<string, TdJSON>;
CrLfStr : string;
iIndentBy, i : integer;

function StrToXML(Str: string): string;
Var SB : TStringBuilder;
begin

try
SB := TStringBuilder.Create;
SB.Append(str);

SB.Replace('&', '&amp;');
SB.Replace('<', '&lt;');
SB.Replace('>', '&gt;');
SB.Replace('"', '&quot;');
SB.Replace('''', '&apos;');
SB.Replace(#10, '&#10;');
SB.Replace(#13, '&#13;');

result := SB.ToString;
finally
FreeAndNil(SB);
end;

end;

begin

iIndentBy := 2;
CrLfStr := #13#10;

if FIsList then
begin
Result := StringOfChar(#32, Indent) + '<' + name + '>';
for i := 0 to FListItems.Count - 1 do
Result := Result + CrLfStr + FListItems[i].AsXMLString('Node' + IntToStr(i), Indent + iIndentBy);
Result := Result + CrLfStr + StringOfChar(#32, Indent) + '</' + name + '>';
end
else if FIsDict then
begin
Result := StringOfChar(#32, Indent) + '<' + name + '>';
for sub in Items do
Result := Result + CrLfStr + sub.Value.AsXMLString(sub.Key, Indent + iIndentBy);
Result := Result + CrLfStr + StringOfChar(#32, Indent) + '</' + name + '>';
end
else
begin
case VarType(FValue) of
varNull: Result := 'null';
varInteger, varDouble: Result := VarToStr(FValue);
varBoolean: Result := AnsiLowerCase(VarToStr(FValue));
varString, varUString: Result := VarToStr(FValue);
else Result := 'ERROR';
end;
if Result = '' then
Result := StringOfChar(#32, Indent) + '<' + name + '/>'
else
Result := StringOfChar(#32, Indent) + '<' + name + '>' + StrToXML(Result) + '</' + name + '>';
end

end;

constructor TdJSON.Create(AParent: TdJSON);
begin
FParent := AParent;
Expand Down Expand Up @@ -551,4 +617,3 @@ initialization
end;

end.