ln.json/JSONObject.cs

61 lines
1.5 KiB
C#
Raw Normal View History

2017-10-26 16:41:14 +02:00
using System;
using System.Text;
using System.Collections.Generic;
2017-11-03 13:13:09 +01:00
using System.Reflection;
using System.Linq;
2019-08-07 23:02:00 +02:00
using ln.types.btree;
using System.Security.Cryptography;
2017-10-26 16:41:14 +02:00
2019-08-07 23:02:00 +02:00
namespace ln.json
2017-10-26 16:41:14 +02:00
{
2019-08-07 23:02:00 +02:00
public class JSONObject : JSONValue
2017-10-26 16:41:14 +02:00
{
2019-08-07 23:02:00 +02:00
public IEnumerable<string> Keys => values.Keys;
2017-11-03 13:13:09 +01:00
2019-08-07 23:02:00 +02:00
public override IEnumerable<JSONValue> Children => values.Values;
public override bool HasChildren => true;
2017-11-03 13:13:09 +01:00
2019-08-07 23:02:00 +02:00
BTree<string, JSONValue> values = new BTree<string, JSONValue>();
2017-10-26 16:41:14 +02:00
2019-08-07 23:02:00 +02:00
public JSONObject()
:base(JSONValueType.OBJECT){}
public override JSONValue this[string property]
{
get => values[property];
set => values[property] = value;
}
public JSONObject Add(string propertyName,JSONValue value)
{
values[propertyName] = value;
return this;
}
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append('{');
IEnumerator<string> kenum = values.Keys.GetEnumerator();
if (kenum.MoveNext())
do
{
sb.Append('"');
sb.Append(kenum.Current);
sb.Append('"');
sb.Append(':');
sb.Append(values[kenum.Current].ToString());
if (!kenum.MoveNext())
break;
sb.Append(',');
} while (true);
sb.Append('}');
return sb.ToString();
}
}
2017-10-26 16:41:14 +02:00
}