mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-12 00:43:03 +00:00
Compare commits
59 Commits
8.0.0
..
7.0.0-beta2
| Author | SHA1 | Date | |
|---|---|---|---|
| 30e100d01a | |||
| 4f79c0ed10 | |||
| f917bf0e3f | |||
| 68e525ab9d | |||
| 571dc26d5d | |||
| 63249a99db | |||
| e1c5c3d19f | |||
| f33857768b | |||
| 46da3b40a0 | |||
| bbad338941 | |||
| 3e290b185e | |||
| bdbec48155 | |||
| 76e95cf870 | |||
| da1686d95c | |||
| 22cd2268ab | |||
| 8d45b4b069 | |||
| ae4a8bdc32 | |||
| 764a56ec7f | |||
| ad28d1e00e | |||
| 1c5e9b0d64 | |||
| 7ac75b9abe | |||
| d2dc8a06e5 | |||
| 9ddd446892 | |||
| 1eb0214e7a | |||
| 4e4ffcab1c | |||
| 0d6a100aac | |||
| 99df7cc792 | |||
| 3fa8277a30 | |||
| d0fc67355d | |||
| 8a869e8e1d | |||
| acd9b0d533 | |||
| fc6503035a | |||
| e3207033c3 | |||
| b057974cd0 | |||
| 9ead87d350 | |||
| c1ee36dd8a | |||
| eee19b28a5 | |||
| 58098edaa6 | |||
| c931a60cb7 | |||
| 12d5783625 | |||
| b640690a0f | |||
| c41e128900 | |||
| 1ba66be29f | |||
| ff6a9d5f13 | |||
| b59fe9e3ef | |||
| ac434fa2c6 | |||
| 3de04e4828 | |||
| 081c2d4268 | |||
| 6fa66d819d | |||
| 312d54cf04 | |||
| 35f7dbf9fb | |||
| 5539320827 | |||
| cf941fe5c9 | |||
| ad3959a8e9 | |||
| 9f92d86855 | |||
| bee2e86c2f | |||
| bf854c92af | |||
| 141d5bd956 | |||
| cff3863373 |
@@ -16,7 +16,7 @@ jobs:
|
|||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v1
|
||||||
with:
|
with:
|
||||||
dotnet-version: 8.0.x
|
dotnet-version: 6.0.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -25,8 +24,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result1 = await waiter1;
|
var result1 = await waiter1;
|
||||||
var result2 = await waiter2;
|
var result2 = await waiter2;
|
||||||
|
|
||||||
Assert.That(result1);
|
Assert.True(result1);
|
||||||
Assert.That(result2);
|
Assert.True(result2);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -40,8 +39,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result1 = await waiter1;
|
var result1 = await waiter1;
|
||||||
var result2 = await waiter2;
|
var result2 = await waiter2;
|
||||||
|
|
||||||
Assert.That(result1);
|
Assert.True(result1);
|
||||||
Assert.That(result2);
|
Assert.True(result2);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -56,14 +55,14 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var result1 = await waiter1;
|
var result1 = await waiter1;
|
||||||
|
|
||||||
Assert.That(result1);
|
Assert.True(result1);
|
||||||
Assert.That(waiter2.Status != TaskStatus.RanToCompletion);
|
Assert.True(waiter2.Status != TaskStatus.RanToCompletion);
|
||||||
|
|
||||||
evnt.Set();
|
evnt.Set();
|
||||||
|
|
||||||
var result2 = await waiter2;
|
var result2 = await waiter2;
|
||||||
|
|
||||||
Assert.That(result2);
|
Assert.True(result2);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -76,13 +75,13 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var result1 = await waiter1;
|
var result1 = await waiter1;
|
||||||
|
|
||||||
Assert.That(result1);
|
Assert.True(result1);
|
||||||
Assert.That(waiter2.Status != TaskStatus.RanToCompletion);
|
Assert.True(waiter2.Status != TaskStatus.RanToCompletion);
|
||||||
evnt.Set();
|
evnt.Set();
|
||||||
|
|
||||||
var result2 = await waiter2;
|
var result2 = await waiter2;
|
||||||
|
|
||||||
Assert.That(result2);
|
Assert.True(result2);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -106,12 +105,12 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
for(var i = 1; i <= 10; i++)
|
for(var i = 1; i <= 10; i++)
|
||||||
{
|
{
|
||||||
evnt.Set();
|
evnt.Set();
|
||||||
Assert.That(10 - i == waiters.Count(w => w.Status != TaskStatus.RanToCompletion));
|
Assert.AreEqual(10 - i, waiters.Count(w => w.Status != TaskStatus.RanToCompletion));
|
||||||
}
|
}
|
||||||
|
|
||||||
await resultsWaiter;
|
await resultsWaiter;
|
||||||
|
|
||||||
Assert.That(10 == results.Count(r => r));
|
Assert.AreEqual(10, results.Count(r => r));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -125,7 +124,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var result1 = await waiter1;
|
var result1 = await waiter1;
|
||||||
|
|
||||||
Assert.That(result1);
|
Assert.True(result1);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -135,9 +134,9 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var waiter1 = evnt.WaitAsync(TimeSpan.FromMilliseconds(100));
|
var waiter1 = evnt.WaitAsync(TimeSpan.FromMilliseconds(100));
|
||||||
|
|
||||||
var result1 = await waiter1;
|
var result1 = await waiter1;
|
||||||
|
|
||||||
ClassicAssert.False(result1);
|
Assert.False(result1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ using CryptoExchange.Net.Objects;
|
|||||||
using CryptoExchange.Net.UnitTests.TestImplementations;
|
using CryptoExchange.Net.UnitTests.TestImplementations;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
@@ -22,7 +21,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = client.SubClient.Deserialize<object>("{\"testProperty\": 123}");
|
var result = client.SubClient.Deserialize<object>("{\"testProperty\": 123}");
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(result.Success);
|
Assert.IsTrue(result.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -35,8 +34,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = client.SubClient.Deserialize<object>("{\"testProperty\": 123");
|
var result = client.SubClient.Deserialize<object>("{\"testProperty\": 123");
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
Assert.That(result.Error != null);
|
Assert.IsTrue(result.Error != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("https://api.test.com/api", new[] { "path1", "path2" }, "https://api.test.com/api/path1/path2")]
|
[TestCase("https://api.test.com/api", new[] { "path1", "path2" }, "https://api.test.com/api/path1/path2")]
|
||||||
@@ -49,7 +48,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void AppendPathTests(string baseUrl, string[] path, string expected)
|
public void AppendPathTests(string baseUrl, string[] path, string expected)
|
||||||
{
|
{
|
||||||
var result = baseUrl.AppendPath(path);
|
var result = baseUrl.AppendPath(path);
|
||||||
Assert.That(expected == result);
|
Assert.AreEqual(expected, result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -18,9 +17,9 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var result = new CallResult(new ServerError("TestError"));
|
var result = new CallResult(new ServerError("TestError"));
|
||||||
|
|
||||||
ClassicAssert.AreSame(result.Error.Message, "TestError");
|
Assert.AreEqual(result.Error.Message, "TestError");
|
||||||
ClassicAssert.IsFalse(result);
|
Assert.IsFalse(result);
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -28,9 +27,9 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var result = new CallResult(null);
|
var result = new CallResult(null);
|
||||||
|
|
||||||
ClassicAssert.IsNull(result.Error);
|
Assert.IsNull(result.Error);
|
||||||
Assert.That(result);
|
Assert.IsTrue(result);
|
||||||
Assert.That(result.Success);
|
Assert.IsTrue(result.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -38,10 +37,10 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var result = new CallResult<object>(new ServerError("TestError"));
|
var result = new CallResult<object>(new ServerError("TestError"));
|
||||||
|
|
||||||
ClassicAssert.AreSame(result.Error.Message, "TestError");
|
Assert.AreEqual(result.Error.Message, "TestError");
|
||||||
ClassicAssert.IsNull(result.Data);
|
Assert.IsNull(result.Data);
|
||||||
ClassicAssert.IsFalse(result);
|
Assert.IsFalse(result);
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -49,10 +48,10 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var result = new CallResult<object>(new object());
|
var result = new CallResult<object>(new object());
|
||||||
|
|
||||||
ClassicAssert.IsNull(result.Error);
|
Assert.IsNull(result.Error);
|
||||||
ClassicAssert.IsNotNull(result.Data);
|
Assert.IsNotNull(result.Data);
|
||||||
Assert.That(result);
|
Assert.IsTrue(result);
|
||||||
Assert.That(result.Success);
|
Assert.IsTrue(result.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -61,11 +60,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = new CallResult<TestObjectResult>(new TestObjectResult());
|
var result = new CallResult<TestObjectResult>(new TestObjectResult());
|
||||||
var asResult = result.As<TestObject2>(result.Data.InnerData);
|
var asResult = result.As<TestObject2>(result.Data.InnerData);
|
||||||
|
|
||||||
ClassicAssert.IsNull(asResult.Error);
|
Assert.IsNull(asResult.Error);
|
||||||
ClassicAssert.IsNotNull(asResult.Data);
|
Assert.IsNotNull(asResult.Data);
|
||||||
Assert.That(asResult.Data is not null);
|
Assert.IsTrue(asResult.Data is TestObject2);
|
||||||
Assert.That(asResult);
|
Assert.IsTrue(asResult);
|
||||||
Assert.That(asResult.Success);
|
Assert.IsTrue(asResult.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -74,11 +73,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = new CallResult<TestObjectResult>(new ServerError("TestError"));
|
var result = new CallResult<TestObjectResult>(new ServerError("TestError"));
|
||||||
var asResult = result.As<TestObject2>(default);
|
var asResult = result.As<TestObject2>(default);
|
||||||
|
|
||||||
ClassicAssert.IsNotNull(asResult.Error);
|
Assert.IsNotNull(asResult.Error);
|
||||||
ClassicAssert.AreSame(asResult.Error.Message, "TestError");
|
Assert.AreEqual(asResult.Error.Message, "TestError");
|
||||||
ClassicAssert.IsNull(asResult.Data);
|
Assert.IsNull(asResult.Data);
|
||||||
ClassicAssert.IsFalse(asResult);
|
Assert.IsFalse(asResult);
|
||||||
ClassicAssert.IsFalse(asResult.Success);
|
Assert.IsFalse(asResult.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -87,11 +86,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = new CallResult<TestObjectResult>(new ServerError("TestError"));
|
var result = new CallResult<TestObjectResult>(new ServerError("TestError"));
|
||||||
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
||||||
|
|
||||||
ClassicAssert.IsNotNull(asResult.Error);
|
Assert.IsNotNull(asResult.Error);
|
||||||
ClassicAssert.AreSame(asResult.Error.Message, "TestError2");
|
Assert.AreEqual(asResult.Error.Message, "TestError2");
|
||||||
ClassicAssert.IsNull(asResult.Data);
|
Assert.IsNull(asResult.Data);
|
||||||
ClassicAssert.IsFalse(asResult);
|
Assert.IsFalse(asResult);
|
||||||
ClassicAssert.IsFalse(asResult.Success);
|
Assert.IsFalse(asResult.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -100,11 +99,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = new WebCallResult<TestObjectResult>(new ServerError("TestError"));
|
var result = new WebCallResult<TestObjectResult>(new ServerError("TestError"));
|
||||||
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
||||||
|
|
||||||
ClassicAssert.IsNotNull(asResult.Error);
|
Assert.IsNotNull(asResult.Error);
|
||||||
ClassicAssert.AreSame(asResult.Error.Message, "TestError2");
|
Assert.AreEqual(asResult.Error.Message, "TestError2");
|
||||||
ClassicAssert.IsNull(asResult.Data);
|
Assert.IsNull(asResult.Data);
|
||||||
ClassicAssert.IsFalse(asResult);
|
Assert.IsFalse(asResult);
|
||||||
ClassicAssert.IsFalse(asResult.Success);
|
Assert.IsFalse(asResult.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -121,20 +120,19 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
null,
|
null,
|
||||||
HttpMethod.Get,
|
HttpMethod.Get,
|
||||||
new List<KeyValuePair<string, IEnumerable<string>>>(),
|
new List<KeyValuePair<string, IEnumerable<string>>>(),
|
||||||
ResultDataSource.Server,
|
|
||||||
new TestObjectResult(),
|
new TestObjectResult(),
|
||||||
null);
|
null);
|
||||||
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
||||||
|
|
||||||
ClassicAssert.IsNotNull(asResult.Error);
|
Assert.IsNotNull(asResult.Error);
|
||||||
Assert.That(asResult.Error.Message == "TestError2");
|
Assert.AreEqual(asResult.Error.Message, "TestError2");
|
||||||
Assert.That(asResult.ResponseStatusCode == System.Net.HttpStatusCode.OK);
|
Assert.AreEqual(asResult.ResponseStatusCode, System.Net.HttpStatusCode.OK);
|
||||||
Assert.That(asResult.ResponseTime == TimeSpan.FromSeconds(1));
|
Assert.AreEqual(asResult.ResponseTime, TimeSpan.FromSeconds(1));
|
||||||
Assert.That(asResult.RequestUrl == "https://test.com/api");
|
Assert.AreEqual(asResult.RequestUrl, "https://test.com/api");
|
||||||
Assert.That(asResult.RequestMethod == HttpMethod.Get);
|
Assert.AreEqual(asResult.RequestMethod, HttpMethod.Get);
|
||||||
ClassicAssert.IsNull(asResult.Data);
|
Assert.IsNull(asResult.Data);
|
||||||
ClassicAssert.IsFalse(asResult);
|
Assert.IsFalse(asResult);
|
||||||
ClassicAssert.IsFalse(asResult.Success);
|
Assert.IsFalse(asResult.Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -151,19 +149,18 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
null,
|
null,
|
||||||
HttpMethod.Get,
|
HttpMethod.Get,
|
||||||
new List<KeyValuePair<string, IEnumerable<string>>>(),
|
new List<KeyValuePair<string, IEnumerable<string>>>(),
|
||||||
ResultDataSource.Server,
|
|
||||||
new TestObjectResult(),
|
new TestObjectResult(),
|
||||||
null);
|
null);
|
||||||
var asResult = result.As<TestObject2>(result.Data.InnerData);
|
var asResult = result.As<TestObject2>(result.Data.InnerData);
|
||||||
|
|
||||||
ClassicAssert.IsNull(asResult.Error);
|
Assert.IsNull(asResult.Error);
|
||||||
Assert.That(asResult.ResponseStatusCode == System.Net.HttpStatusCode.OK);
|
Assert.AreEqual(asResult.ResponseStatusCode, System.Net.HttpStatusCode.OK);
|
||||||
Assert.That(asResult.ResponseTime == TimeSpan.FromSeconds(1));
|
Assert.AreEqual(asResult.ResponseTime, TimeSpan.FromSeconds(1));
|
||||||
Assert.That(asResult.RequestUrl == "https://test.com/api");
|
Assert.AreEqual(asResult.RequestUrl, "https://test.com/api");
|
||||||
Assert.That(asResult.RequestMethod == HttpMethod.Get);
|
Assert.AreEqual(asResult.RequestMethod, HttpMethod.Get);
|
||||||
ClassicAssert.IsNotNull(asResult.Data);
|
Assert.IsNotNull(asResult.Data);
|
||||||
Assert.That(asResult);
|
Assert.IsTrue(asResult);
|
||||||
Assert.That(asResult.Success);
|
Assert.IsTrue(asResult.Success);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+19
-21
@@ -1,9 +1,7 @@
|
|||||||
using CryptoExchange.Net.Attributes;
|
using CryptoExchange.Net.Attributes;
|
||||||
using CryptoExchange.Net.Converters;
|
using CryptoExchange.Net.Converters;
|
||||||
using CryptoExchange.Net.Converters.JsonNet;
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -13,7 +11,7 @@ using System.Threading.Tasks;
|
|||||||
namespace CryptoExchange.Net.UnitTests
|
namespace CryptoExchange.Net.UnitTests
|
||||||
{
|
{
|
||||||
[TestFixture()]
|
[TestFixture()]
|
||||||
public class JsonNetConverterTests
|
public class ConverterTests
|
||||||
{
|
{
|
||||||
[TestCase("2021-05-12")]
|
[TestCase("2021-05-12")]
|
||||||
[TestCase("20210512")]
|
[TestCase("20210512")]
|
||||||
@@ -29,7 +27,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestDateTimeConverterString(string input, bool expectNull = false)
|
public void TestDateTimeConverterString(string input, bool expectNull = false)
|
||||||
{
|
{
|
||||||
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": \"{input}\" }}");
|
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": \"{input}\" }}");
|
||||||
Assert.That(output.Time == (expectNull ? null: new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc)));
|
Assert.AreEqual(output.Time, expectNull ? null: new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1620777600.000)]
|
[TestCase(1620777600.000)]
|
||||||
@@ -37,7 +35,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestDateTimeConverterDouble(double input)
|
public void TestDateTimeConverterDouble(double input)
|
||||||
{
|
{
|
||||||
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": {input} }}");
|
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": {input} }}");
|
||||||
Assert.That(output.Time == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
Assert.AreEqual(output.Time, new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1620777600)]
|
[TestCase(1620777600)]
|
||||||
@@ -48,7 +46,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestDateTimeConverterLong(long input, bool expectNull = false)
|
public void TestDateTimeConverterLong(long input, bool expectNull = false)
|
||||||
{
|
{
|
||||||
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": {input} }}");
|
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": {input} }}");
|
||||||
Assert.That(output.Time == (expectNull ? null : new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc)));
|
Assert.AreEqual(output.Time, expectNull ? null : new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1620777600)]
|
[TestCase(1620777600)]
|
||||||
@@ -56,14 +54,14 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestDateTimeConverterFromSeconds(double input)
|
public void TestDateTimeConverterFromSeconds(double input)
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertFromSeconds(input);
|
var output = DateTimeConverter.ConvertFromSeconds(input);
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
Assert.AreEqual(output, new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestDateTimeConverterToSeconds()
|
public void TestDateTimeConverterToSeconds()
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertToSeconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
var output = DateTimeConverter.ConvertToSeconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
Assert.That(output == 1620777600);
|
Assert.AreEqual(output, 1620777600);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1620777600000)]
|
[TestCase(1620777600000)]
|
||||||
@@ -71,49 +69,49 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestDateTimeConverterFromMilliseconds(double input)
|
public void TestDateTimeConverterFromMilliseconds(double input)
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertFromMilliseconds(input);
|
var output = DateTimeConverter.ConvertFromMilliseconds(input);
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
Assert.AreEqual(output, new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestDateTimeConverterToMilliseconds()
|
public void TestDateTimeConverterToMilliseconds()
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertToMilliseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
var output = DateTimeConverter.ConvertToMilliseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
Assert.That(output == 1620777600000);
|
Assert.AreEqual(output, 1620777600000);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1620777600000000)]
|
[TestCase(1620777600000000)]
|
||||||
public void TestDateTimeConverterFromMicroseconds(long input)
|
public void TestDateTimeConverterFromMicroseconds(long input)
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertFromMicroseconds(input);
|
var output = DateTimeConverter.ConvertFromMicroseconds(input);
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
Assert.AreEqual(output, new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestDateTimeConverterToMicroseconds()
|
public void TestDateTimeConverterToMicroseconds()
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertToMicroseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
var output = DateTimeConverter.ConvertToMicroseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
Assert.That(output == 1620777600000000);
|
Assert.AreEqual(output, 1620777600000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1620777600000000000)]
|
[TestCase(1620777600000000000)]
|
||||||
public void TestDateTimeConverterFromNanoseconds(long input)
|
public void TestDateTimeConverterFromNanoseconds(long input)
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertFromNanoseconds(input);
|
var output = DateTimeConverter.ConvertFromNanoseconds(input);
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
Assert.AreEqual(output, new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestDateTimeConverterToNanoseconds()
|
public void TestDateTimeConverterToNanoseconds()
|
||||||
{
|
{
|
||||||
var output = DateTimeConverter.ConvertToNanoseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
var output = DateTimeConverter.ConvertToNanoseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
||||||
Assert.That(output == 1620777600000000000);
|
Assert.AreEqual(output, 1620777600000000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase()]
|
[TestCase()]
|
||||||
public void TestDateTimeConverterNull()
|
public void TestDateTimeConverterNull()
|
||||||
{
|
{
|
||||||
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": null }}");
|
var output = JsonConvert.DeserializeObject<TimeObject>($"{{ \"time\": null }}");
|
||||||
Assert.That(output.Time == null);
|
Assert.AreEqual(output.Time, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(TestEnum.One, "1")]
|
[TestCase(TestEnum.One, "1")]
|
||||||
@@ -124,7 +122,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestEnumConverterNullableGetStringTests(TestEnum? value, string expected)
|
public void TestEnumConverterNullableGetStringTests(TestEnum? value, string expected)
|
||||||
{
|
{
|
||||||
var output = EnumConverter.GetString(value);
|
var output = EnumConverter.GetString(value);
|
||||||
Assert.That(output == expected);
|
Assert.AreEqual(output, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(TestEnum.One, "1")]
|
[TestCase(TestEnum.One, "1")]
|
||||||
@@ -134,7 +132,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void TestEnumConverterGetStringTests(TestEnum value, string expected)
|
public void TestEnumConverterGetStringTests(TestEnum value, string expected)
|
||||||
{
|
{
|
||||||
var output = EnumConverter.GetString(value);
|
var output = EnumConverter.GetString(value);
|
||||||
Assert.That(output == expected);
|
Assert.AreEqual(output, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("1", TestEnum.One)]
|
[TestCase("1", TestEnum.One)]
|
||||||
@@ -149,7 +147,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
var val = value == null ? "null" : $"\"{value}\"";
|
||||||
var output = JsonConvert.DeserializeObject<EnumObject>($"{{ \"Value\": {val} }}");
|
var output = JsonConvert.DeserializeObject<EnumObject>($"{{ \"Value\": {val} }}");
|
||||||
Assert.That(output.Value == expected);
|
Assert.AreEqual(output.Value, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("1", TestEnum.One)]
|
[TestCase("1", TestEnum.One)]
|
||||||
@@ -164,7 +162,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
var val = value == null ? "null" : $"\"{value}\"";
|
||||||
var output = JsonConvert.DeserializeObject<NotNullableEnumObject>($"{{ \"Value\": {val} }}");
|
var output = JsonConvert.DeserializeObject<NotNullableEnumObject>($"{{ \"Value\": {val} }}");
|
||||||
Assert.That(output.Value == expected);
|
Assert.AreEqual(output.Value, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("1", true)]
|
[TestCase("1", true)]
|
||||||
@@ -183,7 +181,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
var val = value == null ? "null" : $"\"{value}\"";
|
||||||
var output = JsonConvert.DeserializeObject<BoolObject>($"{{ \"Value\": {val} }}");
|
var output = JsonConvert.DeserializeObject<BoolObject>($"{{ \"Value\": {val} }}");
|
||||||
Assert.That(output.Value == expected);
|
Assert.AreEqual(output.Value, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("1", true)]
|
[TestCase("1", true)]
|
||||||
@@ -202,7 +200,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
var val = value == null ? "null" : $"\"{value}\"";
|
||||||
var output = JsonConvert.DeserializeObject<NotNullableBoolObject>($"{{ \"Value\": {val} }}");
|
var output = JsonConvert.DeserializeObject<NotNullableBoolObject>($"{{ \"Value\": {val} }}");
|
||||||
Assert.That(output.Value == expected);
|
Assert.AreEqual(output.Value, expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0"></PackageReference>
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0-preview-20211130-02"></PackageReference>
|
||||||
<PackageReference Include="Moq" Version="4.20.70" />
|
<PackageReference Include="Moq" Version="4.20.70" />
|
||||||
<PackageReference Include="NUnit" Version="4.1.0"></PackageReference>
|
<PackageReference Include="NUnit" Version="3.13.2"></PackageReference>
|
||||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"></PackageReference>
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0"></PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests
|
namespace CryptoExchange.Net.UnitTests
|
||||||
@@ -17,7 +16,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void ClampValueTests(decimal min, decimal max, decimal input, decimal expected)
|
public void ClampValueTests(decimal min, decimal max, decimal input, decimal expected)
|
||||||
{
|
{
|
||||||
var result = ExchangeHelpers.ClampValue(min, max, input);
|
var result = ExchangeHelpers.ClampValue(min, max, input);
|
||||||
Assert.That(expected == result);
|
Assert.AreEqual(expected, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(0.1, 1, 0.1, RoundingType.Down, 0.4, 0.4)]
|
[TestCase(0.1, 1, 0.1, RoundingType.Down, 0.4, 0.4)]
|
||||||
@@ -34,7 +33,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void AdjustValueStepTests(decimal min, decimal max, decimal? step, RoundingType roundingType, decimal input, decimal expected)
|
public void AdjustValueStepTests(decimal min, decimal max, decimal? step, RoundingType roundingType, decimal input, decimal expected)
|
||||||
{
|
{
|
||||||
var result = ExchangeHelpers.AdjustValueStep(min, max, step, roundingType, input);
|
var result = ExchangeHelpers.AdjustValueStep(min, max, step, roundingType, input);
|
||||||
Assert.That(expected == result);
|
Assert.AreEqual(expected, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(0.1, 1, 2, RoundingType.Closest, 0.4, 0.4)]
|
[TestCase(0.1, 1, 2, RoundingType.Closest, 0.4, 0.4)]
|
||||||
@@ -49,7 +48,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void AdjustValuePrecisionTests(decimal min, decimal max, int? precision, RoundingType roundingType, decimal input, decimal expected)
|
public void AdjustValuePrecisionTests(decimal min, decimal max, int? precision, RoundingType roundingType, decimal input, decimal expected)
|
||||||
{
|
{
|
||||||
var result = ExchangeHelpers.AdjustValuePrecision(min, max, precision, roundingType, input);
|
var result = ExchangeHelpers.AdjustValuePrecision(min, max, precision, roundingType, input);
|
||||||
Assert.That(expected == result);
|
Assert.AreEqual(expected, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(5, 0.1563158, 0.15631)]
|
[TestCase(5, 0.1563158, 0.15631)]
|
||||||
@@ -60,7 +59,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void RoundDownTests(int decimalPlaces, decimal input, decimal expected)
|
public void RoundDownTests(int decimalPlaces, decimal input, decimal expected)
|
||||||
{
|
{
|
||||||
var result = ExchangeHelpers.RoundDown(input, decimalPlaces);
|
var result = ExchangeHelpers.RoundDown(input, decimalPlaces);
|
||||||
Assert.That(expected == result);
|
Assert.AreEqual(expected, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(0.1234560000, "0.123456")]
|
[TestCase(0.1234560000, "0.123456")]
|
||||||
@@ -68,7 +67,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void NormalizeTests(decimal input, string expected)
|
public void NormalizeTests(decimal input, string expected)
|
||||||
{
|
{
|
||||||
var result = ExchangeHelpers.Normalize(input);
|
var result = ExchangeHelpers.Normalize(input);
|
||||||
Assert.That(expected == result.ToString(CultureInfo.InvariantCulture));
|
Assert.AreEqual(expected, result.ToString(CultureInfo.InvariantCulture));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ using CryptoExchange.Net.Objects.Options;
|
|||||||
using CryptoExchange.Net.UnitTests.TestImplementations;
|
using CryptoExchange.Net.UnitTests.TestImplementations;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -50,9 +49,9 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
};
|
};
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(options.ReceiveWindow == TimeSpan.FromSeconds(10));
|
Assert.AreEqual(options.ReceiveWindow, TimeSpan.FromSeconds(10));
|
||||||
Assert.That(options.ApiCredentials.Key == "123");
|
Assert.AreEqual(options.ApiCredentials.Key.GetString(), "123");
|
||||||
Assert.That(options.ApiCredentials.Secret == "456");
|
Assert.AreEqual(options.ApiCredentials.Secret.GetString(), "456");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -64,10 +63,10 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
options.Api2Options.ApiCredentials = new ApiCredentials("789", "101");
|
options.Api2Options.ApiCredentials = new ApiCredentials("789", "101");
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(options.Api1Options.ApiCredentials.Key == "123");
|
Assert.AreEqual(options.Api1Options.ApiCredentials.Key.GetString(), "123");
|
||||||
Assert.That(options.Api1Options.ApiCredentials.Secret == "456");
|
Assert.AreEqual(options.Api1Options.ApiCredentials.Secret.GetString(), "456");
|
||||||
Assert.That(options.Api2Options.ApiCredentials.Key == "789");
|
Assert.AreEqual(options.Api2Options.ApiCredentials.Key.GetString(), "789");
|
||||||
Assert.That(options.Api2Options.ApiCredentials.Secret == "101");
|
Assert.AreEqual(options.Api2Options.ApiCredentials.Secret.GetString(), "101");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -80,10 +79,10 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
||||||
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
||||||
Assert.That(authProvider1.GetKey() == "111");
|
Assert.AreEqual(authProvider1.GetKey(), "111");
|
||||||
Assert.That(authProvider1.GetSecret() == "222");
|
Assert.AreEqual(authProvider1.GetSecret(), "222");
|
||||||
Assert.That(authProvider2.GetKey() == "333");
|
Assert.AreEqual(authProvider2.GetKey(), "333");
|
||||||
Assert.That(authProvider2.GetSecret() == "444");
|
Assert.AreEqual(authProvider2.GetSecret(), "444");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -96,10 +95,10 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
||||||
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
||||||
Assert.That(authProvider1.GetKey() == "111");
|
Assert.AreEqual(authProvider1.GetKey(), "111");
|
||||||
Assert.That(authProvider1.GetSecret() == "222");
|
Assert.AreEqual(authProvider1.GetSecret(), "222");
|
||||||
Assert.That(authProvider2.GetKey() == "123");
|
Assert.AreEqual(authProvider2.GetKey(), "123");
|
||||||
Assert.That(authProvider2.GetSecret() == "456");
|
Assert.AreEqual(authProvider2.GetSecret(), "456");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
@@ -116,11 +115,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
||||||
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
||||||
Assert.That(authProvider1.GetKey() == "333");
|
Assert.AreEqual(authProvider1.GetKey(), "333");
|
||||||
Assert.That(authProvider1.GetSecret() == "444");
|
Assert.AreEqual(authProvider1.GetSecret(), "444");
|
||||||
Assert.That(authProvider2.GetKey() == "123");
|
Assert.AreEqual(authProvider2.GetKey(), "123");
|
||||||
Assert.That(authProvider2.GetSecret() == "456");
|
Assert.AreEqual(authProvider2.GetSecret(), "456");
|
||||||
Assert.That(client.Api2.BaseAddress == "https://localhost:123");
|
Assert.AreEqual(client.Api2.BaseAddress, "https://localhost:123");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,12 +12,6 @@ using Microsoft.Extensions.Logging;
|
|||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
using CryptoExchange.Net.RateLimiting;
|
|
||||||
using System.Net;
|
|
||||||
using CryptoExchange.Net.RateLimiting.Guards;
|
|
||||||
using CryptoExchange.Net.RateLimiting.Filters;
|
|
||||||
using CryptoExchange.Net.RateLimiting.Interfaces;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests
|
namespace CryptoExchange.Net.UnitTests
|
||||||
{
|
{
|
||||||
@@ -36,8 +30,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = client.Api1.Request<TestObject>().Result;
|
var result = client.Api1.Request<TestObject>().Result;
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(result.Success);
|
Assert.IsTrue(result.Success);
|
||||||
Assert.That(TestHelpers.AreEqual(expected, result.Data));
|
Assert.IsTrue(TestHelpers.AreEqual(expected, result.Data));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -51,8 +45,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = client.Api1.Request<TestObject>().Result;
|
var result = client.Api1.Request<TestObject>().Result;
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
Assert.That(result.Error != null);
|
Assert.IsTrue(result.Error != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -66,8 +60,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = await client.Api1.Request<TestObject>();
|
var result = await client.Api1.Request<TestObject>();
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
Assert.That(result.Error != null);
|
Assert.IsTrue(result.Error != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -81,11 +75,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = await client.Api1.Request<TestObject>();
|
var result = await client.Api1.Request<TestObject>();
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
Assert.That(result.Error != null);
|
Assert.IsTrue(result.Error != null);
|
||||||
Assert.That(result.Error is ServerError);
|
Assert.IsTrue(result.Error is ServerError);
|
||||||
Assert.That(result.Error.Message.Contains("Invalid request"));
|
Assert.IsTrue(result.Error.Message.Contains("Invalid request"));
|
||||||
Assert.That(result.Error.Message.Contains("123"));
|
Assert.IsTrue(result.Error.Message.Contains("123"));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -99,11 +93,11 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var result = await client.Api2.Request<TestObject>();
|
var result = await client.Api2.Request<TestObject>();
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
ClassicAssert.IsFalse(result.Success);
|
Assert.IsFalse(result.Success);
|
||||||
Assert.That(result.Error != null);
|
Assert.IsTrue(result.Error != null);
|
||||||
Assert.That(result.Error is ServerError);
|
Assert.IsTrue(result.Error is ServerError);
|
||||||
Assert.That(result.Error.Code == 123);
|
Assert.IsTrue(result.Error.Code == 123);
|
||||||
Assert.That(result.Error.Message == "Invalid request");
|
Assert.IsTrue(result.Error.Message == "Invalid request");
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -112,15 +106,15 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
// arrange
|
// arrange
|
||||||
// act
|
// act
|
||||||
var options = new TestClientOptions();
|
var options = new TestClientOptions();
|
||||||
options.Api1Options.TimestampRecalculationInterval = TimeSpan.FromMinutes(10);
|
options.Api1Options.RateLimiters = new List<IRateLimiter> { new RateLimiter() };
|
||||||
options.Api1Options.OutputOriginalData = true;
|
options.Api1Options.RateLimitingBehaviour = RateLimitingBehaviour.Fail;
|
||||||
options.RequestTimeout = TimeSpan.FromMinutes(1);
|
options.RequestTimeout = TimeSpan.FromMinutes(1);
|
||||||
var client = new TestBaseClient(options);
|
var client = new TestBaseClient(options);
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(((TestClientOptions)client.ClientOptions).Api1Options.TimestampRecalculationInterval == TimeSpan.FromMinutes(10));
|
Assert.IsTrue(((TestClientOptions)client.ClientOptions).Api1Options.RateLimiters.Count == 1);
|
||||||
Assert.That(((TestClientOptions)client.ClientOptions).Api1Options.OutputOriginalData == true);
|
Assert.IsTrue(((TestClientOptions)client.ClientOptions).Api1Options.RateLimitingBehaviour == RateLimitingBehaviour.Fail);
|
||||||
Assert.That(((TestClientOptions)client.ClientOptions).RequestTimeout == TimeSpan.FromMinutes(1));
|
Assert.IsTrue(((TestClientOptions)client.ClientOptions).RequestTimeout == TimeSpan.FromMinutes(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("GET", HttpMethodParameterPosition.InUri)] // No need to test InBody for GET since thats not valid
|
[TestCase("GET", HttpMethodParameterPosition.InUri)] // No need to test InBody for GET since thats not valid
|
||||||
@@ -151,13 +145,13 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
});
|
});
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(request.Method == new HttpMethod(method));
|
Assert.AreEqual(request.Method, new HttpMethod(method));
|
||||||
Assert.That((request.Content?.Contains("TestParam1") == true) == (pos == HttpMethodParameterPosition.InBody));
|
Assert.AreEqual(request.Content?.Contains("TestParam1") == true, pos == HttpMethodParameterPosition.InBody);
|
||||||
Assert.That((request.Uri.ToString().Contains("TestParam1")) == (pos == HttpMethodParameterPosition.InUri));
|
Assert.AreEqual(request.Uri.ToString().Contains("TestParam1"), pos == HttpMethodParameterPosition.InUri);
|
||||||
Assert.That((request.Content?.Contains("TestParam2") == true) == (pos == HttpMethodParameterPosition.InBody));
|
Assert.AreEqual(request.Content?.Contains("TestParam2") == true, pos == HttpMethodParameterPosition.InBody);
|
||||||
Assert.That((request.Uri.ToString().Contains("TestParam2")) == (pos == HttpMethodParameterPosition.InUri));
|
Assert.AreEqual(request.Uri.ToString().Contains("TestParam2"), pos == HttpMethodParameterPosition.InUri);
|
||||||
Assert.That(request.GetHeaders().First().Key == "TestHeader");
|
Assert.AreEqual(request.GetHeaders().First().Key, "TestHeader");
|
||||||
Assert.That(request.GetHeaders().First().Value.Contains("123"));
|
Assert.IsTrue(request.GetHeaders().First().Value.Contains("123"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -167,22 +161,18 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
[TestCase(1, 2)]
|
[TestCase(1, 2)]
|
||||||
public async Task PartialEndpointRateLimiterBasics(int requests, double perSeconds)
|
public async Task PartialEndpointRateLimiterBasics(int requests, double perSeconds)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerHost, new PathStartFilter("/sapi/"), requests, TimeSpan.FromSeconds(perSeconds), RateLimitWindowType.Fixed));
|
rateLimiter.AddPartialEndpointLimit("/sapi/", requests, TimeSpan.FromSeconds(perSeconds));
|
||||||
|
|
||||||
var triggered = false;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { triggered = true; };
|
|
||||||
var requestDefinition = new RequestDefinition("/sapi/v1/system/status", HttpMethod.Get);
|
|
||||||
|
|
||||||
for (var i = 0; i < requests + 1; i++)
|
for (var i = 0; i < requests + 1; i++)
|
||||||
{
|
{
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), "/sapi/v1/system/status", HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
Assert.That(i == requests? triggered : !triggered);
|
Assert.IsTrue(i == requests? result1.Data > 1 : result1.Data == 0);
|
||||||
}
|
}
|
||||||
triggered = false;
|
|
||||||
await Task.Delay((int)Math.Round(perSeconds * 1000) + 10);
|
await Task.Delay((int)Math.Round(perSeconds * 1000) + 10);
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result2 = await rateLimiter.LimitRequestAsync(new TraceLogger(), "/sapi/v1/system/status", HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
Assert.That(!triggered);
|
Assert.IsTrue(result2.Data == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("/sapi/test1", true)]
|
[TestCase("/sapi/test1", true)]
|
||||||
@@ -192,40 +182,29 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
[TestCase("/sapi/", true)]
|
[TestCase("/sapi/", true)]
|
||||||
public async Task PartialEndpointRateLimiterEndpoints(string endpoint, bool expectLimiting)
|
public async Task PartialEndpointRateLimiterEndpoints(string endpoint, bool expectLimiting)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerHost, new PathStartFilter("/sapi/"), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddPartialEndpointLimit("/sapi/", 1, TimeSpan.FromSeconds(0.1));
|
||||||
|
|
||||||
var requestDefinition = new RequestDefinition(endpoint, HttpMethod.Get);
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
|
||||||
for (var i = 0; i < 2; i++)
|
for (var i = 0; i < 2; i++)
|
||||||
{
|
{
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint, HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
bool expected = i == 1 ? (expectLimiting ? evnt.DelayTime > TimeSpan.Zero : evnt == null) : evnt == null;
|
bool expected = i == 1 ? (expectLimiting ? result1.Data > 1 : result1.Data == 0) : result1.Data == 0;
|
||||||
Assert.That(expected);
|
Assert.IsTrue(expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("/sapi/", "/sapi/", true)]
|
[TestCase("/sapi/", "/sapi/", true)]
|
||||||
[TestCase("/sapi/test", "/sapi/test", true)]
|
[TestCase("/sapi/test", "/sapi/test", true)]
|
||||||
[TestCase("/sapi/test", "/sapi/test123", false)]
|
[TestCase("/sapi/test", "/sapi/test123", false)]
|
||||||
[TestCase("/sapi/test", "/sapi/", false)]
|
[TestCase("/sapi/test", "/sapi/", false)]
|
||||||
public async Task PartialEndpointRateLimiterEndpoints(string endpoint1, string endpoint2, bool expectLimiting)
|
public async Task PartialEndpointRateLimiterEndpoints(string endpoint1, string endpoint2, bool expectLimiting)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerEndpoint, new PathStartFilter("/sapi/"), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddPartialEndpointLimit("/sapi/", 1, TimeSpan.FromSeconds(0.1), countPerEndpoint: true);
|
||||||
|
|
||||||
var requestDefinition1 = new RequestDefinition(endpoint1, HttpMethod.Get);
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint1, HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
var requestDefinition2 = new RequestDefinition(endpoint2, HttpMethod.Get);
|
var result2 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint2, HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
|
Assert.IsTrue(result1.Data == 0);
|
||||||
RateLimitEvent evnt = null;
|
Assert.IsTrue(expectLimiting ? result2.Data > 0 : result2.Data == 0);
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
|
||||||
|
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition1, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(evnt == null);
|
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition2, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(expectLimiting ? evnt != null : evnt == null);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(1, 0.1)]
|
[TestCase(1, 0.1)]
|
||||||
@@ -234,22 +213,18 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
[TestCase(1, 2)]
|
[TestCase(1, 2)]
|
||||||
public async Task EndpointRateLimiterBasics(int requests, double perSeconds)
|
public async Task EndpointRateLimiterBasics(int requests, double perSeconds)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerEndpoint, new PathStartFilter("/sapi/test"), requests, TimeSpan.FromSeconds(perSeconds), RateLimitWindowType.Fixed));
|
rateLimiter.AddEndpointLimit("/sapi/test", requests, TimeSpan.FromSeconds(perSeconds));
|
||||||
|
|
||||||
bool triggered = false;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { triggered = true; };
|
|
||||||
var requestDefinition = new RequestDefinition("/sapi/test", HttpMethod.Get);
|
|
||||||
|
|
||||||
for (var i = 0; i < requests + 1; i++)
|
for (var i = 0; i < requests + 1; i++)
|
||||||
{
|
{
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), "/sapi/test", HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
Assert.That(i == requests ? triggered : !triggered);
|
Assert.IsTrue(i == requests ? result1.Data > 1 : result1.Data == 0);
|
||||||
}
|
}
|
||||||
triggered = false;
|
|
||||||
await Task.Delay((int)Math.Round(perSeconds * 1000) + 10);
|
await Task.Delay((int)Math.Round(perSeconds * 1000) + 10);
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result2 = await rateLimiter.LimitRequestAsync(new TraceLogger(), "/sapi/test", HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
Assert.That(!triggered);
|
Assert.IsTrue(result2.Data == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("/", false)]
|
[TestCase("/", false)]
|
||||||
@@ -257,18 +232,14 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
[TestCase("/sapi/test/123", false)]
|
[TestCase("/sapi/test/123", false)]
|
||||||
public async Task EndpointRateLimiterEndpoints(string endpoint, bool expectLimited)
|
public async Task EndpointRateLimiterEndpoints(string endpoint, bool expectLimited)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerEndpoint, new ExactPathFilter("/sapi/test"), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddEndpointLimit("/sapi/test", 1, TimeSpan.FromSeconds(0.1));
|
||||||
|
|
||||||
var requestDefinition = new RequestDefinition(endpoint, HttpMethod.Get);
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
|
||||||
for (var i = 0; i < 2; i++)
|
for (var i = 0; i < 2; i++)
|
||||||
{
|
{
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint, HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
bool expected = i == 1 ? (expectLimited ? evnt.DelayTime > TimeSpan.Zero : evnt == null) : evnt == null;
|
bool expected = i == 1 ? (expectLimited ? result1.Data > 1 : result1.Data == 0) : result1.Data == 0;
|
||||||
Assert.That(expected);
|
Assert.IsTrue(expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -278,41 +249,47 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
[TestCase("/sapi/test23", false)]
|
[TestCase("/sapi/test23", false)]
|
||||||
public async Task EndpointRateLimiterMultipleEndpoints(string endpoint, bool expectLimited)
|
public async Task EndpointRateLimiterMultipleEndpoints(string endpoint, bool expectLimited)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerEndpoint, new ExactPathsFilter(new[] { "/sapi/test", "/sapi/test2" }), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddEndpointLimit(new[] { "/sapi/test", "/sapi/test2" }, 1, TimeSpan.FromSeconds(0.1));
|
||||||
var requestDefinition = new RequestDefinition(endpoint, HttpMethod.Get);
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
|
||||||
for (var i = 0; i < 2; i++)
|
for (var i = 0; i < 2; i++)
|
||||||
{
|
{
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint, HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
bool expected = i == 1 ? (expectLimited ? evnt.DelayTime > TimeSpan.Zero : evnt == null) : evnt == null;
|
bool expected = i == 1 ? (expectLimited ? result1.Data > 1 : result1.Data == 0) : result1.Data == 0;
|
||||||
Assert.That(expected);
|
Assert.IsTrue(expected);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("123", "123", "/sapi/test", "/sapi/test", true)]
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", true, true, true, true)]
|
||||||
[TestCase("123", "456", "/sapi/test", "/sapi/test", false)]
|
[TestCase("123", "456", "/sapi/test", "/sapi/test", true, true, true, false)]
|
||||||
[TestCase("123", "123", "/sapi/test", "/sapi/test2", true)]
|
[TestCase("123", "123", "/sapi/test", "/sapi/test2", true, true, true, true)]
|
||||||
[TestCase("123", "123", "/sapi/test2", "/sapi/test", true)]
|
[TestCase("123", "123", "/sapi/test2", "/sapi/test", true, true, true, true)]
|
||||||
[TestCase(null, "123", "/sapi/test", "/sapi/test", false)]
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", true, false, true, false)]
|
||||||
[TestCase("123", null, "/sapi/test", "/sapi/test", false)]
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", false, true, true, false)]
|
||||||
[TestCase(null, null, "/sapi/test", "/sapi/test", false)]
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", false, false, true, false)]
|
||||||
public async Task ApiKeyRateLimiterBasics(string key1, string key2, string endpoint1, string endpoint2, bool expectLimited)
|
[TestCase(null, "123", "/sapi/test", "/sapi/test", false, true, true, false)]
|
||||||
|
[TestCase("123", null, "/sapi/test", "/sapi/test", true, false, true, false)]
|
||||||
|
[TestCase(null, null, "/sapi/test", "/sapi/test", false, false, true, false)]
|
||||||
|
|
||||||
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", true, true, false, true)]
|
||||||
|
[TestCase("123", "456", "/sapi/test", "/sapi/test", true, true, false, false)]
|
||||||
|
[TestCase("123", "123", "/sapi/test", "/sapi/test2", true, true, false, true)]
|
||||||
|
[TestCase("123", "123", "/sapi/test2", "/sapi/test", true, true, false, true)]
|
||||||
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", true, false, false, true)]
|
||||||
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", false, true, false, true)]
|
||||||
|
[TestCase("123", "123", "/sapi/test", "/sapi/test", false, false, false, true)]
|
||||||
|
[TestCase(null, "123", "/sapi/test", "/sapi/test", false, true, false, false)]
|
||||||
|
[TestCase("123", null, "/sapi/test", "/sapi/test", true, false, false, false)]
|
||||||
|
[TestCase(null, null, "/sapi/test", "/sapi/test", false, false, false, true)]
|
||||||
|
public async Task ApiKeyRateLimiterBasics(string key1, string key2, string endpoint1, string endpoint2, bool signed1, bool signed2, bool onlyForSignedRequests, bool expectLimited)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerApiKey, new AuthenticatedEndpointFilter(true), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddApiKeyLimit(1, TimeSpan.FromSeconds(0.1), onlyForSignedRequests, false);
|
||||||
var requestDefinition1 = new RequestDefinition(endpoint1, HttpMethod.Get) { Authenticated = key1 != null };
|
|
||||||
var requestDefinition2 = new RequestDefinition(endpoint2, HttpMethod.Get) { Authenticated = key2 != null };
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint1, HttpMethod.Get, signed1, key1?.ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
var result2 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint2, HttpMethod.Get, signed2, key2?.ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
|
Assert.IsTrue(result1.Data == 0);
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition1, "https://test.com", key1, 1, RateLimitingBehaviour.Wait, default);
|
Assert.IsTrue(expectLimited ? result2.Data > 0 : result2.Data == 0);
|
||||||
Assert.That(evnt == null);
|
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition2, "https://test.com", key2, 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(expectLimited ? evnt != null : evnt == null);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("/sapi/test", "/sapi/test", true)]
|
[TestCase("/sapi/test", "/sapi/test", true)]
|
||||||
@@ -320,70 +297,29 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
[TestCase("/", "/sapi/test2", true)]
|
[TestCase("/", "/sapi/test2", true)]
|
||||||
public async Task TotalRateLimiterBasics(string endpoint1, string endpoint2, bool expectLimited)
|
public async Task TotalRateLimiterBasics(string endpoint1, string endpoint2, bool expectLimited)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerHost, Array.Empty<IGuardFilter>(), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddTotalRateLimit(1, TimeSpan.FromSeconds(0.1));
|
||||||
var requestDefinition1 = new RequestDefinition(endpoint1, HttpMethod.Get);
|
|
||||||
var requestDefinition2 = new RequestDefinition(endpoint2, HttpMethod.Get) { Authenticated = true };
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint1, HttpMethod.Get, false, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
var result2 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint2, HttpMethod.Get, true, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
|
Assert.IsTrue(result1.Data == 0);
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition1, "https://test.com", "123", 1, RateLimitingBehaviour.Wait, default);
|
Assert.IsTrue(expectLimited ? result2.Data > 0 : result2.Data == 0);
|
||||||
Assert.That(evnt == null);
|
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition2, "https://test.com", null, 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(expectLimited ? evnt != null : evnt == null);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("https://test.com", "/sapi/test", "https://test.com", "/sapi/test", true)]
|
[TestCase("/sapi/test", true, true, true, false)]
|
||||||
[TestCase("https://test2.com", "/sapi/test", "https://test.com", "/sapi/test", false)]
|
[TestCase("/sapi/test", false, true, true, false)]
|
||||||
[TestCase("https://test.com", "/sapi/test", "https://test2.com", "/sapi/test", false)]
|
[TestCase("/sapi/test", false, true, false, true)]
|
||||||
[TestCase("https://test.com", "/sapi/test", "https://test.com", "/sapi/test2", true)]
|
[TestCase("/sapi/test", true, true, false, true)]
|
||||||
public async Task HostRateLimiterBasics(string host1, string endpoint1, string host2, string endpoint2, bool expectLimited)
|
public async Task ApiKeyRateLimiterIgnores_TotalRateLimiter_IfSet(string endpoint, bool signed1, bool signed2, bool ignoreTotal, bool expectLimited)
|
||||||
{
|
{
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
var rateLimiter = new RateLimiter();
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerHost, new HostFilter("https://test.com"), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
rateLimiter.AddApiKeyLimit(100, TimeSpan.FromSeconds(0.1), true, ignoreTotal);
|
||||||
var requestDefinition1 = new RequestDefinition(endpoint1, HttpMethod.Get);
|
rateLimiter.AddTotalRateLimit(1, TimeSpan.FromSeconds(0.1));
|
||||||
var requestDefinition2 = new RequestDefinition(endpoint2, HttpMethod.Get) { Authenticated = true };
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
var result1 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint, HttpMethod.Get, signed1, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
var result2 = await rateLimiter.LimitRequestAsync(new TraceLogger(), endpoint, HttpMethod.Get, signed2, "123".ToSecureString(), RateLimitingBehaviour.Wait, 1, default);
|
||||||
|
Assert.IsTrue(result1.Data == 0);
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition1, host1, "123", 1, RateLimitingBehaviour.Wait, default);
|
Assert.IsTrue(expectLimited ? result2.Data > 0 : result2.Data == 0);
|
||||||
Assert.That(evnt == null);
|
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Request, requestDefinition1, host2, "123", 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(expectLimited ? evnt != null : evnt == null);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("https://test.com", "https://test.com", true)]
|
|
||||||
[TestCase("https://test2.com", "https://test.com", false)]
|
|
||||||
[TestCase("https://test.com", "https://test2.com", false)]
|
|
||||||
public async Task ConnectionRateLimiterBasics(string host1, string host2, bool expectLimited)
|
|
||||||
{
|
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerHost, new LimitItemTypeFilter(RateLimitItemType.Connection), 1, TimeSpan.FromSeconds(0.1), RateLimitWindowType.Fixed));
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
|
||||||
|
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Connection, new RequestDefinition("1", HttpMethod.Get), host1, "123", 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(evnt == null);
|
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Connection, new RequestDefinition("1", HttpMethod.Get), host2, "123", 1, RateLimitingBehaviour.Wait, default);
|
|
||||||
Assert.That(expectLimited ? evnt != null : evnt == null);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public async Task ConnectionRateLimiterCancel()
|
|
||||||
{
|
|
||||||
var rateLimiter = new RateLimitGate("Test");
|
|
||||||
rateLimiter.AddGuard(new RateLimitGuard(RateLimitGuard.PerHost, new LimitItemTypeFilter(RateLimitItemType.Connection), 1, TimeSpan.FromSeconds(10), RateLimitWindowType.Fixed));
|
|
||||||
|
|
||||||
RateLimitEvent evnt = null;
|
|
||||||
rateLimiter.RateLimitTriggered += (x) => { evnt = x; };
|
|
||||||
var ct = new CancellationTokenSource(TimeSpan.FromSeconds(0.2));
|
|
||||||
|
|
||||||
var result1 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Connection, new RequestDefinition("1", HttpMethod.Get), "https://test.com", "123", 1, RateLimitingBehaviour.Wait, ct.Token);
|
|
||||||
var result2 = await rateLimiter.ProcessAsync(new TraceLogger(), 1, RateLimitItemType.Connection, new RequestDefinition("1", HttpMethod.Get), "https://test.com", "123", 1, RateLimitingBehaviour.Wait, ct.Token);
|
|
||||||
Assert.That(result2.Error, Is.TypeOf<CancellationRequestedError>());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ using CryptoExchange.Net.UnitTests.TestImplementations;
|
|||||||
using CryptoExchange.Net.UnitTests.TestImplementations.Sockets;
|
using CryptoExchange.Net.UnitTests.TestImplementations.Sockets;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Moq;
|
using Moq;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
using NUnit.Framework.Constraints;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests
|
namespace CryptoExchange.Net.UnitTests
|
||||||
{
|
{
|
||||||
@@ -29,9 +29,10 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
options.SubOptions.MaxSocketConnections = 1;
|
options.SubOptions.MaxSocketConnections = 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
//assert
|
//assert
|
||||||
ClassicAssert.NotNull(client.SubClient.ApiOptions.ApiCredentials);
|
Assert.NotNull(client.SubClient.ApiOptions.ApiCredentials);
|
||||||
Assert.That(1 == client.SubClient.ApiOptions.MaxSocketConnections);
|
Assert.AreEqual(1, client.SubClient.ApiOptions.MaxSocketConnections);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(true)]
|
[TestCase(true)]
|
||||||
@@ -47,42 +48,43 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var connectResult = client.SubClient.ConnectSocketSub(new SocketConnection(new TraceLogger(), client.SubClient, socket, null));
|
var connectResult = client.SubClient.ConnectSocketSub(new SocketConnection(new TraceLogger(), client.SubClient, socket, null));
|
||||||
|
|
||||||
//assert
|
//assert
|
||||||
Assert.That(connectResult.Success == canConnect);
|
Assert.IsTrue(connectResult.Success == canConnect);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
public void SocketMessages_Should_BeProcessedInDataHandlers()
|
public async Task SocketMessages_Should_BeProcessedInDataHandlers()
|
||||||
{
|
{
|
||||||
// arrange
|
// arrange
|
||||||
var client = new TestSocketClient(options => {
|
var client = new TestSocketClient(options => {
|
||||||
options.ReconnectInterval = TimeSpan.Zero;
|
options.ReconnectInterval = TimeSpan.Zero;
|
||||||
});
|
});
|
||||||
var socket = client.CreateSocket();
|
var socket = client.CreateSocket();
|
||||||
|
socket.ShouldReconnect = true;
|
||||||
socket.CanConnect = true;
|
socket.CanConnect = true;
|
||||||
|
socket.DisconnectTime = DateTime.UtcNow;
|
||||||
var sub = new SocketConnection(new TraceLogger(), client.SubClient, socket, null);
|
var sub = new SocketConnection(new TraceLogger(), client.SubClient, socket, null);
|
||||||
var rstEvent = new ManualResetEvent(false);
|
var rstEvent = new ManualResetEvent(false);
|
||||||
Dictionary<string, string> result = null;
|
Dictionary<string, string> result = null;
|
||||||
|
|
||||||
client.SubClient.ConnectSocketSub(sub);
|
client.SubClient.ConnectSocketSub(sub);
|
||||||
|
|
||||||
var subObj = new TestSubscription<Dictionary<string, string>>(Mock.Of<ILogger>(), (messageEvent) =>
|
sub.AddSubscription(new TestSubscription<Dictionary<string, string>>(Mock.Of<ILogger>(), (messageEvent) =>
|
||||||
{
|
{
|
||||||
result = messageEvent.Data;
|
result = messageEvent.Data;
|
||||||
rstEvent.Set();
|
rstEvent.Set();
|
||||||
});
|
}));
|
||||||
sub.AddSubscription(subObj);
|
|
||||||
|
|
||||||
// act
|
// act
|
||||||
socket.InvokeMessage("{\"property\": \"123\", \"action\": \"update\", \"topic\": \"topic\"}");
|
await socket.InvokeMessage("{\"property\": \"123\", \"topic\": \"topic\"}");
|
||||||
rstEvent.WaitOne(1000);
|
rstEvent.WaitOne(1000);
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(result["property"] == "123");
|
Assert.IsTrue(result["property"] == "123");
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase(false)]
|
[TestCase(false)]
|
||||||
[TestCase(true)]
|
[TestCase(true)]
|
||||||
public void SocketMessages_Should_ContainOriginalDataIfEnabled(bool enabled)
|
public async Task SocketMessages_Should_ContainOriginalDataIfEnabled(bool enabled)
|
||||||
{
|
{
|
||||||
// arrange
|
// arrange
|
||||||
var client = new TestSocketClient(options =>
|
var client = new TestSocketClient(options =>
|
||||||
@@ -91,26 +93,26 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
options.SubOptions.OutputOriginalData = enabled;
|
options.SubOptions.OutputOriginalData = enabled;
|
||||||
});
|
});
|
||||||
var socket = client.CreateSocket();
|
var socket = client.CreateSocket();
|
||||||
|
socket.ShouldReconnect = true;
|
||||||
socket.CanConnect = true;
|
socket.CanConnect = true;
|
||||||
|
socket.DisconnectTime = DateTime.UtcNow;
|
||||||
var sub = new SocketConnection(new TraceLogger(), client.SubClient, socket, null);
|
var sub = new SocketConnection(new TraceLogger(), client.SubClient, socket, null);
|
||||||
var rstEvent = new ManualResetEvent(false);
|
var rstEvent = new ManualResetEvent(false);
|
||||||
string original = null;
|
string original = null;
|
||||||
|
|
||||||
client.SubClient.ConnectSocketSub(sub);
|
client.SubClient.ConnectSocketSub(sub);
|
||||||
var subObj = new TestSubscription<Dictionary<string, string>>(Mock.Of<ILogger>(), (messageEvent) =>
|
sub.AddSubscription(new TestSubscription<Dictionary<string, string>>(Mock.Of<ILogger>(), (messageEvent) =>
|
||||||
{
|
{
|
||||||
original = messageEvent.OriginalData;
|
original = messageEvent.OriginalData;
|
||||||
rstEvent.Set();
|
rstEvent.Set();
|
||||||
});
|
}));
|
||||||
sub.AddSubscription(subObj);
|
|
||||||
var msgToSend = JsonConvert.SerializeObject(new { topic = "topic", action = "update", property = 123 });
|
|
||||||
|
|
||||||
// act
|
// act
|
||||||
socket.InvokeMessage(msgToSend);
|
await socket.InvokeMessage("{\"property\": 123}");
|
||||||
rstEvent.WaitOne(1000);
|
rstEvent.WaitOne(1000);
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(original == (enabled ? msgToSend : null));
|
Assert.IsTrue(original == (enabled ? "{\"property\": 123}" : null));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase()]
|
[TestCase()]
|
||||||
@@ -134,7 +136,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
client.UnsubscribeAsync(ups).Wait();
|
client.UnsubscribeAsync(ups).Wait();
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(socket.Connected == false);
|
Assert.IsTrue(socket.Connected == false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase()]
|
[TestCase()]
|
||||||
@@ -162,8 +164,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
client.UnsubscribeAllAsync().Wait();
|
client.UnsubscribeAllAsync().Wait();
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
Assert.That(socket1.Connected == false);
|
Assert.IsTrue(socket1.Connected == false);
|
||||||
Assert.That(socket2.Connected == false);
|
Assert.IsTrue(socket2.Connected == false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase()]
|
[TestCase()]
|
||||||
@@ -179,53 +181,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var connectResult = client.SubClient.ConnectSocketSub(sub1);
|
var connectResult = client.SubClient.ConnectSocketSub(sub1);
|
||||||
|
|
||||||
// assert
|
// assert
|
||||||
ClassicAssert.IsFalse(connectResult.Success);
|
Assert.IsFalse(connectResult.Success);
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase()]
|
|
||||||
public async Task ErrorResponse_ShouldNot_ConfirmSubscription()
|
|
||||||
{
|
|
||||||
// arrange
|
|
||||||
var channel = "trade_btcusd";
|
|
||||||
var client = new TestSocketClient(opt =>
|
|
||||||
{
|
|
||||||
opt.OutputOriginalData = true;
|
|
||||||
opt.SocketSubscriptionsCombineTarget = 1;
|
|
||||||
});
|
|
||||||
var socket = client.CreateSocket();
|
|
||||||
socket.CanConnect = true;
|
|
||||||
client.SubClient.ConnectSocketSub(new SocketConnection(new TraceLogger(), client.SubClient, socket, "https://test.test"));
|
|
||||||
|
|
||||||
// act
|
|
||||||
var sub = client.SubClient.SubscribeToSomethingAsync(channel, onUpdate => {}, ct: default);
|
|
||||||
socket.InvokeMessage(JsonConvert.SerializeObject(new { channel, action = "subscribe", status = "error" }));
|
|
||||||
await sub;
|
|
||||||
|
|
||||||
// assert
|
|
||||||
ClassicAssert.IsFalse(client.SubClient.TestSubscription.Confirmed);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase()]
|
|
||||||
public async Task SuccessResponse_Should_ConfirmSubscription()
|
|
||||||
{
|
|
||||||
// arrange
|
|
||||||
var channel = "trade_btcusd";
|
|
||||||
var client = new TestSocketClient(opt =>
|
|
||||||
{
|
|
||||||
opt.OutputOriginalData = true;
|
|
||||||
opt.SocketSubscriptionsCombineTarget = 1;
|
|
||||||
});
|
|
||||||
var socket = client.CreateSocket();
|
|
||||||
socket.CanConnect = true;
|
|
||||||
client.SubClient.ConnectSocketSub(new SocketConnection(new TraceLogger(), client.SubClient, socket, "https://test.test"));
|
|
||||||
|
|
||||||
// act
|
|
||||||
var sub = client.SubClient.SubscribeToSomethingAsync(channel, onUpdate => {}, ct: default);
|
|
||||||
socket.InvokeMessage(JsonConvert.SerializeObject(new { channel, action = "subscribe", status = "confirmed" }));
|
|
||||||
await sub;
|
|
||||||
|
|
||||||
// assert
|
|
||||||
Assert.That(client.SubClient.TestSubscription.Confirmed);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ using CryptoExchange.Net.Objects.Options;
|
|||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using CryptoExchange.Net.OrderBook;
|
using CryptoExchange.Net.OrderBook;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests
|
namespace CryptoExchange.Net.UnitTests
|
||||||
{
|
{
|
||||||
@@ -19,7 +18,7 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
|
|
||||||
private class TestableSymbolOrderBook : SymbolOrderBook
|
private class TestableSymbolOrderBook : SymbolOrderBook
|
||||||
{
|
{
|
||||||
public TestableSymbolOrderBook() : base(null, "Test", "Test", "BTC/USD")
|
public TestableSymbolOrderBook() : base(null, "Test", "BTC/USD")
|
||||||
{
|
{
|
||||||
Initialize(_defaultOrderBookOptions);
|
Initialize(_defaultOrderBookOptions);
|
||||||
}
|
}
|
||||||
@@ -57,31 +56,31 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
public void GivenEmptyBidList_WhenBestBid_ThenEmptySymbolOrderBookEntry()
|
public void GivenEmptyBidList_WhenBestBid_ThenEmptySymbolOrderBookEntry()
|
||||||
{
|
{
|
||||||
var symbolOrderBook = new TestableSymbolOrderBook();
|
var symbolOrderBook = new TestableSymbolOrderBook();
|
||||||
ClassicAssert.IsNotNull(symbolOrderBook.BestBid);
|
Assert.IsNotNull(symbolOrderBook.BestBid);
|
||||||
Assert.That(0m == symbolOrderBook.BestBid.Price);
|
Assert.AreEqual(0m, symbolOrderBook.BestBid.Price);
|
||||||
Assert.That(0m == symbolOrderBook.BestAsk.Quantity);
|
Assert.AreEqual(0m, symbolOrderBook.BestAsk.Quantity);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
public void GivenEmptyAskList_WhenBestAsk_ThenEmptySymbolOrderBookEntry()
|
public void GivenEmptyAskList_WhenBestAsk_ThenEmptySymbolOrderBookEntry()
|
||||||
{
|
{
|
||||||
var symbolOrderBook = new TestableSymbolOrderBook();
|
var symbolOrderBook = new TestableSymbolOrderBook();
|
||||||
ClassicAssert.IsNotNull(symbolOrderBook.BestBid);
|
Assert.IsNotNull(symbolOrderBook.BestBid);
|
||||||
Assert.That(0m == symbolOrderBook.BestBid.Price);
|
Assert.AreEqual(0m, symbolOrderBook.BestBid.Price);
|
||||||
Assert.That(0m == symbolOrderBook.BestAsk.Quantity);
|
Assert.AreEqual(0m, symbolOrderBook.BestAsk.Quantity);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
public void GivenEmptyBidAndAskList_WhenBestOffers_ThenEmptySymbolOrderBookEntries()
|
public void GivenEmptyBidAndAskList_WhenBestOffers_ThenEmptySymbolOrderBookEntries()
|
||||||
{
|
{
|
||||||
var symbolOrderBook = new TestableSymbolOrderBook();
|
var symbolOrderBook = new TestableSymbolOrderBook();
|
||||||
ClassicAssert.IsNotNull(symbolOrderBook.BestOffers);
|
Assert.IsNotNull(symbolOrderBook.BestOffers);
|
||||||
ClassicAssert.IsNotNull(symbolOrderBook.BestOffers.Bid);
|
Assert.IsNotNull(symbolOrderBook.BestOffers.Bid);
|
||||||
ClassicAssert.IsNotNull(symbolOrderBook.BestOffers.Ask);
|
Assert.IsNotNull(symbolOrderBook.BestOffers.Ask);
|
||||||
Assert.That(0m == symbolOrderBook.BestOffers.Bid.Price);
|
Assert.AreEqual(0m, symbolOrderBook.BestOffers.Bid.Price);
|
||||||
Assert.That(0m == symbolOrderBook.BestOffers.Bid.Quantity);
|
Assert.AreEqual(0m, symbolOrderBook.BestOffers.Bid.Quantity);
|
||||||
Assert.That(0m == symbolOrderBook.BestOffers.Ask.Price);
|
Assert.AreEqual(0m, symbolOrderBook.BestOffers.Ask.Price);
|
||||||
Assert.That(0m == symbolOrderBook.BestOffers.Ask.Quantity);
|
Assert.AreEqual(0m, symbolOrderBook.BestOffers.Ask.Quantity);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -104,12 +103,12 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var resultBids2 = orderbook.CalculateAverageFillPrice(1.5m, OrderBookEntryType.Bid);
|
var resultBids2 = orderbook.CalculateAverageFillPrice(1.5m, OrderBookEntryType.Bid);
|
||||||
var resultAsks2 = orderbook.CalculateAverageFillPrice(1.5m, OrderBookEntryType.Ask);
|
var resultAsks2 = orderbook.CalculateAverageFillPrice(1.5m, OrderBookEntryType.Ask);
|
||||||
|
|
||||||
Assert.That(resultBids.Success);
|
Assert.True(resultBids.Success);
|
||||||
Assert.That(resultAsks.Success);
|
Assert.True(resultAsks.Success);
|
||||||
Assert.That(1.05m == resultBids.Data);
|
Assert.AreEqual(1.05m, resultBids.Data);
|
||||||
Assert.That(1.25m == resultAsks.Data);
|
Assert.AreEqual(1.25m, resultAsks.Data);
|
||||||
Assert.That(1.06666667m == resultBids2.Data);
|
Assert.AreEqual(1.06666667m, resultBids2.Data);
|
||||||
Assert.That(1.23333333m == resultAsks2.Data);
|
Assert.AreEqual(1.23333333m, resultAsks2.Data);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase]
|
[TestCase]
|
||||||
@@ -132,12 +131,12 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
var resultBids2 = orderbook.CalculateTradableAmount(1.5m, OrderBookEntryType.Bid);
|
var resultBids2 = orderbook.CalculateTradableAmount(1.5m, OrderBookEntryType.Bid);
|
||||||
var resultAsks2 = orderbook.CalculateTradableAmount(1.5m, OrderBookEntryType.Ask);
|
var resultAsks2 = orderbook.CalculateTradableAmount(1.5m, OrderBookEntryType.Ask);
|
||||||
|
|
||||||
Assert.That(resultBids.Success);
|
Assert.True(resultBids.Success);
|
||||||
Assert.That(resultAsks.Success);
|
Assert.True(resultAsks.Success);
|
||||||
Assert.That(1.9m == resultBids.Data);
|
Assert.AreEqual(1.9m, resultBids.Data);
|
||||||
Assert.That(1.61538462m == resultAsks.Data);
|
Assert.AreEqual(1.61538462m, resultAsks.Data);
|
||||||
Assert.That(1.4m == resultBids2.Data);
|
Assert.AreEqual(1.4m, resultBids2.Data);
|
||||||
Assert.That(1.23076923m == resultAsks2.Data);
|
Assert.AreEqual(1.23076923m, resultAsks2.Data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,284 +0,0 @@
|
|||||||
using CryptoExchange.Net.Attributes;
|
|
||||||
using CryptoExchange.Net.Converters.SystemTextJson;
|
|
||||||
using System.Text.Json;
|
|
||||||
using NUnit.Framework;
|
|
||||||
using System;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
using NUnit.Framework.Legacy;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests
|
|
||||||
{
|
|
||||||
[TestFixture()]
|
|
||||||
public class SystemTextJsonConverterTests
|
|
||||||
{
|
|
||||||
[TestCase("2021-05-12")]
|
|
||||||
[TestCase("20210512")]
|
|
||||||
[TestCase("210512")]
|
|
||||||
[TestCase("1620777600.000")]
|
|
||||||
[TestCase("1620777600000")]
|
|
||||||
[TestCase("2021-05-12T00:00:00.000Z")]
|
|
||||||
[TestCase("2021-05-12T00:00:00.000000000Z")]
|
|
||||||
[TestCase("0.000000", true)]
|
|
||||||
[TestCase("0", true)]
|
|
||||||
[TestCase("", true)]
|
|
||||||
[TestCase(" ", true)]
|
|
||||||
public void TestDateTimeConverterString(string input, bool expectNull = false)
|
|
||||||
{
|
|
||||||
var output = JsonSerializer.Deserialize<STJTimeObject>($"{{ \"time\": \"{input}\" }}");
|
|
||||||
Assert.That(output.Time == (expectNull ? null: new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc)));
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(1620777600.000)]
|
|
||||||
[TestCase(1620777600000d)]
|
|
||||||
public void TestDateTimeConverterDouble(double input)
|
|
||||||
{
|
|
||||||
var output = JsonSerializer.Deserialize<STJTimeObject>($"{{ \"time\": {input} }}");
|
|
||||||
Assert.That(output.Time == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(1620777600)]
|
|
||||||
[TestCase(1620777600000)]
|
|
||||||
[TestCase(1620777600000000)]
|
|
||||||
[TestCase(1620777600000000000)]
|
|
||||||
[TestCase(0, true)]
|
|
||||||
public void TestDateTimeConverterLong(long input, bool expectNull = false)
|
|
||||||
{
|
|
||||||
var output = JsonSerializer.Deserialize<STJTimeObject>($"{{ \"time\": {input} }}");
|
|
||||||
Assert.That(output.Time == (expectNull ? null : new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc)));
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(1620777600)]
|
|
||||||
[TestCase(1620777600.000)]
|
|
||||||
public void TestDateTimeConverterFromSeconds(double input)
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertFromSeconds(input);
|
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestDateTimeConverterToSeconds()
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertToSeconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
Assert.That(output == 1620777600);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(1620777600000)]
|
|
||||||
[TestCase(1620777600000.000)]
|
|
||||||
public void TestDateTimeConverterFromMilliseconds(double input)
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertFromMilliseconds(input);
|
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestDateTimeConverterToMilliseconds()
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertToMilliseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
Assert.That(output == 1620777600000);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(1620777600000000)]
|
|
||||||
public void TestDateTimeConverterFromMicroseconds(long input)
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertFromMicroseconds(input);
|
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestDateTimeConverterToMicroseconds()
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertToMicroseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
Assert.That(output == 1620777600000000);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(1620777600000000000)]
|
|
||||||
public void TestDateTimeConverterFromNanoseconds(long input)
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertFromNanoseconds(input);
|
|
||||||
Assert.That(output == new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestDateTimeConverterToNanoseconds()
|
|
||||||
{
|
|
||||||
var output = DateTimeConverter.ConvertToNanoseconds(new DateTime(2021, 05, 12, 0, 0, 0, DateTimeKind.Utc));
|
|
||||||
Assert.That(output == 1620777600000000000);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase()]
|
|
||||||
public void TestDateTimeConverterNull()
|
|
||||||
{
|
|
||||||
var output = JsonSerializer.Deserialize<STJTimeObject>($"{{ \"time\": null }}");
|
|
||||||
Assert.That(output.Time == null);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(TestEnum.One, "1")]
|
|
||||||
[TestCase(TestEnum.Two, "2")]
|
|
||||||
[TestCase(TestEnum.Three, "three")]
|
|
||||||
[TestCase(TestEnum.Four, "Four")]
|
|
||||||
[TestCase(null, null)]
|
|
||||||
public void TestEnumConverterNullableGetStringTests(TestEnum? value, string expected)
|
|
||||||
{
|
|
||||||
var output = EnumConverter.GetString(value);
|
|
||||||
Assert.That(output == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase(TestEnum.One, "1")]
|
|
||||||
[TestCase(TestEnum.Two, "2")]
|
|
||||||
[TestCase(TestEnum.Three, "three")]
|
|
||||||
[TestCase(TestEnum.Four, "Four")]
|
|
||||||
public void TestEnumConverterGetStringTests(TestEnum value, string expected)
|
|
||||||
{
|
|
||||||
var output = EnumConverter.GetString(value);
|
|
||||||
Assert.That(output == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", TestEnum.One)]
|
|
||||||
[TestCase("2", TestEnum.Two)]
|
|
||||||
[TestCase("3", TestEnum.Three)]
|
|
||||||
[TestCase("three", TestEnum.Three)]
|
|
||||||
[TestCase("Four", TestEnum.Four)]
|
|
||||||
[TestCase("four", TestEnum.Four)]
|
|
||||||
[TestCase("Four1", null)]
|
|
||||||
[TestCase(null, null)]
|
|
||||||
public void TestEnumConverterNullableDeserializeTests(string value, TestEnum? expected)
|
|
||||||
{
|
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
|
||||||
var output = JsonSerializer.Deserialize<STJEnumObject>($"{{ \"Value\": {val} }}");
|
|
||||||
Assert.That(output.Value == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", TestEnum.One)]
|
|
||||||
[TestCase("2", TestEnum.Two)]
|
|
||||||
[TestCase("3", TestEnum.Three)]
|
|
||||||
[TestCase("three", TestEnum.Three)]
|
|
||||||
[TestCase("Four", TestEnum.Four)]
|
|
||||||
[TestCase("four", TestEnum.Four)]
|
|
||||||
[TestCase("Four1", TestEnum.One)]
|
|
||||||
[TestCase(null, TestEnum.One)]
|
|
||||||
public void TestEnumConverterNotNullableDeserializeTests(string value, TestEnum? expected)
|
|
||||||
{
|
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
|
||||||
var output = JsonSerializer.Deserialize<NotNullableSTJEnumObject>($"{{ \"Value\": {val} }}");
|
|
||||||
Assert.That(output.Value == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", TestEnum.One)]
|
|
||||||
[TestCase("2", TestEnum.Two)]
|
|
||||||
[TestCase("3", TestEnum.Three)]
|
|
||||||
[TestCase("three", TestEnum.Three)]
|
|
||||||
[TestCase("Four", TestEnum.Four)]
|
|
||||||
[TestCase("four", TestEnum.Four)]
|
|
||||||
[TestCase("Four1", TestEnum.One)]
|
|
||||||
[TestCase(null, TestEnum.One)]
|
|
||||||
public void TestEnumConverterParseStringTests(string value, TestEnum? expected)
|
|
||||||
{
|
|
||||||
var result = EnumConverter.ParseString<TestEnum>(value);
|
|
||||||
Assert.That(result == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", true)]
|
|
||||||
[TestCase("true", true)]
|
|
||||||
[TestCase("yes", true)]
|
|
||||||
[TestCase("y", true)]
|
|
||||||
[TestCase("on", true)]
|
|
||||||
[TestCase("-1", false)]
|
|
||||||
[TestCase("0", false)]
|
|
||||||
[TestCase("n", false)]
|
|
||||||
[TestCase("no", false)]
|
|
||||||
[TestCase("false", false)]
|
|
||||||
[TestCase("off", false)]
|
|
||||||
[TestCase("", null)]
|
|
||||||
public void TestBoolConverter(string value, bool? expected)
|
|
||||||
{
|
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
|
||||||
var output = JsonSerializer.Deserialize<STJBoolObject>($"{{ \"Value\": {val} }}");
|
|
||||||
Assert.That(output.Value == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", true)]
|
|
||||||
[TestCase("true", true)]
|
|
||||||
[TestCase("yes", true)]
|
|
||||||
[TestCase("y", true)]
|
|
||||||
[TestCase("on", true)]
|
|
||||||
[TestCase("-1", false)]
|
|
||||||
[TestCase("0", false)]
|
|
||||||
[TestCase("n", false)]
|
|
||||||
[TestCase("no", false)]
|
|
||||||
[TestCase("false", false)]
|
|
||||||
[TestCase("off", false)]
|
|
||||||
[TestCase("", false)]
|
|
||||||
public void TestBoolConverterNotNullable(string value, bool expected)
|
|
||||||
{
|
|
||||||
var val = value == null ? "null" : $"\"{value}\"";
|
|
||||||
var output = JsonSerializer.Deserialize<NotNullableSTJBoolObject>($"{{ \"Value\": {val} }}");
|
|
||||||
Assert.That(output.Value == expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", 1)]
|
|
||||||
[TestCase("1.1", 1.1)]
|
|
||||||
[TestCase("-1.1", -1.1)]
|
|
||||||
[TestCase(null, null)]
|
|
||||||
[TestCase("", null)]
|
|
||||||
[TestCase("null", null)]
|
|
||||||
[TestCase("1E+2", 100)]
|
|
||||||
[TestCase("1E-2", 0.01)]
|
|
||||||
[TestCase("80228162514264337593543950335", -999)] // -999 is workaround for not being able to specify decimal.MaxValue
|
|
||||||
public void TestDecimalConverterString(string value, decimal? expected)
|
|
||||||
{
|
|
||||||
var result = JsonSerializer.Deserialize<STJDecimalObject>("{ \"test\": \""+ value + "\"}");
|
|
||||||
Assert.That(result.Test, Is.EqualTo(expected == -999 ? decimal.MaxValue : expected));
|
|
||||||
}
|
|
||||||
|
|
||||||
[TestCase("1", 1)]
|
|
||||||
[TestCase("1.1", 1.1)]
|
|
||||||
[TestCase("-1.1", -1.1)]
|
|
||||||
[TestCase("null", null)]
|
|
||||||
[TestCase("1E+2", 100)]
|
|
||||||
[TestCase("1E-2", 0.01)]
|
|
||||||
[TestCase("80228162514264337593543950335", -999)] // -999 is workaround for not being able to specify decimal.MaxValue
|
|
||||||
public void TestDecimalConverterNumber(string value, decimal? expected)
|
|
||||||
{
|
|
||||||
var result = JsonSerializer.Deserialize<STJDecimalObject>("{ \"test\": " + value + "}");
|
|
||||||
Assert.That(result.Test, Is.EqualTo(expected == -999 ? decimal.MaxValue : expected));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class STJDecimalObject
|
|
||||||
{
|
|
||||||
[JsonConverter(typeof(DecimalConverter))]
|
|
||||||
[JsonPropertyName("test")]
|
|
||||||
public decimal? Test { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class STJTimeObject
|
|
||||||
{
|
|
||||||
[JsonConverter(typeof(DateTimeConverter))]
|
|
||||||
[JsonPropertyName("time")]
|
|
||||||
public DateTime? Time { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class STJEnumObject
|
|
||||||
{
|
|
||||||
[JsonConverter(typeof(EnumConverter))]
|
|
||||||
public TestEnum? Value { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class NotNullableSTJEnumObject
|
|
||||||
{
|
|
||||||
[JsonConverter(typeof(EnumConverter))]
|
|
||||||
public TestEnum Value { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class STJBoolObject
|
|
||||||
{
|
|
||||||
[JsonConverter(typeof(BoolConverter))]
|
|
||||||
public bool? Value { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class NotNullableSTJBoolObject
|
|
||||||
{
|
|
||||||
[JsonConverter(typeof(BoolConverter))]
|
|
||||||
public bool Value { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
|
||||||
using CryptoExchange.Net.Sockets;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests.TestImplementations.Sockets
|
|
||||||
{
|
|
||||||
internal class SubResponse
|
|
||||||
{
|
|
||||||
|
|
||||||
[JsonProperty("action")]
|
|
||||||
public string Action { get; set; } = null!;
|
|
||||||
|
|
||||||
[JsonProperty("channel")]
|
|
||||||
public string Channel { get; set; } = null!;
|
|
||||||
|
|
||||||
[JsonProperty("status")]
|
|
||||||
public string Status { get; set; } = null!;
|
|
||||||
}
|
|
||||||
|
|
||||||
internal class UnsubResponse
|
|
||||||
{
|
|
||||||
[JsonProperty("action")]
|
|
||||||
public string Action { get; set; } = null!;
|
|
||||||
|
|
||||||
[JsonProperty("status")]
|
|
||||||
public string Status { get; set; } = null!;
|
|
||||||
}
|
|
||||||
|
|
||||||
internal class TestChannelQuery : Query<SubResponse>
|
|
||||||
{
|
|
||||||
public override HashSet<string> ListenerIdentifiers { get; set; }
|
|
||||||
|
|
||||||
public TestChannelQuery(string channel, string request, bool authenticated, int weight = 1) : base(request, authenticated, weight)
|
|
||||||
{
|
|
||||||
ListenerIdentifiers = new HashSet<string> { request + "-" + channel };
|
|
||||||
}
|
|
||||||
|
|
||||||
public override CallResult<SubResponse> HandleMessage(SocketConnection connection, DataEvent<SubResponse> message)
|
|
||||||
{
|
|
||||||
if (!message.Data.Status.Equals("confirmed", StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
return new CallResult<SubResponse>(new ServerError(message.Data.Status));
|
|
||||||
}
|
|
||||||
|
|
||||||
return base.HandleMessage(connection, message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using CryptoExchange.Net.Sockets;
|
using CryptoExchange.Net.Sockets;
|
||||||
|
using CryptoExchange.Net.Sockets.MessageParsing.Interfaces;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@@ -15,18 +15,18 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations.Sockets
|
|||||||
{
|
{
|
||||||
private readonly Action<DataEvent<T>> _handler;
|
private readonly Action<DataEvent<T>> _handler;
|
||||||
|
|
||||||
public override HashSet<string> ListenerIdentifiers { get; set; } = new HashSet<string> { "update-topic" };
|
public override HashSet<string> ListenerIdentifiers { get; set; } = new HashSet<string> { "topic" };
|
||||||
|
|
||||||
public TestSubscription(ILogger logger, Action<DataEvent<T>> handler) : base(logger, false)
|
public TestSubscription(ILogger logger, Action<DataEvent<T>> handler) : base(logger, false)
|
||||||
{
|
{
|
||||||
_handler = handler;
|
_handler = handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override CallResult DoHandleMessage(SocketConnection connection, DataEvent<object> message)
|
public override Task<CallResult> DoHandleMessageAsync(SocketConnection connection, DataEvent<object> message)
|
||||||
{
|
{
|
||||||
var data = (T)message.Data;
|
var data = (T)message.Data;
|
||||||
_handler.Invoke(message.As(data));
|
_handler.Invoke(message.As(data));
|
||||||
return new CallResult(null);
|
return Task.FromResult(new CallResult(null));
|
||||||
}
|
}
|
||||||
|
|
||||||
public override Type GetMessageType(IMessageAccessor message) => typeof(T);
|
public override Type GetMessageType(IMessageAccessor message) => typeof(T);
|
||||||
|
|||||||
-38
@@ -1,38 +0,0 @@
|
|||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
|
||||||
using CryptoExchange.Net.Sockets;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Moq;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests.TestImplementations.Sockets
|
|
||||||
{
|
|
||||||
internal class TestSubscriptionWithResponseCheck<T> : Subscription<SubResponse, UnsubResponse>
|
|
||||||
{
|
|
||||||
private readonly Action<DataEvent<T>> _handler;
|
|
||||||
private readonly string _channel;
|
|
||||||
|
|
||||||
public override HashSet<string> ListenerIdentifiers { get; set; }
|
|
||||||
|
|
||||||
public TestSubscriptionWithResponseCheck(string channel, Action<DataEvent<T>> handler) : base(Mock.Of<ILogger>(), false)
|
|
||||||
{
|
|
||||||
ListenerIdentifiers = new HashSet<string>() { channel };
|
|
||||||
_handler = handler;
|
|
||||||
_channel = channel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override CallResult DoHandleMessage(SocketConnection connection, DataEvent<object> message)
|
|
||||||
{
|
|
||||||
var data = (T)message.Data;
|
|
||||||
_handler.Invoke(message.As(data));
|
|
||||||
return new CallResult(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override Type GetMessageType(IMessageAccessor message) => typeof(T);
|
|
||||||
public override Query GetSubQuery(SocketConnection connection) => new TestChannelQuery(_channel, "subscribe", false, 1);
|
|
||||||
public override Query GetUnsubQuery() => new TestChannelQuery(_channel, "unsubscribe", false, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CryptoExchange.Net.Authentication;
|
using CryptoExchange.Net.Authentication;
|
||||||
using CryptoExchange.Net.Clients;
|
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using CryptoExchange.Net.SharedApis;
|
|
||||||
using CryptoExchange.Net.UnitTests.TestImplementations;
|
using CryptoExchange.Net.UnitTests.TestImplementations;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
@@ -43,20 +39,8 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public CallResult<T> Deserialize<T>(string data)
|
public CallResult<T> Deserialize<T>(string data) => Deserialize<T>(data, null, null);
|
||||||
{
|
|
||||||
var stream = new MemoryStream(Encoding.UTF8.GetBytes(data));
|
|
||||||
var accessor = CreateAccessor();
|
|
||||||
var valid = accessor.Read(stream, true).Result;
|
|
||||||
if (!valid)
|
|
||||||
return new CallResult<T>(new ServerError(data));
|
|
||||||
|
|
||||||
var deserializeResult = accessor.Deserialize<T>();
|
|
||||||
return deserializeResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string FormatSymbol(string baseAsset, string quoteAsset, TradingMode futuresType, DateTime? deliverDate = null) => $"{baseAsset.ToUpperInvariant()}{quoteAsset.ToUpperInvariant()}";
|
|
||||||
public override TimeSpan? GetTimeOffset() => null;
|
public override TimeSpan? GetTimeOffset() => null;
|
||||||
public override TimeSyncInfo GetTimeSyncInfo() => null;
|
public override TimeSyncInfo GetTimeSyncInfo() => null;
|
||||||
protected override AuthenticationProvider CreateAuthenticationProvider(ApiCredentials credentials) => throw new NotImplementedException();
|
protected override AuthenticationProvider CreateAuthenticationProvider(ApiCredentials credentials) => throw new NotImplementedException();
|
||||||
@@ -69,11 +53,14 @@ namespace CryptoExchange.Net.UnitTests
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void AuthenticateRequest(RestApiClient apiClient, Uri uri, HttpMethod method, ref IDictionary<string, object> uriParams, ref IDictionary<string, object> bodyParams, ref Dictionary<string, string> headers, bool auth, ArrayParametersSerialization arraySerialization, HttpMethodParameterPosition parameterPosition, RequestBodyFormat bodyFormat)
|
public override void AuthenticateRequest(RestApiClient apiClient, Uri uri, HttpMethod method, Dictionary<string, object> providedParameters, bool auth, ArrayParametersSerialization arraySerialization, HttpMethodParameterPosition parameterPosition, out SortedDictionary<string, object> uriParameters, out SortedDictionary<string, object> bodyParameters, out Dictionary<string, string> headers)
|
||||||
{
|
{
|
||||||
|
bodyParameters = new SortedDictionary<string, object>();
|
||||||
|
uriParameters = new SortedDictionary<string, object>();
|
||||||
|
headers = new Dictionary<string, string>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public string GetKey() => _credentials.Key;
|
public string GetKey() => _credentials.Key.GetString();
|
||||||
public string GetSecret() => _credentials.Secret;
|
public string GetSecret() => _credentials.Secret.GetString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ using CryptoExchange.Net.Authentication;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using CryptoExchange.Net.Clients;
|
|
||||||
using CryptoExchange.Net.SharedApis;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests.TestImplementations
|
namespace CryptoExchange.Net.UnitTests.TestImplementations
|
||||||
{
|
{
|
||||||
@@ -138,17 +136,14 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|||||||
RequestFactory = new Mock<IRequestFactory>().Object;
|
RequestFactory = new Mock<IRequestFactory>().Object;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string FormatSymbol(string baseAsset, string quoteAsset, TradingMode futuresType, DateTime? deliverDate = null) => $"{baseAsset.ToUpperInvariant()}{quoteAsset.ToUpperInvariant()}";
|
|
||||||
|
|
||||||
public async Task<CallResult<T>> Request<T>(CancellationToken ct = default) where T : class
|
public async Task<CallResult<T>> Request<T>(CancellationToken ct = default) where T : class
|
||||||
{
|
{
|
||||||
return await SendRequestAsync<T>(new Uri("http://www.test.com"), HttpMethod.Get, ct, requestWeight: 0);
|
return await SendRequestAsync<T>(new Uri("http://www.test.com"), HttpMethod.Get, ct);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<CallResult<T>> RequestWithParams<T>(HttpMethod method, Dictionary<string, object> parameters, Dictionary<string, string> headers) where T : class
|
public async Task<CallResult<T>> RequestWithParams<T>(HttpMethod method, Dictionary<string, object> parameters, Dictionary<string, string> headers) where T : class
|
||||||
{
|
{
|
||||||
return await SendRequestAsync<T>(new Uri("http://www.test.com"), method, default, parameters, requestWeight: 0, additionalHeaders: headers);
|
return await SendRequestAsync<T>(new Uri("http://www.test.com"), method, default, parameters, additionalHeaders: headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetParameterPosition(HttpMethod method, HttpMethodParameterPosition position)
|
public void SetParameterPosition(HttpMethod method, HttpMethodParameterPosition position)
|
||||||
@@ -182,19 +177,16 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|||||||
RequestFactory = new Mock<IRequestFactory>().Object;
|
RequestFactory = new Mock<IRequestFactory>().Object;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string FormatSymbol(string baseAsset, string quoteAsset, TradingMode futuresType, DateTime? deliverDate = null) => $"{baseAsset.ToUpperInvariant()}{quoteAsset.ToUpperInvariant()}";
|
|
||||||
|
|
||||||
public async Task<CallResult<T>> Request<T>(CancellationToken ct = default) where T : class
|
public async Task<CallResult<T>> Request<T>(CancellationToken ct = default) where T : class
|
||||||
{
|
{
|
||||||
return await SendRequestAsync<T>(new Uri("http://www.test.com"), HttpMethod.Get, ct, requestWeight: 0);
|
return await SendRequestAsync<T>(new Uri("http://www.test.com"), HttpMethod.Get, ct);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override Error ParseErrorResponse(int httpStatusCode, IEnumerable<KeyValuePair<string, IEnumerable<string>>> responseHeaders, IMessageAccessor accessor)
|
protected override Error ParseErrorResponse(int httpStatusCode, IEnumerable<KeyValuePair<string, IEnumerable<string>>> responseHeaders, string data)
|
||||||
{
|
{
|
||||||
var errorData = accessor.Deserialize<TestError>();
|
var errorData = ValidateJson(data);
|
||||||
|
|
||||||
return new ServerError(errorData.Data.ErrorCode, errorData.Data.ErrorMessage);
|
return new ServerError((int)errorData.Data["errorCode"], (string)errorData.Data["errorMessage"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override TimeSpan? GetTimeOffset()
|
public override TimeSpan? GetTimeOffset()
|
||||||
@@ -216,12 +208,6 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class TestError
|
|
||||||
{
|
|
||||||
public int ErrorCode { get; set; }
|
|
||||||
public string ErrorMessage { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class ParseErrorTestRestClient: TestRestClient
|
public class ParseErrorTestRestClient: TestRestClient
|
||||||
{
|
{
|
||||||
public ParseErrorTestRestClient() { }
|
public ParseErrorTestRestClient() { }
|
||||||
|
|||||||
@@ -1,132 +1,131 @@
|
|||||||
//using System;
|
using System;
|
||||||
//using System.IO;
|
using System.IO;
|
||||||
//using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
//using System.Security.Authentication;
|
using System.Security.Authentication;
|
||||||
//using System.Text;
|
using System.Text;
|
||||||
//using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
//using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
//using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
|
|
||||||
//namespace CryptoExchange.Net.UnitTests.TestImplementations
|
namespace CryptoExchange.Net.UnitTests.TestImplementations
|
||||||
//{
|
{
|
||||||
// public class TestSocket: IWebsocket
|
public class TestSocket: IWebsocket
|
||||||
// {
|
{
|
||||||
// public bool CanConnect { get; set; }
|
public bool CanConnect { get; set; }
|
||||||
// public bool Connected { get; set; }
|
public bool Connected { get; set; }
|
||||||
|
|
||||||
// public event Func<Task> OnClose;
|
public event Func<Task> OnClose;
|
||||||
//#pragma warning disable 0067
|
#pragma warning disable 0067
|
||||||
// public event Func<Task> OnReconnected;
|
public event Func<Task> OnReconnected;
|
||||||
// public event Func<Task> OnReconnecting;
|
public event Func<Task> OnReconnecting;
|
||||||
// public event Func<int, Task> OnRequestRateLimited;
|
#pragma warning restore 0067
|
||||||
//#pragma warning restore 0067
|
public event Func<int, Task> OnRequestSent;
|
||||||
// public event Func<int, Task> OnRequestSent;
|
public event Func<WebSocketMessageType, Stream, Task> OnStreamMessage;
|
||||||
// public event Func<WebSocketMessageType, ReadOnlyMemory<byte>, Task> OnStreamMessage;
|
public event Func<Exception, Task> OnError;
|
||||||
// public event Func<Exception, Task> OnError;
|
public event Func<Task> OnOpen;
|
||||||
// public event Func<Task> OnOpen;
|
public Func<Task<Uri>> GetReconnectionUrl { get; set; }
|
||||||
// public Func<Task<Uri>> GetReconnectionUrl { get; set; }
|
|
||||||
|
|
||||||
// public int Id { get; }
|
public int Id { get; }
|
||||||
// public bool ShouldReconnect { get; set; }
|
public bool ShouldReconnect { get; set; }
|
||||||
// public TimeSpan Timeout { get; set; }
|
public TimeSpan Timeout { get; set; }
|
||||||
// public Func<string, string> DataInterpreterString { get; set; }
|
public Func<string, string> DataInterpreterString { get; set; }
|
||||||
// public Func<byte[], string> DataInterpreterBytes { get; set; }
|
public Func<byte[], string> DataInterpreterBytes { get; set; }
|
||||||
// public DateTime? DisconnectTime { get; set; }
|
public DateTime? DisconnectTime { get; set; }
|
||||||
// public string Url { get; }
|
public string Url { get; }
|
||||||
// public bool IsClosed => !Connected;
|
public bool IsClosed => !Connected;
|
||||||
// public bool IsOpen => Connected;
|
public bool IsOpen => Connected;
|
||||||
// public bool PingConnection { get; set; }
|
public bool PingConnection { get; set; }
|
||||||
// public TimeSpan PingInterval { get; set; }
|
public TimeSpan PingInterval { get; set; }
|
||||||
// public SslProtocols SSLProtocols { get; set; }
|
public SslProtocols SSLProtocols { get; set; }
|
||||||
// public Encoding Encoding { get; set; }
|
public Encoding Encoding { get; set; }
|
||||||
|
|
||||||
// public int ConnectCalls { get; private set; }
|
public int ConnectCalls { get; private set; }
|
||||||
// public bool Reconnecting { get; set; }
|
public bool Reconnecting { get; set; }
|
||||||
// public string Origin { get; set; }
|
public string Origin { get; set; }
|
||||||
// public int? RatelimitPerSecond { get; set; }
|
public int? RatelimitPerSecond { get; set; }
|
||||||
|
|
||||||
// public double IncomingKbps => throw new NotImplementedException();
|
public double IncomingKbps => throw new NotImplementedException();
|
||||||
|
|
||||||
// public Uri Uri => new Uri("");
|
public Uri Uri => new Uri("");
|
||||||
|
|
||||||
// public TimeSpan KeepAliveInterval { get; set; }
|
public TimeSpan KeepAliveInterval { get; set; }
|
||||||
|
|
||||||
// public static int lastId = 0;
|
public static int lastId = 0;
|
||||||
// public static object lastIdLock = new object();
|
public static object lastIdLock = new object();
|
||||||
|
|
||||||
// public TestSocket()
|
public TestSocket()
|
||||||
// {
|
{
|
||||||
// lock (lastIdLock)
|
lock (lastIdLock)
|
||||||
// {
|
{
|
||||||
// Id = lastId + 1;
|
Id = lastId + 1;
|
||||||
// lastId++;
|
lastId++;
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public Task<CallResult> ConnectAsync()
|
public Task<bool> ConnectAsync()
|
||||||
// {
|
{
|
||||||
// Connected = CanConnect;
|
Connected = CanConnect;
|
||||||
// ConnectCalls++;
|
ConnectCalls++;
|
||||||
// if (CanConnect)
|
if (CanConnect)
|
||||||
// InvokeOpen();
|
InvokeOpen();
|
||||||
// return Task.FromResult(CanConnect ? new CallResult(null) : new CallResult(new CantConnectError()));
|
return Task.FromResult(CanConnect);
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public bool Send(int requestId, string data, int weight)
|
public void Send(int requestId, string data, int weight)
|
||||||
// {
|
{
|
||||||
// if(!Connected)
|
if(!Connected)
|
||||||
// throw new Exception("Socket not connected");
|
throw new Exception("Socket not connected");
|
||||||
// OnRequestSent?.Invoke(requestId);
|
OnRequestSent?.Invoke(requestId);
|
||||||
// return true;
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
// public void Reset()
|
public void Reset()
|
||||||
// {
|
{
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public Task CloseAsync()
|
public Task CloseAsync()
|
||||||
// {
|
{
|
||||||
// Connected = false;
|
Connected = false;
|
||||||
// DisconnectTime = DateTime.UtcNow;
|
DisconnectTime = DateTime.UtcNow;
|
||||||
// OnClose?.Invoke();
|
OnClose?.Invoke();
|
||||||
// return Task.FromResult(0);
|
return Task.FromResult(0);
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public void SetProxy(string host, int port)
|
public void SetProxy(string host, int port)
|
||||||
// {
|
{
|
||||||
// throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
// }
|
}
|
||||||
// public void Dispose()
|
public void Dispose()
|
||||||
// {
|
{
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public void InvokeClose()
|
public void InvokeClose()
|
||||||
// {
|
{
|
||||||
// Connected = false;
|
Connected = false;
|
||||||
// DisconnectTime = DateTime.UtcNow;
|
DisconnectTime = DateTime.UtcNow;
|
||||||
// Reconnecting = true;
|
Reconnecting = true;
|
||||||
// OnClose?.Invoke();
|
OnClose?.Invoke();
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public void InvokeOpen()
|
public void InvokeOpen()
|
||||||
// {
|
{
|
||||||
// OnOpen?.Invoke();
|
OnOpen?.Invoke();
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public void InvokeMessage(string data)
|
public async Task InvokeMessage(string data)
|
||||||
// {
|
{
|
||||||
// OnStreamMessage?.Invoke(WebSocketMessageType.Text, new ReadOnlyMemory<byte>(Encoding.UTF8.GetBytes(data))).Wait();
|
var stream = new MemoryStream(Encoding.UTF8.GetBytes(data));
|
||||||
// }
|
await OnStreamMessage?.Invoke(WebSocketMessageType.Text, stream);
|
||||||
|
}
|
||||||
|
|
||||||
// public void SetProxy(ApiProxy proxy)
|
public void SetProxy(ApiProxy proxy)
|
||||||
// {
|
{
|
||||||
// throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
// }
|
}
|
||||||
|
|
||||||
// public void InvokeError(Exception error)
|
public void InvokeError(Exception error)
|
||||||
// {
|
{
|
||||||
// OnError?.Invoke(error);
|
OnError?.Invoke(error);
|
||||||
// }
|
}
|
||||||
// public Task ReconnectAsync() => Task.CompletedTask;
|
public Task ReconnectAsync() => Task.CompletedTask;
|
||||||
// }
|
}
|
||||||
//}
|
}
|
||||||
|
|||||||
@@ -1,24 +1,20 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CryptoExchange.Net.Authentication;
|
using CryptoExchange.Net.Authentication;
|
||||||
using CryptoExchange.Net.Clients;
|
|
||||||
using CryptoExchange.Net.Converters.MessageParsing;
|
|
||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using CryptoExchange.Net.Sockets;
|
using CryptoExchange.Net.Sockets;
|
||||||
using CryptoExchange.Net.UnitTests.TestImplementations.Sockets;
|
using CryptoExchange.Net.Sockets.MessageParsing.Interfaces;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Moq;
|
using Moq;
|
||||||
using CryptoExchange.Net.Testing.Implementations;
|
using Newtonsoft.Json.Linq;
|
||||||
using CryptoExchange.Net.SharedApis;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.UnitTests.TestImplementations
|
namespace CryptoExchange.Net.UnitTests.TestImplementations
|
||||||
{
|
{
|
||||||
internal class TestSocketClient: BaseSocketClient
|
public class TestSocketClient: BaseSocketClient
|
||||||
{
|
{
|
||||||
public TestSubSocketClient SubClient { get; }
|
public TestSubSocketClient SubClient { get; }
|
||||||
|
|
||||||
@@ -42,12 +38,12 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|||||||
|
|
||||||
SubClient = AddApiClient(new TestSubSocketClient(options, options.SubOptions));
|
SubClient = AddApiClient(new TestSubSocketClient(options, options.SubOptions));
|
||||||
SubClient.SocketFactory = new Mock<IWebsocketFactory>().Object;
|
SubClient.SocketFactory = new Mock<IWebsocketFactory>().Object;
|
||||||
Mock.Get(SubClient.SocketFactory).Setup(f => f.CreateWebsocket(It.IsAny<ILogger>(), It.IsAny<WebSocketParameters>())).Returns(new TestSocket("https://test.com"));
|
Mock.Get(SubClient.SocketFactory).Setup(f => f.CreateWebsocket(It.IsAny<ILogger>(), It.IsAny<WebSocketParameters>())).Returns(new TestSocket());
|
||||||
}
|
}
|
||||||
|
|
||||||
public TestSocket CreateSocket()
|
public TestSocket CreateSocket()
|
||||||
{
|
{
|
||||||
Mock.Get(SubClient.SocketFactory).Setup(f => f.CreateWebsocket(It.IsAny<ILogger>(), It.IsAny<WebSocketParameters>())).Returns(new TestSocket("https://test.com"));
|
Mock.Get(SubClient.SocketFactory).Setup(f => f.CreateWebsocket(It.IsAny<ILogger>(), It.IsAny<WebSocketParameters>())).Returns(new TestSocket());
|
||||||
return (TestSocket)SubClient.CreateSocketInternal("https://localhost:123/");
|
return (TestSocket)SubClient.CreateSocketInternal("https://localhost:123/");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,20 +71,12 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|||||||
|
|
||||||
public class TestSubSocketClient : SocketApiClient
|
public class TestSubSocketClient : SocketApiClient
|
||||||
{
|
{
|
||||||
private MessagePath _channelPath = MessagePath.Get().Property("channel");
|
|
||||||
private MessagePath _actionPath = MessagePath.Get().Property("action");
|
|
||||||
private MessagePath _topicPath = MessagePath.Get().Property("topic");
|
|
||||||
|
|
||||||
public Subscription TestSubscription { get; private set; } = null;
|
public TestSubSocketClient(TestSocketOptions options, SocketApiOptions apiOptions): base(new TraceLogger(), options.Environment.TestAddress, options, apiOptions)
|
||||||
|
|
||||||
public TestSubSocketClient(TestSocketOptions options, SocketApiOptions apiOptions) : base(new TraceLogger(), options.Environment.TestAddress, options, apiOptions)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string FormatSymbol(string baseAsset, string quoteAsset, TradingMode futuresType, DateTime? deliverDate = null) => $"{baseAsset.ToUpperInvariant()}{quoteAsset.ToUpperInvariant()}";
|
|
||||||
|
|
||||||
internal IWebsocket CreateSocketInternal(string address)
|
internal IWebsocket CreateSocketInternal(string address)
|
||||||
{
|
{
|
||||||
return CreateSocket(address);
|
return CreateSocket(address);
|
||||||
@@ -97,28 +85,11 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|||||||
protected override AuthenticationProvider CreateAuthenticationProvider(ApiCredentials credentials)
|
protected override AuthenticationProvider CreateAuthenticationProvider(ApiCredentials credentials)
|
||||||
=> new TestAuthProvider(credentials);
|
=> new TestAuthProvider(credentials);
|
||||||
|
|
||||||
public CallResult ConnectSocketSub(SocketConnection sub)
|
public CallResult<bool> ConnectSocketSub(SocketConnection sub)
|
||||||
{
|
{
|
||||||
return ConnectSocketAsync(sub).Result;
|
return ConnectSocketAsync(sub).Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override string GetListenerIdentifier(IMessageAccessor message)
|
public override string GetListenerIdentifier(IMessageAccessor messageAccessor) => "topic";
|
||||||
{
|
|
||||||
if (!message.IsJson)
|
|
||||||
{
|
|
||||||
return "topic";
|
|
||||||
}
|
|
||||||
|
|
||||||
var id = message.GetValue<string>(_channelPath);
|
|
||||||
id ??= message.GetValue<string>(_topicPath);
|
|
||||||
|
|
||||||
return message.GetValue<string>(_actionPath) + "-" + id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task<CallResult<UpdateSubscription>> SubscribeToSomethingAsync(string channel, Action<DataEvent<string>> onUpdate, CancellationToken ct)
|
|
||||||
{
|
|
||||||
TestSubscription = new TestSubscriptionWithResponseCheck<string>(channel, onUpdate);
|
|
||||||
return SubscribeAsync(TestSubscription, ct);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,30 +1,56 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using CryptoExchange.Net.Converters.SystemTextJson;
|
using System.Security;
|
||||||
using CryptoExchange.Net.Converters.MessageParsing;
|
using System.Text;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Authentication
|
namespace CryptoExchange.Net.Authentication
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Api credentials, used to sign requests accessing private endpoints
|
/// Api credentials, used to sign requests accessing private endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ApiCredentials
|
public class ApiCredentials: IDisposable
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The api key to authenticate requests
|
/// The api key to authenticate requests
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Key { get; }
|
public SecureString? Key { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The api secret to authenticate requests
|
/// The api secret to authenticate requests
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Secret { get; }
|
public SecureString? Secret { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Type of the credentials
|
/// Type of the credentials
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ApiCredentialsType CredentialType { get; }
|
public ApiCredentialsType CredentialType { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create Api credentials providing an api key and secret for authentication
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">The api key used for identification</param>
|
||||||
|
/// <param name="secret">The api secret used for signing</param>
|
||||||
|
public ApiCredentials(SecureString key, SecureString secret) : this(key, secret, ApiCredentialsType.Hmac)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create Api credentials providing an api key and secret for authentication
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">The api key used for identification</param>
|
||||||
|
/// <param name="secret">The api secret used for signing</param>
|
||||||
|
/// <param name="credentialsType">The type of credentials</param>
|
||||||
|
public ApiCredentials(SecureString key, SecureString secret, ApiCredentialsType credentialsType)
|
||||||
|
{
|
||||||
|
if (key == null || secret == null)
|
||||||
|
throw new ArgumentException("Key and secret can't be null/empty");
|
||||||
|
|
||||||
|
CredentialType = credentialsType;
|
||||||
|
Key = key;
|
||||||
|
Secret = secret;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create Api credentials providing an api key and secret for authentication
|
/// Create Api credentials providing an api key and secret for authentication
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -46,8 +72,8 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
throw new ArgumentException("Key and secret can't be null/empty");
|
throw new ArgumentException("Key and secret can't be null/empty");
|
||||||
|
|
||||||
CredentialType = credentialsType;
|
CredentialType = credentialsType;
|
||||||
Key = key;
|
Key = key.ToSecureString();
|
||||||
Secret = secret;
|
Secret = secret.ToSecureString();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -56,7 +82,8 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual ApiCredentials Copy()
|
public virtual ApiCredentials Copy()
|
||||||
{
|
{
|
||||||
return new ApiCredentials(Key, Secret, CredentialType);
|
// Use .GetString() to create a copy of the SecureString
|
||||||
|
return new ApiCredentials(Key!.GetString(), Secret!.GetString(), CredentialType);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -67,19 +94,45 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
/// <param name="identifierSecret">A key to identify the credentials for the API. For example, when set to `binanceSecret` the json data should contain a value for the property `binanceSecret`. Defaults to 'apiSecret'.</param>
|
/// <param name="identifierSecret">A key to identify the credentials for the API. For example, when set to `binanceSecret` the json data should contain a value for the property `binanceSecret`. Defaults to 'apiSecret'.</param>
|
||||||
public ApiCredentials(Stream inputStream, string? identifierKey = null, string? identifierSecret = null)
|
public ApiCredentials(Stream inputStream, string? identifierKey = null, string? identifierSecret = null)
|
||||||
{
|
{
|
||||||
var accessor = new SystemTextJsonStreamMessageAccessor();
|
using var reader = new StreamReader(inputStream, Encoding.UTF8, false, 512, true);
|
||||||
if (!accessor.Read(inputStream, false).Result)
|
|
||||||
|
var stringData = reader.ReadToEnd();
|
||||||
|
var jsonData = stringData.ToJToken();
|
||||||
|
if(jsonData == null)
|
||||||
throw new ArgumentException("Input stream not valid json data");
|
throw new ArgumentException("Input stream not valid json data");
|
||||||
|
|
||||||
var key = accessor.GetValue<string>(MessagePath.Get().Property(identifierKey ?? "apiKey"));
|
var key = TryGetValue(jsonData, identifierKey ?? "apiKey");
|
||||||
var secret = accessor.GetValue<string>(MessagePath.Get().Property(identifierSecret ?? "apiSecret"));
|
var secret = TryGetValue(jsonData, identifierSecret ?? "apiSecret");
|
||||||
|
|
||||||
if (key == null || secret == null)
|
if (key == null || secret == null)
|
||||||
throw new ArgumentException("apiKey or apiSecret value not found in Json credential file");
|
throw new ArgumentException("apiKey or apiSecret value not found in Json credential file");
|
||||||
|
|
||||||
Key = key;
|
Key = key.ToSecureString();
|
||||||
Secret = secret;
|
Secret = secret.ToSecureString();
|
||||||
|
|
||||||
inputStream.Seek(0, SeekOrigin.Begin);
|
inputStream.Seek(0, SeekOrigin.Begin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Try get the value of a key from a JToken
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected string? TryGetValue(JToken data, string key)
|
||||||
|
{
|
||||||
|
if (data[key] == null)
|
||||||
|
return null;
|
||||||
|
return (string) data[key]!;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Dispose
|
||||||
|
/// </summary>
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
Key?.Dispose();
|
||||||
|
Secret?.Dispose();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
using CryptoExchange.Net.Clients;
|
using CryptoExchange.Net.Converters;
|
||||||
using CryptoExchange.Net.Converters.SystemTextJson;
|
|
||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@@ -14,25 +12,18 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base class for authentication providers
|
/// Base class for authentication providers
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class AuthenticationProvider
|
public abstract class AuthenticationProvider : IDisposable
|
||||||
{
|
{
|
||||||
internal IAuthTimeProvider TimeProvider { get; set; } = new AuthTimeProvider();
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provided credentials
|
/// Provided credentials
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected internal readonly ApiCredentials _credentials;
|
protected readonly ApiCredentials _credentials;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Byte representation of the secret
|
/// Byte representation of the secret
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected byte[] _sBytes;
|
protected byte[] _sBytes;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get the API key of the current credentials
|
|
||||||
/// </summary>
|
|
||||||
public string ApiKey => _credentials.Key;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ctor
|
/// ctor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -43,7 +34,7 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
throw new ArgumentException("ApiKey/Secret needed");
|
throw new ArgumentException("ApiKey/Secret needed");
|
||||||
|
|
||||||
_credentials = credentials;
|
_credentials = credentials;
|
||||||
_sBytes = Encoding.UTF8.GetBytes(credentials.Secret);
|
_sBytes = Encoding.UTF8.GetBytes(credentials.Secret.GetString());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -52,24 +43,24 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
/// <param name="apiClient">The Api client sending the request</param>
|
/// <param name="apiClient">The Api client sending the request</param>
|
||||||
/// <param name="uri">The uri for the request</param>
|
/// <param name="uri">The uri for the request</param>
|
||||||
/// <param name="method">The method of the request</param>
|
/// <param name="method">The method of the request</param>
|
||||||
|
/// <param name="providedParameters">The request parameters</param>
|
||||||
/// <param name="auth">If the requests should be authenticated</param>
|
/// <param name="auth">If the requests should be authenticated</param>
|
||||||
/// <param name="arraySerialization">Array serialization type</param>
|
/// <param name="arraySerialization">Array serialization type</param>
|
||||||
/// <param name="requestBodyFormat">The formatting of the request body</param>
|
/// <param name="parameterPosition">The position where the providedParameters should go</param>
|
||||||
/// <param name="uriParameters">Parameters that need to be in the Uri of the request. Should include the provided parameters if they should go in the uri</param>
|
/// <param name="uriParameters">Parameters that need to be in the Uri of the request. Should include the provided parameters if they should go in the uri</param>
|
||||||
/// <param name="bodyParameters">Parameters that need to be in the body of the request. Should include the provided parameters if they should go in the body</param>
|
/// <param name="bodyParameters">Parameters that need to be in the body of the request. Should include the provided parameters if they should go in the body</param>
|
||||||
/// <param name="headers">The headers that should be send with the request</param>
|
/// <param name="headers">The headers that should be send with the request</param>
|
||||||
/// <param name="parameterPosition">The position where the providedParameters should go</param>
|
|
||||||
public abstract void AuthenticateRequest(
|
public abstract void AuthenticateRequest(
|
||||||
RestApiClient apiClient,
|
RestApiClient apiClient,
|
||||||
Uri uri,
|
Uri uri,
|
||||||
HttpMethod method,
|
HttpMethod method,
|
||||||
ref IDictionary<string, object>? uriParameters,
|
Dictionary<string, object> providedParameters,
|
||||||
ref IDictionary<string, object>? bodyParameters,
|
|
||||||
ref Dictionary<string, string>? headers,
|
|
||||||
bool auth,
|
bool auth,
|
||||||
ArrayParametersSerialization arraySerialization,
|
ArrayParametersSerialization arraySerialization,
|
||||||
HttpMethodParameterPosition parameterPosition,
|
HttpMethodParameterPosition parameterPosition,
|
||||||
RequestBodyFormat requestBodyFormat
|
out SortedDictionary<string, object> uriParameters,
|
||||||
|
out SortedDictionary<string, object> bodyParameters,
|
||||||
|
out Dictionary<string, string> headers
|
||||||
);
|
);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -254,7 +245,7 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// HMACSHA256 sign the data and return the hash
|
/// HMACSHA512 sign the data and return the hash
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="data">Data to sign</param>
|
/// <param name="data">Data to sign</param>
|
||||||
/// <param name="outputType">String type</param>
|
/// <param name="outputType">String type</param>
|
||||||
@@ -276,7 +267,7 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// HMACSHA384 sign the data and return the hash
|
/// HMACSHA512 sign the data and return the hash
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="data">Data to sign</param>
|
/// <param name="data">Data to sign</param>
|
||||||
/// <param name="outputType">String type</param>
|
/// <param name="outputType">String type</param>
|
||||||
@@ -371,7 +362,7 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
{
|
{
|
||||||
#if NETSTANDARD2_1_OR_GREATER
|
#if NETSTANDARD2_1_OR_GREATER
|
||||||
// Read from pem private key
|
// Read from pem private key
|
||||||
var key = _credentials.Secret!
|
var key = _credentials.Secret!.GetString()
|
||||||
.Replace("\n", "")
|
.Replace("\n", "")
|
||||||
.Replace("-----BEGIN PRIVATE KEY-----", "")
|
.Replace("-----BEGIN PRIVATE KEY-----", "")
|
||||||
.Replace("-----END PRIVATE KEY-----", "")
|
.Replace("-----END PRIVATE KEY-----", "")
|
||||||
@@ -386,7 +377,7 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
else if (_credentials.CredentialType == ApiCredentialsType.RsaXml)
|
else if (_credentials.CredentialType == ApiCredentialsType.RsaXml)
|
||||||
{
|
{
|
||||||
// Read from xml private key format
|
// Read from xml private key format
|
||||||
rsa.FromXmlString(_credentials.Secret!);
|
rsa.FromXmlString(_credentials.Secret!.GetString());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -424,9 +415,9 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="apiClient"></param>
|
/// <param name="apiClient"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected DateTime GetTimestamp(RestApiClient apiClient)
|
protected static DateTime GetTimestamp(RestApiClient apiClient)
|
||||||
{
|
{
|
||||||
return TimeProvider.GetTime().Add(apiClient.GetTimeOffset() ?? TimeSpan.Zero)!;
|
return DateTime.UtcNow.Add(apiClient.GetTimeOffset() ?? TimeSpan.Zero)!;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -434,23 +425,15 @@ namespace CryptoExchange.Net.Authentication
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="apiClient"></param>
|
/// <param name="apiClient"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected string GetMillisecondTimestamp(RestApiClient apiClient)
|
protected static string GetMillisecondTimestamp(RestApiClient apiClient)
|
||||||
{
|
{
|
||||||
return DateTimeConverter.ConvertToMilliseconds(GetTimestamp(apiClient)).Value.ToString(CultureInfo.InvariantCulture);
|
return DateTimeConverter.ConvertToMilliseconds(GetTimestamp(apiClient)).Value.ToString(CultureInfo.InvariantCulture);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <inheritdoc />
|
||||||
/// Return the serialized request body
|
public void Dispose()
|
||||||
/// </summary>
|
|
||||||
/// <param name="serializer"></param>
|
|
||||||
/// <param name="parameters"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
protected string GetSerializedBody(IMessageSerializer serializer, IDictionary<string, object> parameters)
|
|
||||||
{
|
{
|
||||||
if (parameters.Count == 1 && parameters.ContainsKey(Constants.BodyPlaceHolderKey))
|
_credentials?.Dispose();
|
||||||
return serializer.Serialize(parameters[Constants.BodyPlaceHolderKey]);
|
|
||||||
else
|
|
||||||
return serializer.Serialize(parameters);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,54 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Concurrent;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Caching
|
|
||||||
{
|
|
||||||
internal class MemoryCache
|
|
||||||
{
|
|
||||||
private readonly ConcurrentDictionary<string, CacheItem> _cache = new ConcurrentDictionary<string, CacheItem>();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Add a new cache entry. Will override an existing entry if it already exists
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="key">The key identifier</param>
|
|
||||||
/// <param name="value">Cache value</param>
|
|
||||||
public void Add(string key, object value)
|
|
||||||
{
|
|
||||||
var cacheItem = new CacheItem(DateTime.UtcNow, value);
|
|
||||||
_cache.AddOrUpdate(key, cacheItem, (key, val1) => cacheItem);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get a cached value
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="key">The key identifier</param>
|
|
||||||
/// <param name="maxAge">The max age of the cached entry</param>
|
|
||||||
/// <returns>Cached value if it was in cache</returns>
|
|
||||||
public object? Get(string key, TimeSpan maxAge)
|
|
||||||
{
|
|
||||||
_cache.TryGetValue(key, out CacheItem value);
|
|
||||||
if (value == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (DateTime.UtcNow - value.CacheTime > maxAge)
|
|
||||||
{
|
|
||||||
_cache.TryRemove(key, out _);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private class CacheItem
|
|
||||||
{
|
|
||||||
public DateTime CacheTime { get; }
|
|
||||||
public object Value { get; }
|
|
||||||
|
|
||||||
public CacheItem(DateTime cacheTime, object value)
|
|
||||||
{
|
|
||||||
CacheTime = cacheTime;
|
|
||||||
Value = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +1,19 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using CryptoExchange.Net.Authentication;
|
using CryptoExchange.Net.Authentication;
|
||||||
|
using CryptoExchange.Net.Converters;
|
||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using CryptoExchange.Net.SharedApis;
|
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Clients
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base API for all API clients
|
/// Base API for all API clients
|
||||||
@@ -28,6 +35,37 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public AuthenticationProvider? AuthenticationProvider { get; private set; }
|
public AuthenticationProvider? AuthenticationProvider { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Where to put the parameters for requests with different Http methods
|
||||||
|
/// </summary>
|
||||||
|
public Dictionary<HttpMethod, HttpMethodParameterPosition> ParameterPositions { get; set; } = new Dictionary<HttpMethod, HttpMethodParameterPosition>
|
||||||
|
{
|
||||||
|
{ HttpMethod.Get, HttpMethodParameterPosition.InUri },
|
||||||
|
{ HttpMethod.Post, HttpMethodParameterPosition.InBody },
|
||||||
|
{ HttpMethod.Delete, HttpMethodParameterPosition.InBody },
|
||||||
|
{ HttpMethod.Put, HttpMethodParameterPosition.InBody }
|
||||||
|
};
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Request body content type
|
||||||
|
/// </summary>
|
||||||
|
public RequestBodyFormat requestBodyFormat = RequestBodyFormat.Json;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether or not we need to manually parse an error instead of relying on the http status code
|
||||||
|
/// </summary>
|
||||||
|
public bool manualParseError = false;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// How to serialize array parameters when making requests
|
||||||
|
/// </summary>
|
||||||
|
public ArrayParametersSerialization arraySerialization = ArrayParametersSerialization.Array;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// What request body should be set when no data is send (only used in combination with postParametersPosition.InBody)
|
||||||
|
/// </summary>
|
||||||
|
public string requestBodyEmptyContent = "{}";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The environment this client communicates to
|
/// The environment this client communicates to
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -38,6 +76,11 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public bool OutputOriginalData { get; }
|
public bool OutputOriginalData { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The default serializer
|
||||||
|
/// </summary>
|
||||||
|
protected virtual JsonSerializer DefaultSerializer { get; set; } = JsonSerializer.Create(SerializerOptions.Default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Api options
|
/// Api options
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -67,7 +110,10 @@ namespace CryptoExchange.Net.Clients
|
|||||||
BaseAddress = baseAddress;
|
BaseAddress = baseAddress;
|
||||||
|
|
||||||
if (apiCredentials != null)
|
if (apiCredentials != null)
|
||||||
|
{
|
||||||
|
AuthenticationProvider?.Dispose();
|
||||||
AuthenticationProvider = CreateAuthenticationProvider(apiCredentials.Copy());
|
AuthenticationProvider = CreateAuthenticationProvider(apiCredentials.Copy());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -77,14 +123,203 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected abstract AuthenticationProvider CreateAuthenticationProvider(ApiCredentials credentials);
|
protected abstract AuthenticationProvider CreateAuthenticationProvider(ApiCredentials credentials);
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract string FormatSymbol(string baseAsset, string quoteAsset, TradingMode tradingMode, DateTime? deliverDate = null);
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public void SetApiCredentials<T>(T credentials) where T : ApiCredentials
|
public void SetApiCredentials<T>(T credentials) where T : ApiCredentials
|
||||||
{
|
{
|
||||||
if (credentials != null)
|
if (credentials != null)
|
||||||
|
{
|
||||||
|
AuthenticationProvider?.Dispose();
|
||||||
AuthenticationProvider = CreateAuthenticationProvider(credentials.Copy());
|
AuthenticationProvider = CreateAuthenticationProvider(credentials.Copy());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Tries to parse the json data and return a JToken, validating the input not being empty and being valid json
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">The data to parse</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected CallResult<JToken> ValidateJson(string data)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(data))
|
||||||
|
{
|
||||||
|
var info = "Empty data object received";
|
||||||
|
_logger.Log(LogLevel.Error, info);
|
||||||
|
return new CallResult<JToken>(new DeserializeError(info, data));
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return new CallResult<JToken>(JToken.Parse(data));
|
||||||
|
}
|
||||||
|
catch (JsonReaderException jre)
|
||||||
|
{
|
||||||
|
var info = $"Deserialize JsonReaderException: {jre.Message}, Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}";
|
||||||
|
return new CallResult<JToken>(new DeserializeError(info, data));
|
||||||
|
}
|
||||||
|
catch (JsonSerializationException jse)
|
||||||
|
{
|
||||||
|
var info = $"Deserialize JsonSerializationException: {jse.Message}";
|
||||||
|
return new CallResult<JToken>(new DeserializeError(info, data));
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
var exceptionInfo = ex.ToLogString();
|
||||||
|
var info = $"Deserialize Unknown Exception: {exceptionInfo}";
|
||||||
|
return new CallResult<JToken>(new DeserializeError(info, data));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Deserialize a string into an object
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">The type to deserialize into</typeparam>
|
||||||
|
/// <param name="data">The data to deserialize</param>
|
||||||
|
/// <param name="serializer">A specific serializer to use</param>
|
||||||
|
/// <param name="requestId">Id of the request the data is returned from (used for grouping logging by request)</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected CallResult<T> Deserialize<T>(string data, JsonSerializer? serializer = null, int? requestId = null)
|
||||||
|
{
|
||||||
|
var tokenResult = ValidateJson(data);
|
||||||
|
if (!tokenResult)
|
||||||
|
{
|
||||||
|
_logger.Log(LogLevel.Error, tokenResult.Error!.Message);
|
||||||
|
return new CallResult<T>(tokenResult.Error);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Deserialize<T>(tokenResult.Data, serializer, requestId);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Deserialize a JToken into an object
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">The type to deserialize into</typeparam>
|
||||||
|
/// <param name="obj">The data to deserialize</param>
|
||||||
|
/// <param name="serializer">A specific serializer to use</param>
|
||||||
|
/// <param name="requestId">Id of the request the data is returned from (used for grouping logging by request)</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected CallResult<T> Deserialize<T>(JToken obj, JsonSerializer? serializer = null, int? requestId = null)
|
||||||
|
{
|
||||||
|
serializer ??= DefaultSerializer;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return new CallResult<T>(obj.ToObject<T>(serializer)!);
|
||||||
|
}
|
||||||
|
catch (JsonReaderException jre)
|
||||||
|
{
|
||||||
|
var info = $"{(requestId != null ? $"[{requestId}] " : "")}Deserialize JsonReaderException: {jre.Message} Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}, data: {obj}";
|
||||||
|
_logger.Log(LogLevel.Error, info);
|
||||||
|
return new CallResult<T>(new DeserializeError(info, obj));
|
||||||
|
}
|
||||||
|
catch (JsonSerializationException jse)
|
||||||
|
{
|
||||||
|
var info = $"{(requestId != null ? $"[{requestId}] " : "")}Deserialize JsonSerializationException: {jse.Message} data: {obj}";
|
||||||
|
_logger.Log(LogLevel.Error, info);
|
||||||
|
return new CallResult<T>(new DeserializeError(info, obj));
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
var exceptionInfo = ex.ToLogString();
|
||||||
|
var info = $"{(requestId != null ? $"[{requestId}] " : "")}Deserialize Unknown Exception: {exceptionInfo}, data: {obj}";
|
||||||
|
_logger.Log(LogLevel.Error, info);
|
||||||
|
return new CallResult<T>(new DeserializeError(info, obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Deserialize a stream into an object
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">The type to deserialize into</typeparam>
|
||||||
|
/// <param name="stream">The stream to deserialize</param>
|
||||||
|
/// <param name="serializer">A specific serializer to use</param>
|
||||||
|
/// <param name="requestId">Id of the request the data is returned from (used for grouping logging by request)</param>
|
||||||
|
/// <param name="elapsedMilliseconds">Milliseconds response time for the request this stream is a response for</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
protected async Task<CallResult<T>> DeserializeAsync<T>(Stream stream, JsonSerializer? serializer = null, int? requestId = null, long? elapsedMilliseconds = null)
|
||||||
|
{
|
||||||
|
serializer ??= DefaultSerializer;
|
||||||
|
string? data = null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Let the reader keep the stream open so we're able to seek if needed. The calling method will close the stream.
|
||||||
|
using var reader = new StreamReader(stream, Encoding.UTF8, false, 512, true);
|
||||||
|
// If we have to output the original json data or output the data into the logging we'll have to read to full response
|
||||||
|
// in order to log/return the json data
|
||||||
|
if (OutputOriginalData == true)
|
||||||
|
{
|
||||||
|
data = await reader.ReadToEndAsync().ConfigureAwait(false);
|
||||||
|
var result = Deserialize<T>(data, serializer, requestId);
|
||||||
|
result.OriginalData = data;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we don't have to keep track of the original json data we can use the JsonTextReader to deserialize the stream directly
|
||||||
|
// into the desired object, which has increased performance over first reading the string value into memory and deserializing from that
|
||||||
|
using var jsonReader = new JsonTextReader(reader);
|
||||||
|
return new CallResult<T>(serializer.Deserialize<T>(jsonReader)!);
|
||||||
|
}
|
||||||
|
catch (JsonReaderException jre)
|
||||||
|
{
|
||||||
|
if (data == null)
|
||||||
|
{
|
||||||
|
if (stream.CanSeek)
|
||||||
|
{
|
||||||
|
// If we can seek the stream rewind it so we can retrieve the original data that was sent
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
data = await ReadStreamAsync(stream).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
data = "[Data only available in Trace LogLevel]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_logger.Log(LogLevel.Error, $"{(requestId != null ? $"[{requestId}] " : "")}Deserialize JsonReaderException: {jre.Message}, Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}, data: {data}");
|
||||||
|
return new CallResult<T>(new DeserializeError($"Deserialize JsonReaderException: {jre.Message}, Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}", data));
|
||||||
|
}
|
||||||
|
catch (JsonSerializationException jse)
|
||||||
|
{
|
||||||
|
if (data == null)
|
||||||
|
{
|
||||||
|
if (stream.CanSeek)
|
||||||
|
{
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
data = await ReadStreamAsync(stream).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
data = "[Data only available in Trace LogLevel]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger.Log(LogLevel.Error, $"{(requestId != null ? $"[{requestId}] " : "")}Deserialize JsonSerializationException: {jse.Message}, data: {data}");
|
||||||
|
return new CallResult<T>(new DeserializeError($"Deserialize JsonSerializationException: {jse.Message}", data));
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
if (data == null)
|
||||||
|
{
|
||||||
|
if (stream.CanSeek)
|
||||||
|
{
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
data = await ReadStreamAsync(stream).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
data = "[Data only available in Trace LogLevel]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var exceptionInfo = ex.ToLogString();
|
||||||
|
_logger.Log(LogLevel.Error, $"{(requestId != null ? $"[{requestId}] " : "")}Deserialize Unknown Exception: {exceptionInfo}, data: {data}");
|
||||||
|
return new CallResult<T>(new DeserializeError($"Deserialize Unknown Exception: {exceptionInfo}", data));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task<string> ReadStreamAsync(Stream stream)
|
||||||
|
{
|
||||||
|
using var reader = new StreamReader(stream, Encoding.UTF8, false, 512, true);
|
||||||
|
return await reader.ReadToEndAsync().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -93,6 +328,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
public virtual void Dispose()
|
public virtual void Dispose()
|
||||||
{
|
{
|
||||||
_disposing = true;
|
_disposing = true;
|
||||||
|
AuthenticationProvider?.Dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ using Microsoft.Extensions.Logging.Abstractions;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Clients
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The base for all clients, websocket client and rest client
|
/// The base for all clients, websocket client and rest client
|
||||||
@@ -15,7 +15,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The name of the API the client is for
|
/// The name of the API the client is for
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Exchange { get; }
|
internal string Name { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Api clients in this client
|
/// Api clients in this client
|
||||||
@@ -26,7 +26,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// The log object
|
/// The log object
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected internal ILogger _logger;
|
protected internal ILogger _logger;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provided client options
|
/// Provided client options
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -36,14 +36,14 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// ctor
|
/// ctor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="logger">Logger</param>
|
/// <param name="logger">Logger</param>
|
||||||
/// <param name="exchange">The name of the exchange this client is for</param>
|
/// <param name="name">The name of the API this client is for</param>
|
||||||
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
||||||
protected BaseClient(ILoggerFactory? logger, string exchange)
|
protected BaseClient(ILoggerFactory? logger, string name)
|
||||||
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
||||||
{
|
{
|
||||||
_logger = logger?.CreateLogger(exchange) ?? NullLoggerFactory.Instance.CreateLogger(exchange);
|
_logger = logger?.CreateLogger(name) ?? NullLoggerFactory.Instance.CreateLogger(name);
|
||||||
|
|
||||||
Exchange = exchange;
|
Name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -57,7 +57,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
throw new ArgumentNullException(nameof(options));
|
throw new ArgumentNullException(nameof(options));
|
||||||
|
|
||||||
ClientOptions = options;
|
ClientOptions = options;
|
||||||
_logger.Log(LogLevel.Trace, $"Client configuration: {options}, CryptoExchange.Net: v{typeof(BaseClient).Assembly.GetName().Version}, {Exchange}.Net: v{GetType().Assembly.GetName().Version}");
|
_logger.Log(LogLevel.Trace, $"Client configuration: {options}, CryptoExchange.Net: v{typeof(BaseClient).Assembly.GetName().Version}, {Name}.Net: v{GetType().Assembly.GetName().Version}");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -74,7 +74,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// Register an API client
|
/// Register an API client
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="apiClient">The client</param>
|
/// <param name="apiClient">The client</param>
|
||||||
protected T AddApiClient<T>(T apiClient) where T : BaseApiClient
|
protected T AddApiClient<T>(T apiClient) where T: BaseApiClient
|
||||||
{
|
{
|
||||||
if (ClientOptions == null)
|
if (ClientOptions == null)
|
||||||
throw new InvalidOperationException("Client should have called Initialize before adding API clients");
|
throw new InvalidOperationException("Client should have called Initialize before adding API clients");
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ using System.Linq;
|
|||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Clients
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base rest client
|
/// Base rest client
|
||||||
|
|||||||
@@ -4,24 +4,23 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using CryptoExchange.Net.Logging.Extensions;
|
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Clients
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base for socket client implementations
|
/// Base for socket client implementations
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class BaseSocketClient : BaseClient, ISocketClient
|
public abstract class BaseSocketClient: BaseClient, ISocketClient
|
||||||
{
|
{
|
||||||
#region fields
|
#region fields
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If client is disposing
|
/// If client is disposing
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected bool _disposing;
|
protected bool _disposing;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public int CurrentConnections => ApiClients.OfType<SocketApiClient>().Sum(c => c.CurrentConnections);
|
public int CurrentConnections => ApiClients.OfType<SocketApiClient>().Sum(c => c.CurrentConnections);
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
@@ -34,8 +33,8 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// ctor
|
/// ctor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="logger">Logger</param>
|
/// <param name="logger">Logger</param>
|
||||||
/// <param name="exchange">The name of the exchange this client is for</param>
|
/// <param name="name">The name of the API this client is for</param>
|
||||||
protected BaseSocketClient(ILoggerFactory? logger, string exchange) : base(logger, exchange)
|
protected BaseSocketClient(ILoggerFactory? logger, string name) : base(logger, name)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,11 +45,11 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual async Task UnsubscribeAsync(int subscriptionId)
|
public virtual async Task UnsubscribeAsync(int subscriptionId)
|
||||||
{
|
{
|
||||||
foreach (var socket in ApiClients.OfType<SocketApiClient>())
|
foreach(var socket in ApiClients.OfType<SocketApiClient>())
|
||||||
{
|
{
|
||||||
var result = await socket.UnsubscribeAsync(subscriptionId).ConfigureAwait(false);
|
var result = await socket.UnsubscribeAsync(subscriptionId).ConfigureAwait(false);
|
||||||
if (result)
|
if (result)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -64,7 +63,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
if (subscription == null)
|
if (subscription == null)
|
||||||
throw new ArgumentNullException(nameof(subscription));
|
throw new ArgumentNullException(nameof(subscription));
|
||||||
|
|
||||||
_logger.UnsubscribingSubscription(subscription.SocketId, subscription.Id);
|
_logger.Log(LogLevel.Information, $"Socket {subscription.SocketId} Unsubscribing subscription " + subscription.Id);
|
||||||
await subscription.CloseAsync().ConfigureAwait(false);
|
await subscription.CloseAsync().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,10 +73,10 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual async Task UnsubscribeAllAsync()
|
public virtual async Task UnsubscribeAllAsync()
|
||||||
{
|
{
|
||||||
var tasks = new List<Task>();
|
var tasks = new List<Task>();
|
||||||
foreach (var client in ApiClients.OfType<SocketApiClient>())
|
foreach (var client in ApiClients.OfType<SocketApiClient>())
|
||||||
tasks.Add(client.UnsubscribeAllAsync());
|
tasks.Add(client.UnsubscribeAllAsync());
|
||||||
|
|
||||||
await Task.WhenAll(tasks.ToArray()).ConfigureAwait(false);
|
await Task.WhenAll(tasks.ToArray()).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,7 +86,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual async Task ReconnectAsync()
|
public virtual async Task ReconnectAsync()
|
||||||
{
|
{
|
||||||
_logger.ReconnectingAllConnections(CurrentConnections);
|
_logger.Log(LogLevel.Information, $"Reconnecting all {CurrentConnections} connections");
|
||||||
var tasks = new List<Task>();
|
var tasks = new List<Task>();
|
||||||
foreach (var client in ApiClients.OfType<SocketApiClient>())
|
foreach (var client in ApiClients.OfType<SocketApiClient>())
|
||||||
{
|
{
|
||||||
@@ -108,19 +107,5 @@ namespace CryptoExchange.Net.Clients
|
|||||||
}
|
}
|
||||||
return result.ToString();
|
return result.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Returns the state of all socket api clients
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public List<SocketApiClient.SocketApiClientState> GetSocketApiClientStates()
|
|
||||||
{
|
|
||||||
var result = new List<SocketApiClient.SocketApiClientState>();
|
|
||||||
foreach (var client in ApiClients.OfType<SocketApiClient>())
|
|
||||||
{
|
|
||||||
result.Add(client.GetState());
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,6 +42,6 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="exchangeName"></param>
|
/// <param name="exchangeName"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public ISpotClient? SpotClient(string exchangeName) => _serviceProvider?.GetServices<ISpotClient>()?.SingleOrDefault(s => s.ExchangeName.Equals(exchangeName, StringComparison.InvariantCultureIgnoreCase));
|
public ISpotClient? SpotClient(string exchangeName) => _serviceProvider.GetServices<ISpotClient>()?.SingleOrDefault(s => s.ExchangeName.Equals(exchangeName, StringComparison.InvariantCultureIgnoreCase));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,22 +1,23 @@
|
|||||||
using CryptoExchange.Net.Converters.JsonNet;
|
|
||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using CryptoExchange.Net.Logging.Extensions;
|
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using CryptoExchange.Net.RateLimiting.Interfaces;
|
|
||||||
using CryptoExchange.Net.Sockets;
|
using CryptoExchange.Net.Sockets;
|
||||||
|
using CryptoExchange.Net.Sockets.MessageParsing.Interfaces;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Net.Sockets;
|
||||||
using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Clients
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base socket API client for interaction with a websocket API
|
/// Base socket API client for interaction with a websocket API
|
||||||
@@ -52,26 +53,21 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
protected internal bool UnhandledMessageExpected { get; set; }
|
protected internal bool UnhandledMessageExpected { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// If true a subscription will accept message before the confirmation of a subscription has been received
|
||||||
|
/// </summary>
|
||||||
|
protected bool HandleMessageBeforeConfirmation { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The rate limiters
|
/// The rate limiters
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected internal IRateLimitGate? RateLimiter { get; set; }
|
protected internal IEnumerable<IRateLimiter>? RateLimiters { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The max size a websocket message size can be
|
/// Periodic task regisrations
|
||||||
/// </summary>
|
|
||||||
protected internal int? MessageSendSizeLimit { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Periodic task registrations
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected List<PeriodicTaskRegistration> PeriodicTaskRegistrations { get; set; } = new List<PeriodicTaskRegistration>();
|
protected List<PeriodicTaskRegistration> PeriodicTaskRegistrations { get; set; } = new List<PeriodicTaskRegistration>();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// List of address to keep an alive connection to
|
|
||||||
/// </summary>
|
|
||||||
protected List<DedicatedConnectionConfig> DedicatedConnectionConfigs { get; set; } = new List<DedicatedConnectionConfig>();
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public double IncomingKbps
|
public double IncomingKbps
|
||||||
{
|
{
|
||||||
@@ -114,36 +110,18 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <param name="options">Client options</param>
|
/// <param name="options">Client options</param>
|
||||||
/// <param name="baseAddress">Base address for this API client</param>
|
/// <param name="baseAddress">Base address for this API client</param>
|
||||||
/// <param name="apiOptions">The Api client options</param>
|
/// <param name="apiOptions">The Api client options</param>
|
||||||
public SocketApiClient(ILogger logger, string baseAddress, SocketExchangeOptions options, SocketApiOptions apiOptions)
|
public SocketApiClient(ILogger logger, string baseAddress, SocketExchangeOptions options, SocketApiOptions apiOptions)
|
||||||
: base(logger,
|
: base(logger,
|
||||||
apiOptions.OutputOriginalData ?? options.OutputOriginalData,
|
apiOptions.OutputOriginalData ?? options.OutputOriginalData,
|
||||||
apiOptions.ApiCredentials ?? options.ApiCredentials,
|
apiOptions.ApiCredentials ?? options.ApiCredentials,
|
||||||
baseAddress,
|
baseAddress,
|
||||||
options,
|
options,
|
||||||
apiOptions)
|
apiOptions)
|
||||||
{
|
{
|
||||||
}
|
var rateLimiters = new List<IRateLimiter>();
|
||||||
|
foreach (var rateLimiter in apiOptions.RateLimiters)
|
||||||
/// <summary>
|
rateLimiters.Add(rateLimiter);
|
||||||
/// Create a message accessor instance
|
RateLimiters = rateLimiters;
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
protected internal virtual IByteMessageAccessor CreateAccessor() => new JsonNetByteMessageAccessor();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a serializer instance
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
protected internal virtual IMessageSerializer CreateSerializer() => new JsonNetMessageSerializer();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Keep an open connection to this url
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="url"></param>
|
|
||||||
/// <param name="auth"></param>
|
|
||||||
protected virtual void SetDedicatedConnection(string url, bool auth)
|
|
||||||
{
|
|
||||||
DedicatedConnectionConfigs.Add(new DedicatedConnectionConfig() { SocketAddress = url, Authenticated = auth });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -188,10 +166,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
return new CallResult<UpdateSubscription>(new InvalidOperationError("Client disposed, can't subscribe"));
|
return new CallResult<UpdateSubscription>(new InvalidOperationError("Client disposed, can't subscribe"));
|
||||||
|
|
||||||
if (subscription.Authenticated && AuthenticationProvider == null)
|
if (subscription.Authenticated && AuthenticationProvider == null)
|
||||||
{
|
|
||||||
_logger.LogWarning("Failed to subscribe, private subscription but no API credentials set");
|
|
||||||
return new CallResult<UpdateSubscription>(new NoApiCredentialsError());
|
return new CallResult<UpdateSubscription>(new NoApiCredentialsError());
|
||||||
}
|
|
||||||
|
|
||||||
SocketConnection socketConnection;
|
SocketConnection socketConnection;
|
||||||
var released = false;
|
var released = false;
|
||||||
@@ -211,17 +186,17 @@ namespace CryptoExchange.Net.Clients
|
|||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
// Get a new or existing socket connection
|
// Get a new or existing socket connection
|
||||||
var socketResult = await GetSocketConnection(url, subscription.Authenticated, false).ConfigureAwait(false);
|
var socketResult = await GetSocketConnection(url, subscription.Authenticated).ConfigureAwait(false);
|
||||||
if (!socketResult)
|
if (!socketResult)
|
||||||
return socketResult.As<UpdateSubscription>(null);
|
return socketResult.As<UpdateSubscription>(null);
|
||||||
|
|
||||||
socketConnection = socketResult.Data;
|
socketConnection = socketResult.Data;
|
||||||
|
|
||||||
// Add a subscription on the socket connection
|
// Add a subscription on the socket connection
|
||||||
var success = socketConnection.AddSubscription(subscription);
|
var success = socketConnection.CanAddSubscription();
|
||||||
if (!success)
|
if (!success)
|
||||||
{
|
{
|
||||||
_logger.FailedToAddSubscriptionRetryOnDifferentConnection(socketConnection.SocketId);
|
_logger.Log(LogLevel.Trace, $"[Sckt {socketConnection.SocketId}] failed to add subscription, retrying on different connection");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,7 +224,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
|
|
||||||
if (socketConnection.PausedActivity)
|
if (socketConnection.PausedActivity)
|
||||||
{
|
{
|
||||||
_logger.HasBeenPausedCantSubscribeAtThisMoment(socketConnection.SocketId);
|
_logger.Log(LogLevel.Warning, $"[Sckt {socketConnection.SocketId}] has been paused, can't subscribe at this moment");
|
||||||
return new CallResult<UpdateSubscription>(new ServerError("Socket is paused"));
|
return new CallResult<UpdateSubscription>(new ServerError("Socket is paused"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -257,23 +232,20 @@ namespace CryptoExchange.Net.Clients
|
|||||||
var subQuery = subscription.GetSubQuery(socketConnection);
|
var subQuery = subscription.GetSubQuery(socketConnection);
|
||||||
if (subQuery != null)
|
if (subQuery != null)
|
||||||
{
|
{
|
||||||
|
if (HandleMessageBeforeConfirmation)
|
||||||
|
socketConnection.AddSubscription(subscription);
|
||||||
|
|
||||||
// Send the request and wait for answer
|
// Send the request and wait for answer
|
||||||
var subResult = await socketConnection.SendAndWaitQueryAsync(subQuery, waitEvent).ConfigureAwait(false);
|
var subResult = await socketConnection.SendAndWaitQueryAsync(subQuery, waitEvent).ConfigureAwait(false);
|
||||||
if (!subResult)
|
if (!subResult)
|
||||||
{
|
{
|
||||||
waitEvent?.Set();
|
waitEvent?.Set();
|
||||||
var isTimeout = subResult.Error is CancellationRequestedError;
|
_logger.Log(LogLevel.Warning, $"[Sckt {socketConnection.SocketId}] failed to subscribe: {subResult.Error}");
|
||||||
if (isTimeout && subscription.Confirmed)
|
// If this was a timeout we still need to send an unsubscribe to prevent messages coming in later
|
||||||
{
|
var unsubscribe = subResult.Error is CancellationRequestedError;
|
||||||
// No response received, but the subscription did receive updates. We'll assume success
|
await socketConnection.CloseAsync(subscription, unsubscribe).ConfigureAwait(false);
|
||||||
}
|
|
||||||
else
|
return new CallResult<UpdateSubscription>(subResult.Error!);
|
||||||
{
|
|
||||||
_logger.FailedToSubscribe(socketConnection.SocketId, subResult.Error?.ToString());
|
|
||||||
// If this was a timeout we still need to send an unsubscribe to prevent messages coming in later
|
|
||||||
await socketConnection.CloseAsync(subscription).ConfigureAwait(false);
|
|
||||||
return new CallResult<UpdateSubscription>(subResult.Error!);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
subscription.HandleSubQueryResponse(subQuery.Response!);
|
subscription.HandleSubQueryResponse(subQuery.Response!);
|
||||||
@@ -284,54 +256,50 @@ namespace CryptoExchange.Net.Clients
|
|||||||
{
|
{
|
||||||
subscription.CancellationTokenRegistration = ct.Register(async () =>
|
subscription.CancellationTokenRegistration = ct.Register(async () =>
|
||||||
{
|
{
|
||||||
_logger.CancellationTokenSetClosingSubscription(socketConnection.SocketId, subscription.Id);
|
_logger.Log(LogLevel.Information, $"[Sckt {socketConnection.SocketId}] Cancellation token set, closing subscription {subscription.Id}");
|
||||||
await socketConnection.CloseAsync(subscription).ConfigureAwait(false);
|
await socketConnection.CloseAsync(subscription).ConfigureAwait(false);
|
||||||
}, false);
|
}, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!HandleMessageBeforeConfirmation)
|
||||||
|
socketConnection.AddSubscription(subscription);
|
||||||
|
|
||||||
waitEvent?.Set();
|
waitEvent?.Set();
|
||||||
_logger.SubscriptionCompletedSuccessfully(socketConnection.SocketId, subscription.Id);
|
_logger.Log(LogLevel.Information, $"[Sckt {socketConnection.SocketId}] subscription {subscription.Id} completed successfully");
|
||||||
return new CallResult<UpdateSubscription>(new UpdateSubscription(socketConnection, subscription));
|
return new CallResult<UpdateSubscription>(new UpdateSubscription(socketConnection, subscription));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send a query on a socket connection to the BaseAddress and wait for the response
|
/// Send a query on a socket connection to the BaseAddress and wait for the response
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="THandlerResponse">Expected result type</typeparam>
|
/// <typeparam name="T">Expected result type</typeparam>
|
||||||
/// <typeparam name="TServerResponse">The type returned to the caller</typeparam>
|
|
||||||
/// <param name="query">The query</param>
|
/// <param name="query">The query</param>
|
||||||
/// <param name="ct">Cancellation token</param>
|
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected virtual Task<CallResult<THandlerResponse>> QueryAsync<TServerResponse, THandlerResponse>(Query<TServerResponse, THandlerResponse> query, CancellationToken ct = default)
|
protected virtual Task<CallResult<T>> QueryAsync<T>(Query<T> query)
|
||||||
{
|
{
|
||||||
return QueryAsync(BaseAddress, query, ct);
|
return QueryAsync(BaseAddress, query);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send a query on a socket connection and wait for the response
|
/// Send a query on a socket connection and wait for the response
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="THandlerResponse">Expected result type</typeparam>
|
/// <typeparam name="T">The expected result type</typeparam>
|
||||||
/// <typeparam name="TServerResponse">The type returned to the caller</typeparam>
|
|
||||||
/// <param name="url">The url for the request</param>
|
/// <param name="url">The url for the request</param>
|
||||||
/// <param name="query">The query</param>
|
/// <param name="query">The query</param>
|
||||||
/// <param name="ct">Cancellation token</param>
|
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected virtual async Task<CallResult<THandlerResponse>> QueryAsync<TServerResponse, THandlerResponse>(string url, Query<TServerResponse, THandlerResponse> query, CancellationToken ct = default)
|
protected virtual async Task<CallResult<T>> QueryAsync<T>(string url, Query<T> query)
|
||||||
{
|
{
|
||||||
if (_disposing)
|
if (_disposing)
|
||||||
return new CallResult<THandlerResponse>(new InvalidOperationError("Client disposed, can't query"));
|
return new CallResult<T>(new InvalidOperationError("Client disposed, can't query"));
|
||||||
|
|
||||||
if (ct.IsCancellationRequested)
|
|
||||||
return new CallResult<THandlerResponse>(new CancellationRequestedError());
|
|
||||||
|
|
||||||
SocketConnection socketConnection;
|
SocketConnection socketConnection;
|
||||||
var released = false;
|
var released = false;
|
||||||
await semaphoreSlim.WaitAsync().ConfigureAwait(false);
|
await semaphoreSlim.WaitAsync().ConfigureAwait(false);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var socketResult = await GetSocketConnection(url, query.Authenticated, true).ConfigureAwait(false);
|
var socketResult = await GetSocketConnection(url, query.Authenticated).ConfigureAwait(false);
|
||||||
if (!socketResult)
|
if (!socketResult)
|
||||||
return socketResult.As<THandlerResponse>(default);
|
return socketResult.As<T>(default);
|
||||||
|
|
||||||
socketConnection = socketResult.Data;
|
socketConnection = socketResult.Data;
|
||||||
|
|
||||||
@@ -344,7 +312,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
|
|
||||||
var connectResult = await ConnectIfNeededAsync(socketConnection, query.Authenticated).ConfigureAwait(false);
|
var connectResult = await ConnectIfNeededAsync(socketConnection, query.Authenticated).ConfigureAwait(false);
|
||||||
if (!connectResult)
|
if (!connectResult)
|
||||||
return new CallResult<THandlerResponse>(connectResult.Error!);
|
return new CallResult<T>(connectResult.Error!);
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
@@ -354,14 +322,11 @@ namespace CryptoExchange.Net.Clients
|
|||||||
|
|
||||||
if (socketConnection.PausedActivity)
|
if (socketConnection.PausedActivity)
|
||||||
{
|
{
|
||||||
_logger.HasBeenPausedCantSendQueryAtThisMoment(socketConnection.SocketId);
|
_logger.Log(LogLevel.Warning, $"[Sckt {socketConnection.SocketId}] has been paused, can't send query at this moment");
|
||||||
return new CallResult<THandlerResponse>(new ServerError("Socket is paused"));
|
return new CallResult<T>(new ServerError("Socket is paused"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ct.IsCancellationRequested)
|
return await socketConnection.SendAndWaitQueryAsync(query).ConfigureAwait(false);
|
||||||
return new CallResult<THandlerResponse>(new CancellationRequestedError());
|
|
||||||
|
|
||||||
return await socketConnection.SendAndWaitQueryAsync(query, null, ct).ConfigureAwait(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -370,26 +335,22 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <param name="socket">The connection to check</param>
|
/// <param name="socket">The connection to check</param>
|
||||||
/// <param name="authenticated">Whether the socket should authenticated</param>
|
/// <param name="authenticated">Whether the socket should authenticated</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected virtual async Task<CallResult> ConnectIfNeededAsync(SocketConnection socket, bool authenticated)
|
protected virtual async Task<CallResult<bool>> ConnectIfNeededAsync(SocketConnection socket, bool authenticated)
|
||||||
{
|
{
|
||||||
if (socket.Connected)
|
if (socket.Connected)
|
||||||
return new CallResult(null);
|
return new CallResult<bool>(true);
|
||||||
|
|
||||||
var connectResult = await ConnectSocketAsync(socket).ConfigureAwait(false);
|
var connectResult = await ConnectSocketAsync(socket).ConfigureAwait(false);
|
||||||
if (!connectResult)
|
if (!connectResult)
|
||||||
return connectResult;
|
return new CallResult<bool>(connectResult.Error!);
|
||||||
|
|
||||||
if (ClientOptions.DelayAfterConnect != TimeSpan.Zero)
|
if (ClientOptions.DelayAfterConnect != TimeSpan.Zero)
|
||||||
await Task.Delay(ClientOptions.DelayAfterConnect).ConfigureAwait(false);
|
await Task.Delay(ClientOptions.DelayAfterConnect).ConfigureAwait(false);
|
||||||
|
|
||||||
if (!authenticated || socket.Authenticated)
|
if (!authenticated || socket.Authenticated)
|
||||||
return new CallResult(null);
|
return new CallResult<bool>(true);
|
||||||
|
|
||||||
var result = await AuthenticateSocketAsync(socket).ConfigureAwait(false);
|
return await AuthenticateSocketAsync(socket).ConfigureAwait(false);
|
||||||
if (!result)
|
|
||||||
await socket.CloseAsync().ConfigureAwait(false);
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -397,38 +358,38 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="socket">Socket to authenticate</param>
|
/// <param name="socket">Socket to authenticate</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual async Task<CallResult> AuthenticateSocketAsync(SocketConnection socket)
|
public virtual async Task<CallResult<bool>> AuthenticateSocketAsync(SocketConnection socket)
|
||||||
{
|
{
|
||||||
if (AuthenticationProvider == null)
|
if (AuthenticationProvider == null)
|
||||||
return new CallResult(new NoApiCredentialsError());
|
return new CallResult<bool>(new NoApiCredentialsError());
|
||||||
|
|
||||||
_logger.AttemptingToAuthenticate(socket.SocketId);
|
_logger.Log(LogLevel.Debug, $"[Sckt {socket.SocketId}] Attempting to authenticate");
|
||||||
var authRequest = GetAuthenticationRequest(socket);
|
var authRequest = GetAuthenticationRequest();
|
||||||
if (authRequest != null)
|
if (authRequest != null)
|
||||||
{
|
{
|
||||||
var result = await socket.SendAndWaitQueryAsync(authRequest).ConfigureAwait(false);
|
var result = await socket.SendAndWaitQueryAsync(authRequest).ConfigureAwait(false);
|
||||||
|
|
||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
_logger.AuthenticationFailed(socket.SocketId);
|
_logger.Log(LogLevel.Warning, $"[Sckt {socket.SocketId}] authentication failed");
|
||||||
if (socket.Connected)
|
if (socket.Connected)
|
||||||
await socket.CloseAsync().ConfigureAwait(false);
|
await socket.CloseAsync().ConfigureAwait(false);
|
||||||
|
|
||||||
result.Error!.Message = "Authentication failed: " + result.Error.Message;
|
result.Error!.Message = "Authentication failed: " + result.Error.Message;
|
||||||
return new CallResult(result.Error)!;
|
return new CallResult<bool>(result.Error)!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.Authenticated(socket.SocketId);
|
_logger.Log(LogLevel.Debug, $"[Sckt {socket.SocketId}] authenticated");
|
||||||
socket.Authenticated = true;
|
socket.Authenticated = true;
|
||||||
return new CallResult(null);
|
return new CallResult<bool>(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Should return the request which can be used to authenticate a socket connection
|
/// Should return the request which can be used to authenticate a socket connection
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected internal virtual Query? GetAuthenticationRequest(SocketConnection connection) => throw new NotImplementedException();
|
protected internal virtual Query? GetAuthenticationRequest() => throw new NotImplementedException();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds a system subscription. Used for example to reply to ping requests
|
/// Adds a system subscription. Used for example to reply to ping requests
|
||||||
@@ -477,49 +438,37 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="address">The address the socket is for</param>
|
/// <param name="address">The address the socket is for</param>
|
||||||
/// <param name="authenticated">Whether the socket should be authenticated</param>
|
/// <param name="authenticated">Whether the socket should be authenticated</param>
|
||||||
/// <param name="dedicatedRequestConnection">Whether a dedicated request connection should be returned</param>
|
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected virtual async Task<CallResult<SocketConnection>> GetSocketConnection(string address, bool authenticated, bool dedicatedRequestConnection)
|
protected virtual async Task<CallResult<SocketConnection>> GetSocketConnection(string address, bool authenticated)
|
||||||
{
|
{
|
||||||
var socketQuery = socketConnections.Where(s => (s.Value.Status == SocketConnection.SocketStatus.None || s.Value.Status == SocketConnection.SocketStatus.Connected)
|
var socketResult = socketConnections.Where(s => (s.Value.Status == SocketConnection.SocketStatus.None || s.Value.Status == SocketConnection.SocketStatus.Connected)
|
||||||
&& s.Value.Tag.TrimEnd('/') == address.TrimEnd('/')
|
&& s.Value.Tag.TrimEnd('/') == address.TrimEnd('/')
|
||||||
&& s.Value.ApiClient.GetType() == GetType()
|
&& (s.Value.ApiClient.GetType() == GetType())
|
||||||
&& (s.Value.Authenticated == authenticated || !authenticated)
|
&& (s.Value.Authenticated == authenticated || !authenticated) && s.Value.Connected).OrderBy(s => s.Value.UserSubscriptionCount).FirstOrDefault();
|
||||||
&& s.Value.Connected);
|
var result = socketResult.Equals(default(KeyValuePair<int, SocketConnection>)) ? null : socketResult.Value;
|
||||||
|
if (result != null)
|
||||||
SocketConnection connection;
|
|
||||||
if (!dedicatedRequestConnection)
|
|
||||||
{
|
{
|
||||||
connection = socketQuery.Where(s => !s.Value.DedicatedRequestConnection).OrderBy(s => s.Value.UserSubscriptionCount).FirstOrDefault().Value;
|
if (result.UserSubscriptionCount < ClientOptions.SocketSubscriptionsCombineTarget || (socketConnections.Count >= (ApiOptions.MaxSocketConnections ?? ClientOptions.MaxSocketConnections) && socketConnections.All(s => s.Value.UserSubscriptionCount >= ClientOptions.SocketSubscriptionsCombineTarget)))
|
||||||
}
|
{
|
||||||
else
|
|
||||||
{
|
|
||||||
connection = socketQuery.Where(s => s.Value.DedicatedRequestConnection).FirstOrDefault().Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (connection != null)
|
|
||||||
{
|
|
||||||
if (connection.UserSubscriptionCount < ClientOptions.SocketSubscriptionsCombineTarget || socketConnections.Count >= (ApiOptions.MaxSocketConnections ?? ClientOptions.MaxSocketConnections) && socketConnections.All(s => s.Value.UserSubscriptionCount >= ClientOptions.SocketSubscriptionsCombineTarget))
|
|
||||||
// Use existing socket if it has less than target connections OR it has the least connections and we can't make new
|
// Use existing socket if it has less than target connections OR it has the least connections and we can't make new
|
||||||
return new CallResult<SocketConnection>(connection);
|
return new CallResult<SocketConnection>(result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var connectionAddress = await GetConnectionUrlAsync(address, authenticated).ConfigureAwait(false);
|
var connectionAddress = await GetConnectionUrlAsync(address, authenticated).ConfigureAwait(false);
|
||||||
if (!connectionAddress)
|
if (!connectionAddress)
|
||||||
{
|
{
|
||||||
_logger.FailedToDetermineConnectionUrl(connectionAddress.Error?.ToString());
|
_logger.Log(LogLevel.Warning, $"Failed to determine connection url: " + connectionAddress.Error);
|
||||||
return connectionAddress.As<SocketConnection>(null);
|
return connectionAddress.As<SocketConnection>(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (connectionAddress.Data != address)
|
if (connectionAddress.Data != address)
|
||||||
_logger.ConnectionAddressSetTo(connectionAddress.Data!);
|
_logger.Log(LogLevel.Debug, $"Connection address set to " + connectionAddress.Data);
|
||||||
|
|
||||||
// Create new socket
|
// Create new socket
|
||||||
var socket = CreateSocket(connectionAddress.Data!);
|
var socket = CreateSocket(connectionAddress.Data!);
|
||||||
var socketConnection = new SocketConnection(_logger, this, socket, address);
|
var socketConnection = new SocketConnection(_logger, this, socket, address);
|
||||||
socketConnection.UnhandledMessage += HandleUnhandledMessage;
|
socketConnection.UnhandledMessage += HandleUnhandledMessage;
|
||||||
socketConnection.ConnectRateLimitedAsync += HandleConnectRateLimitedAsync;
|
|
||||||
socketConnection.DedicatedRequestConnection = dedicatedRequestConnection;
|
|
||||||
|
|
||||||
foreach (var ptg in PeriodicTaskRegistrations)
|
foreach (var ptg in PeriodicTaskRegistrations)
|
||||||
socketConnection.QueryPeriodic(ptg.Identifier, ptg.Interval, ptg.QueryDelegate, ptg.Callback);
|
socketConnection.QueryPeriodic(ptg.Identifier, ptg.Interval, ptg.QueryDelegate, ptg.Callback);
|
||||||
@@ -538,35 +487,21 @@ namespace CryptoExchange.Net.Clients
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Process connect rate limited
|
|
||||||
/// </summary>
|
|
||||||
protected async virtual Task HandleConnectRateLimitedAsync()
|
|
||||||
{
|
|
||||||
if (ClientOptions.RateLimiterEnabled && RateLimiter is not null && ClientOptions.ConnectDelayAfterRateLimited is not null)
|
|
||||||
{
|
|
||||||
var retryAfter = DateTime.UtcNow.Add(ClientOptions.ConnectDelayAfterRateLimited.Value);
|
|
||||||
_logger.AddingRetryAfterGuard(retryAfter);
|
|
||||||
await RateLimiter.SetRetryAfterGuardAsync(retryAfter, RateLimiting.RateLimitItemType.Connection).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Connect a socket
|
/// Connect a socket
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="socketConnection">The socket to connect</param>
|
/// <param name="socketConnection">The socket to connect</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected virtual async Task<CallResult> ConnectSocketAsync(SocketConnection socketConnection)
|
protected virtual async Task<CallResult<bool>> ConnectSocketAsync(SocketConnection socketConnection)
|
||||||
{
|
{
|
||||||
var connectResult = await socketConnection.ConnectAsync().ConfigureAwait(false);
|
if (await socketConnection.ConnectAsync().ConfigureAwait(false))
|
||||||
if (connectResult)
|
|
||||||
{
|
{
|
||||||
socketConnections.TryAdd(socketConnection.SocketId, socketConnection);
|
socketConnections.TryAdd(socketConnection.SocketId, socketConnection);
|
||||||
return connectResult;
|
return new CallResult<bool>(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
socketConnection.Dispose();
|
socketConnection.Dispose();
|
||||||
return connectResult;
|
return new CallResult<bool>(new CantConnectError());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -575,12 +510,11 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <param name="address">The address to connect to</param>
|
/// <param name="address">The address to connect to</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
protected virtual WebSocketParameters GetWebSocketParameters(string address)
|
protected virtual WebSocketParameters GetWebSocketParameters(string address)
|
||||||
=> new(new Uri(address), ClientOptions.ReconnectPolicy)
|
=> new(new Uri(address), ClientOptions.AutoReconnect)
|
||||||
{
|
{
|
||||||
KeepAliveInterval = KeepAliveInterval,
|
KeepAliveInterval = KeepAliveInterval,
|
||||||
ReconnectInterval = ClientOptions.ReconnectInterval,
|
ReconnectInterval = ClientOptions.ReconnectInterval,
|
||||||
RateLimiter = ClientOptions.RateLimiterEnabled ? RateLimiter : null,
|
RateLimiters = RateLimiters,
|
||||||
RateLimitingBehaviour = ClientOptions.RateLimitingBehaviour,
|
|
||||||
Proxy = ClientOptions.Proxy,
|
Proxy = ClientOptions.Proxy,
|
||||||
Timeout = ApiOptions.SocketNoDataTimeout ?? ClientOptions.SocketNoDataTimeout
|
Timeout = ApiOptions.SocketNoDataTimeout ?? ClientOptions.SocketNoDataTimeout
|
||||||
};
|
};
|
||||||
@@ -593,7 +527,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
protected virtual IWebsocket CreateSocket(string address)
|
protected virtual IWebsocket CreateSocket(string address)
|
||||||
{
|
{
|
||||||
var socket = SocketFactory.CreateWebsocket(_logger, GetWebSocketParameters(address));
|
var socket = SocketFactory.CreateWebsocket(_logger, GetWebSocketParameters(address));
|
||||||
_logger.SocketCreatedForAddress(socket.Id, address);
|
_logger.Log(LogLevel.Debug, $"[Sckt {socket.Id}] created for " + address);
|
||||||
return socket;
|
return socket;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -619,7 +553,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
if (subscription == null || connection == null)
|
if (subscription == null || connection == null)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
_logger.UnsubscribingSubscription(connection.SocketId, subscriptionId);
|
_logger.Log(LogLevel.Information, $"[Sckt {connection.SocketId}] unsubscribing subscription " + subscriptionId);
|
||||||
await connection.CloseAsync(subscription).ConfigureAwait(false);
|
await connection.CloseAsync(subscription).ConfigureAwait(false);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -634,7 +568,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
if (subscription == null)
|
if (subscription == null)
|
||||||
throw new ArgumentNullException(nameof(subscription));
|
throw new ArgumentNullException(nameof(subscription));
|
||||||
|
|
||||||
_logger.UnsubscribingSubscription(subscription.SocketId, subscription.Id);
|
_logger.Log(LogLevel.Information, $"[Sckt {subscription.SocketId}] Unsubscribing subscription " + subscription.Id);
|
||||||
await subscription.CloseAsync().ConfigureAwait(false);
|
await subscription.CloseAsync().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -648,12 +582,12 @@ namespace CryptoExchange.Net.Clients
|
|||||||
if (sum == 0)
|
if (sum == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
_logger.UnsubscribingAll(socketConnections.Sum(s => s.Value.UserSubscriptionCount));
|
_logger.Log(LogLevel.Information, $"Unsubscribing all {socketConnections.Sum(s => s.Value.UserSubscriptionCount)} subscriptions");
|
||||||
var tasks = new List<Task>();
|
var tasks = new List<Task>();
|
||||||
{
|
{
|
||||||
var socketList = socketConnections.Values;
|
var socketList = socketConnections.Values;
|
||||||
foreach (var connection in socketList.Where(s => !s.DedicatedRequestConnection))
|
foreach (var sub in socketList)
|
||||||
tasks.Add(connection.CloseAsync());
|
tasks.Add(sub.CloseAsync());
|
||||||
}
|
}
|
||||||
|
|
||||||
await Task.WhenAll(tasks.ToArray()).ConfigureAwait(false);
|
await Task.WhenAll(tasks.ToArray()).ConfigureAwait(false);
|
||||||
@@ -665,7 +599,7 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual async Task ReconnectAsync()
|
public virtual async Task ReconnectAsync()
|
||||||
{
|
{
|
||||||
_logger.ReconnectingAllConnections(socketConnections.Count);
|
_logger.Log(LogLevel.Information, $"Reconnecting all {socketConnections.Count} connections");
|
||||||
var tasks = new List<Task>();
|
var tasks = new List<Task>();
|
||||||
{
|
{
|
||||||
var socketList = socketConnections.Values;
|
var socketList = socketConnections.Values;
|
||||||
@@ -676,98 +610,34 @@ namespace CryptoExchange.Net.Clients
|
|||||||
await Task.WhenAll(tasks.ToArray()).ConfigureAwait(false);
|
await Task.WhenAll(tasks.ToArray()).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public virtual async Task<CallResult> PrepareConnectionsAsync()
|
|
||||||
{
|
|
||||||
foreach (var item in DedicatedConnectionConfigs)
|
|
||||||
{
|
|
||||||
var socketResult = await GetSocketConnection(item.SocketAddress, item.Authenticated, true).ConfigureAwait(false);
|
|
||||||
if (!socketResult)
|
|
||||||
return socketResult.AsDataless();
|
|
||||||
|
|
||||||
var connectResult = await ConnectIfNeededAsync(socketResult.Data, item.Authenticated).ConfigureAwait(false);
|
|
||||||
if (!connectResult)
|
|
||||||
return new CallResult(connectResult.Error!);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new CallResult(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Log the current state of connections and subscriptions
|
/// Log the current state of connections and subscriptions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string GetSubscriptionsState(bool includeSubDetails = true)
|
public string GetSubscriptionsState()
|
||||||
{
|
{
|
||||||
return GetState(includeSubDetails).ToString();
|
var sb = new StringBuilder();
|
||||||
}
|
sb.AppendLine($"{GetType().Name}");
|
||||||
|
sb.AppendLine($" Connections: {socketConnections.Count}");
|
||||||
/// <summary>
|
sb.AppendLine($" Subscriptions: {CurrentSubscriptions}");
|
||||||
/// Gets the state of the client
|
sb.AppendLine($" Download speed: {IncomingKbps} kbps");
|
||||||
/// </summary>
|
foreach (var connection in socketConnections)
|
||||||
/// <param name="includeSubDetails">True to get details for each subscription</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public SocketApiClientState GetState(bool includeSubDetails = true)
|
|
||||||
{
|
|
||||||
var connectionStates = new List<SocketConnection.SocketConnectionState>();
|
|
||||||
foreach (var socketIdAndConnection in socketConnections)
|
|
||||||
{
|
{
|
||||||
SocketConnection connection = socketIdAndConnection.Value;
|
sb.AppendLine($" Id: {connection.Key}");
|
||||||
SocketConnection.SocketConnectionState connectionState = connection.GetState(includeSubDetails);
|
sb.AppendLine($" Address: {connection.Value.ConnectionUri}");
|
||||||
connectionStates.Add(connectionState);
|
sb.AppendLine($" Subscriptions: {connection.Value.UserSubscriptionCount}");
|
||||||
}
|
sb.AppendLine($" Status: {connection.Value.Status}");
|
||||||
|
sb.AppendLine($" Authenticated: {connection.Value.Authenticated}");
|
||||||
return new SocketApiClientState(socketConnections.Count, CurrentSubscriptions, IncomingKbps, connectionStates);
|
sb.AppendLine($" Download speed: {connection.Value.IncomingKbps} kbps");
|
||||||
}
|
sb.AppendLine($" Subscriptions:");
|
||||||
|
foreach (var subscription in connection.Value.Subscriptions)
|
||||||
/// <summary>
|
|
||||||
/// Get the current state of the client
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="Connections">Number of sockets for this client</param>
|
|
||||||
/// <param name="Subscriptions">Total number of subscriptions</param>
|
|
||||||
/// <param name="DownloadSpeed">Total download speed</param>
|
|
||||||
/// <param name="ConnectionStates">State of each socket connection</param>
|
|
||||||
public record SocketApiClientState(
|
|
||||||
int Connections,
|
|
||||||
int Subscriptions,
|
|
||||||
double DownloadSpeed,
|
|
||||||
List<SocketConnection.SocketConnectionState> ConnectionStates)
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Print the state of the client
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="sb"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
protected virtual bool PrintMembers(StringBuilder sb)
|
|
||||||
{
|
|
||||||
sb.AppendLine();
|
|
||||||
sb.AppendLine($"\tTotal connections: {Connections}");
|
|
||||||
sb.AppendLine($"\tTotal subscriptions: {Subscriptions}");
|
|
||||||
sb.AppendLine($"\tDownload speed: {DownloadSpeed} kbps");
|
|
||||||
sb.AppendLine($"\tConnections:");
|
|
||||||
ConnectionStates.ForEach(cs =>
|
|
||||||
{
|
{
|
||||||
sb.AppendLine($"\t\tId: {cs.Id}");
|
sb.AppendLine($" Id: {subscription.Id}");
|
||||||
sb.AppendLine($"\t\tAddress: {cs.Address}");
|
sb.AppendLine($" Confirmed: {subscription.Confirmed}");
|
||||||
sb.AppendLine($"\t\tTotal subscriptions: {cs.Subscriptions}");
|
sb.AppendLine($" Invocations: {subscription.TotalInvocations}");
|
||||||
sb.AppendLine($"\t\tStatus: {cs.Status}");
|
sb.AppendLine($" Identifiers: [{string.Join(", ", subscription.ListenerIdentifiers)}]");
|
||||||
sb.AppendLine($"\t\tAuthenticated: {cs.Authenticated}");
|
}
|
||||||
sb.AppendLine($"\t\tDownload speed: {cs.DownloadSpeed} kbps");
|
|
||||||
sb.AppendLine($"\t\tPending queries: {cs.PendingQueries}");
|
|
||||||
if (cs.SubscriptionStates?.Count > 0)
|
|
||||||
{
|
|
||||||
sb.AppendLine($"\t\tSubscriptions:");
|
|
||||||
cs.SubscriptionStates.ForEach(subState =>
|
|
||||||
{
|
|
||||||
sb.AppendLine($"\t\t\tId: {subState.Id}");
|
|
||||||
sb.AppendLine($"\t\t\tConfirmed: {subState.Confirmed}");
|
|
||||||
sb.AppendLine($"\t\t\tInvocations: {subState.Invocations}");
|
|
||||||
sb.AppendLine($"\t\t\tIdentifiers: [{string.Join(",", subState.Identifiers)}]");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
return sb.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -776,18 +646,11 @@ namespace CryptoExchange.Net.Clients
|
|||||||
public override void Dispose()
|
public override void Dispose()
|
||||||
{
|
{
|
||||||
_disposing = true;
|
_disposing = true;
|
||||||
var tasks = new List<Task>();
|
if (socketConnections.Sum(s => s.Value.UserSubscriptionCount) > 0)
|
||||||
{
|
{
|
||||||
var socketList = socketConnections.Values.Where(x => x.UserSubscriptionCount > 0 || x.Connected);
|
_logger.Log(LogLevel.Debug, "Disposing socket client, closing all subscriptions");
|
||||||
if (socketList.Any())
|
_ = UnsubscribeAllAsync();
|
||||||
_logger.DisposingSocketClient();
|
|
||||||
|
|
||||||
foreach (var connection in socketList)
|
|
||||||
{
|
|
||||||
tasks.Add(connection.CloseAsync());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
semaphoreSlim?.Dispose();
|
semaphoreSlim?.Dispose();
|
||||||
base.Dispose();
|
base.Dispose();
|
||||||
}
|
}
|
||||||
@@ -802,10 +665,9 @@ namespace CryptoExchange.Net.Clients
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Preprocess a stream message
|
/// Preprocess a stream message
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="connection"></param>
|
|
||||||
/// <param name="type"></param>
|
/// <param name="type"></param>
|
||||||
/// <param name="data"></param>
|
/// <param name="stream"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public virtual ReadOnlyMemory<byte> PreprocessStreamMessage(SocketConnection connection, WebSocketMessageType type, ReadOnlyMemory<byte> data) => data;
|
public virtual Stream PreprocessStreamMessage(WebSocketMessageType type, Stream stream) => stream;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+22
-1
@@ -8,7 +8,7 @@ using CryptoExchange.Net.Attributes;
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace CryptoExchange.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Converter for arrays to objects. Can deserialize data like [0.1, 0.2, "test"] to an object. Mapping is done by marking the class with [JsonConverter(typeof(ArrayConverter))] and the properties
|
/// Converter for arrays to objects. Can deserialize data like [0.1, 0.2, "test"] to an object. Mapping is done by marking the class with [JsonConverter(typeof(ArrayConverter))] and the properties
|
||||||
@@ -192,4 +192,25 @@ namespace CryptoExchange.Net.Converters.JsonNet
|
|||||||
private static T? GetCustomAttribute<T>(Type type) where T : Attribute =>
|
private static T? GetCustomAttribute<T>(Type type) where T : Attribute =>
|
||||||
(T?)_attributeByTypeAndTypeCache.GetOrAdd((type, typeof(T)), tuple => type.GetCustomAttribute(typeof(T)));
|
(T?)_attributeByTypeAndTypeCache.GetOrAdd((type, typeof(T)), tuple => type.GetCustomAttribute(typeof(T)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Mark property as an index in the array
|
||||||
|
/// </summary>
|
||||||
|
[AttributeUsage(AttributeTargets.Property)]
|
||||||
|
public class ArrayPropertyAttribute: Attribute
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The index in the array
|
||||||
|
/// </summary>
|
||||||
|
public int Index { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// ctor
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="index"></param>
|
||||||
|
public ArrayPropertyAttribute(int index)
|
||||||
|
{
|
||||||
|
Index = index;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Mark property as an index in the array
|
|
||||||
/// </summary>
|
|
||||||
[AttributeUsage(AttributeTargets.Property)]
|
|
||||||
public class ArrayPropertyAttribute : Attribute
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The index in the array
|
|
||||||
/// </summary>
|
|
||||||
public int Index { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ctor
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="index"></param>
|
|
||||||
public ArrayPropertyAttribute(int index)
|
|
||||||
{
|
|
||||||
Index = index;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+1
-1
@@ -4,7 +4,7 @@ using System.Diagnostics;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace CryptoExchange.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base class for enum converters
|
/// Base class for enum converters
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace CryptoExchange.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Boolean converter with support for "0"/"1" (strings)
|
/// Boolean converter with support for "0"/"1" (strings)
|
||||||
+67
-105
@@ -4,7 +4,7 @@ using System.Diagnostics;
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace CryptoExchange.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Datetime converter. Supports converting from string/long/double to DateTime and back. Numbers are assumed to be the time since 1970-01-01.
|
/// Datetime converter. Supports converting from string/long/double to DateTime and back. Numbers are assumed to be the time since 1970-01-01.
|
||||||
@@ -26,20 +26,21 @@ namespace CryptoExchange.Net.Converters.JsonNet
|
|||||||
public override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
public override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
||||||
{
|
{
|
||||||
if (reader.Value == null)
|
if (reader.Value == null)
|
||||||
{
|
|
||||||
if (objectType == typeof(DateTime))
|
|
||||||
return default(DateTime);
|
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
|
||||||
|
|
||||||
if(reader.TokenType is JsonToken.Integer)
|
if(reader.TokenType is JsonToken.Integer)
|
||||||
{
|
{
|
||||||
var longValue = (long)reader.Value;
|
var longValue = (long)reader.Value;
|
||||||
if (longValue == 0 || longValue == -1)
|
if (longValue == 0 || longValue == -1)
|
||||||
return objectType == typeof(DateTime) ? default(DateTime): null;
|
return objectType == typeof(DateTime) ? default(DateTime): null;
|
||||||
|
if (longValue < 19999999999)
|
||||||
return ParseFromLong(longValue);
|
return ConvertFromSeconds(longValue);
|
||||||
|
if (longValue < 19999999999999)
|
||||||
|
return ConvertFromMilliseconds(longValue);
|
||||||
|
if (longValue < 19999999999999999)
|
||||||
|
return ConvertFromMicroseconds(longValue);
|
||||||
|
|
||||||
|
return ConvertFromNanoseconds(longValue);
|
||||||
}
|
}
|
||||||
else if (reader.TokenType is JsonToken.Float)
|
else if (reader.TokenType is JsonToken.Float)
|
||||||
{
|
{
|
||||||
@@ -55,6 +56,9 @@ namespace CryptoExchange.Net.Converters.JsonNet
|
|||||||
else if(reader.TokenType is JsonToken.String)
|
else if(reader.TokenType is JsonToken.String)
|
||||||
{
|
{
|
||||||
var stringValue = (string)reader.Value;
|
var stringValue = (string)reader.Value;
|
||||||
|
if (string.IsNullOrWhiteSpace(stringValue))
|
||||||
|
return null;
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(stringValue)
|
if (string.IsNullOrWhiteSpace(stringValue)
|
||||||
|| stringValue == "-1"
|
|| stringValue == "-1"
|
||||||
|| (double.TryParse(stringValue, out var doubleVal) && doubleVal == 0))
|
|| (double.TryParse(stringValue, out var doubleVal) && doubleVal == 0))
|
||||||
@@ -62,7 +66,61 @@ namespace CryptoExchange.Net.Converters.JsonNet
|
|||||||
return objectType == typeof(DateTime) ? default(DateTime) : null;
|
return objectType == typeof(DateTime) ? default(DateTime) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ParseFromString(stringValue);
|
if (stringValue.Length == 8)
|
||||||
|
{
|
||||||
|
// Parse 20211103 format
|
||||||
|
if (!int.TryParse(stringValue.Substring(0, 4), out var year)
|
||||||
|
|| !int.TryParse(stringValue.Substring(4, 2), out var month)
|
||||||
|
|| !int.TryParse(stringValue.Substring(6, 2), out var day))
|
||||||
|
{
|
||||||
|
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + reader.Value);
|
||||||
|
return default;
|
||||||
|
}
|
||||||
|
return new DateTime(year, month, day, 0, 0, 0, DateTimeKind.Utc);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stringValue.Length == 6)
|
||||||
|
{
|
||||||
|
// Parse 211103 format
|
||||||
|
if (!int.TryParse(stringValue.Substring(0, 2), out var year)
|
||||||
|
|| !int.TryParse(stringValue.Substring(2, 2), out var month)
|
||||||
|
|| !int.TryParse(stringValue.Substring(4, 2), out var day))
|
||||||
|
{
|
||||||
|
Trace.WriteLine("{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + reader.Value);
|
||||||
|
return default;
|
||||||
|
}
|
||||||
|
return new DateTime(year + 2000, month, day, 0, 0, 0, DateTimeKind.Utc);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (double.TryParse(stringValue, NumberStyles.Float, CultureInfo.InvariantCulture, out var doubleValue))
|
||||||
|
{
|
||||||
|
// Parse 1637745563.000 format
|
||||||
|
if (doubleValue < 19999999999)
|
||||||
|
return ConvertFromSeconds(doubleValue);
|
||||||
|
if (doubleValue < 19999999999999)
|
||||||
|
return ConvertFromMilliseconds((long)doubleValue);
|
||||||
|
if (doubleValue < 19999999999999999)
|
||||||
|
return ConvertFromMicroseconds((long)doubleValue);
|
||||||
|
|
||||||
|
return ConvertFromNanoseconds((long)doubleValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(stringValue.Length == 10)
|
||||||
|
{
|
||||||
|
// Parse 2021-11-03 format
|
||||||
|
var values = stringValue.Split('-');
|
||||||
|
if(!int.TryParse(values[0], out var year)
|
||||||
|
|| !int.TryParse(values[1], out var month)
|
||||||
|
|| !int.TryParse(values[2], out var day))
|
||||||
|
{
|
||||||
|
Trace.WriteLine("{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + reader.Value);
|
||||||
|
return default;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new DateTime(year, month, day, 0, 0, 0, DateTimeKind.Utc);
|
||||||
|
}
|
||||||
|
|
||||||
|
return DateTime.Parse(stringValue, CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal | DateTimeStyles.AssumeUniversal);
|
||||||
}
|
}
|
||||||
else if(reader.TokenType == JsonToken.Date)
|
else if(reader.TokenType == JsonToken.Date)
|
||||||
{
|
{
|
||||||
@@ -75,102 +133,6 @@ namespace CryptoExchange.Net.Converters.JsonNet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Parse a long value to datetime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="longValue"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ParseFromLong(long longValue)
|
|
||||||
{
|
|
||||||
if (longValue < 19999999999)
|
|
||||||
return ConvertFromSeconds(longValue);
|
|
||||||
if (longValue < 19999999999999)
|
|
||||||
return ConvertFromMilliseconds(longValue);
|
|
||||||
if (longValue < 19999999999999999)
|
|
||||||
return ConvertFromMicroseconds(longValue);
|
|
||||||
|
|
||||||
return ConvertFromNanoseconds(longValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Parse a string value to datetime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="stringValue"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ParseFromString(string stringValue)
|
|
||||||
{
|
|
||||||
if (stringValue.Length == 12 && stringValue.StartsWith("202"))
|
|
||||||
{
|
|
||||||
// Parse 202303261200 format
|
|
||||||
if (!int.TryParse(stringValue.Substring(0, 4), out var year)
|
|
||||||
|| !int.TryParse(stringValue.Substring(4, 2), out var month)
|
|
||||||
|| !int.TryParse(stringValue.Substring(6, 2), out var day)
|
|
||||||
|| !int.TryParse(stringValue.Substring(8, 2), out var hour)
|
|
||||||
|| !int.TryParse(stringValue.Substring(10, 2), out var minute))
|
|
||||||
{
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
return new DateTime(year, month, day, hour, minute, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stringValue.Length == 8)
|
|
||||||
{
|
|
||||||
// Parse 20211103 format
|
|
||||||
if (!int.TryParse(stringValue.Substring(0, 4), out var year)
|
|
||||||
|| !int.TryParse(stringValue.Substring(4, 2), out var month)
|
|
||||||
|| !int.TryParse(stringValue.Substring(6, 2), out var day))
|
|
||||||
{
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
return new DateTime(year, month, day, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stringValue.Length == 6)
|
|
||||||
{
|
|
||||||
// Parse 211103 format
|
|
||||||
if (!int.TryParse(stringValue.Substring(0, 2), out var year)
|
|
||||||
|| !int.TryParse(stringValue.Substring(2, 2), out var month)
|
|
||||||
|| !int.TryParse(stringValue.Substring(4, 2), out var day))
|
|
||||||
{
|
|
||||||
Trace.WriteLine("{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
return new DateTime(year + 2000, month, day, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (double.TryParse(stringValue, NumberStyles.Float, CultureInfo.InvariantCulture, out var doubleValue))
|
|
||||||
{
|
|
||||||
// Parse 1637745563.000 format
|
|
||||||
if (doubleValue < 19999999999)
|
|
||||||
return ConvertFromSeconds(doubleValue);
|
|
||||||
if (doubleValue < 19999999999999)
|
|
||||||
return ConvertFromMilliseconds((long)doubleValue);
|
|
||||||
if (doubleValue < 19999999999999999)
|
|
||||||
return ConvertFromMicroseconds((long)doubleValue);
|
|
||||||
|
|
||||||
return ConvertFromNanoseconds((long)doubleValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stringValue.Length == 10)
|
|
||||||
{
|
|
||||||
// Parse 2021-11-03 format
|
|
||||||
var values = stringValue.Split('-');
|
|
||||||
if (!int.TryParse(values[0], out var year)
|
|
||||||
|| !int.TryParse(values[1], out var month)
|
|
||||||
|| !int.TryParse(values[2], out var day))
|
|
||||||
{
|
|
||||||
Trace.WriteLine("{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DateTime(year, month, day, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
return DateTime.Parse(stringValue, CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal | DateTimeStyles.AssumeUniversal);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Convert a seconds since epoch (01-01-1970) value to DateTime
|
/// Convert a seconds since epoch (01-01-1970) value to DateTime
|
||||||
/// </summary>
|
/// </summary>
|
||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace Kraken.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Converter for serializing decimal values as string
|
/// Converter for serializing decimal values as string
|
||||||
@@ -14,7 +14,7 @@ namespace CryptoExchange.Net.Converters.JsonNet
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override bool CanConvert(Type objectType) => objectType == typeof(decimal) || objectType == typeof(decimal?);
|
public override bool CanConvert(Type objectType) => objectType == typeof(decimal) || objectType == typeof(decimal?);
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
public override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
||||||
{
|
{
|
||||||
+1
-1
@@ -7,7 +7,7 @@ using System.Diagnostics;
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace CryptoExchange.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Converter for enum values. Enums entries should be noted with a MapAttribute to map the enum value to a string value
|
/// Converter for enum values. Enums entries should be noted with a MapAttribute to map the enum value to a string value
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Globalization;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Decimal converter that handles overflowing decimal values (by setting it to decimal.MaxValue)
|
|
||||||
/// </summary>
|
|
||||||
public class BigDecimalConverter : JsonConverter
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool CanConvert(Type objectType)
|
|
||||||
{
|
|
||||||
if (Nullable.GetUnderlyingType(objectType) != null)
|
|
||||||
return Nullable.GetUnderlyingType(objectType) == typeof(decimal);
|
|
||||||
return objectType == typeof(decimal);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonToken.Null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonToken.Float || reader.TokenType == JsonToken.Integer)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return decimal.Parse(reader.Value!.ToString(), NumberStyles.Float, CultureInfo.InvariantCulture);
|
|
||||||
}
|
|
||||||
catch (OverflowException)
|
|
||||||
{
|
|
||||||
// Value doesn't fit decimal; set it to max value
|
|
||||||
return decimal.MaxValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonToken.String)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var value = reader.Value!.ToString();
|
|
||||||
return decimal.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture);
|
|
||||||
}
|
|
||||||
catch (OverflowException)
|
|
||||||
{
|
|
||||||
// Value doesn't fit decimal; set it to max value
|
|
||||||
return decimal.MaxValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
|
|
||||||
{
|
|
||||||
writer.WriteValue(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,338 +0,0 @@
|
|||||||
using CryptoExchange.Net.Converters.MessageParsing;
|
|
||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using Newtonsoft.Json.Linq;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Json.Net message accessor
|
|
||||||
/// </summary>
|
|
||||||
public abstract class JsonNetMessageAccessor : IMessageAccessor
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The json token loaded
|
|
||||||
/// </summary>
|
|
||||||
protected JToken? _token;
|
|
||||||
private static readonly JsonSerializer _serializer = JsonSerializer.Create(SerializerOptions.WithConverters);
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public bool IsJson { get; protected set; }
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract bool OriginalDataAvailable { get; }
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public object? Underlying => _token;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public CallResult<object> Deserialize(Type type, MessagePath? path = null)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
return new CallResult<object>(GetOriginalString());
|
|
||||||
|
|
||||||
var source = _token;
|
|
||||||
if (path != null)
|
|
||||||
source = GetPathNode(path.Value);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var result = source!.ToObject(type, _serializer)!;
|
|
||||||
return new CallResult<object>(result);
|
|
||||||
}
|
|
||||||
catch (JsonReaderException jre)
|
|
||||||
{
|
|
||||||
var info = $"Deserialize JsonReaderException: {jre.Message}, Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}";
|
|
||||||
return new CallResult<object>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
catch (JsonSerializationException jse)
|
|
||||||
{
|
|
||||||
var info = $"Deserialize JsonSerializationException: {jse.Message}";
|
|
||||||
return new CallResult<object>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
var exceptionInfo = ex.ToLogString();
|
|
||||||
var info = $"Deserialize Unknown Exception: {exceptionInfo}";
|
|
||||||
return new CallResult<object>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public CallResult<T> Deserialize<T>(MessagePath? path = null)
|
|
||||||
{
|
|
||||||
var source = _token;
|
|
||||||
if (path != null)
|
|
||||||
source = GetPathNode(path.Value);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var result = source!.ToObject<T>(_serializer)!;
|
|
||||||
return new CallResult<T>(result);
|
|
||||||
}
|
|
||||||
catch (JsonReaderException jre)
|
|
||||||
{
|
|
||||||
var info = $"Deserialize JsonReaderException: {jre.Message}, Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}";
|
|
||||||
return new CallResult<T>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
catch (JsonSerializationException jse)
|
|
||||||
{
|
|
||||||
var info = $"Deserialize JsonSerializationException: {jse.Message}";
|
|
||||||
return new CallResult<T>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
var exceptionInfo = ex.ToLogString();
|
|
||||||
var info = $"Deserialize Unknown Exception: {exceptionInfo}";
|
|
||||||
return new CallResult<T>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public NodeType? GetNodeType()
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
if (_token == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (_token.Type == JTokenType.Object)
|
|
||||||
return NodeType.Object;
|
|
||||||
|
|
||||||
if (_token.Type == JTokenType.Array)
|
|
||||||
return NodeType.Array;
|
|
||||||
|
|
||||||
return NodeType.Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public NodeType? GetNodeType(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
var node = GetPathNode(path);
|
|
||||||
if (node == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (node.Type == JTokenType.Object)
|
|
||||||
return NodeType.Object;
|
|
||||||
|
|
||||||
if (node.Type == JTokenType.Array)
|
|
||||||
return NodeType.Array;
|
|
||||||
|
|
||||||
return NodeType.Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public T? GetValue<T>(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
var value = GetPathNode(path);
|
|
||||||
if (value == null)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
if (value.Type == JTokenType.Object || value.Type == JTokenType.Array)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
return value!.Value<T>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public List<T?>? GetValues<T>(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
var value = GetPathNode(path);
|
|
||||||
if (value == null)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
if (value.Type == JTokenType.Object)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
return value!.Values<T>().ToList();
|
|
||||||
}
|
|
||||||
|
|
||||||
private JToken? GetPathNode(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
var currentToken = _token;
|
|
||||||
foreach (var node in path)
|
|
||||||
{
|
|
||||||
if (node.Type == 0)
|
|
||||||
{
|
|
||||||
// Int value
|
|
||||||
var val = node.Index!.Value;
|
|
||||||
if (currentToken!.Type != JTokenType.Array || ((JArray)currentToken).Count <= val)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
currentToken = currentToken[val];
|
|
||||||
}
|
|
||||||
else if (node.Type == 1)
|
|
||||||
{
|
|
||||||
// String value
|
|
||||||
if (currentToken!.Type != JTokenType.Object)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
currentToken = currentToken[node.Property!];
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Property name
|
|
||||||
if (currentToken!.Type != JTokenType.Object)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
currentToken = (currentToken.First as JProperty)?.Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (currentToken == null)
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return currentToken;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract string GetOriginalString();
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract void Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Json.Net stream message accessor
|
|
||||||
/// </summary>
|
|
||||||
public class JsonNetStreamMessageAccessor : JsonNetMessageAccessor, IStreamMessageAccessor
|
|
||||||
{
|
|
||||||
private Stream? _stream;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool OriginalDataAvailable => _stream?.CanSeek == true;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public async Task<CallResult> Read(Stream stream, bool bufferStream)
|
|
||||||
{
|
|
||||||
if (bufferStream && stream is not MemoryStream)
|
|
||||||
{
|
|
||||||
// We need to be buffer the stream, and it's not currently a seekable stream, so copy it to a new memory stream
|
|
||||||
_stream = new MemoryStream();
|
|
||||||
stream.CopyTo(_stream);
|
|
||||||
_stream.Position = 0;
|
|
||||||
}
|
|
||||||
else if (bufferStream)
|
|
||||||
{
|
|
||||||
// We need to buffer the stream, and the current stream is seekable, store as is
|
|
||||||
_stream = stream;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// We don't need to buffer the stream, so don't bother keeping the reference
|
|
||||||
}
|
|
||||||
|
|
||||||
var readStream = _stream ?? stream;
|
|
||||||
var length = readStream.CanSeek ? readStream.Length : 4096;
|
|
||||||
using var reader = new StreamReader(readStream, Encoding.UTF8, false, (int)Math.Max(2, length), true);
|
|
||||||
using var jsonTextReader = new JsonTextReader(reader);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
_token = await JToken.LoadAsync(jsonTextReader).ConfigureAwait(false);
|
|
||||||
IsJson = true;
|
|
||||||
return new CallResult(null);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
// Not a json message
|
|
||||||
IsJson = false;
|
|
||||||
return new CallResult(new ServerError("JsonError: " + ex.Message));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string GetOriginalString()
|
|
||||||
{
|
|
||||||
if (_stream is null)
|
|
||||||
throw new NullReferenceException("Stream not initialized");
|
|
||||||
|
|
||||||
_stream.Position = 0;
|
|
||||||
using var textReader = new StreamReader(_stream, Encoding.UTF8, false, 1024, true);
|
|
||||||
return textReader.ReadToEnd();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Clear()
|
|
||||||
{
|
|
||||||
_stream?.Dispose();
|
|
||||||
_stream = null;
|
|
||||||
_token = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Json.Net byte message accessor
|
|
||||||
/// </summary>
|
|
||||||
public class JsonNetByteMessageAccessor : JsonNetMessageAccessor, IByteMessageAccessor
|
|
||||||
{
|
|
||||||
private ReadOnlyMemory<byte> _bytes;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public CallResult Read(ReadOnlyMemory<byte> data)
|
|
||||||
{
|
|
||||||
_bytes = data;
|
|
||||||
|
|
||||||
// Try getting the underlying byte[] instead of the ToArray to prevent creating a copy
|
|
||||||
using var stream = MemoryMarshal.TryGetArray(data, out var arraySegment)
|
|
||||||
? new MemoryStream(arraySegment.Array, arraySegment.Offset, arraySegment.Count)
|
|
||||||
: new MemoryStream(data.ToArray());
|
|
||||||
using var reader = new StreamReader(stream, Encoding.UTF8, false, Math.Max(2, data.Length), true);
|
|
||||||
using var jsonTextReader = new JsonTextReader(reader);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
_token = JToken.Load(jsonTextReader);
|
|
||||||
IsJson = true;
|
|
||||||
return new CallResult(null);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
// Not a json message
|
|
||||||
IsJson = false;
|
|
||||||
return new CallResult(new ServerError("JsonError: " + ex.Message));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string GetOriginalString() =>
|
|
||||||
// Netstandard 2.0 doesn't support GetString from a ReadonlySpan<byte>, so use ToArray there instead
|
|
||||||
#if NETSTANDARD2_0
|
|
||||||
Encoding.UTF8.GetString(_bytes.ToArray());
|
|
||||||
#else
|
|
||||||
Encoding.UTF8.GetString(_bytes.Span);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool OriginalDataAvailable => true;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Clear()
|
|
||||||
{
|
|
||||||
_bytes = null;
|
|
||||||
_token = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.JsonNet
|
namespace CryptoExchange.Net.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Serializer options
|
/// Serializer options
|
||||||
@@ -1,140 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Reflection;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using CryptoExchange.Net.Attributes;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Converter for arrays to objects. Can deserialize data like [0.1, 0.2, "test"] to an object. Mapping is done by marking the class with [JsonConverter(typeof(ArrayConverter))] and the properties
|
|
||||||
/// with [ArrayProperty(x)] where x is the index of the property in the array
|
|
||||||
/// </summary>
|
|
||||||
public class ArrayConverter : JsonConverterFactory
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool CanConvert(Type typeToConvert) => true;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override JsonConverter CreateConverter(Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
Type converterType = typeof(ArrayConverterInner<>).MakeGenericType(typeToConvert);
|
|
||||||
return (JsonConverter)Activator.CreateInstance(converterType);
|
|
||||||
}
|
|
||||||
|
|
||||||
private class ArrayPropertyInfo
|
|
||||||
{
|
|
||||||
public PropertyInfo PropertyInfo { get; set; } = null!;
|
|
||||||
public ArrayPropertyAttribute ArrayProperty { get; set; } = null!;
|
|
||||||
public Type? JsonConverterType { get; set; }
|
|
||||||
public bool DefaultDeserialization { get; set; }
|
|
||||||
public Type TargetType { get; set; } = null!;
|
|
||||||
}
|
|
||||||
|
|
||||||
private class ArrayConverterInner<T> : JsonConverter<T>
|
|
||||||
{
|
|
||||||
private static readonly ConcurrentDictionary<Type, List<ArrayPropertyInfo>> _typeAttributesCache = new ConcurrentDictionary<Type, List<ArrayPropertyInfo>>();
|
|
||||||
|
|
||||||
|
|
||||||
public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
// TODO
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override T? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
var result = Activator.CreateInstance(typeToConvert);
|
|
||||||
return (T)ParseObject(ref reader, result, typeToConvert);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<ArrayPropertyInfo> CacheTypeAttributes(Type type)
|
|
||||||
{
|
|
||||||
var attributes = new List<ArrayPropertyInfo>();
|
|
||||||
var properties = type.GetProperties();
|
|
||||||
foreach (var property in properties)
|
|
||||||
{
|
|
||||||
var att = property.GetCustomAttribute<ArrayPropertyAttribute>();
|
|
||||||
if (att == null)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
attributes.Add(new ArrayPropertyInfo
|
|
||||||
{
|
|
||||||
ArrayProperty = att,
|
|
||||||
PropertyInfo = property,
|
|
||||||
DefaultDeserialization = property.GetCustomAttribute<JsonConversionAttribute>() != null,
|
|
||||||
JsonConverterType = property.GetCustomAttribute<JsonConverterAttribute>()?.ConverterType,
|
|
||||||
TargetType = Nullable.GetUnderlyingType(property.PropertyType) ?? property.PropertyType
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
_typeAttributesCache.TryAdd(type, attributes);
|
|
||||||
return attributes;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static object ParseObject(ref Utf8JsonReader reader, object result, Type objectType)
|
|
||||||
{
|
|
||||||
if (reader.TokenType != JsonTokenType.StartArray)
|
|
||||||
throw new Exception("Not an array");
|
|
||||||
|
|
||||||
if (!_typeAttributesCache.TryGetValue(objectType, out var attributes))
|
|
||||||
attributes = CacheTypeAttributes(objectType);
|
|
||||||
|
|
||||||
int index = 0;
|
|
||||||
while (reader.Read())
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.EndArray)
|
|
||||||
break;
|
|
||||||
|
|
||||||
var attribute = attributes.SingleOrDefault(a => a.ArrayProperty.Index == index);
|
|
||||||
if (attribute == null)
|
|
||||||
{
|
|
||||||
index++;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var targetType = attribute.TargetType;
|
|
||||||
object? value = null;
|
|
||||||
if (attribute.JsonConverterType != null)
|
|
||||||
{
|
|
||||||
// Has JsonConverter attribute
|
|
||||||
var options = new JsonSerializerOptions();
|
|
||||||
options.Converters.Add((JsonConverter)Activator.CreateInstance(attribute.JsonConverterType));
|
|
||||||
value = JsonDocument.ParseValue(ref reader).Deserialize(targetType, options);
|
|
||||||
}
|
|
||||||
else if (attribute.DefaultDeserialization)
|
|
||||||
{
|
|
||||||
// Use default deserialization
|
|
||||||
value = JsonDocument.ParseValue(ref reader).Deserialize(targetType);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
value = reader.TokenType switch
|
|
||||||
{
|
|
||||||
JsonTokenType.Null => null,
|
|
||||||
JsonTokenType.False => false,
|
|
||||||
JsonTokenType.True => true,
|
|
||||||
JsonTokenType.String => reader.GetString(),
|
|
||||||
JsonTokenType.Number => reader.GetDecimal(),
|
|
||||||
_ => throw new NotImplementedException($"Array deserialization of type {reader.TokenType} not supported"),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
attribute.PropertyInfo.SetValue(result, value == null ? null : Convert.ChangeType(value, targetType, CultureInfo.InvariantCulture));
|
|
||||||
|
|
||||||
index++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Decimal converter that handles overflowing decimal values (by setting it to decimal.MaxValue)
|
|
||||||
/// </summary>
|
|
||||||
public class BigDecimalConverter : JsonConverter<decimal>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override decimal Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.String)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return decimal.Parse(reader.GetString(), NumberStyles.Float, CultureInfo.InvariantCulture);
|
|
||||||
}
|
|
||||||
catch(OverflowException)
|
|
||||||
{
|
|
||||||
// Value doesn't fit decimal, default to max value
|
|
||||||
return decimal.MaxValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return reader.GetDecimal();
|
|
||||||
}
|
|
||||||
catch(FormatException)
|
|
||||||
{
|
|
||||||
// Format issue, assume value is too large
|
|
||||||
return decimal.MaxValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, decimal value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
writer.WriteNumberValue(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Runtime.Serialization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Bool converter
|
|
||||||
/// </summary>
|
|
||||||
public class BoolConverter : JsonConverterFactory
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool CanConvert(Type typeToConvert)
|
|
||||||
{
|
|
||||||
return typeToConvert == typeof(bool) || typeToConvert == typeof(bool?);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override JsonConverter CreateConverter(Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
Type converterType = typeof(BoolConverterInner<>).MakeGenericType(typeToConvert);
|
|
||||||
return (JsonConverter)Activator.CreateInstance(converterType);
|
|
||||||
}
|
|
||||||
|
|
||||||
private class BoolConverterInner<T> : JsonConverter<T>
|
|
||||||
{
|
|
||||||
public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
=> (T)((object?)ReadBool(ref reader, typeToConvert, options) ?? default(T))!;
|
|
||||||
|
|
||||||
public bool? ReadBool(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.True)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonTokenType.False)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var value = reader.TokenType switch
|
|
||||||
{
|
|
||||||
JsonTokenType.String => reader.GetString(),
|
|
||||||
JsonTokenType.Number => reader.GetInt16().ToString(),
|
|
||||||
_ => null
|
|
||||||
};
|
|
||||||
|
|
||||||
value = value?.ToLowerInvariant().Trim();
|
|
||||||
if (string.IsNullOrEmpty(value))
|
|
||||||
{
|
|
||||||
if (typeToConvert == typeof(bool))
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Received null bool value, but property type is not a nullable bool");
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (value)
|
|
||||||
{
|
|
||||||
case "true":
|
|
||||||
case "yes":
|
|
||||||
case "y":
|
|
||||||
case "1":
|
|
||||||
case "on":
|
|
||||||
return true;
|
|
||||||
case "false":
|
|
||||||
case "no":
|
|
||||||
case "n":
|
|
||||||
case "0":
|
|
||||||
case "off":
|
|
||||||
case "-1":
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new SerializationException($"Can't convert bool value {value}");
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value is bool boolVal)
|
|
||||||
writer.WriteBooleanValue(boolVal);
|
|
||||||
else
|
|
||||||
writer.WriteNullValue();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,240 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Date time converter
|
|
||||||
/// </summary>
|
|
||||||
public class DateTimeConverter : JsonConverterFactory
|
|
||||||
{
|
|
||||||
private static readonly DateTime _epoch = new(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
private const long _ticksPerSecond = TimeSpan.TicksPerMillisecond * 1000;
|
|
||||||
private const double _ticksPerMicrosecond = TimeSpan.TicksPerMillisecond / 1000d;
|
|
||||||
private const double _ticksPerNanosecond = TimeSpan.TicksPerMillisecond / 1000d / 1000;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool CanConvert(Type typeToConvert)
|
|
||||||
{
|
|
||||||
return typeToConvert == typeof(DateTime) || typeToConvert == typeof(DateTime?);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override JsonConverter CreateConverter(Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
Type converterType = typeof(DateTimeConverterInner<>).MakeGenericType(typeToConvert);
|
|
||||||
return (JsonConverter)Activator.CreateInstance(converterType);
|
|
||||||
}
|
|
||||||
|
|
||||||
private class DateTimeConverterInner<T> : JsonConverter<T>
|
|
||||||
{
|
|
||||||
public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
=> (T)((object?)ReadDateTime(ref reader, typeToConvert, options) ?? default(T))!;
|
|
||||||
|
|
||||||
private DateTime? ReadDateTime(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
{
|
|
||||||
if (typeToConvert == typeof(DateTime))
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | DateTime value of null, but property is not nullable");
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (reader.TokenType is JsonTokenType.Number)
|
|
||||||
{
|
|
||||||
var longValue = reader.GetDouble();
|
|
||||||
if (longValue == 0 || longValue == -1)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
return ParseFromDouble(longValue);
|
|
||||||
}
|
|
||||||
else if (reader.TokenType is JsonTokenType.String)
|
|
||||||
{
|
|
||||||
var stringValue = reader.GetString();
|
|
||||||
if (string.IsNullOrWhiteSpace(stringValue)
|
|
||||||
|| stringValue == "-1"
|
|
||||||
|| double.TryParse(stringValue, out var doubleVal) && doubleVal == 0)
|
|
||||||
{
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ParseFromString(stringValue!);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return reader.GetDateTime();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
writer.WriteNullValue();
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var dtValue = (DateTime)(object)value;
|
|
||||||
if (dtValue == default)
|
|
||||||
writer.WriteStringValue(default(DateTime));
|
|
||||||
else
|
|
||||||
writer.WriteNumberValue((long)Math.Round((dtValue - new DateTime(1970, 1, 1)).TotalMilliseconds));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Parse a long value to datetime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="longValue"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ParseFromDouble(double longValue)
|
|
||||||
{
|
|
||||||
if (longValue < 19999999999)
|
|
||||||
return ConvertFromSeconds(longValue);
|
|
||||||
if (longValue < 19999999999999)
|
|
||||||
return ConvertFromMilliseconds(longValue);
|
|
||||||
if (longValue < 19999999999999999)
|
|
||||||
return ConvertFromMicroseconds(longValue);
|
|
||||||
|
|
||||||
return ConvertFromNanoseconds(longValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Parse a string value to datetime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="stringValue"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ParseFromString(string stringValue)
|
|
||||||
{
|
|
||||||
if (stringValue!.Length == 12 && stringValue.StartsWith("202"))
|
|
||||||
{
|
|
||||||
// Parse 202303261200 format
|
|
||||||
if (!int.TryParse(stringValue.Substring(0, 4), out var year)
|
|
||||||
|| !int.TryParse(stringValue.Substring(4, 2), out var month)
|
|
||||||
|| !int.TryParse(stringValue.Substring(6, 2), out var day)
|
|
||||||
|| !int.TryParse(stringValue.Substring(8, 2), out var hour)
|
|
||||||
|| !int.TryParse(stringValue.Substring(10, 2), out var minute))
|
|
||||||
{
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
return new DateTime(year, month, day, hour, minute, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stringValue.Length == 8)
|
|
||||||
{
|
|
||||||
// Parse 20211103 format
|
|
||||||
if (!int.TryParse(stringValue.Substring(0, 4), out var year)
|
|
||||||
|| !int.TryParse(stringValue.Substring(4, 2), out var month)
|
|
||||||
|| !int.TryParse(stringValue.Substring(6, 2), out var day))
|
|
||||||
{
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
return new DateTime(year, month, day, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stringValue.Length == 6)
|
|
||||||
{
|
|
||||||
// Parse 211103 format
|
|
||||||
if (!int.TryParse(stringValue.Substring(0, 2), out var year)
|
|
||||||
|| !int.TryParse(stringValue.Substring(2, 2), out var month)
|
|
||||||
|| !int.TryParse(stringValue.Substring(4, 2), out var day))
|
|
||||||
{
|
|
||||||
Trace.WriteLine("{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
return new DateTime(year + 2000, month, day, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (double.TryParse(stringValue, NumberStyles.Float, CultureInfo.InvariantCulture, out var doubleValue))
|
|
||||||
{
|
|
||||||
// Parse 1637745563.000 format
|
|
||||||
if (doubleValue <= 0)
|
|
||||||
return default;
|
|
||||||
if (doubleValue < 19999999999)
|
|
||||||
return ConvertFromSeconds(doubleValue);
|
|
||||||
if (doubleValue < 19999999999999)
|
|
||||||
return ConvertFromMilliseconds((long)doubleValue);
|
|
||||||
if (doubleValue < 19999999999999999)
|
|
||||||
return ConvertFromMicroseconds((long)doubleValue);
|
|
||||||
|
|
||||||
return ConvertFromNanoseconds((long)doubleValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stringValue.Length == 10)
|
|
||||||
{
|
|
||||||
// Parse 2021-11-03 format
|
|
||||||
var values = stringValue.Split('-');
|
|
||||||
if (!int.TryParse(values[0], out var year)
|
|
||||||
|| !int.TryParse(values[1], out var month)
|
|
||||||
|| !int.TryParse(values[2], out var day))
|
|
||||||
{
|
|
||||||
Trace.WriteLine("{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Unknown DateTime format: " + stringValue);
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DateTime(year, month, day, 0, 0, 0, DateTimeKind.Utc);
|
|
||||||
}
|
|
||||||
|
|
||||||
return DateTime.Parse(stringValue, CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal | DateTimeStyles.AssumeUniversal);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a seconds since epoch (01-01-1970) value to DateTime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="seconds"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ConvertFromSeconds(double seconds) => _epoch.AddTicks((long)Math.Round(seconds * _ticksPerSecond));
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a milliseconds since epoch (01-01-1970) value to DateTime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="milliseconds"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ConvertFromMilliseconds(double milliseconds) => _epoch.AddTicks((long)Math.Round(milliseconds * TimeSpan.TicksPerMillisecond));
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a microseconds since epoch (01-01-1970) value to DateTime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="microseconds"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ConvertFromMicroseconds(double microseconds) => _epoch.AddTicks((long)Math.Round(microseconds * _ticksPerMicrosecond));
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a nanoseconds since epoch (01-01-1970) value to DateTime
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="nanoseconds"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static DateTime ConvertFromNanoseconds(double nanoseconds) => _epoch.AddTicks((long)Math.Round(nanoseconds * _ticksPerNanosecond));
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a DateTime value to seconds since epoch (01-01-1970) value
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="time"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[return: NotNullIfNotNull("time")]
|
|
||||||
public static long? ConvertToSeconds(DateTime? time) => time == null ? null : (long)Math.Round((time.Value - _epoch).TotalSeconds);
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a DateTime value to milliseconds since epoch (01-01-1970) value
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="time"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[return: NotNullIfNotNull("time")]
|
|
||||||
public static long? ConvertToMilliseconds(DateTime? time) => time == null ? null : (long)Math.Round((time.Value - _epoch).TotalMilliseconds);
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a DateTime value to microseconds since epoch (01-01-1970) value
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="time"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[return: NotNullIfNotNull("time")]
|
|
||||||
public static long? ConvertToMicroseconds(DateTime? time) => time == null ? null : (long)Math.Round((time.Value - _epoch).Ticks / _ticksPerMicrosecond);
|
|
||||||
/// <summary>
|
|
||||||
/// Convert a DateTime value to nanoseconds since epoch (01-01-1970) value
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="time"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[return: NotNullIfNotNull("time")]
|
|
||||||
public static long? ConvertToNanoseconds(DateTime? time) => time == null ? null : (long)Math.Round((time.Value - _epoch).Ticks / _ticksPerNanosecond);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Decimal converter
|
|
||||||
/// </summary>
|
|
||||||
public class DecimalConverter : JsonConverter<decimal?>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override decimal? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonTokenType.String)
|
|
||||||
{
|
|
||||||
var value = reader.GetString();
|
|
||||||
if (string.IsNullOrEmpty(value) || string.Equals("null", value))
|
|
||||||
return null;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return decimal.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture);
|
|
||||||
}
|
|
||||||
catch(OverflowException)
|
|
||||||
{
|
|
||||||
// Value doesn't fit decimal, default to max value
|
|
||||||
return decimal.MaxValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return reader.GetDecimal();
|
|
||||||
}
|
|
||||||
catch(FormatException)
|
|
||||||
{
|
|
||||||
// Format issue, assume value is too large
|
|
||||||
return decimal.MaxValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, decimal? value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
writer.WriteNullValue();
|
|
||||||
else
|
|
||||||
writer.WriteNumberValue(value.Value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Converter for serializing decimal values as string
|
|
||||||
/// </summary>
|
|
||||||
public class DecimalStringWriterConverter : JsonConverter<decimal>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override decimal Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, decimal value, JsonSerializerOptions options)
|
|
||||||
=> writer.WriteStringValue(value.ToString(CultureInfo.InvariantCulture) ?? null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,247 +0,0 @@
|
|||||||
using CryptoExchange.Net.Attributes;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Reflection;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Converter for enum values. Enums entries should be noted with a MapAttribute to map the enum value to a string value
|
|
||||||
/// </summary>
|
|
||||||
public class EnumConverter : JsonConverterFactory
|
|
||||||
{
|
|
||||||
private bool _warnOnMissingEntry = true;
|
|
||||||
private bool _writeAsInt;
|
|
||||||
private static readonly ConcurrentDictionary<Type, List<KeyValuePair<object, string>>> _mapping = new();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// </summary>
|
|
||||||
public EnumConverter() { }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="writeAsInt"></param>
|
|
||||||
/// <param name="warnOnMissingEntry"></param>
|
|
||||||
public EnumConverter(bool writeAsInt, bool warnOnMissingEntry)
|
|
||||||
{
|
|
||||||
_writeAsInt = writeAsInt;
|
|
||||||
_warnOnMissingEntry = warnOnMissingEntry;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool CanConvert(Type typeToConvert)
|
|
||||||
{
|
|
||||||
return typeToConvert.IsEnum || Nullable.GetUnderlyingType(typeToConvert)?.IsEnum == true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override JsonConverter? CreateConverter(Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
JsonConverter converter = (JsonConverter)Activator.CreateInstance(
|
|
||||||
typeof(EnumConverterInner<>).MakeGenericType(
|
|
||||||
new Type[] { typeToConvert }),
|
|
||||||
BindingFlags.Instance | BindingFlags.Public,
|
|
||||||
binder: null,
|
|
||||||
args: new object[] { _writeAsInt, _warnOnMissingEntry },
|
|
||||||
culture: null)!;
|
|
||||||
|
|
||||||
return converter;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<KeyValuePair<object, string>> AddMapping(Type objectType)
|
|
||||||
{
|
|
||||||
var mapping = new List<KeyValuePair<object, string>>();
|
|
||||||
var enumMembers = objectType.GetMembers();
|
|
||||||
foreach (var member in enumMembers)
|
|
||||||
{
|
|
||||||
var maps = member.GetCustomAttributes(typeof(MapAttribute), false);
|
|
||||||
foreach (MapAttribute attribute in maps)
|
|
||||||
{
|
|
||||||
foreach (var value in attribute.Values)
|
|
||||||
mapping.Add(new KeyValuePair<object, string>(Enum.Parse(objectType, member.Name), value));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_mapping.TryAdd(objectType, mapping);
|
|
||||||
return mapping;
|
|
||||||
}
|
|
||||||
|
|
||||||
private class EnumConverterInner<T> : JsonConverter<T>
|
|
||||||
{
|
|
||||||
private bool _warnOnMissingEntry = true;
|
|
||||||
private bool _writeAsInt;
|
|
||||||
|
|
||||||
public EnumConverterInner(bool writeAsInt, bool warnOnMissingEntry)
|
|
||||||
{
|
|
||||||
_warnOnMissingEntry = warnOnMissingEntry;
|
|
||||||
_writeAsInt = writeAsInt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override T? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
var enumType = Nullable.GetUnderlyingType(typeToConvert) ?? typeToConvert;
|
|
||||||
if (!_mapping.TryGetValue(enumType, out var mapping))
|
|
||||||
mapping = AddMapping(enumType);
|
|
||||||
|
|
||||||
var stringValue = reader.TokenType switch
|
|
||||||
{
|
|
||||||
JsonTokenType.String => reader.GetString(),
|
|
||||||
JsonTokenType.Number => reader.GetInt16().ToString(),
|
|
||||||
JsonTokenType.True => reader.GetBoolean().ToString(),
|
|
||||||
JsonTokenType.False => reader.GetBoolean().ToString(),
|
|
||||||
JsonTokenType.Null => null,
|
|
||||||
_ => throw new Exception("Invalid token type for enum deserialization: " + reader.TokenType)
|
|
||||||
};
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(stringValue))
|
|
||||||
{
|
|
||||||
// Received null value
|
|
||||||
var emptyResult = GetDefaultValue(typeToConvert, enumType);
|
|
||||||
if (emptyResult != null)
|
|
||||||
// If the property we're parsing to isn't nullable there isn't a correct way to return this as null will either throw an exception (.net framework) or the default enum value (dotnet core).
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Received null enum value, but property type is not a nullable enum. EnumType: {enumType.Name}. If you think {enumType.Name} should be nullable please open an issue on the Github repo");
|
|
||||||
|
|
||||||
return (T?)emptyResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!GetValue(enumType, mapping, stringValue!, out var result))
|
|
||||||
{
|
|
||||||
var defaultValue = GetDefaultValue(typeToConvert, enumType);
|
|
||||||
if (string.IsNullOrWhiteSpace(stringValue))
|
|
||||||
{
|
|
||||||
if (defaultValue != null)
|
|
||||||
// We received an empty string and have no mapping for it, and the property isn't nullable
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Received empty string as enum value, but property type is not a nullable enum. EnumType: {enumType.Name}. If you think {enumType.Name} should be nullable please open an issue on the Github repo");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// We received an enum value but weren't able to parse it.
|
|
||||||
if (_warnOnMissingEntry)
|
|
||||||
Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | Cannot map enum value. EnumType: {enumType.Name}, Value: {stringValue}, Known values: {string.Join(", ", mapping.Select(m => m.Value))}. If you think {stringValue} should added please open an issue on the Github repo");
|
|
||||||
}
|
|
||||||
|
|
||||||
return (T?)defaultValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (T?)result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
{
|
|
||||||
writer.WriteNullValue();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (!_writeAsInt)
|
|
||||||
{
|
|
||||||
var stringValue = GetString(value.GetType(), value);
|
|
||||||
writer.WriteStringValue(stringValue);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
writer.WriteNumberValue((int)Convert.ChangeType(value, typeof(int)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static object? GetDefaultValue(Type objectType, Type enumType)
|
|
||||||
{
|
|
||||||
if (Nullable.GetUnderlyingType(objectType) != null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
return Activator.CreateInstance(enumType); // return default value
|
|
||||||
}
|
|
||||||
|
|
||||||
private static bool GetValue(Type objectType, List<KeyValuePair<object, string>> enumMapping, string value, out object? result)
|
|
||||||
{
|
|
||||||
// Check for exact match first, then if not found fallback to a case insensitive match
|
|
||||||
var mapping = enumMapping.FirstOrDefault(kv => kv.Value.Equals(value, StringComparison.InvariantCulture));
|
|
||||||
if (mapping.Equals(default(KeyValuePair<object, string>)))
|
|
||||||
mapping = enumMapping.FirstOrDefault(kv => kv.Value.Equals(value, StringComparison.InvariantCultureIgnoreCase));
|
|
||||||
|
|
||||||
if (!mapping.Equals(default(KeyValuePair<object, string>)))
|
|
||||||
{
|
|
||||||
result = mapping.Key;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
// If no explicit mapping is found try to parse string
|
|
||||||
result = Enum.Parse(objectType, value, true);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
result = default;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get the string value for an enum value using the MapAttribute mapping. When multiple values are mapped for a enum entry the first value will be returned
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T"></typeparam>
|
|
||||||
/// <param name="enumValue"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[return: NotNullIfNotNull("enumValue")]
|
|
||||||
public static string? GetString<T>(T enumValue) => GetString(typeof(T), enumValue);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get the string value for an enum value using the MapAttribute mapping. When multiple values are mapped for a enum entry the first value will be returned
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="objectType"></param>
|
|
||||||
/// <param name="enumValue"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[return: NotNullIfNotNull("enumValue")]
|
|
||||||
public static string? GetString(Type objectType, object? enumValue)
|
|
||||||
{
|
|
||||||
objectType = Nullable.GetUnderlyingType(objectType) ?? objectType;
|
|
||||||
|
|
||||||
if (!_mapping.TryGetValue(objectType, out var mapping))
|
|
||||||
mapping = AddMapping(objectType);
|
|
||||||
|
|
||||||
return enumValue == null ? null : (mapping.FirstOrDefault(v => v.Key.Equals(enumValue)).Value ?? enumValue.ToString());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get the enum value from a string
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T">Enum type</typeparam>
|
|
||||||
/// <param name="value">String value</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static T? ParseString<T>(string value) where T : Enum
|
|
||||||
{
|
|
||||||
var type = typeof(T);
|
|
||||||
if (!_mapping.TryGetValue(type, out var enumMapping))
|
|
||||||
enumMapping = AddMapping(type);
|
|
||||||
|
|
||||||
var mapping = enumMapping.FirstOrDefault(kv => kv.Value.Equals(value, StringComparison.InvariantCulture));
|
|
||||||
if (mapping.Equals(default(KeyValuePair<object, string>)))
|
|
||||||
mapping = enumMapping.FirstOrDefault(kv => kv.Value.Equals(value, StringComparison.InvariantCultureIgnoreCase));
|
|
||||||
|
|
||||||
if (!mapping.Equals(default(KeyValuePair<object, string>)))
|
|
||||||
{
|
|
||||||
return (T)mapping.Key;
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
// If no explicit mapping is found try to parse string
|
|
||||||
return (T)Enum.Parse(type, value, true);
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
return default;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Int converter
|
|
||||||
/// </summary>
|
|
||||||
public class IntConverter : JsonConverter<int?>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override int? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonTokenType.String)
|
|
||||||
{
|
|
||||||
var value = reader.GetString();
|
|
||||||
if (string.IsNullOrEmpty(value))
|
|
||||||
return null;
|
|
||||||
|
|
||||||
return int.Parse(value, NumberStyles.Integer, CultureInfo.InvariantCulture);
|
|
||||||
}
|
|
||||||
|
|
||||||
return reader.GetInt32();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, int? value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
writer.WriteNullValue();
|
|
||||||
else
|
|
||||||
writer.WriteNumberValue(value.Value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Int converter
|
|
||||||
/// </summary>
|
|
||||||
public class LongConverter : JsonConverter<long?>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override long? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonTokenType.String)
|
|
||||||
{
|
|
||||||
var value = reader.GetString();
|
|
||||||
if (string.IsNullOrEmpty(value))
|
|
||||||
return null;
|
|
||||||
|
|
||||||
return long.Parse(value, NumberStyles.Integer, CultureInfo.InvariantCulture);
|
|
||||||
}
|
|
||||||
|
|
||||||
return reader.GetInt64();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, long? value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
writer.WriteNullValue();
|
|
||||||
else
|
|
||||||
writer.WriteNumberValue(value.Value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Read string or number as string
|
|
||||||
/// </summary>
|
|
||||||
public class NumberStringConverter : JsonConverter<string?>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (reader.TokenType == JsonTokenType.Number)
|
|
||||||
{
|
|
||||||
if (reader.TryGetInt64(out var value))
|
|
||||||
return value.ToString();
|
|
||||||
|
|
||||||
return reader.GetDecimal().ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
return reader.GetString();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, string? value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
writer.WriteStringValue(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
using System.Text.Json;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T"></typeparam>
|
|
||||||
public class ObjectStringConverter<T> : JsonConverter<T>
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override T? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (reader.TokenType == JsonTokenType.Null)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
var value = reader.GetString();
|
|
||||||
if (string.IsNullOrEmpty(value))
|
|
||||||
return default;
|
|
||||||
|
|
||||||
return (T?)JsonDocument.Parse(value!).Deserialize(typeof(T));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Write(Utf8JsonWriter writer, T? value, JsonSerializerOptions options)
|
|
||||||
{
|
|
||||||
if (value is null)
|
|
||||||
writer.WriteStringValue("");
|
|
||||||
|
|
||||||
writer.WriteStringValue(JsonSerializer.Serialize(value, options));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
using System.Text.Json;
|
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Serializer options
|
|
||||||
/// </summary>
|
|
||||||
public static class SerializerOptions
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Json serializer settings which includes the EnumConverter, DateTimeConverter, BoolConverter and DecimalConverter
|
|
||||||
/// </summary>
|
|
||||||
public static JsonSerializerOptions WithConverters { get; } = new JsonSerializerOptions
|
|
||||||
{
|
|
||||||
NumberHandling = JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.AllowNamedFloatingPointLiterals,
|
|
||||||
PropertyNameCaseInsensitive = false,
|
|
||||||
Converters =
|
|
||||||
{
|
|
||||||
new DateTimeConverter(),
|
|
||||||
new EnumConverter(),
|
|
||||||
new BoolConverter(),
|
|
||||||
new DecimalConverter(),
|
|
||||||
new IntConverter(),
|
|
||||||
new LongConverter()
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,311 +0,0 @@
|
|||||||
using CryptoExchange.Net.Converters.MessageParsing;
|
|
||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// System.Text.Json message accessor
|
|
||||||
/// </summary>
|
|
||||||
public abstract class SystemTextJsonMessageAccessor : IMessageAccessor
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The JsonDocument loaded
|
|
||||||
/// </summary>
|
|
||||||
protected JsonDocument? _document;
|
|
||||||
|
|
||||||
private static JsonSerializerOptions _serializerOptions = SerializerOptions.WithConverters;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public bool IsJson { get; set; }
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract bool OriginalDataAvailable { get; }
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public object? Underlying => throw new NotImplementedException();
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public CallResult<object> Deserialize(Type type, MessagePath? path = null)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
return new CallResult<object>(GetOriginalString());
|
|
||||||
|
|
||||||
if (_document == null)
|
|
||||||
throw new InvalidOperationException("No json document loaded");
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var result = _document.Deserialize(type, _serializerOptions);
|
|
||||||
return new CallResult<object>(result!);
|
|
||||||
}
|
|
||||||
catch (JsonException ex)
|
|
||||||
{
|
|
||||||
var info = $"Deserialize JsonException: {ex.Message}, Path: {ex.Path}, LineNumber: {ex.LineNumber}, LinePosition: {ex.BytePositionInLine}";
|
|
||||||
return new CallResult<object>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public CallResult<T> Deserialize<T>(MessagePath? path = null)
|
|
||||||
{
|
|
||||||
if (_document == null)
|
|
||||||
throw new InvalidOperationException("No json document loaded");
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var result = _document.Deserialize<T>(_serializerOptions);
|
|
||||||
return new CallResult<T>(result!);
|
|
||||||
}
|
|
||||||
catch (JsonException ex)
|
|
||||||
{
|
|
||||||
var info = $"Deserialize JsonException: {ex.Message}, Path: {ex.Path}, LineNumber: {ex.LineNumber}, LinePosition: {ex.BytePositionInLine}";
|
|
||||||
return new CallResult<T>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
var info = $"Unknown exception: {ex.Message}";
|
|
||||||
return new CallResult<T>(new DeserializeError(info, OriginalDataAvailable ? GetOriginalString() : "[Data only available when OutputOriginal = true in client options]"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public NodeType? GetNodeType()
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
if (_document == null)
|
|
||||||
throw new InvalidOperationException("No json document loaded");
|
|
||||||
|
|
||||||
return _document.RootElement.ValueKind switch
|
|
||||||
{
|
|
||||||
JsonValueKind.Object => NodeType.Object,
|
|
||||||
JsonValueKind.Array => NodeType.Array,
|
|
||||||
_ => NodeType.Value
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public NodeType? GetNodeType(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
var node = GetPathNode(path);
|
|
||||||
if (!node.HasValue)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
return node.Value.ValueKind switch
|
|
||||||
{
|
|
||||||
JsonValueKind.Object => NodeType.Object,
|
|
||||||
JsonValueKind.Array => NodeType.Array,
|
|
||||||
_ => NodeType.Value
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public T? GetValue<T>(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
var value = GetPathNode(path);
|
|
||||||
if (value == null)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
if (value.Value.ValueKind == JsonValueKind.Object || value.Value.ValueKind == JsonValueKind.Array)
|
|
||||||
return default;
|
|
||||||
|
|
||||||
if (typeof(T) == typeof(string))
|
|
||||||
{
|
|
||||||
if (value.Value.ValueKind == JsonValueKind.Number)
|
|
||||||
return (T)(object)value.Value.GetInt64().ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.Value.Deserialize<T>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public List<T?>? GetValues<T>(MessagePath path) => throw new NotImplementedException();
|
|
||||||
|
|
||||||
private JsonElement? GetPathNode(MessagePath path)
|
|
||||||
{
|
|
||||||
if (!IsJson)
|
|
||||||
throw new InvalidOperationException("Can't access json data on non-json message");
|
|
||||||
|
|
||||||
if (_document == null)
|
|
||||||
throw new InvalidOperationException("No json document loaded");
|
|
||||||
|
|
||||||
JsonElement? currentToken = _document.RootElement;
|
|
||||||
foreach (var node in path)
|
|
||||||
{
|
|
||||||
if (node.Type == 0)
|
|
||||||
{
|
|
||||||
// Int value
|
|
||||||
var val = node.Index!.Value;
|
|
||||||
if (currentToken!.Value.ValueKind != JsonValueKind.Array || currentToken.Value.GetArrayLength() <= val)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
currentToken = currentToken.Value[val];
|
|
||||||
}
|
|
||||||
else if (node.Type == 1)
|
|
||||||
{
|
|
||||||
// String value
|
|
||||||
if (currentToken!.Value.ValueKind != JsonValueKind.Object)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
if (!currentToken.Value.TryGetProperty(node.Property!, out var token))
|
|
||||||
return null;
|
|
||||||
currentToken = token;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Property name
|
|
||||||
if (currentToken!.Value.ValueKind != JsonValueKind.Object)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (currentToken == null)
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return currentToken;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract string GetOriginalString();
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public abstract void Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System.Text.Json stream message accessor
|
|
||||||
/// </summary>
|
|
||||||
public class SystemTextJsonStreamMessageAccessor : SystemTextJsonMessageAccessor, IStreamMessageAccessor
|
|
||||||
{
|
|
||||||
private Stream? _stream;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool OriginalDataAvailable => _stream?.CanSeek == true;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public async Task<CallResult> Read(Stream stream, bool bufferStream)
|
|
||||||
{
|
|
||||||
if (bufferStream && stream is not MemoryStream)
|
|
||||||
{
|
|
||||||
// We need to be buffer the stream, and it's not currently a seekable stream, so copy it to a new memory stream
|
|
||||||
_stream = new MemoryStream();
|
|
||||||
stream.CopyTo(_stream);
|
|
||||||
_stream.Position = 0;
|
|
||||||
}
|
|
||||||
else if (bufferStream)
|
|
||||||
{
|
|
||||||
// We need to buffer the stream, and the current stream is seekable, store as is
|
|
||||||
_stream = stream;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// We don't need to buffer the stream, so don't bother keeping the reference
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
_document = await JsonDocument.ParseAsync(_stream ?? stream).ConfigureAwait(false);
|
|
||||||
IsJson = true;
|
|
||||||
return new CallResult(null);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
// Not a json message
|
|
||||||
IsJson = false;
|
|
||||||
return new CallResult(new ServerError("JsonError: " + ex.Message));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string GetOriginalString()
|
|
||||||
{
|
|
||||||
if (_stream is null)
|
|
||||||
throw new NullReferenceException("Stream not initialized");
|
|
||||||
|
|
||||||
_stream.Position = 0;
|
|
||||||
using var textReader = new StreamReader(_stream, Encoding.UTF8, false, 1024, true);
|
|
||||||
return textReader.ReadToEnd();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Clear()
|
|
||||||
{
|
|
||||||
_stream?.Dispose();
|
|
||||||
_stream = null;
|
|
||||||
_document?.Dispose();
|
|
||||||
_document = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System.Text.Json byte message accessor
|
|
||||||
/// </summary>
|
|
||||||
public class SystemTextJsonByteMessageAccessor : SystemTextJsonMessageAccessor, IByteMessageAccessor
|
|
||||||
{
|
|
||||||
private ReadOnlyMemory<byte> _bytes;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public CallResult Read(ReadOnlyMemory<byte> data)
|
|
||||||
{
|
|
||||||
_bytes = data;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var firstByte = data.Span[0];
|
|
||||||
if (firstByte != 0x7b && firstByte != 0x5b)
|
|
||||||
{
|
|
||||||
// Value doesn't start with `{` or `[`, prevent deserialization attempt as it's slow
|
|
||||||
IsJson = false;
|
|
||||||
return new CallResult(new ServerError("Not a json value"));
|
|
||||||
}
|
|
||||||
|
|
||||||
_document = JsonDocument.Parse(data);
|
|
||||||
IsJson = true;
|
|
||||||
return new CallResult(null);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
// Not a json message
|
|
||||||
IsJson = false;
|
|
||||||
return new CallResult(new ServerError("JsonError: " + ex.Message));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string GetOriginalString() =>
|
|
||||||
// Netstandard 2.0 doesn't support GetString from a ReadonlySpan<byte>, so use ToArray there instead
|
|
||||||
#if NETSTANDARD2_0
|
|
||||||
Encoding.UTF8.GetString(_bytes.ToArray());
|
|
||||||
#else
|
|
||||||
Encoding.UTF8.GetString(_bytes.Span);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override bool OriginalDataAvailable => true;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override void Clear()
|
|
||||||
{
|
|
||||||
_bytes = null;
|
|
||||||
_document?.Dispose();
|
|
||||||
_document = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using System.Text.Json;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Converters.SystemTextJson
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public class SystemTextJsonMessageSerializer : IMessageSerializer
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public string Serialize(object message) => JsonSerializer.Serialize(message, SerializerOptions.WithConverters);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -5,12 +5,11 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PackageId>CryptoExchange.Net</PackageId>
|
<PackageId>CryptoExchange.Net</PackageId>
|
||||||
<Authors>JKorf</Authors>
|
<Authors>JKorf</Authors>
|
||||||
<Description>CryptoExchange.Net is a base library which is used to implement different cryptocurrency (exchange) API's. It provides a standardized way of implementing different API's, which results in a very similar experience for users of the API implementations.</Description>
|
<Description>A base package for implementing cryptocurrency API's</Description>
|
||||||
<PackageVersion>8.0.0</PackageVersion>
|
<PackageVersion>7.0.0-beta2</PackageVersion>
|
||||||
<AssemblyVersion>8.0.0</AssemblyVersion>
|
<AssemblyVersion>7.0.0-beta2</AssemblyVersion>
|
||||||
<FileVersion>8.0.0</FileVersion>
|
<FileVersion>7.0.0-beta2</FileVersion>
|
||||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||||
<PackageTags>OKX;OKX.Net;Mexc;Mexc.Net;Kucoin;Kucoin.Net;Kraken;Kraken.Net;Huobi;Huobi.Net;CoinEx;CoinEx.Net;Bybit;Bybit.Net;Bitget;Bitget.Net;Bitfinex;Bitfinex.Net;Binance;Binance.Net;CryptoCurrency;CryptoCurrency Exchange</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<RepositoryUrl>https://github.com/JKorf/CryptoExchange.Net.git</RepositoryUrl>
|
<RepositoryUrl>https://github.com/JKorf/CryptoExchange.Net.git</RepositoryUrl>
|
||||||
<PackageProjectUrl>https://github.com/JKorf/CryptoExchange.Net</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/JKorf/CryptoExchange.Net</PackageProjectUrl>
|
||||||
@@ -18,7 +17,7 @@
|
|||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
<PackageReleaseNotes>https://github.com/JKorf/CryptoExchange.Net?tab=readme-ov-file#release-notes</PackageReleaseNotes>
|
<PackageReleaseNotes>7.0.0-beta2 - Updated RevitalizeRequestAsync signature, Removed duplicate logging</PackageReleaseNotes>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<LangVersion>10.0</LangVersion>
|
<LangVersion>10.0</LangVersion>
|
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
@@ -35,7 +34,7 @@
|
|||||||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Label="Deterministic Build" Condition="'$(Configuration)' == 'Release'">
|
<ItemGroup Label="Deterministic Build" Condition="'$(Configuration)' == 'Release'">
|
||||||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
@@ -44,7 +43,7 @@
|
|||||||
<DocumentationFile>CryptoExchange.Net.xml</DocumentationFile>
|
<DocumentationFile>CryptoExchange.Net.xml</DocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="5.0.0.1">
|
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="5.0.0">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
@@ -52,12 +51,11 @@
|
|||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Http" Version="3.1.32" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.32" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" />
|
||||||
<PackageReference Include="System.Text.Json" Version="8.0.4" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -1,11 +1,6 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.SharedApis;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
@@ -16,26 +11,14 @@ namespace CryptoExchange.Net
|
|||||||
{
|
{
|
||||||
private const string _allowedRandomChars = "ABCDEFGHIJKLMONOPQRSTUVWXYZabcdefghijklmonopqrstuvwxyz0123456789";
|
private const string _allowedRandomChars = "ABCDEFGHIJKLMONOPQRSTUVWXYZabcdefghijklmonopqrstuvwxyz0123456789";
|
||||||
|
|
||||||
private static readonly Dictionary<int, string> _monthSymbols = new Dictionary<int, string>()
|
|
||||||
{
|
|
||||||
{ 1, "F" },
|
|
||||||
{ 2, "G" },
|
|
||||||
{ 3, "H" },
|
|
||||||
{ 4, "J" },
|
|
||||||
{ 5, "K" },
|
|
||||||
{ 6, "M" },
|
|
||||||
{ 7, "N" },
|
|
||||||
{ 8, "Q" },
|
|
||||||
{ 9, "U" },
|
|
||||||
{ 10, "V" },
|
|
||||||
{ 11, "X" },
|
|
||||||
{ 12, "Z" },
|
|
||||||
};
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The last used id, use NextId() to get the next id and up this
|
/// The last used id, use NextId() to get the next id and up this
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private static int _lastId;
|
private static int _lastId;
|
||||||
|
/// <summary>
|
||||||
|
/// Lock for id generating
|
||||||
|
/// </summary>
|
||||||
|
private static object _idLock = new();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Clamp a value between a min and max
|
/// Clamp a value between a min and max
|
||||||
@@ -75,11 +58,6 @@ namespace CryptoExchange.Net
|
|||||||
{
|
{
|
||||||
value -= offset;
|
value -= offset;
|
||||||
}
|
}
|
||||||
else if(roundingType == RoundingType.Up)
|
|
||||||
{
|
|
||||||
if (offset != 0)
|
|
||||||
value += (step.Value - offset);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (offset < step / 2)
|
if (offset < step / 2)
|
||||||
@@ -132,23 +110,17 @@ namespace CryptoExchange.Net
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Rounds a value down
|
/// Rounds a value down to
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="i"></param>
|
||||||
|
/// <param name="decimalPlaces"></param>
|
||||||
|
/// <returns></returns>
|
||||||
public static decimal RoundDown(decimal i, double decimalPlaces)
|
public static decimal RoundDown(decimal i, double decimalPlaces)
|
||||||
{
|
{
|
||||||
var power = Convert.ToDecimal(Math.Pow(10, decimalPlaces));
|
var power = Convert.ToDecimal(Math.Pow(10, decimalPlaces));
|
||||||
return Math.Floor(i * power) / power;
|
return Math.Floor(i * power) / power;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Rounds a value up
|
|
||||||
/// </summary>
|
|
||||||
public static decimal RoundUp(decimal i, double decimalPlaces)
|
|
||||||
{
|
|
||||||
var power = Convert.ToDecimal(Math.Pow(10, decimalPlaces));
|
|
||||||
return Math.Ceiling(i * power) / power;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Strips any trailing zero's of a decimal value, useful when converting the value to string.
|
/// Strips any trailing zero's of a decimal value, useful when converting the value to string.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -163,13 +135,24 @@ namespace CryptoExchange.Net
|
|||||||
/// Generate a new unique id. The id is staticly stored so it is guarenteed to be unique
|
/// Generate a new unique id. The id is staticly stored so it is guarenteed to be unique
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static int NextId() => Interlocked.Increment(ref _lastId);
|
public static int NextId()
|
||||||
|
{
|
||||||
|
lock (_idLock)
|
||||||
|
{
|
||||||
|
_lastId += 1;
|
||||||
|
return _lastId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Return the last unique id that was generated
|
/// Return the last unique id that was generated
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static int LastId() => _lastId;
|
public static int LastId()
|
||||||
|
{
|
||||||
|
lock (_idLock)
|
||||||
|
return _lastId;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Generate a random string of specified length
|
/// Generate a random string of specified length
|
||||||
@@ -208,70 +191,5 @@ namespace CryptoExchange.Net
|
|||||||
|
|
||||||
return source + RandomString(totalLength - source.Length);
|
return source + RandomString(totalLength - source.Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get the month representation for futures symbol based on the delivery month
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="time">Delivery time</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static string GetDeliveryMonthSymbol(DateTime time) => _monthSymbols[time.Month];
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Execute multiple requests to retrieve multiple pages of the result set
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T">Type of the client</typeparam>
|
|
||||||
/// <typeparam name="U">Type of the request</typeparam>
|
|
||||||
/// <param name="paginatedFunc">The func to execute with each request</param>
|
|
||||||
/// <param name="request">The request parameters</param>
|
|
||||||
/// <param name="ct">Cancellation token</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static async IAsyncEnumerable<ExchangeWebResult<IEnumerable<T>>> ExecutePages<T, U>(Func<U, INextPageToken?, CancellationToken, Task<ExchangeWebResult<IEnumerable<T>>>> paginatedFunc, U request, [EnumeratorCancellation]CancellationToken ct = default)
|
|
||||||
{
|
|
||||||
var result = new List<T>();
|
|
||||||
ExchangeWebResult<IEnumerable<T>> batch;
|
|
||||||
INextPageToken? nextPageToken = null;
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
batch = await paginatedFunc(request, nextPageToken, ct).ConfigureAwait(false);
|
|
||||||
yield return batch;
|
|
||||||
if (!batch || ct.IsCancellationRequested)
|
|
||||||
break;
|
|
||||||
|
|
||||||
result.AddRange(batch.Data);
|
|
||||||
nextPageToken = batch.NextPageToken;
|
|
||||||
if (nextPageToken == null)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Apply the rules (price and quantity step size and decimals precision, min/max quantity) from the symbol to the quantity and price
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="symbol">The symbol as retrieved from the exchange</param>
|
|
||||||
/// <param name="quantity">Quantity to trade</param>
|
|
||||||
/// <param name="price">Price to trade at</param>
|
|
||||||
/// <param name="adjustedQuantity">Quantity adjusted to match all trading rules</param>
|
|
||||||
/// <param name="adjustedPrice">Price adjusted to match all trading rules</param>
|
|
||||||
public static void ApplySymbolRules(SharedSpotSymbol symbol, decimal quantity, decimal? price, out decimal adjustedQuantity, out decimal? adjustedPrice)
|
|
||||||
{
|
|
||||||
adjustedPrice = price;
|
|
||||||
adjustedQuantity = quantity;
|
|
||||||
var minNotionalAdjust = false;
|
|
||||||
|
|
||||||
if (price != null)
|
|
||||||
{
|
|
||||||
adjustedPrice = AdjustValueStep(0, decimal.MaxValue, symbol.PriceStep, RoundingType.Down, price.Value);
|
|
||||||
adjustedPrice = symbol.PriceDecimals.HasValue ? RoundDown(price.Value, symbol.PriceDecimals.Value) : adjustedPrice;
|
|
||||||
if (adjustedPrice != 0 && adjustedPrice * quantity < symbol.MinNotionalValue)
|
|
||||||
{
|
|
||||||
adjustedQuantity = symbol.MinNotionalValue.Value / adjustedPrice.Value;
|
|
||||||
minNotionalAdjust = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
adjustedQuantity = AdjustValueStep(symbol.MinTradeQuantity ?? 0, symbol.MaxTradeQuantity ?? decimal.MaxValue, symbol.QuantityStep, minNotionalAdjust ? RoundingType.Up : RoundingType.Down, adjustedQuantity);
|
|
||||||
adjustedQuantity = symbol.QuantityDecimals.HasValue ? (minNotionalAdjust ? RoundUp(adjustedQuantity, symbol.QuantityDecimals.Value) : RoundDown(adjustedQuantity, symbol.QuantityDecimals.Value)) : adjustedQuantity;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO.Compression;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Security;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using System.Globalization;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Newtonsoft.Json;
|
||||||
using CryptoExchange.Net.SharedApis;
|
using Newtonsoft.Json.Linq;
|
||||||
|
|
||||||
namespace CryptoExchange.Net
|
namespace CryptoExchange.Net
|
||||||
{
|
{
|
||||||
@@ -29,6 +29,18 @@ namespace CryptoExchange.Net
|
|||||||
parameters.Add(key, value);
|
parameters.Add(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a parameter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="parameters"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="value"></param>
|
||||||
|
/// <param name="converter"></param>
|
||||||
|
public static void AddParameter(this Dictionary<string, object> parameters, string key, string value, JsonConverter converter)
|
||||||
|
{
|
||||||
|
parameters.Add(key, JsonConvert.SerializeObject(value, converter));
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a parameter
|
/// Add a parameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -40,6 +52,18 @@ namespace CryptoExchange.Net
|
|||||||
parameters.Add(key, value);
|
parameters.Add(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a parameter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="parameters"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="value"></param>
|
||||||
|
/// <param name="converter"></param>
|
||||||
|
public static void AddParameter(this Dictionary<string, object> parameters, string key, object value, JsonConverter converter)
|
||||||
|
{
|
||||||
|
parameters.Add(key, JsonConvert.SerializeObject(value, converter));
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add an optional parameter. Not added if value is null
|
/// Add an optional parameter. Not added if value is null
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -52,6 +76,19 @@ namespace CryptoExchange.Net
|
|||||||
parameters.Add(key, value);
|
parameters.Add(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add an optional parameter. Not added if value is null
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="parameters"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="value"></param>
|
||||||
|
/// <param name="converter"></param>
|
||||||
|
public static void AddOptionalParameter(this Dictionary<string, object> parameters, string key, object? value, JsonConverter converter)
|
||||||
|
{
|
||||||
|
if (value != null)
|
||||||
|
parameters.Add(key, JsonConvert.SerializeObject(value, converter));
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a query string of the specified parameters
|
/// Create a query string of the specified parameters
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -59,7 +96,7 @@ namespace CryptoExchange.Net
|
|||||||
/// <param name="urlEncodeValues">Whether or not the values should be url encoded</param>
|
/// <param name="urlEncodeValues">Whether or not the values should be url encoded</param>
|
||||||
/// <param name="serializationType">How to serialize array parameters</param>
|
/// <param name="serializationType">How to serialize array parameters</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static string CreateParamString(this IDictionary<string, object> parameters, bool urlEncodeValues, ArrayParametersSerialization serializationType)
|
public static string CreateParamString(this Dictionary<string, object> parameters, bool urlEncodeValues, ArrayParametersSerialization serializationType)
|
||||||
{
|
{
|
||||||
var uriString = string.Empty;
|
var uriString = string.Empty;
|
||||||
var arraysParameters = parameters.Where(p => p.Value.GetType().IsArray).ToList();
|
var arraysParameters = parameters.Where(p => p.Value.GetType().IsArray).ToList();
|
||||||
@@ -67,22 +104,17 @@ namespace CryptoExchange.Net
|
|||||||
{
|
{
|
||||||
if (serializationType == ArrayParametersSerialization.Array)
|
if (serializationType == ArrayParametersSerialization.Array)
|
||||||
{
|
{
|
||||||
uriString += $"{string.Join("&", ((object[])(urlEncodeValues ? Uri.EscapeDataString(arrayEntry.Value.ToString()) : arrayEntry.Value)).Select(v => $"{arrayEntry.Key}[]={string.Format(CultureInfo.InvariantCulture, "{0}", v)}"))}&";
|
uriString += $"{string.Join("&", ((object[])(urlEncodeValues ? Uri.EscapeDataString(arrayEntry.Value.ToString()) : arrayEntry.Value)).Select(v => $"{arrayEntry.Key}[]={v}"))}&";
|
||||||
}
|
|
||||||
else if (serializationType == ArrayParametersSerialization.MultipleValues)
|
|
||||||
{
|
|
||||||
var array = (Array)arrayEntry.Value;
|
|
||||||
uriString += string.Join("&", array.OfType<object>().Select(a => $"{arrayEntry.Key}={Uri.EscapeDataString(string.Format(CultureInfo.InvariantCulture, "{0}", a))}"));
|
|
||||||
uriString += "&";
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var array = (Array)arrayEntry.Value;
|
var array = (Array)arrayEntry.Value;
|
||||||
uriString += $"{arrayEntry.Key}=[{string.Join(",", array.OfType<object>().Select(a => string.Format(CultureInfo.InvariantCulture, "{0}", a)))}]&";
|
uriString += string.Join("&", array.OfType<object>().Select(a => $"{arrayEntry.Key}={Uri.EscapeDataString(a.ToString())}"));
|
||||||
|
uriString += "&";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uriString += $"{string.Join("&", parameters.Where(p => !p.Value.GetType().IsArray).Select(s => $"{s.Key}={(urlEncodeValues ? Uri.EscapeDataString(string.Format(CultureInfo.InvariantCulture, "{0}", s.Value)) : string.Format(CultureInfo.InvariantCulture, "{0}", s.Value))}"))}";
|
uriString += $"{string.Join("&", parameters.Where(p => !p.Value.GetType().IsArray).Select(s => $"{s.Key}={(urlEncodeValues ? Uri.EscapeDataString(s.Value.ToString()) : s.Value)}"))}";
|
||||||
uriString = uriString.TrimEnd('&');
|
uriString = uriString.TrimEnd('&');
|
||||||
return uriString;
|
return uriString;
|
||||||
}
|
}
|
||||||
@@ -92,27 +124,142 @@ namespace CryptoExchange.Net
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="parameters"></param>
|
/// <param name="parameters"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static string ToFormData(this IDictionary<string, object> parameters)
|
public static string ToFormData(this SortedDictionary<string, object> parameters)
|
||||||
{
|
{
|
||||||
var formData = HttpUtility.ParseQueryString(string.Empty);
|
var formData = HttpUtility.ParseQueryString(string.Empty);
|
||||||
foreach (var kvp in parameters)
|
foreach (var kvp in parameters)
|
||||||
{
|
{
|
||||||
if (kvp.Value is null)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (kvp.Value.GetType().IsArray)
|
if (kvp.Value.GetType().IsArray)
|
||||||
{
|
{
|
||||||
var array = (Array)kvp.Value;
|
var array = (Array)kvp.Value;
|
||||||
foreach (var value in array)
|
foreach (var value in array)
|
||||||
formData.Add(kvp.Key, string.Format(CultureInfo.InvariantCulture, "{0}", value));
|
formData.Add(kvp.Key, value.ToString());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
formData.Add(kvp.Key, string.Format(CultureInfo.InvariantCulture, "{0}", kvp.Value));
|
formData.Add(kvp.Key, kvp.Value.ToString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return formData.ToString();
|
return formData.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get the string the secure string is representing
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="source">The source secure string</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static string GetString(this SecureString source)
|
||||||
|
{
|
||||||
|
lock (source)
|
||||||
|
{
|
||||||
|
string result;
|
||||||
|
var length = source.Length;
|
||||||
|
var pointer = IntPtr.Zero;
|
||||||
|
var chars = new char[length];
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
pointer = Marshal.SecureStringToBSTR(source);
|
||||||
|
Marshal.Copy(pointer, chars, 0, length);
|
||||||
|
|
||||||
|
result = string.Join("", chars);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
if (pointer != IntPtr.Zero)
|
||||||
|
{
|
||||||
|
Marshal.ZeroFreeBSTR(pointer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Are 2 secure strings equal
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="ss1">Source secure string</param>
|
||||||
|
/// <param name="ss2">Compare secure string</param>
|
||||||
|
/// <returns>True if equal by value</returns>
|
||||||
|
public static bool IsEqualTo(this SecureString ss1, SecureString ss2)
|
||||||
|
{
|
||||||
|
IntPtr bstr1 = IntPtr.Zero;
|
||||||
|
IntPtr bstr2 = IntPtr.Zero;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
bstr1 = Marshal.SecureStringToBSTR(ss1);
|
||||||
|
bstr2 = Marshal.SecureStringToBSTR(ss2);
|
||||||
|
int length1 = Marshal.ReadInt32(bstr1, -4);
|
||||||
|
int length2 = Marshal.ReadInt32(bstr2, -4);
|
||||||
|
if (length1 == length2)
|
||||||
|
{
|
||||||
|
for (int x = 0; x < length1; ++x)
|
||||||
|
{
|
||||||
|
byte b1 = Marshal.ReadByte(bstr1, x);
|
||||||
|
byte b2 = Marshal.ReadByte(bstr2, x);
|
||||||
|
if (b1 != b2) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
if (bstr2 != IntPtr.Zero) Marshal.ZeroFreeBSTR(bstr2);
|
||||||
|
if (bstr1 != IntPtr.Zero) Marshal.ZeroFreeBSTR(bstr1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create a secure string from a string
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="source"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static SecureString ToSecureString(this string source)
|
||||||
|
{
|
||||||
|
var secureString = new SecureString();
|
||||||
|
foreach (var c in source)
|
||||||
|
secureString.AppendChar(c);
|
||||||
|
secureString.MakeReadOnly();
|
||||||
|
return secureString;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// String to JToken
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="stringData"></param>
|
||||||
|
/// <param name="logger"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static JToken? ToJToken(this string stringData, ILogger? logger = null)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(stringData))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return JToken.Parse(stringData);
|
||||||
|
}
|
||||||
|
catch (JsonReaderException jre)
|
||||||
|
{
|
||||||
|
var info = $"Deserialize JsonReaderException: {jre.Message}, Path: {jre.Path}, LineNumber: {jre.LineNumber}, LinePosition: {jre.LinePosition}. Data: {stringData}";
|
||||||
|
logger?.Log(LogLevel.Error, info);
|
||||||
|
if (logger == null) Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | {info}");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
catch (JsonSerializationException jse)
|
||||||
|
{
|
||||||
|
var info = $"Deserialize JsonSerializationException: {jse.Message}. Data: {stringData}";
|
||||||
|
logger?.Log(LogLevel.Error, info);
|
||||||
|
if (logger == null) Trace.WriteLine($"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | Warning | {info}");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Validates an int is one of the allowed values
|
/// Validates an int is one of the allowed values
|
||||||
@@ -233,6 +380,26 @@ namespace CryptoExchange.Net
|
|||||||
return url.TrimEnd('/');
|
return url.TrimEnd('/');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Fill parameters in a path. Parameters are specified by '{}' and should be specified in occuring sequence
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="path">The total path string</param>
|
||||||
|
/// <param name="values">The values to fill</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static string FillPathParameters(this string path, params string[] values)
|
||||||
|
{
|
||||||
|
foreach (var value in values)
|
||||||
|
{
|
||||||
|
var index = path.IndexOf("{}", StringComparison.Ordinal);
|
||||||
|
if (index >= 0)
|
||||||
|
{
|
||||||
|
path = path.Remove(index, 2);
|
||||||
|
path = path.Insert(index, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new uri with the provided parameters as query
|
/// Create a new uri with the provided parameters as query
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -240,7 +407,7 @@ namespace CryptoExchange.Net
|
|||||||
/// <param name="baseUri"></param>
|
/// <param name="baseUri"></param>
|
||||||
/// <param name="arraySerialization"></param>
|
/// <param name="arraySerialization"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static Uri SetParameters(this Uri baseUri, IDictionary<string, object> parameters, ArrayParametersSerialization arraySerialization)
|
public static Uri SetParameters(this Uri baseUri, SortedDictionary<string, object> parameters, ArrayParametersSerialization arraySerialization)
|
||||||
{
|
{
|
||||||
var uriBuilder = new UriBuilder();
|
var uriBuilder = new UriBuilder();
|
||||||
uriBuilder.Scheme = baseUri.Scheme;
|
uriBuilder.Scheme = baseUri.Scheme;
|
||||||
@@ -250,26 +417,10 @@ namespace CryptoExchange.Net
|
|||||||
var httpValueCollection = HttpUtility.ParseQueryString(string.Empty);
|
var httpValueCollection = HttpUtility.ParseQueryString(string.Empty);
|
||||||
foreach (var parameter in parameters)
|
foreach (var parameter in parameters)
|
||||||
{
|
{
|
||||||
if (parameter.Value.GetType().IsArray)
|
if(parameter.Value.GetType().IsArray)
|
||||||
{
|
{
|
||||||
if (arraySerialization == ArrayParametersSerialization.JsonArray)
|
foreach (var item in (object[])parameter.Value)
|
||||||
{
|
httpValueCollection.Add(arraySerialization == ArrayParametersSerialization.Array ? parameter.Key + "[]" : parameter.Key, item.ToString());
|
||||||
httpValueCollection.Add(parameter.Key, $"[{string.Join(",", (object[])parameter.Value)}]");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
foreach (var item in (object[])parameter.Value)
|
|
||||||
{
|
|
||||||
if (arraySerialization == ArrayParametersSerialization.Array)
|
|
||||||
{
|
|
||||||
httpValueCollection.Add(parameter.Key + "[]", item.ToString());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
httpValueCollection.Add(parameter.Key, item.ToString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -299,24 +450,8 @@ namespace CryptoExchange.Net
|
|||||||
{
|
{
|
||||||
if (parameter.Value.GetType().IsArray)
|
if (parameter.Value.GetType().IsArray)
|
||||||
{
|
{
|
||||||
if (arraySerialization == ArrayParametersSerialization.JsonArray)
|
foreach (var item in (object[])parameter.Value)
|
||||||
{
|
httpValueCollection.Add(arraySerialization == ArrayParametersSerialization.Array ? parameter.Key + "[]" : parameter.Key, item.ToString());
|
||||||
httpValueCollection.Add(parameter.Key, $"[{string.Join(",", (object[])parameter.Value)}]");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
foreach (var item in (object[])parameter.Value)
|
|
||||||
{
|
|
||||||
if (arraySerialization == ArrayParametersSerialization.Array)
|
|
||||||
{
|
|
||||||
httpValueCollection.Add(parameter.Key + "[]", item.ToString());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
httpValueCollection.Add(parameter.Key, item.ToString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -346,149 +481,6 @@ namespace CryptoExchange.Net
|
|||||||
|
|
||||||
return ub.Uri;
|
return ub.Uri;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Decompress using GzipStream
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="data"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static ReadOnlyMemory<byte> DecompressGzip(this ReadOnlyMemory<byte> data)
|
|
||||||
{
|
|
||||||
using var decompressedStream = new MemoryStream();
|
|
||||||
using var dataStream = MemoryMarshal.TryGetArray(data, out var arraySegment)
|
|
||||||
? new MemoryStream(arraySegment.Array, arraySegment.Offset, arraySegment.Count)
|
|
||||||
: new MemoryStream(data.ToArray());
|
|
||||||
using var deflateStream = new GZipStream(new MemoryStream(data.ToArray()), CompressionMode.Decompress);
|
|
||||||
deflateStream.CopyTo(decompressedStream);
|
|
||||||
return new ReadOnlyMemory<byte>(decompressedStream.GetBuffer(), 0, (int)decompressedStream.Length);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Decompress using DeflateStream
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="input"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static ReadOnlyMemory<byte> Decompress(this ReadOnlyMemory<byte> input)
|
|
||||||
{
|
|
||||||
var output = new MemoryStream();
|
|
||||||
|
|
||||||
using (var compressStream = new MemoryStream(input.ToArray()))
|
|
||||||
using (var decompressor = new DeflateStream(compressStream, CompressionMode.Decompress))
|
|
||||||
decompressor.CopyTo(output);
|
|
||||||
|
|
||||||
output.Position = 0;
|
|
||||||
return new ReadOnlyMemory<byte>(output.GetBuffer(), 0, (int)output.Length);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether the trading mode is linear
|
|
||||||
/// </summary>
|
|
||||||
public static bool IsLinear(this TradingMode type) => type == TradingMode.PerpetualLinear || type == TradingMode.DeliveryLinear;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether the trading mode is inverse
|
|
||||||
/// </summary>
|
|
||||||
public static bool IsInverse(this TradingMode type) => type == TradingMode.PerpetualInverse || type == TradingMode.DeliveryInverse;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether the trading mode is perpetual
|
|
||||||
/// </summary>
|
|
||||||
public static bool IsPerpetual(this TradingMode type) => type == TradingMode.PerpetualInverse || type == TradingMode.PerpetualLinear;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether the trading mode is delivery
|
|
||||||
/// </summary>
|
|
||||||
public static bool IsDelivery(this TradingMode type) => type == TradingMode.DeliveryInverse || type == TradingMode.DeliveryLinear;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Register rest client interfaces
|
|
||||||
/// </summary>
|
|
||||||
public static IServiceCollection RegisterSharedRestInterfaces<T>(this IServiceCollection services, Func<IServiceProvider, T> client)
|
|
||||||
{
|
|
||||||
if (typeof(IAssetsRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IAssetsRestClient)client(x)!);
|
|
||||||
if (typeof(IBalanceRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IBalanceRestClient)client(x)!);
|
|
||||||
if (typeof(IDepositRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IDepositRestClient)client(x)!);
|
|
||||||
if (typeof(IKlineRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IKlineRestClient)client(x)!);
|
|
||||||
if (typeof(IListenKeyRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IListenKeyRestClient)client(x)!);
|
|
||||||
if (typeof(IOrderBookRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IOrderBookRestClient)client(x)!);
|
|
||||||
if (typeof(IRecentTradeRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IRecentTradeRestClient)client(x)!);
|
|
||||||
if (typeof(ITradeHistoryRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ITradeHistoryRestClient)client(x)!);
|
|
||||||
if (typeof(IWithdrawalRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IWithdrawalRestClient)client(x)!);
|
|
||||||
if (typeof(IWithdrawRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IWithdrawRestClient)client(x)!);
|
|
||||||
|
|
||||||
if (typeof(ISpotOrderRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ISpotOrderRestClient)client(x)!);
|
|
||||||
if (typeof(ISpotSymbolRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ISpotSymbolRestClient)client(x)!);
|
|
||||||
if (typeof(ISpotTickerRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ISpotTickerRestClient)client(x)!);
|
|
||||||
|
|
||||||
if (typeof(IFundingRateRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IFundingRateRestClient)client(x)!);
|
|
||||||
if (typeof(IFuturesOrderRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IFuturesOrderRestClient)client(x)!);
|
|
||||||
if (typeof(IFuturesSymbolRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IFuturesSymbolRestClient)client(x)!);
|
|
||||||
if (typeof(IFuturesTickerRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IFuturesTickerRestClient)client(x)!);
|
|
||||||
if (typeof(IIndexPriceKlineRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IIndexPriceKlineRestClient)client(x)!);
|
|
||||||
if (typeof(ILeverageRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ILeverageRestClient)client(x)!);
|
|
||||||
if (typeof(IMarkPriceKlineRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IMarkPriceKlineRestClient)client(x)!);
|
|
||||||
if (typeof(IOpenInterestRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IOpenInterestRestClient)client(x)!);
|
|
||||||
if (typeof(IPositionHistoryRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IPositionHistoryRestClient)client(x)!);
|
|
||||||
if (typeof(IPositionModeRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IPositionModeRestClient)client(x)!);
|
|
||||||
|
|
||||||
return services;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Register socket client interfaces
|
|
||||||
/// </summary>
|
|
||||||
public static IServiceCollection RegisterSharedSocketInterfaces<T>(this IServiceCollection services, Func<IServiceProvider, T> client)
|
|
||||||
{
|
|
||||||
if (typeof(IBalanceSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IBalanceSocketClient)client(x)!);
|
|
||||||
if (typeof(IBookTickerSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IBookTickerSocketClient)client(x)!);
|
|
||||||
if (typeof(IKlineSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IKlineSocketClient)client(x)!);
|
|
||||||
if (typeof(IOrderBookRestClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IOrderBookRestClient)client(x)!);
|
|
||||||
if (typeof(ITickerSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ITickerSocketClient)client(x)!);
|
|
||||||
if (typeof(ITickersSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ITickersSocketClient)client(x)!);
|
|
||||||
if (typeof(ITradeSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ITradeSocketClient)client(x)!);
|
|
||||||
if (typeof(IUserTradeSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IUserTradeSocketClient)client(x)!);
|
|
||||||
|
|
||||||
if (typeof(ISpotOrderSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (ISpotOrderSocketClient)client(x)!);
|
|
||||||
|
|
||||||
if (typeof(IFuturesOrderSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IFuturesOrderSocketClient)client(x)!);
|
|
||||||
if (typeof(IPositionSocketClient).IsAssignableFrom(typeof(T)))
|
|
||||||
services.AddTransient(x => (IPositionSocketClient)client(x)!);
|
|
||||||
|
|
||||||
return services;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,87 +8,131 @@ using System.Threading.Tasks;
|
|||||||
namespace CryptoExchange.Net.Interfaces.CommonClients
|
namespace CryptoExchange.Net.Interfaces.CommonClients
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Common rest client endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IBaseRestClient
|
public interface IBaseRestClient
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// The name of the exchange
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string ExchangeName { get; }
|
string ExchangeName { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Should be triggered on order placing
|
||||||
/// </summary>
|
/// </summary>
|
||||||
event Action<OrderId> OnOrderPlaced;
|
event Action<OrderId> OnOrderPlaced;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Should be triggered on order cancelling
|
||||||
/// </summary>
|
/// </summary>
|
||||||
event Action<OrderId> OnOrderCanceled;
|
event Action<OrderId> OnOrderCanceled;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get the symbol name based on a base and quote asset
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="baseAsset">The base asset</param>
|
||||||
|
/// <param name="quoteAsset">The quote asset</param>
|
||||||
|
/// <returns></returns>
|
||||||
string GetSymbolName(string baseAsset, string quoteAsset);
|
string GetSymbolName(string baseAsset, string quoteAsset);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get a list of symbols for the exchange
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Symbol>>> GetSymbolsAsync(CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Symbol>>> GetSymbolsAsync(CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get a ticker for the exchange
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">The symbol to get klines for</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<Ticker>> GetTickerAsync(string symbol, CancellationToken ct = default);
|
Task<WebCallResult<Ticker>> GetTickerAsync(string symbol, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get a list of tickers for the exchange
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Ticker>>> GetTickersAsync(CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Ticker>>> GetTickersAsync(CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get a list of candles for a given symbol on the exchange
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">The symbol to retrieve the candles for</param>
|
||||||
|
/// <param name="timespan">The timespan to retrieve the candles for. The supported value are dependent on the exchange</param>
|
||||||
|
/// <param name="startTime">[Optional] Start time to retrieve klines for</param>
|
||||||
|
/// <param name="endTime">[Optional] End time to retrieve klines for</param>
|
||||||
|
/// <param name="limit">[Optional] Max number of results</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Kline>>> GetKlinesAsync(string symbol, TimeSpan timespan, DateTime? startTime = null, DateTime? endTime = null, int? limit = null, CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Kline>>> GetKlinesAsync(string symbol, TimeSpan timespan, DateTime? startTime = null, DateTime? endTime = null, int? limit = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get the order book for a symbol
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">The symbol to get the book for</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<CommonObjects.OrderBook>> GetOrderBookAsync(string symbol, CancellationToken ct = default);
|
Task<WebCallResult<CommonObjects.OrderBook>> GetOrderBookAsync(string symbol, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// The recent trades for a symbol
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">The symbol to get the trades for</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Trade>>> GetRecentTradesAsync(string symbol, CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Trade>>> GetRecentTradesAsync(string symbol, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get balances
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="accountId">[Optional] The account id to retrieve balances for, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Balance>>> GetBalancesAsync(string? accountId = null, CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Balance>>> GetBalancesAsync(string? accountId = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get an order by id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="orderId">The id</param>
|
||||||
|
/// <param name="symbol">[Optional] The symbol the order is on, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<Order>> GetOrderAsync(string orderId, string? symbol = null, CancellationToken ct = default);
|
Task<WebCallResult<Order>> GetOrderAsync(string orderId, string? symbol = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get trades for an order by id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="orderId">The id</param>
|
||||||
|
/// <param name="symbol">[Optional] The symbol the order is on, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<UserTrade>>> GetOrderTradesAsync(string orderId, string? symbol = null, CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<UserTrade>>> GetOrderTradesAsync(string orderId, string? symbol = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get a list of open orders
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">[Optional] The symbol to get open orders for, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Order>>> GetOpenOrdersAsync(string? symbol = null, CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Order>>> GetOpenOrdersAsync(string? symbol = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get a list of closed orders
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">[Optional] The symbol to get closed orders for, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Order>>> GetClosedOrdersAsync(string? symbol = null, CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Order>>> GetClosedOrdersAsync(string? symbol = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Cancel an order by id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="orderId">The id</param>
|
||||||
|
/// <param name="symbol">[Optional] The symbol the order is on, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<OrderId>> CancelOrderAsync(string orderId, string? symbol = null, CancellationToken ct = default);
|
Task<WebCallResult<OrderId>> CancelOrderAsync(string orderId, string? symbol = null, CancellationToken ct = default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,18 +7,30 @@ using CryptoExchange.Net.Objects;
|
|||||||
namespace CryptoExchange.Net.Interfaces.CommonClients
|
namespace CryptoExchange.Net.Interfaces.CommonClients
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Common futures endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IFuturesClient : IBaseRestClient
|
public interface IFuturesClient : IBaseRestClient
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Place an order
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">The symbol the order is for</param>
|
||||||
|
/// <param name="side">The side of the order</param>
|
||||||
|
/// <param name="type">The type of the order</param>
|
||||||
|
/// <param name="quantity">The quantity of the order</param>
|
||||||
|
/// <param name="price">The price of the order, only for limit orders</param>
|
||||||
|
/// <param name="accountId">[Optional] The account id to place the order on, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="leverage">[Optional] Leverage for this order. This is needed for some exchanges. For exchanges where this is not needed this parameter is ignored (and should be set before hand)</param>
|
||||||
|
/// <param name="clientOrderId">[Optional] Client specified id for this order</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns>The id of the resulting order</returns>
|
||||||
Task<WebCallResult<OrderId>> PlaceOrderAsync(string symbol, CommonOrderSide side, CommonOrderType type, decimal quantity, decimal? price = null, int? leverage = null, string? accountId = null, string? clientOrderId = null, CancellationToken ct = default);
|
Task<WebCallResult<OrderId>> PlaceOrderAsync(string symbol, CommonOrderSide side, CommonOrderType type, decimal quantity, decimal? price = null, int? leverage = null, string? accountId = null, string? clientOrderId = null, CancellationToken ct = default);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Get position
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<WebCallResult<IEnumerable<Position>>> GetPositionsAsync(CancellationToken ct = default);
|
Task<WebCallResult<IEnumerable<Position>>> GetPositionsAsync(CancellationToken ct = default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,13 +6,22 @@ using System.Threading.Tasks;
|
|||||||
namespace CryptoExchange.Net.Interfaces.CommonClients
|
namespace CryptoExchange.Net.Interfaces.CommonClients
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="" /> for more info.
|
/// Common spot endpoints
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ISpotClient: IBaseRestClient
|
public interface ISpotClient: IBaseRestClient
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// DEPRECATED; use <see cref="SharedApis.ISharedClient" /> instead for common/shared functionality. See <see href="https://jkorf.github.io/CryptoExchange.Net/docs/index.html#shared" /> for more info.
|
/// Place an order
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="symbol">The symbol the order is for</param>
|
||||||
|
/// <param name="side">The side of the order</param>
|
||||||
|
/// <param name="type">The type of the order</param>
|
||||||
|
/// <param name="quantity">The quantity of the order</param>
|
||||||
|
/// <param name="price">The price of the order, only for limit orders</param>
|
||||||
|
/// <param name="accountId">[Optional] The account id to place the order on, required for some exchanges, ignored otherwise</param>
|
||||||
|
/// <param name="clientOrderId">[Optional] Client specified id for this order</param>
|
||||||
|
/// <param name="ct">[Optional] Cancellation token for cancelling the request</param>
|
||||||
|
/// <returns>The id of the resulting order</returns>
|
||||||
Task<WebCallResult<OrderId>> PlaceOrderAsync(string symbol, CommonOrderSide side, CommonOrderType type, decimal quantity, decimal? price = null, string? accountId = null, string? clientOrderId = null, CancellationToken ct = default);
|
Task<WebCallResult<OrderId>> PlaceOrderAsync(string symbol, CommonOrderSide side, CommonOrderType type, decimal quantity, decimal? price = null, string? accountId = null, string? clientOrderId = null, CancellationToken ct = default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Interfaces
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Time provider
|
|
||||||
/// </summary>
|
|
||||||
internal interface IAuthTimeProvider
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Get current time
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
DateTime GetTime();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
using CryptoExchange.Net.Authentication;
|
using CryptoExchange.Net.Authentication;
|
||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using CryptoExchange.Net.SharedApis;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Interfaces
|
namespace CryptoExchange.Net.Interfaces
|
||||||
{
|
{
|
||||||
@@ -15,16 +12,6 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
string BaseAddress { get; }
|
string BaseAddress { get; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Format a base and quote asset to an exchange accepted symbol
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="baseAsset">The base asset</param>
|
|
||||||
/// <param name="quoteAsset">The quote asset</param>
|
|
||||||
/// <param name="tradingMode">The trading mode</param>
|
|
||||||
/// <param name="deliverDate">The deliver date for a delivery futures symbol</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
string FormatSymbol(string baseAsset, string quoteAsset, TradingMode tradingMode, DateTime? deliverDate = null);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Set the API credentials for this API client
|
/// Set the API credentials for this API client
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
using CryptoExchange.Net.Interfaces.CommonClients;
|
using CryptoExchange.Net.Interfaces.CommonClients;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Interfaces
|
namespace CryptoExchange.Net.Interfaces
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
using System;
|
using CryptoExchange.Net.Interfaces.CommonClients;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Interfaces
|
namespace CryptoExchange.Net.Interfaces
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using CryptoExchange.Net.Sockets;
|
using CryptoExchange.Net.Sockets;
|
||||||
|
using CryptoExchange.Net.Sockets.MessageParsing.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -26,7 +27,7 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// <param name="connection"></param>
|
/// <param name="connection"></param>
|
||||||
/// <param name="message"></param>
|
/// <param name="message"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<CallResult> Handle(SocketConnection connection, DataEvent<object> message);
|
Task<CallResult> HandleAsync(SocketConnection connection, DataEvent<object> message);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the type the message should be deserialized to
|
/// Get the type the message should be deserialized to
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -34,11 +35,11 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Type? GetMessageType(IMessageAccessor messageAccessor);
|
Type? GetMessageType(IMessageAccessor messageAccessor);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deserialize a message into object of type
|
/// Deserialize a message int oobject of type
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="accessor"></param>
|
/// <param name="accessor"></param>
|
||||||
/// <param name="type"></param>
|
/// <param name="type"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
CallResult<object> Deserialize(IMessageAccessor accessor, Type type);
|
object Deserialize(IMessageAccessor accessor, Type type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
using CryptoExchange.Net.Objects.Options;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Interfaces
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Factory for ISymbolOrderBook instances
|
|
||||||
/// </summary>
|
|
||||||
public interface IOrderBookFactory<TOptions> where TOptions : OrderBookOptions
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Create a new order book by symbol name
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="symbol">Symbol name</param>
|
|
||||||
/// <param name="options">Options for the order book</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ISymbolOrderBook Create(string symbol, Action<TOptions>? options = null);
|
|
||||||
/// <summary>
|
|
||||||
/// Create a new order book by base and quote asset names
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="baseAsset">Base asset name</param>
|
|
||||||
/// <param name="quoteAsset">Quote asset name</param>
|
|
||||||
/// <param name="options">Options for the order book</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ISymbolOrderBook Create(string baseAsset, string quoteAsset, Action<TOptions>? options = null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
using System.Security;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@@ -23,6 +24,6 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// <param name="requestWeight">The weight of the request</param>
|
/// <param name="requestWeight">The weight of the request</param>
|
||||||
/// <param name="ct">Cancellation token to cancel waiting</param>
|
/// <param name="ct">Cancellation token to cancel waiting</param>
|
||||||
/// <returns>The time in milliseconds spend waiting</returns>
|
/// <returns>The time in milliseconds spend waiting</returns>
|
||||||
Task<CallResult<int>> LimitRequestAsync(ILogger log, string endpoint, HttpMethod method, bool signed, string? apiKey, RateLimitingBehaviour limitBehaviour, int requestWeight, CancellationToken ct);
|
Task<CallResult<int>> LimitRequestAsync(ILogger log, string endpoint, HttpMethod method, bool signed, SecureString? apiKey, RateLimitingBehaviour limitBehaviour, int requestWeight, CancellationToken ct);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,10 +17,5 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// The total amount of requests made with this client
|
/// The total amount of requests made with this client
|
||||||
/// </summary>
|
/// </summary>
|
||||||
int TotalRequestsMade { get; }
|
int TotalRequestsMade { get; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The exchange name
|
|
||||||
/// </summary>
|
|
||||||
string Exchange { get; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@@ -37,7 +36,7 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Log the current state of connections and subscriptions
|
/// Log the current state of connections and subscriptions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string GetSubscriptionsState(bool includeSubDetails = true);
|
string GetSubscriptionsState();
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reconnect all connections
|
/// Reconnect all connections
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -60,11 +59,5 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// <param name="subscription">The subscription to unsubscribe</param>
|
/// <param name="subscription">The subscription to unsubscribe</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task UnsubscribeAsync(UpdateSubscription subscription);
|
Task UnsubscribeAsync(UpdateSubscription subscription);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Prepare connections which can subsequently be used for sending websocket requests.
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
Task<CallResult> PrepareConnectionsAsync();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -10,11 +10,6 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ISocketClient: IDisposable
|
public interface ISocketClient: IDisposable
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// The exchange name
|
|
||||||
/// </summary>
|
|
||||||
string Exchange { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The options provided for this client
|
/// The options provided for this client
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -12,14 +12,9 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
public interface ISymbolOrderBook
|
public interface ISymbolOrderBook
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The exchange the book is for
|
/// Identifier
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string Exchange { get; }
|
string Id { get; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The Api the book is for
|
|
||||||
/// </summary>
|
|
||||||
string Api { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The status of the order book. Order book is up to date when the status is `Synced`
|
/// The status of the order book. Order book is up to date when the status is `Synced`
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
using System;
|
||||||
using System;
|
using System.IO;
|
||||||
using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@@ -17,20 +17,12 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Websocket message received event
|
/// Websocket message received event
|
||||||
/// </summary>
|
/// </summary>
|
||||||
event Func<WebSocketMessageType, ReadOnlyMemory<byte>, Task> OnStreamMessage;
|
event Func<WebSocketMessageType, Stream, Task> OnStreamMessage;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Websocket sent event, RequestId as parameter
|
/// Websocket sent event, RequestId as parameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
event Func<int, Task> OnRequestSent;
|
event Func<int, Task> OnRequestSent;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Websocket query was ratelimited and couldn't be send
|
|
||||||
/// </summary>
|
|
||||||
event Func<int, Task>? OnRequestRateLimited;
|
|
||||||
/// <summary>
|
|
||||||
/// Connection was ratelimited and couldn't be established
|
|
||||||
/// </summary>
|
|
||||||
event Func<Task>? OnConnectRateLimited;
|
|
||||||
/// <summary>
|
|
||||||
/// Websocket error event
|
/// Websocket error event
|
||||||
/// </summary>
|
/// </summary>
|
||||||
event Func<Exception, Task> OnError;
|
event Func<Exception, Task> OnError;
|
||||||
@@ -75,14 +67,14 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// Connect the socket
|
/// Connect the socket
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<CallResult> ConnectAsync();
|
Task<bool> ConnectAsync();
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send data
|
/// Send data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id"></param>
|
/// <param name="id"></param>
|
||||||
/// <param name="data"></param>
|
/// <param name="data"></param>
|
||||||
/// <param name="weight"></param>
|
/// <param name="weight"></param>
|
||||||
bool Send(int id, string data, int weight);
|
void Send(int id, string data, int weight);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reconnect the socket
|
/// Reconnect the socket
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
-362
@@ -1,362 +0,0 @@
|
|||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Logging.Extensions
|
|
||||||
{
|
|
||||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
||||||
public static class CryptoExchangeWebSocketClientLoggingExtension
|
|
||||||
{
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _connecting;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _connectionFailed;
|
|
||||||
private static readonly Action<ILogger, int, Uri, Exception?> _connected;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _startingProcessing;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _finishedProcessing;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _attemptReconnect;
|
|
||||||
private static readonly Action<ILogger, int, Uri, Exception?> _setReconnectUri;
|
|
||||||
private static readonly Action<ILogger, int, int, int, Exception?> _addingBytesToSendBuffer;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _reconnectRequested;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _closeAsyncWaitingForExistingCloseTask;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _closeAsyncSocketNotOpen;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _closing;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _closed;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _disposing;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _disposed;
|
|
||||||
private static readonly Action<ILogger, int, int, int, Exception?> _sentBytes;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _sendLoopStoppedWithException;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _sendLoopFinished;
|
|
||||||
private static readonly Action<ILogger, int, string, string ,Exception?> _receivedCloseMessage;
|
|
||||||
private static readonly Action<ILogger, int, string, string ,Exception?> _receivedCloseConfirmation;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _receivedPartialMessage;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _receivedSingleMessage;
|
|
||||||
private static readonly Action<ILogger, int, long, Exception?> _reassembledMessage;
|
|
||||||
private static readonly Action<ILogger, int, long, Exception?> _discardIncompleteMessage;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _receiveLoopStoppedWithException;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _receiveLoopFinished;
|
|
||||||
private static readonly Action<ILogger, int, TimeSpan?, Exception?> _startingTaskForNoDataReceivedCheck;
|
|
||||||
private static readonly Action<ILogger, int, TimeSpan?, Exception?> _noDataReceiveTimoutReconnect;
|
|
||||||
private static readonly Action<ILogger, int, string, string, Exception?> _socketProcessingStateChanged;
|
|
||||||
|
|
||||||
static CryptoExchangeWebSocketClientLoggingExtension()
|
|
||||||
{
|
|
||||||
_connecting = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1000, "Connecting"),
|
|
||||||
"[Sckt {SocketId}] connecting");
|
|
||||||
|
|
||||||
_connectionFailed = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Error,
|
|
||||||
new EventId(1001, "ConnectionFailed"),
|
|
||||||
"[Sckt {SocketId}] connection failed: {ErrorMessage}");
|
|
||||||
|
|
||||||
_connected = LoggerMessage.Define<int, Uri?>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1002, "Connected"),
|
|
||||||
"[Sckt {SocketId}] connected to {Uri}");
|
|
||||||
|
|
||||||
_startingProcessing = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1003, "StartingProcessing"),
|
|
||||||
"[Sckt {SocketId}] starting processing tasks");
|
|
||||||
|
|
||||||
_finishedProcessing = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1004, "FinishedProcessing"),
|
|
||||||
"[Sckt {SocketId}] processing tasks finished");
|
|
||||||
|
|
||||||
_attemptReconnect = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1005, "AttemptReconnect"),
|
|
||||||
"[Sckt {SocketId}] attempting to reconnect");
|
|
||||||
|
|
||||||
_setReconnectUri = LoggerMessage.Define<int, Uri>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1006, "SetReconnectUri"),
|
|
||||||
"[Sckt {SocketId}] reconnect URI set to {ReconnectUri}");
|
|
||||||
|
|
||||||
_addingBytesToSendBuffer = LoggerMessage.Define<int, int, int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1007, "AddingBytesToSendBuffer"),
|
|
||||||
"[Sckt {SocketId}] [Req {RequestId}] adding {NumBytes} bytes to send buffer");
|
|
||||||
|
|
||||||
_reconnectRequested = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1008, "ReconnectRequested"),
|
|
||||||
"[Sckt {SocketId}] reconnect requested");
|
|
||||||
|
|
||||||
_closeAsyncWaitingForExistingCloseTask = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1009, "CloseAsyncWaitForExistingCloseTask"),
|
|
||||||
"[Sckt {SocketId}] CloseAsync() waiting for existing close task");
|
|
||||||
|
|
||||||
_closeAsyncSocketNotOpen = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1010, "CloseAsyncSocketNotOpen"),
|
|
||||||
"[Sckt {SocketId}] CloseAsync() socket not open");
|
|
||||||
|
|
||||||
_closing = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1011, "Closing"),
|
|
||||||
"[Sckt {SocketId}] closing");
|
|
||||||
|
|
||||||
_closed = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1012, "Closed"),
|
|
||||||
"[Sckt {SocketId}] closed");
|
|
||||||
|
|
||||||
_disposing = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1013, "Disposing"),
|
|
||||||
"[Sckt {SocketId}] disposing");
|
|
||||||
|
|
||||||
_disposed = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1014, "Disposed"),
|
|
||||||
"[Sckt {SocketId}] disposed");
|
|
||||||
|
|
||||||
_sentBytes = LoggerMessage.Define<int, int, int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1016, "SentBytes"),
|
|
||||||
"[Sckt {SocketId}] [Req {RequestId}] sent {NumBytes} bytes");
|
|
||||||
|
|
||||||
_sendLoopStoppedWithException = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(1017, "SendLoopStoppedWithException"),
|
|
||||||
"[Sckt {SocketId}] send loop stopped with exception: {ErrorMessage}");
|
|
||||||
|
|
||||||
_sendLoopFinished = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1018, "SendLoopFinished"),
|
|
||||||
"[Sckt {SocketId}] send loop finished");
|
|
||||||
|
|
||||||
_receivedCloseMessage = LoggerMessage.Define<int, string, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1019, "ReceivedCloseMessage"),
|
|
||||||
"[Sckt {SocketId}] received `Close` message, CloseStatus: {CloseStatus}, CloseStatusDescription: {CloseStatusDescription}");
|
|
||||||
|
|
||||||
_receivedPartialMessage = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1020, "ReceivedPartialMessage"),
|
|
||||||
"[Sckt {SocketId}] received {NumBytes} bytes in partial message");
|
|
||||||
|
|
||||||
_receivedSingleMessage = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1021, "ReceivedSingleMessage"),
|
|
||||||
"[Sckt {SocketId}] received {NumBytes} bytes in single message");
|
|
||||||
|
|
||||||
_reassembledMessage = LoggerMessage.Define<int, long>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1022, "ReassembledMessage"),
|
|
||||||
"[Sckt {SocketId}] reassembled message of {NumBytes} bytes");
|
|
||||||
|
|
||||||
_discardIncompleteMessage = LoggerMessage.Define<int, long>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1023, "DiscardIncompleteMessage"),
|
|
||||||
"[Sckt {SocketId}] discarding incomplete message of {NumBytes} bytes");
|
|
||||||
|
|
||||||
_receiveLoopStoppedWithException = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Error,
|
|
||||||
new EventId(1024, "ReceiveLoopStoppedWithException"),
|
|
||||||
"[Sckt {SocketId}] receive loop stopped with exception");
|
|
||||||
|
|
||||||
_receiveLoopFinished = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1025, "ReceiveLoopFinished"),
|
|
||||||
"[Sckt {SocketId}] receive loop finished");
|
|
||||||
|
|
||||||
_startingTaskForNoDataReceivedCheck = LoggerMessage.Define<int, TimeSpan?>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1026, "StartingTaskForNoDataReceivedCheck"),
|
|
||||||
"[Sckt {SocketId}] starting task checking for no data received for {Timeout}");
|
|
||||||
|
|
||||||
_noDataReceiveTimoutReconnect = LoggerMessage.Define<int, TimeSpan?>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1027, "NoDataReceiveTimeoutReconnect"),
|
|
||||||
"[Sckt {SocketId}] no data received for {Timeout}, reconnecting socket");
|
|
||||||
|
|
||||||
_receivedCloseConfirmation = LoggerMessage.Define<int, string, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(1028, "ReceivedCloseMessage"),
|
|
||||||
"[Sckt {SocketId}] received `Close` message confirming our close request, CloseStatus: {CloseStatus}, CloseStatusDescription: {CloseStatusDescription}");
|
|
||||||
|
|
||||||
_socketProcessingStateChanged = LoggerMessage.Define<int, string, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(1028, "SocketProcessingStateChanged"),
|
|
||||||
"[Sckt {Id}] processing state change: {PreviousState} -> {NewState}");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketConnecting(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_connecting(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketConnectionFailed(
|
|
||||||
this ILogger logger, int socketId, string message, Exception e)
|
|
||||||
{
|
|
||||||
_connectionFailed(logger, socketId, message, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketConnected(
|
|
||||||
this ILogger logger, int socketId, Uri uri)
|
|
||||||
{
|
|
||||||
_connected(logger, socketId, uri, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketStartingProcessing(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_startingProcessing(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketFinishedProcessing(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_finishedProcessing(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketAttemptReconnect(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_attemptReconnect(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketSetReconnectUri(
|
|
||||||
this ILogger logger, int socketId, Uri uri)
|
|
||||||
{
|
|
||||||
_setReconnectUri(logger, socketId, uri, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketAddingBytesToSendBuffer(
|
|
||||||
this ILogger logger, int socketId, int requestId, byte[] bytes)
|
|
||||||
{
|
|
||||||
_addingBytesToSendBuffer(logger, socketId, requestId, bytes.Length, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReconnectRequested(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_reconnectRequested(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketCloseAsyncWaitingForExistingCloseTask(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_closeAsyncWaitingForExistingCloseTask(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketCloseAsyncSocketNotOpen(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_closeAsyncSocketNotOpen(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketClosing(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_closing(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketClosed(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_closed(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketDisposing(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_disposing(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketDisposed(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_disposed(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketSentBytes(
|
|
||||||
this ILogger logger, int socketId, int requestId, int numBytes)
|
|
||||||
{
|
|
||||||
_sentBytes(logger, socketId, requestId, numBytes, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketSendLoopStoppedWithException(
|
|
||||||
this ILogger logger, int socketId, string message, Exception e)
|
|
||||||
{
|
|
||||||
_sendLoopStoppedWithException(logger, socketId, message, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketSendLoopFinished(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_sendLoopFinished(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReceivedCloseMessage(
|
|
||||||
this ILogger logger, int socketId, string webSocketCloseStatus, string closeStatusDescription)
|
|
||||||
{
|
|
||||||
_receivedCloseMessage(logger, socketId, webSocketCloseStatus, closeStatusDescription, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReceivedCloseConfirmation(
|
|
||||||
this ILogger logger, int socketId, string webSocketCloseStatus, string closeStatusDescription)
|
|
||||||
{
|
|
||||||
_receivedCloseConfirmation(logger, socketId, webSocketCloseStatus, closeStatusDescription, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReceivedPartialMessage(
|
|
||||||
this ILogger logger, int socketId, int countBytes)
|
|
||||||
{
|
|
||||||
_receivedPartialMessage(logger, socketId, countBytes, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReceivedSingleMessage(
|
|
||||||
this ILogger logger, int socketId, int countBytes)
|
|
||||||
{
|
|
||||||
_receivedSingleMessage(logger, socketId, countBytes, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReassembledMessage(
|
|
||||||
this ILogger logger, int socketId, long countBytes)
|
|
||||||
{
|
|
||||||
_reassembledMessage(logger, socketId, countBytes, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketDiscardIncompleteMessage(
|
|
||||||
this ILogger logger, int socketId, long countBytes)
|
|
||||||
{
|
|
||||||
_discardIncompleteMessage(logger, socketId, countBytes, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReceiveLoopStoppedWithException(
|
|
||||||
this ILogger logger, int socketId, Exception e)
|
|
||||||
{
|
|
||||||
_receiveLoopStoppedWithException(logger, socketId, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketReceiveLoopFinished(
|
|
||||||
this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_receiveLoopFinished(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketStartingTaskForNoDataReceivedCheck(
|
|
||||||
this ILogger logger, int socketId, TimeSpan? timeSpan)
|
|
||||||
{
|
|
||||||
_startingTaskForNoDataReceivedCheck(logger, socketId, timeSpan, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketNoDataReceiveTimoutReconnect(
|
|
||||||
this ILogger logger, int socketId, TimeSpan? timeSpan)
|
|
||||||
{
|
|
||||||
_noDataReceiveTimoutReconnect(logger, socketId, timeSpan, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketProcessingStateChanged(
|
|
||||||
this ILogger logger, int socketId, string prevState, string newState)
|
|
||||||
{
|
|
||||||
_socketProcessingStateChanged(logger, socketId, prevState, newState, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Logging.Extensions
|
|
||||||
{
|
|
||||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
||||||
public static class RateLimitGateLoggingExtensions
|
|
||||||
{
|
|
||||||
private static readonly Action<ILogger, int, string, string, string, Exception?> _rateLimitRequestFailed;
|
|
||||||
private static readonly Action<ILogger, int, string, string, Exception?> _rateLimitConnectionFailed;
|
|
||||||
private static readonly Action<ILogger, int, string, TimeSpan, string, string, Exception?> _rateLimitDelayingRequest;
|
|
||||||
private static readonly Action<ILogger, int, TimeSpan, string, string, Exception?> _rateLimitDelayingConnection;
|
|
||||||
private static readonly Action<ILogger, int, string, string, string, int, Exception?> _rateLimitAppliedRequest;
|
|
||||||
private static readonly Action<ILogger, int, string, string, int, Exception?> _rateLimitAppliedConnection;
|
|
||||||
|
|
||||||
static RateLimitGateLoggingExtensions()
|
|
||||||
{
|
|
||||||
_rateLimitRequestFailed = LoggerMessage.Define<int, string, string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(6000, "RateLimitRequestFailed"),
|
|
||||||
"[Req {Id}] Call to {Path} failed because of ratelimit guard {Guard}; {Limit}");
|
|
||||||
|
|
||||||
_rateLimitConnectionFailed = LoggerMessage.Define<int, string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(6001, "RateLimitConnectionFailed"),
|
|
||||||
"[Sckt {Id}] Connection failed because of ratelimit guard {Guard}; {Limit}");
|
|
||||||
|
|
||||||
_rateLimitDelayingRequest = LoggerMessage.Define<int, string, TimeSpan, string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(6002, "RateLimitDelayingRequest"),
|
|
||||||
"[Req {Id}] Delaying call to {Path} by {Delay} because of ratelimit guard {Guard}; {Limit}");
|
|
||||||
|
|
||||||
_rateLimitDelayingConnection = LoggerMessage.Define<int, TimeSpan, string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(6003, "RateLimitDelayingConnection"),
|
|
||||||
"[Sckt {Id}] Delaying connection by {Delay} because of ratelimit guard {Guard}; {Limit}");
|
|
||||||
|
|
||||||
_rateLimitAppliedConnection = LoggerMessage.Define<int, string, string, int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(6004, "RateLimitDelayingConnection"),
|
|
||||||
"[Sckt {Id}] Connection passed ratelimit guard {Guard}; {Limit}, New count: {Current}");
|
|
||||||
|
|
||||||
_rateLimitAppliedRequest = LoggerMessage.Define<int, string, string, string, int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(6005, "RateLimitAppliedRequest"),
|
|
||||||
"[Req {Id}] Call to {Path} passed ratelimit guard {Guard}; {Limit}, New count: {Current}");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RateLimitRequestFailed(this ILogger logger, int requestId, string path, string guard, string limit)
|
|
||||||
{
|
|
||||||
_rateLimitRequestFailed(logger, requestId, path, guard, limit, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RateLimitConnectionFailed(this ILogger logger, int connectionId, string guard, string limit)
|
|
||||||
{
|
|
||||||
_rateLimitConnectionFailed(logger, connectionId, guard, limit, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RateLimitDelayingRequest(this ILogger logger, int requestId, string path, TimeSpan delay, string guard, string limit)
|
|
||||||
{
|
|
||||||
_rateLimitDelayingRequest(logger, requestId, path, delay, guard, limit, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RateLimitDelayingConnection(this ILogger logger, int connectionId, TimeSpan delay, string guard, string limit)
|
|
||||||
{
|
|
||||||
_rateLimitDelayingConnection(logger, connectionId, delay, guard, limit, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RateLimitAppliedConnection(this ILogger logger, int connectionId, string guard, string limit, int current)
|
|
||||||
{
|
|
||||||
_rateLimitAppliedConnection(logger, connectionId, guard, limit, current, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RateLimitAppliedRequest(this ILogger logger, int requestIdId, string path, string guard, string limit, int current)
|
|
||||||
{
|
|
||||||
_rateLimitAppliedRequest(logger, requestIdId, path, guard, limit, current, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,149 +0,0 @@
|
|||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using System;
|
|
||||||
using System.Net;
|
|
||||||
using System.Net.Http;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Logging.Extensions
|
|
||||||
{
|
|
||||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
||||||
public static class RestApiClientLoggingExtensions
|
|
||||||
{
|
|
||||||
private static readonly Action<ILogger, int?, int?, long, string?, Exception?> _restApiErrorReceived;
|
|
||||||
private static readonly Action<ILogger, int?, int?, long, string?, Exception?> _restApiResponseReceived;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _restApiFailedToSyncTime;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _restApiNoApiCredentials;
|
|
||||||
private static readonly Action<ILogger, int, Uri, Exception?> _restApiCreatingRequest;
|
|
||||||
private static readonly Action<ILogger, int, HttpMethod, string, Uri, string, Exception?> _restApiSendingRequest;
|
|
||||||
private static readonly Action<ILogger, int, DateTime, Exception?> _restApiRateLimitRetry;
|
|
||||||
private static readonly Action<ILogger, int, DateTime, Exception?> _restApiRateLimitPauseUntil;
|
|
||||||
private static readonly Action<ILogger, int, RequestDefinition, string?, string, string, Exception?> _restApiSendRequest;
|
|
||||||
private static readonly Action<ILogger, string, Exception?> _restApiCheckingCache;
|
|
||||||
private static readonly Action<ILogger, string, Exception?> _restApiCacheHit;
|
|
||||||
private static readonly Action<ILogger, string, Exception?> _restApiCacheNotHit;
|
|
||||||
|
|
||||||
|
|
||||||
static RestApiClientLoggingExtensions()
|
|
||||||
{
|
|
||||||
_restApiErrorReceived = LoggerMessage.Define<int?, int?, long, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(4000, "RestApiErrorReceived"),
|
|
||||||
"[Req {RequestId}] {ResponseStatusCode} - Error received in {ResponseTime}ms: {ErrorMessage}");
|
|
||||||
|
|
||||||
_restApiResponseReceived = LoggerMessage.Define<int?, int?, long, string?>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(4001, "RestApiResponseReceived"),
|
|
||||||
"[Req {RequestId}] {ResponseStatusCode} - Response received in {ResponseTime}ms: {OriginalData}");
|
|
||||||
|
|
||||||
_restApiFailedToSyncTime = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(4002, "RestApifailedToSyncTime"),
|
|
||||||
"[Req {RequestId}] Failed to sync time, aborting request: {ErrorMessage}");
|
|
||||||
|
|
||||||
_restApiNoApiCredentials = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(4003, "RestApiNoApiCredentials"),
|
|
||||||
"[Req {RequestId}] Request {RestApiUri} failed because no ApiCredentials were provided");
|
|
||||||
|
|
||||||
_restApiCreatingRequest = LoggerMessage.Define<int, Uri>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(4004, "RestApiCreatingRequest"),
|
|
||||||
"[Req {RequestId}] Creating request for {RestApiUri}");
|
|
||||||
|
|
||||||
_restApiSendingRequest = LoggerMessage.Define<int, HttpMethod, string, Uri, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(4005, "RestApiSendingRequest"),
|
|
||||||
"[Req {RequestId}] Sending {Method} {Signed} request to {RestApiUri}{Query}");
|
|
||||||
|
|
||||||
_restApiRateLimitRetry = LoggerMessage.Define<int, DateTime>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(4006, "RestApiRateLimitRetry"),
|
|
||||||
"[Req {RequestId}] Received ratelimit error, retrying after {Timestamp}");
|
|
||||||
|
|
||||||
_restApiRateLimitPauseUntil = LoggerMessage.Define<int, DateTime>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(4007, "RestApiRateLimitPauseUntil"),
|
|
||||||
"[Req {RequestId}] Ratelimit error from server, pausing requests until {Until}");
|
|
||||||
|
|
||||||
_restApiSendRequest = LoggerMessage.Define<int, RequestDefinition, string?, string, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(4008, "RestApiSendRequest"),
|
|
||||||
"[Req {RequestId}] Sending {Definition} request with body {Body}, query parameters {Query} and headers {Headers}");
|
|
||||||
|
|
||||||
_restApiCheckingCache = LoggerMessage.Define<string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(4009, "RestApiCheckingCache"),
|
|
||||||
"Checking cache for key {Key}");
|
|
||||||
|
|
||||||
_restApiCacheHit = LoggerMessage.Define<string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(4010, "RestApiCacheHit"),
|
|
||||||
"Cache hit for key {Key}");
|
|
||||||
|
|
||||||
_restApiCacheNotHit = LoggerMessage.Define<string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(4011, "RestApiCacheNotHit"),
|
|
||||||
"Cache not hit for key {Key}");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiErrorReceived(this ILogger logger, int? requestId, HttpStatusCode? responseStatusCode, long responseTime, string? error)
|
|
||||||
{
|
|
||||||
_restApiErrorReceived(logger, requestId, (int?)responseStatusCode, responseTime, error, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiResponseReceived(this ILogger logger, int? requestId, HttpStatusCode? responseStatusCode, long responseTime, string? originalData)
|
|
||||||
{
|
|
||||||
_restApiResponseReceived(logger, requestId, (int?)responseStatusCode, responseTime, originalData, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiFailedToSyncTime(this ILogger logger, int requestId, string error)
|
|
||||||
{
|
|
||||||
_restApiFailedToSyncTime(logger, requestId, error, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiNoApiCredentials(this ILogger logger, int requestId, string uri)
|
|
||||||
{
|
|
||||||
_restApiNoApiCredentials(logger, requestId, uri, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiCreatingRequest(this ILogger logger, int requestId, Uri uri)
|
|
||||||
{
|
|
||||||
_restApiCreatingRequest(logger, requestId, uri, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiSendingRequest(this ILogger logger, int requestId, HttpMethod method, string signed, Uri uri, string paramString)
|
|
||||||
{
|
|
||||||
_restApiSendingRequest(logger, requestId, method, signed, uri, paramString, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiRateLimitRetry(this ILogger logger, int requestId, DateTime retryAfter)
|
|
||||||
{
|
|
||||||
_restApiRateLimitRetry(logger, requestId, retryAfter, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiRateLimitPauseUntil(this ILogger logger, int requestId, DateTime retryAfter)
|
|
||||||
{
|
|
||||||
_restApiRateLimitPauseUntil(logger, requestId, retryAfter, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RestApiSendRequest(this ILogger logger, int requestId, RequestDefinition definition, string? body, string query, string headers)
|
|
||||||
{
|
|
||||||
_restApiSendRequest(logger, requestId, definition, body, query, headers, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void CheckingCache(this ILogger logger, string key)
|
|
||||||
{
|
|
||||||
_restApiCheckingCache(logger, key, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void CacheHit(this ILogger logger, string key)
|
|
||||||
{
|
|
||||||
_restApiCacheHit(logger, key, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void CacheNotHit(this ILogger logger, string key)
|
|
||||||
{
|
|
||||||
_restApiCacheNotHit(logger, key, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,200 +0,0 @@
|
|||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Logging.Extensions
|
|
||||||
{
|
|
||||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
||||||
public static class SocketApiClientLoggingExtension
|
|
||||||
{
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _failedToAddSubscriptionRetryOnDifferentConnection;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _hasBeenPausedCantSubscribeAtThisMoment;
|
|
||||||
private static readonly Action<ILogger, int, string?, Exception?> _failedToSubscribe;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _cancellationTokenSetClosingSubscription;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _subscriptionCompletedSuccessfully;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _hasBeenPausedCantSendQueryAtThisMoment;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _attemptingToAuthenticate;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _authenticationFailed;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _authenticated;
|
|
||||||
private static readonly Action<ILogger, string?, Exception?> _failedToDetermineConnectionUrl;
|
|
||||||
private static readonly Action<ILogger, string, Exception?> _connectionAddressSetTo;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _socketCreatedForAddress;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _unsubscribingAll;
|
|
||||||
private static readonly Action<ILogger, Exception?> _disposingSocketClient;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _unsubscribingSubscription;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _reconnectingAllConnections;
|
|
||||||
private static readonly Action<ILogger, DateTime, Exception?> _addingRetryAfterGuard;
|
|
||||||
|
|
||||||
static SocketApiClientLoggingExtension()
|
|
||||||
{
|
|
||||||
_failedToAddSubscriptionRetryOnDifferentConnection = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(3000, "FailedToAddSubscriptionRetryOnDifferentConnection"),
|
|
||||||
"[Sckt {SocketId}] failed to add subscription, retrying on different connection");
|
|
||||||
|
|
||||||
_hasBeenPausedCantSubscribeAtThisMoment = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(3001, "HasBeenPausedCantSubscribeAtThisMoment"),
|
|
||||||
"[Sckt {SocketId}] has been paused, can't subscribe at this moment");
|
|
||||||
|
|
||||||
_failedToSubscribe = LoggerMessage.Define<int, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(3002, "FailedToSubscribe"),
|
|
||||||
"[Sckt {SocketId}] failed to subscribe: {ErrorMessage}");
|
|
||||||
|
|
||||||
_cancellationTokenSetClosingSubscription = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(3003, "CancellationTokenSetClosingSubscription"),
|
|
||||||
"[Sckt {SocketId}] Cancellation token set, closing subscription {SubscriptionId}");
|
|
||||||
|
|
||||||
_subscriptionCompletedSuccessfully = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(3004, "SubscriptionCompletedSuccessfully"),
|
|
||||||
"[Sckt {SocketId}] subscription {SubscriptionId} completed successfully");
|
|
||||||
|
|
||||||
_hasBeenPausedCantSendQueryAtThisMoment = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(3005, "HasBeenPausedCantSendQueryAtThisMoment"),
|
|
||||||
"[Sckt {SocketId}] has been paused, can't send query at this moment");
|
|
||||||
|
|
||||||
_attemptingToAuthenticate = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(3006, "AttemptingToAuthenticate"),
|
|
||||||
"[Sckt {SocketId}] Attempting to authenticate");
|
|
||||||
|
|
||||||
_authenticationFailed = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(3007, "AuthenticationFailed"),
|
|
||||||
"[Sckt {SocketId}] authentication failed");
|
|
||||||
|
|
||||||
_authenticated = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(3008, "Authenticated"),
|
|
||||||
"[Sckt {SocketId}] authenticated");
|
|
||||||
|
|
||||||
_failedToDetermineConnectionUrl = LoggerMessage.Define<string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(3009, "FailedToDetermineConnectionUrl"),
|
|
||||||
"Failed to determine connection url: {ErrorMessage}");
|
|
||||||
|
|
||||||
_connectionAddressSetTo = LoggerMessage.Define<string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(3010, "ConnectionAddressSetTo"),
|
|
||||||
"Connection address set to {ConnectionAddress}");
|
|
||||||
|
|
||||||
_socketCreatedForAddress = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(3011, "SocketCreatedForAddress"),
|
|
||||||
"[Sckt {SocketId}] created for {Address}");
|
|
||||||
|
|
||||||
_unsubscribingAll = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(3013, "UnsubscribingAll"),
|
|
||||||
"Unsubscribing all {SubscriptionCount} subscriptions");
|
|
||||||
|
|
||||||
_disposingSocketClient = LoggerMessage.Define(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(3015, "DisposingSocketClient"),
|
|
||||||
"Disposing socket client, closing all subscriptions");
|
|
||||||
|
|
||||||
_unsubscribingSubscription = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(3016, "UnsubscribingSubscription"),
|
|
||||||
"[Sckt {SocketId}] Unsubscribing subscription {SubscriptionId}");
|
|
||||||
|
|
||||||
_reconnectingAllConnections = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(3017, "ReconnectingAll"),
|
|
||||||
"Reconnecting all {ConnectionCount} connections");
|
|
||||||
|
|
||||||
_addingRetryAfterGuard = LoggerMessage.Define<DateTime>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(3018, "AddRetryAfterGuard"),
|
|
||||||
"Adding RetryAfterGuard ({RetryAfter}) because the connection attempt was rate limited");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void FailedToAddSubscriptionRetryOnDifferentConnection(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_failedToAddSubscriptionRetryOnDifferentConnection(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void HasBeenPausedCantSubscribeAtThisMoment(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_hasBeenPausedCantSubscribeAtThisMoment(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void FailedToSubscribe(this ILogger logger, int socketId, string? error)
|
|
||||||
{
|
|
||||||
_failedToSubscribe(logger, socketId, error, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void CancellationTokenSetClosingSubscription(this ILogger logger, int socketId, int subscriptionId)
|
|
||||||
{
|
|
||||||
_cancellationTokenSetClosingSubscription(logger, socketId, subscriptionId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SubscriptionCompletedSuccessfully(this ILogger logger, int socketId, int subscriptionId)
|
|
||||||
{
|
|
||||||
_subscriptionCompletedSuccessfully(logger, socketId, subscriptionId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void HasBeenPausedCantSendQueryAtThisMoment(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_hasBeenPausedCantSendQueryAtThisMoment(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void AttemptingToAuthenticate(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_attemptingToAuthenticate(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void AuthenticationFailed(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_authenticationFailed(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void Authenticated(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_authenticated(logger, socketId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void FailedToDetermineConnectionUrl(this ILogger logger, string? error)
|
|
||||||
{
|
|
||||||
_failedToDetermineConnectionUrl(logger, error, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void ConnectionAddressSetTo(this ILogger logger, string connectionAddress)
|
|
||||||
{
|
|
||||||
_connectionAddressSetTo(logger, connectionAddress, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketCreatedForAddress(this ILogger logger, int socketId, string address)
|
|
||||||
{
|
|
||||||
_socketCreatedForAddress(logger, socketId, address, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void UnsubscribingAll(this ILogger logger, int subscriptionCount)
|
|
||||||
{
|
|
||||||
_unsubscribingAll(logger, subscriptionCount, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void DisposingSocketClient(this ILogger logger)
|
|
||||||
{
|
|
||||||
_disposingSocketClient(logger, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void UnsubscribingSubscription(this ILogger logger, int socketId, int subscriptionId)
|
|
||||||
{
|
|
||||||
_unsubscribingSubscription(logger, socketId, subscriptionId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void ReconnectingAllConnections(this ILogger logger, int connectionCount)
|
|
||||||
{
|
|
||||||
_reconnectingAllConnections(logger, connectionCount, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void AddingRetryAfterGuard(this ILogger logger, DateTime retryAfter)
|
|
||||||
{
|
|
||||||
_addingRetryAfterGuard(logger, retryAfter, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,325 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Net.WebSockets;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Logging.Extensions
|
|
||||||
{
|
|
||||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
||||||
public static class SocketConnectionLoggingExtension
|
|
||||||
{
|
|
||||||
private static readonly Action<ILogger, int, bool, Exception?> _activityPaused;
|
|
||||||
private static readonly Action<ILogger, int, Sockets.SocketConnection.SocketStatus, Sockets.SocketConnection.SocketStatus, Exception?> _socketStatusChanged;
|
|
||||||
private static readonly Action<ILogger, int, string?, Exception?> _failedReconnectProcessing;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _unkownExceptionWhileProcessingReconnection;
|
|
||||||
private static readonly Action<ILogger, int, WebSocketError, string?, Exception?> _webSocketErrorCodeAndDetails;
|
|
||||||
private static readonly Action<ILogger, int, string?, Exception?> _webSocketError;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _messageSentNotPending;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _receivedData;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _failedToEvaluateMessage;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _errorProcessingMessage;
|
|
||||||
private static readonly Action<ILogger, int, int, string, Exception?> _processorMatched;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _receivedMessageNotRecognized;
|
|
||||||
private static readonly Action<ILogger, int, string?, Exception?> _failedToDeserializeMessage;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _userMessageProcessingFailed;
|
|
||||||
private static readonly Action<ILogger, int, long, long, Exception?> _messageProcessed;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _closingSubscription;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _notUnsubscribingSubscriptionBecauseDuplicateRunning;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _alreadyClosing;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _closingNoMoreSubscriptions;
|
|
||||||
private static readonly Action<ILogger, int, int, int, Exception?> _addingNewSubscription;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _nothingToResubscribeCloseConnection;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _failedAuthenticationDisconnectAndRecoonect;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _authenticationSucceeded;
|
|
||||||
private static readonly Action<ILogger, int, string?, Exception?> _failedRequestRevitalization;
|
|
||||||
private static readonly Action<ILogger, int, Exception?> _allSubscriptionResubscribed;
|
|
||||||
private static readonly Action<ILogger, int, int, Exception?> _subscriptionUnsubscribed;
|
|
||||||
private static readonly Action<ILogger, int, string, Exception?> _sendingPeriodic;
|
|
||||||
private static readonly Action<ILogger, int, string, string, Exception?> _periodicSendFailed;
|
|
||||||
private static readonly Action<ILogger, int, int, string, Exception?> _sendingData;
|
|
||||||
private static readonly Action<ILogger, int, string, string, Exception?> _receivedMessageNotMatchedToAnyListener;
|
|
||||||
|
|
||||||
static SocketConnectionLoggingExtension()
|
|
||||||
{
|
|
||||||
_activityPaused = LoggerMessage.Define<int, bool>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(2000, "ActivityPaused"),
|
|
||||||
"[Sckt {SocketId}] paused activity: {Paused}");
|
|
||||||
|
|
||||||
_socketStatusChanged = LoggerMessage.Define<int, Sockets.SocketConnection.SocketStatus, Sockets.SocketConnection.SocketStatus>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2001, "SocketStatusChanged"),
|
|
||||||
"[Sckt {SocketId}] status changed from {OldStatus} to {NewStatus}");
|
|
||||||
|
|
||||||
_failedReconnectProcessing = LoggerMessage.Define<int, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2002, "FailedReconnectProcessing"),
|
|
||||||
"[Sckt {SocketId}] failed reconnect processing: {ErrorMessage}, reconnecting again");
|
|
||||||
|
|
||||||
_unkownExceptionWhileProcessingReconnection = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2003, "UnkownExceptionWhileProcessingReconnection"),
|
|
||||||
"[Sckt {SocketId}] Unknown exception while processing reconnection, reconnecting again");
|
|
||||||
|
|
||||||
_webSocketErrorCodeAndDetails = LoggerMessage.Define<int, WebSocketError, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2004, "WebSocketErrorCode"),
|
|
||||||
"[Sckt {SocketId}] error: Websocket error code {WebSocketErrorCdoe}, details: {Details}");
|
|
||||||
|
|
||||||
_webSocketError = LoggerMessage.Define<int, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2005, "WebSocketError"),
|
|
||||||
"[Sckt {SocketId}] error: {ErrorMessage}");
|
|
||||||
|
|
||||||
_messageSentNotPending = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2006, "MessageSentNotPending"),
|
|
||||||
"[Sckt {SocketId}] [Req {RequestId}] message sent, but not pending");
|
|
||||||
|
|
||||||
_receivedData = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(2007, "ReceivedData"),
|
|
||||||
"[Sckt {SocketId}] received {OriginalData}");
|
|
||||||
|
|
||||||
_failedToEvaluateMessage = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2008, "FailedToEvaluateMessage"),
|
|
||||||
"[Sckt {SocketId}] failed to evaluate message. {OriginalData}");
|
|
||||||
|
|
||||||
_errorProcessingMessage = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Error,
|
|
||||||
new EventId(2009, "ErrorProcessingMessage"),
|
|
||||||
"[Sckt {SocketId}] error processing message");
|
|
||||||
|
|
||||||
_processorMatched = LoggerMessage.Define<int, int, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(2010, "ProcessorMatched"),
|
|
||||||
"[Sckt {SocketId}] {Count} processor(s) matched to message with listener identifier {ListenerId}");
|
|
||||||
|
|
||||||
_receivedMessageNotRecognized = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2011, "ReceivedMessageNotRecognized"),
|
|
||||||
"[Sckt {SocketId}] received message not recognized by handler {ProcessorId}");
|
|
||||||
|
|
||||||
_failedToDeserializeMessage = LoggerMessage.Define<int, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2012, "FailedToDeserializeMessage"),
|
|
||||||
"[Sckt {SocketId}] deserialization failed: {ErrorMessage}");
|
|
||||||
|
|
||||||
_userMessageProcessingFailed = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2013, "UserMessageProcessingFailed"),
|
|
||||||
"[Sckt {SocketId}] user message processing failed: {ErrorMessage}");
|
|
||||||
|
|
||||||
_messageProcessed = LoggerMessage.Define<int, long, long>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(2014, "MessageProcessed"),
|
|
||||||
"[Sckt {SocketId}] message processed in {ProcessingTime}ms, {ParsingTime}ms parsing");
|
|
||||||
|
|
||||||
_closingSubscription = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2015, "ClosingSubscription"),
|
|
||||||
"[Sckt {SocketId}] closing subscription {SubscriptionId}");
|
|
||||||
|
|
||||||
_notUnsubscribingSubscriptionBecauseDuplicateRunning = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2016, "NotUnsubscribingSubscription"),
|
|
||||||
"[Sckt {SocketId}] not unsubscribing subscription as there is still a duplicate subscription running");
|
|
||||||
|
|
||||||
_alreadyClosing = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2017, "AlreadyClosing"),
|
|
||||||
"[Sckt {SocketId}] already closing");
|
|
||||||
|
|
||||||
_closingNoMoreSubscriptions = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2018, "ClosingNoMoreSubscriptions"),
|
|
||||||
"[Sckt {SocketId}] closing as there are no more subscriptions");
|
|
||||||
|
|
||||||
_addingNewSubscription = LoggerMessage.Define<int, int, int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2019, "AddingNewSubscription"),
|
|
||||||
"[Sckt {SocketId}] adding new subscription with id {SubscriptionId}, total subscriptions on connection: {UserSubscriptionCount}");
|
|
||||||
|
|
||||||
_nothingToResubscribeCloseConnection = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2020, "NothingToResubscribe"),
|
|
||||||
"[Sckt {SocketId}] nothing to resubscribe, closing connection");
|
|
||||||
|
|
||||||
_failedAuthenticationDisconnectAndRecoonect = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2021, "FailedAuthentication"),
|
|
||||||
"[Sckt {SocketId}] authentication failed on reconnected socket. Disconnecting and reconnecting");
|
|
||||||
|
|
||||||
_authenticationSucceeded = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2022, "AuthenticationSucceeded"),
|
|
||||||
"[Sckt {SocketId}] authentication succeeded on reconnected socket");
|
|
||||||
|
|
||||||
_failedRequestRevitalization = LoggerMessage.Define<int, string?>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2023, "FailedRequestRevitalization"),
|
|
||||||
"[Sckt {SocketId}] failed request revitalization: {ErrorMessage}");
|
|
||||||
|
|
||||||
_allSubscriptionResubscribed = LoggerMessage.Define<int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(2024, "AllSubscriptionResubscribed"),
|
|
||||||
"[Sckt {SocketId}] all subscription successfully resubscribed on reconnected socket");
|
|
||||||
|
|
||||||
_subscriptionUnsubscribed = LoggerMessage.Define<int, int>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(2025, "SubscriptionUnsubscribed"),
|
|
||||||
"[Sckt {SocketId}] subscription {SubscriptionId} unsubscribed");
|
|
||||||
|
|
||||||
_sendingPeriodic = LoggerMessage.Define<int, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(2026, "SendingPeriodic"),
|
|
||||||
"[Sckt {SocketId}] sending periodic {Identifier}");
|
|
||||||
|
|
||||||
_periodicSendFailed = LoggerMessage.Define<int, string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2027, "PeriodicSendFailed"),
|
|
||||||
"[Sckt {SocketId}] periodic send {Identifier} failed: {ErrorMessage}");
|
|
||||||
|
|
||||||
_sendingData = LoggerMessage.Define<int, int, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(2028, "SendingData"),
|
|
||||||
"[Sckt {SocketId}] [Req {RequestId}] sending messsage: {Data}");
|
|
||||||
|
|
||||||
_receivedMessageNotMatchedToAnyListener = LoggerMessage.Define<int, string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(2029, "ReceivedMessageNotMatchedToAnyListener"),
|
|
||||||
"[Sckt {SocketId}] received message not matched to any listener. ListenId: {ListenId}, current listeners: {ListenIds}");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void ActivityPaused(this ILogger logger, int socketId, bool paused)
|
|
||||||
{
|
|
||||||
_activityPaused(logger, socketId, paused, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SocketStatusChanged(this ILogger logger, int socketId, Sockets.SocketConnection.SocketStatus oldStatus, Sockets.SocketConnection.SocketStatus newStatus)
|
|
||||||
{
|
|
||||||
_socketStatusChanged(logger, socketId, oldStatus, newStatus, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void FailedReconnectProcessing(this ILogger logger, int socketId, string? error)
|
|
||||||
{
|
|
||||||
_failedReconnectProcessing(logger, socketId, error, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void UnkownExceptionWhileProcessingReconnection(this ILogger logger, int socketId, Exception e)
|
|
||||||
{
|
|
||||||
_unkownExceptionWhileProcessingReconnection(logger, socketId, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void WebSocketErrorCodeAndDetails(this ILogger logger, int socketId, WebSocketError error, string? details, Exception e)
|
|
||||||
{
|
|
||||||
_webSocketErrorCodeAndDetails(logger, socketId, error, details, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void WebSocketError(this ILogger logger, int socketId, string? errorMessage, Exception e)
|
|
||||||
{
|
|
||||||
_webSocketError(logger, socketId, errorMessage, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void MessageSentNotPending(this ILogger logger, int socketId, int requestId)
|
|
||||||
{
|
|
||||||
_messageSentNotPending(logger, socketId, requestId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void ReceivedData(this ILogger logger, int socketId, string originalData)
|
|
||||||
{
|
|
||||||
_receivedData(logger, socketId, originalData, null);
|
|
||||||
}
|
|
||||||
public static void FailedToEvaluateMessage(this ILogger logger, int socketId, string originalData)
|
|
||||||
{
|
|
||||||
_failedToEvaluateMessage(logger, socketId, originalData, null);
|
|
||||||
}
|
|
||||||
public static void ErrorProcessingMessage(this ILogger logger, int socketId, Exception e)
|
|
||||||
{
|
|
||||||
_errorProcessingMessage(logger, socketId, e);
|
|
||||||
}
|
|
||||||
public static void ProcessorMatched(this ILogger logger, int socketId, int count, string listenerId)
|
|
||||||
{
|
|
||||||
_processorMatched(logger, socketId, count, listenerId, null);
|
|
||||||
}
|
|
||||||
public static void ReceivedMessageNotRecognized(this ILogger logger, int socketId, int id)
|
|
||||||
{
|
|
||||||
_receivedMessageNotRecognized(logger, socketId, id, null);
|
|
||||||
}
|
|
||||||
public static void FailedToDeserializeMessage(this ILogger logger, int socketId, string? errorMessage)
|
|
||||||
{
|
|
||||||
_failedToDeserializeMessage(logger, socketId, errorMessage, null);
|
|
||||||
}
|
|
||||||
public static void UserMessageProcessingFailed(this ILogger logger, int socketId, string errorMessage, Exception e)
|
|
||||||
{
|
|
||||||
_userMessageProcessingFailed(logger, socketId, errorMessage, e);
|
|
||||||
}
|
|
||||||
public static void MessageProcessed(this ILogger logger, int socketId, long processingTime, long parsingTime)
|
|
||||||
{
|
|
||||||
_messageProcessed(logger, socketId, processingTime, parsingTime, null);
|
|
||||||
}
|
|
||||||
public static void ClosingSubscription(this ILogger logger, int socketId, int subscriptionId)
|
|
||||||
{
|
|
||||||
_closingSubscription(logger, socketId, subscriptionId, null);
|
|
||||||
}
|
|
||||||
public static void NotUnsubscribingSubscriptionBecauseDuplicateRunning(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_notUnsubscribingSubscriptionBecauseDuplicateRunning(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void AlreadyClosing(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_alreadyClosing(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void ClosingNoMoreSubscriptions(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_closingNoMoreSubscriptions(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void AddingNewSubscription(this ILogger logger, int socketId, int subscriptionId, int userSubscriptionCount)
|
|
||||||
{
|
|
||||||
_addingNewSubscription(logger, socketId, subscriptionId, userSubscriptionCount, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void NothingToResubscribeCloseConnection(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_nothingToResubscribeCloseConnection(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void FailedAuthenticationDisconnectAndRecoonect(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_failedAuthenticationDisconnectAndRecoonect(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void AuthenticationSucceeded(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_authenticationSucceeded(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void FailedRequestRevitalization(this ILogger logger, int socketId, string? errorMessage)
|
|
||||||
{
|
|
||||||
_failedRequestRevitalization(logger, socketId, errorMessage, null);
|
|
||||||
}
|
|
||||||
public static void AllSubscriptionResubscribed(this ILogger logger, int socketId)
|
|
||||||
{
|
|
||||||
_allSubscriptionResubscribed(logger, socketId, null);
|
|
||||||
}
|
|
||||||
public static void SubscriptionUnsubscribed(this ILogger logger, int socketId, int subscriptionId)
|
|
||||||
{
|
|
||||||
_subscriptionUnsubscribed(logger, socketId, subscriptionId, null);
|
|
||||||
}
|
|
||||||
public static void SendingPeriodic(this ILogger logger, int socketId, string identifier)
|
|
||||||
{
|
|
||||||
_sendingPeriodic(logger, socketId, identifier, null);
|
|
||||||
}
|
|
||||||
public static void PeriodicSendFailed(this ILogger logger, int socketId, string identifier, string errorMessage, Exception e)
|
|
||||||
{
|
|
||||||
_periodicSendFailed(logger, socketId, identifier, errorMessage, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SendingData(this ILogger logger, int socketId, int requestId, string data)
|
|
||||||
{
|
|
||||||
_sendingData(logger, socketId, requestId, data, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void ReceivedMessageNotMatchedToAnyListener(this ILogger logger, int socketId, string listenId, string listenIds)
|
|
||||||
{
|
|
||||||
_receivedMessageNotMatchedToAnyListener(logger, socketId, listenId, listenIds, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,238 +0,0 @@
|
|||||||
using System;
|
|
||||||
using CryptoExchange.Net.Objects;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Logging.Extensions
|
|
||||||
{
|
|
||||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
||||||
|
|
||||||
public static class SymbolOrderBookLoggingExtensions
|
|
||||||
{
|
|
||||||
private static readonly Action<ILogger, string, string, OrderBookStatus, OrderBookStatus, Exception?> _orderBookStatusChanged;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookStarting;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookStoppedStarting;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookStopping;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookStopped;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookConnectionLost;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookDisconnected;
|
|
||||||
private static readonly Action<ILogger, string, string, int, Exception?> _orderBookProcessingBufferedUpdates;
|
|
||||||
private static readonly Action<ILogger, string, string, long, long, Exception?> _orderBookUpdateSkipped;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookOutOfSyncChecksum;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookResyncFailed;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookResyncing;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookResynced;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookMessageSkippedBecauseOfResubscribing;
|
|
||||||
private static readonly Action<ILogger, string, string, long, long, long, Exception?> _orderBookDataSet;
|
|
||||||
private static readonly Action<ILogger, string, string, long, long, long, long, Exception?> _orderBookUpdateBuffered;
|
|
||||||
private static readonly Action<ILogger, string, string, decimal, decimal, Exception?> _orderBookOutOfSyncDetected;
|
|
||||||
private static readonly Action<ILogger, string, string, Exception?> _orderBookReconnectingSocket;
|
|
||||||
private static readonly Action<ILogger, string, string, long, long, Exception?> _orderBookSkippedMessage;
|
|
||||||
private static readonly Action<ILogger, string, string, long, long, Exception?> _orderBookProcessedMessage;
|
|
||||||
private static readonly Action<ILogger, string, string, long, long, Exception?> _orderBookOutOfSync;
|
|
||||||
|
|
||||||
static SymbolOrderBookLoggingExtensions()
|
|
||||||
{
|
|
||||||
_orderBookStatusChanged = LoggerMessage.Define<string, string, OrderBookStatus, OrderBookStatus>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(5000, "OrderBookStatusChanged"),
|
|
||||||
"{Api} order book {Symbol} status changed: {PreviousStatus} => {NewStatus}");
|
|
||||||
|
|
||||||
_orderBookStarting = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(5001, "OrderBookStarting"),
|
|
||||||
"{Api} order book {Symbol} starting");
|
|
||||||
|
|
||||||
_orderBookStoppedStarting = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(5002, "OrderBookStoppedStarting"),
|
|
||||||
"{Api} order book {Symbol} stopped while starting");
|
|
||||||
|
|
||||||
_orderBookConnectionLost = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5003, "OrderBookConnectionLost"),
|
|
||||||
"{Api} order book {Symbol} connection lost");
|
|
||||||
|
|
||||||
_orderBookDisconnected = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5004, "OrderBookDisconnected"),
|
|
||||||
"{Api} order book {Symbol} disconnected");
|
|
||||||
|
|
||||||
_orderBookStopping = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(5005, "OrderBookStopping"),
|
|
||||||
"{Api} order book {Symbol} stopping");
|
|
||||||
|
|
||||||
|
|
||||||
_orderBookStopped = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(5006, "OrderBookStopped"),
|
|
||||||
"{Api} order book {Symbol} stopped");
|
|
||||||
|
|
||||||
_orderBookProcessingBufferedUpdates = LoggerMessage.Define<string, string, int>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(5007, "OrderBookProcessingBufferedUpdates"),
|
|
||||||
"{Api} order book {Symbol} Processing {NumberBufferedUpdated} buffered updates");
|
|
||||||
|
|
||||||
_orderBookUpdateSkipped = LoggerMessage.Define<string, string, long, long>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(5008, "OrderBookUpdateSkipped"),
|
|
||||||
"{Api} order book {Symbol} update skipped #{SequenceNumber}, currently at #{LastSequenceNumber}");
|
|
||||||
|
|
||||||
_orderBookOutOfSync = LoggerMessage.Define<string, string, long, long>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5009, "OrderBookOutOfSync"),
|
|
||||||
"{Api} order book {Symbol} out of sync (expected {ExpectedSequenceNumber}, was {SequenceNumber}), reconnecting");
|
|
||||||
|
|
||||||
_orderBookResynced = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Information,
|
|
||||||
new EventId(5010, "OrderBookResynced"),
|
|
||||||
"{Api} order book {Symbol} successfully resynchronized");
|
|
||||||
|
|
||||||
_orderBookMessageSkippedBecauseOfResubscribing = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(5011, "OrderBookMessageSkippedResubscribing"),
|
|
||||||
"{Api} order book {Symbol} Skipping message because of resubscribing");
|
|
||||||
|
|
||||||
_orderBookDataSet = LoggerMessage.Define<string, string, long, long, long>(
|
|
||||||
LogLevel.Debug,
|
|
||||||
new EventId(5012, "OrderBookDataSet"),
|
|
||||||
"{Api} order book {Symbol} data set: {BidCount} bids, {AskCount} asks. #{EndUpdateId}");
|
|
||||||
|
|
||||||
_orderBookUpdateBuffered = LoggerMessage.Define<string, string, long, long, long, long>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(5013, "OrderBookUpdateBuffered"),
|
|
||||||
"{Api} order book {Symbol} update buffered #{StartUpdateId}-#{EndUpdateId} [{AsksCount} asks, {BidsCount} bids]");
|
|
||||||
|
|
||||||
_orderBookOutOfSyncDetected = LoggerMessage.Define<string, string, decimal, decimal>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5014, "OrderBookOutOfSyncDetected"),
|
|
||||||
"{Api} order book {Symbol} detected out of sync order book. First ask: {FirstAsk}, first bid: {FirstBid}. Resyncing");
|
|
||||||
|
|
||||||
_orderBookReconnectingSocket = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5015, "OrderBookReconnectingSocket"),
|
|
||||||
"{Api} order book {Symbol} out of sync. Reconnecting socket");
|
|
||||||
|
|
||||||
_orderBookResyncing = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5016, "OrderBookResyncing"),
|
|
||||||
"{Api} order book {Symbol} out of sync. Resyncing");
|
|
||||||
|
|
||||||
_orderBookResyncFailed = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5017, "OrderBookResyncFailed"),
|
|
||||||
"{Api} order book {Symbol} resync failed, reconnecting socket");
|
|
||||||
|
|
||||||
_orderBookSkippedMessage = LoggerMessage.Define<string, string, long, long>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(5018, "OrderBookSkippedMessage"),
|
|
||||||
"{Api} order book {Symbol} update skipped #{FirstUpdateId}-{LastUpdateId}");
|
|
||||||
|
|
||||||
_orderBookProcessedMessage = LoggerMessage.Define<string, string, long, long>(
|
|
||||||
LogLevel.Trace,
|
|
||||||
new EventId(5019, "OrderBookProcessedMessage"),
|
|
||||||
"{Api} order book {Symbol} update processed #{FirstUpdateId}-{LastUpdateId}");
|
|
||||||
|
|
||||||
_orderBookOutOfSyncChecksum = LoggerMessage.Define<string, string>(
|
|
||||||
LogLevel.Warning,
|
|
||||||
new EventId(5020, "OrderBookOutOfSyncChecksum"),
|
|
||||||
"{Api} order book {Symbol} out of sync. Checksum mismatch, resyncing");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookStatusChanged(this ILogger logger, string api, string symbol, OrderBookStatus previousStatus, OrderBookStatus newStatus)
|
|
||||||
{
|
|
||||||
_orderBookStatusChanged(logger, api, symbol, previousStatus, newStatus, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookStarting(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookStarting(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookStoppedStarting(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookStoppedStarting(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookConnectionLost(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookConnectionLost(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookDisconnected(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookDisconnected(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookStopping(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookStopping(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookStopped(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookStopped(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookProcessingBufferedUpdates(this ILogger logger, string api, string symbol, int numberBufferedUpdated)
|
|
||||||
{
|
|
||||||
_orderBookProcessingBufferedUpdates(logger, api, symbol, numberBufferedUpdated, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookUpdateSkipped(this ILogger logger, string api, string symbol, long sequence, long lastSequenceNumber)
|
|
||||||
{
|
|
||||||
_orderBookUpdateSkipped(logger, api, symbol, sequence, lastSequenceNumber, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookOutOfSync(this ILogger logger, string api, string symbol, long expectedSequenceNumber, long sequenceNumber)
|
|
||||||
{
|
|
||||||
_orderBookOutOfSync(logger, api, symbol, expectedSequenceNumber, sequenceNumber, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookResynced(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookResynced(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookMessageSkippedResubscribing(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookMessageSkippedBecauseOfResubscribing(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookDataSet(this ILogger logger, string api, string symbol, long bidCount, long askCount, long endUpdateId)
|
|
||||||
{
|
|
||||||
_orderBookDataSet(logger, api, symbol, bidCount, askCount, endUpdateId, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookUpdateBuffered(this ILogger logger, string api, string symbol, long startUpdateId, long endUpdateId, long asksCount, long bidsCount)
|
|
||||||
{
|
|
||||||
_orderBookUpdateBuffered(logger, api, symbol, startUpdateId, endUpdateId, asksCount, bidsCount, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookOutOfSyncDetected(this ILogger logger, string api, string symbol, decimal firstAsk, decimal firstBid)
|
|
||||||
{
|
|
||||||
_orderBookOutOfSyncDetected(logger, api, symbol, firstAsk, firstBid, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookReconnectingSocket(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookReconnectingSocket(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookResyncing(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookResyncing(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookResyncFailed(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookResyncFailed(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookSkippedMessage(this ILogger logger, string api, string symbol, long firstUpdateId, long lastUpdateId)
|
|
||||||
{
|
|
||||||
_orderBookSkippedMessage(logger, api, symbol, firstUpdateId, lastUpdateId, null);
|
|
||||||
}
|
|
||||||
public static void OrderBookProcessedMessage(this ILogger logger, string api, string symbol, long firstUpdateId, long lastUpdateId)
|
|
||||||
{
|
|
||||||
_orderBookProcessedMessage(logger, api, symbol, firstUpdateId, lastUpdateId, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void OrderBookOutOfSyncChecksum(this ILogger logger, string api, string symbol)
|
|
||||||
{
|
|
||||||
_orderBookOutOfSyncChecksum(logger, api, symbol, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
namespace CryptoExchange.Net.Objects
|
using System.Security;
|
||||||
|
|
||||||
|
namespace CryptoExchange.Net.Objects
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Proxy info
|
/// Proxy info
|
||||||
@@ -22,14 +24,14 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The password of the proxy
|
/// The password of the proxy
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? Password { get; }
|
public SecureString? Password { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create new settings for a proxy
|
/// Create new settings for a proxy
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="host">The proxy hostname/ip</param>
|
/// <param name="host">The proxy hostname/ip</param>
|
||||||
/// <param name="port">The proxy port</param>
|
/// <param name="port">The proxy port</param>
|
||||||
public ApiProxy(string host, int port): this(host, port, null, null)
|
public ApiProxy(string host, int port): this(host, port, null, (SecureString?)null)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,7 +42,18 @@
|
|||||||
/// <param name="port">The proxy port</param>
|
/// <param name="port">The proxy port</param>
|
||||||
/// <param name="login">The proxy login</param>
|
/// <param name="login">The proxy login</param>
|
||||||
/// <param name="password">The proxy password</param>
|
/// <param name="password">The proxy password</param>
|
||||||
public ApiProxy(string host, int port, string? login, string? password)
|
public ApiProxy(string host, int port, string? login, string? password) : this(host, port, login, password?.ToSecureString())
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create new settings for a proxy
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="host">The proxy hostname/ip</param>
|
||||||
|
/// <param name="port">The proxy port</param>
|
||||||
|
/// <param name="login">The proxy login</param>
|
||||||
|
/// <param name="password">The proxy password</param>
|
||||||
|
public ApiProxy(string host, int port, string? login, SecureString? password)
|
||||||
{
|
{
|
||||||
Host = host;
|
Host = host;
|
||||||
Port = port;
|
Port = port;
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// Wait for the AutoResetEvent to be set
|
/// Wait for the AutoResetEvent to be set
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public Task<bool> WaitAsync(TimeSpan? timeout = null, CancellationToken ct = default)
|
public Task<bool> WaitAsync(TimeSpan? timeout = null)
|
||||||
{
|
{
|
||||||
lock (_waits)
|
lock (_waits)
|
||||||
{
|
{
|
||||||
@@ -44,28 +44,21 @@ namespace CryptoExchange.Net.Objects
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (ct.IsCancellationRequested)
|
|
||||||
return _completed;
|
|
||||||
|
|
||||||
var tcs = new TaskCompletionSource<bool>(TaskCreationOptions.RunContinuationsAsynchronously);
|
var tcs = new TaskCompletionSource<bool>(TaskCreationOptions.RunContinuationsAsynchronously);
|
||||||
if (timeout.HasValue)
|
if(timeout != null)
|
||||||
{
|
{
|
||||||
var timeoutSource = new CancellationTokenSource(timeout.Value);
|
var cancellationSource = new CancellationTokenSource(timeout.Value);
|
||||||
var cancellationSource = CancellationTokenSource.CreateLinkedTokenSource(timeoutSource.Token, ct);
|
var registration = cancellationSource.Token.Register(() =>
|
||||||
ct = cancellationSource.Token;
|
|
||||||
}
|
|
||||||
|
|
||||||
var registration = ct.Register(() =>
|
|
||||||
{
|
|
||||||
lock (_waits)
|
|
||||||
{
|
{
|
||||||
tcs.TrySetResult(false);
|
lock (_waits)
|
||||||
|
{
|
||||||
|
tcs.TrySetResult(false);
|
||||||
|
|
||||||
// Not the cleanest but it works
|
// Not the cleanest but it works
|
||||||
_waits = new Queue<TaskCompletionSource<bool>>(_waits.Where(i => i != tcs));
|
_waits = new Queue<TaskCompletionSource<bool>>(_waits.Where(i => i != tcs));
|
||||||
}
|
}
|
||||||
}, useSynchronizationContext: false);
|
}, useSynchronizationContext: false);
|
||||||
|
}
|
||||||
|
|
||||||
_waits.Enqueue(tcs);
|
_waits.Enqueue(tcs);
|
||||||
return tcs.Task;
|
return tcs.Task;
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects
|
|
||||||
{
|
|
||||||
internal class AuthTimeProvider : IAuthTimeProvider
|
|
||||||
{
|
|
||||||
public DateTime GetTime() => DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using CryptoExchange.Net.SharedApis;
|
using System;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
@@ -274,54 +273,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
return new WebCallResult(ResponseStatusCode, ResponseHeaders, ResponseTime, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, error);
|
return new WebCallResult(ResponseStatusCode, ResponseHeaders, ResponseTime, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="data">The data of the new type</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public WebCallResult<K> As<K>([AllowNull] K data)
|
|
||||||
{
|
|
||||||
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, ResponseTime, 0, null, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, ResultDataSource.Server, data, Error);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult of a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="tradeMode">Trade mode the result applies to</param>
|
|
||||||
/// <param name="data">The data</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<K> AsExchangeResult<K>(string exchange, TradingMode tradeMode, [AllowNull] K data)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<K>(exchange, tradeMode, this.As<K>(data));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult of a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="tradeModes">Trade modes the result applies to</param>
|
|
||||||
/// <param name="data">The data</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<K> AsExchangeResult<K>(string exchange, TradingMode[]? tradeModes, [AllowNull] K data)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<K>(exchange, tradeModes, this.As<K>(data));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="error">The error returned</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public WebCallResult<K> AsError<K>(Error error)
|
|
||||||
{
|
|
||||||
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, ResponseTime, 0, null, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, ResultDataSource.Server, default, error);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
@@ -380,11 +331,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan? ResponseTime { get; set; }
|
public TimeSpan? ResponseTime { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The data source of this result
|
|
||||||
/// </summary>
|
|
||||||
public ResultDataSource DataSource { get; set; } = ResultDataSource.Server;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new result
|
/// Create a new result
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -398,7 +344,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// <param name="requestBody"></param>
|
/// <param name="requestBody"></param>
|
||||||
/// <param name="requestMethod"></param>
|
/// <param name="requestMethod"></param>
|
||||||
/// <param name="requestHeaders"></param>
|
/// <param name="requestHeaders"></param>
|
||||||
/// <param name="dataSource"></param>
|
|
||||||
/// <param name="data"></param>
|
/// <param name="data"></param>
|
||||||
/// <param name="error"></param>
|
/// <param name="error"></param>
|
||||||
public WebCallResult(
|
public WebCallResult(
|
||||||
@@ -412,7 +357,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
string? requestBody,
|
string? requestBody,
|
||||||
HttpMethod? requestMethod,
|
HttpMethod? requestMethod,
|
||||||
IEnumerable<KeyValuePair<string, IEnumerable<string>>>? requestHeaders,
|
IEnumerable<KeyValuePair<string, IEnumerable<string>>>? requestHeaders,
|
||||||
ResultDataSource dataSource,
|
|
||||||
[AllowNull] T data,
|
[AllowNull] T data,
|
||||||
Error? error) : base(data, originalData, error)
|
Error? error) : base(data, originalData, error)
|
||||||
{
|
{
|
||||||
@@ -426,7 +370,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
RequestBody = requestBody;
|
RequestBody = requestBody;
|
||||||
RequestHeaders = requestHeaders;
|
RequestHeaders = requestHeaders;
|
||||||
RequestMethod = requestMethod;
|
RequestMethod = requestMethod;
|
||||||
DataSource = dataSource;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -450,7 +393,7 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// Create a new error result
|
/// Create a new error result
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="error">The error</param>
|
/// <param name="error">The error</param>
|
||||||
public WebCallResult(Error? error) : this(null, null, null, null, null, null, null, null, null, null, ResultDataSource.Server, default, error) { }
|
public WebCallResult(Error? error) : this(null, null, null, null, null, null, null, null, null, null, default, error) { }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Copy the WebCallResult to a new data type
|
/// Copy the WebCallResult to a new data type
|
||||||
@@ -460,7 +403,7 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public new WebCallResult<K> As<K>([AllowNull] K data)
|
public new WebCallResult<K> As<K>([AllowNull] K data)
|
||||||
{
|
{
|
||||||
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, ResponseTime, ResponseLength, OriginalData, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, DataSource, data, Error);
|
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, ResponseTime, ResponseLength, OriginalData, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, data, Error);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -471,78 +414,7 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public new WebCallResult<K> AsError<K>(Error error)
|
public new WebCallResult<K> AsError<K>(Error error)
|
||||||
{
|
{
|
||||||
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, ResponseTime, ResponseLength, OriginalData, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, DataSource, default, error);
|
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, ResponseTime, ResponseLength, OriginalData, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, default, error);
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult of a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="tradeMode">Trade mode the result applies to</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<T> AsExchangeResult(string exchange, TradingMode tradeMode)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<T>(exchange, tradeMode, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult of a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="tradeModes">Trade modes the result applies to</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<T> AsExchangeResult(string exchange, TradingMode[] tradeModes)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<T>(exchange, tradeModes, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult of a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="tradeMode">Trade mode the result applies to</param>
|
|
||||||
/// <param name="data">Data</param>
|
|
||||||
/// <param name="nextPageToken">Next page token</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<K> AsExchangeResult<K>(string exchange, TradingMode tradeMode, [AllowNull] K data, INextPageToken? nextPageToken = null)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<K>(exchange, tradeMode, As<K>(data), nextPageToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult of a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="tradeModes">Trade modes the result applies to</param>
|
|
||||||
/// <param name="data">Data</param>
|
|
||||||
/// <param name="nextPageToken">Next page token</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<K> AsExchangeResult<K>(string exchange, TradingMode[]? tradeModes, [AllowNull] K data, INextPageToken? nextPageToken = null)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<K>(exchange, tradeModes, As<K>(data), nextPageToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to an ExchangeWebResult with a specific error
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="exchange">The exchange</param>
|
|
||||||
/// <param name="error">The error returned</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeWebResult<K> AsExchangeError<K>(string exchange, Error error)
|
|
||||||
{
|
|
||||||
return new ExchangeWebResult<K>(exchange, null, AsError<K>(error));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Return a copy of this result with data source set to cache
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
internal WebCallResult<T> Cached()
|
|
||||||
{
|
|
||||||
return new WebCallResult<T>(ResponseStatusCode, ResponseHeaders, ResponseTime, ResponseLength, OriginalData, RequestId, RequestUrl, RequestBody, RequestMethod, RequestHeaders, ResultDataSource.Cache, Data, Error);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
|
|||||||
@@ -13,9 +13,5 @@
|
|||||||
/// Form content type header
|
/// Form content type header
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const string FormContentHeader = "application/x-www-form-urlencoded";
|
public const string FormContentHeader = "application/x-www-form-urlencoded";
|
||||||
/// <summary>
|
|
||||||
/// Placeholder key for when request body should be set to the value of this KVP
|
|
||||||
/// </summary>
|
|
||||||
public const string BodyPlaceHolderKey = "_BODY_";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,29 +15,6 @@
|
|||||||
Wait
|
Wait
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// What to do when a request would exceed the rate limit
|
|
||||||
/// </summary>
|
|
||||||
public enum RateLimitWindowType
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// A sliding window
|
|
||||||
/// </summary>
|
|
||||||
Sliding,
|
|
||||||
/// <summary>
|
|
||||||
/// A fixed interval window
|
|
||||||
/// </summary>
|
|
||||||
Fixed,
|
|
||||||
/// <summary>
|
|
||||||
/// A fixed interval starting after the first request
|
|
||||||
/// </summary>
|
|
||||||
FixedAfterFirst,
|
|
||||||
/// <summary>
|
|
||||||
/// Decaying window
|
|
||||||
/// </summary>
|
|
||||||
Decay
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Where the parameters for a HttpMethod should be added in a request
|
/// Where the parameters for a HttpMethod should be added in a request
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -122,22 +99,15 @@
|
|||||||
/// Define how array parameters should be send
|
/// Define how array parameters should be send
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ArrayParametersSerialization
|
public enum ArrayParametersSerialization
|
||||||
#pragma warning disable CS1570 // XML comment has badly formed XML
|
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send as key=value1&key=value2
|
/// Send multiple key=value for each entry
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MultipleValues,
|
MultipleValues,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send as key[]=value1&key[]=value2
|
/// Create an []=value array
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Array,
|
Array
|
||||||
/// <summary>
|
|
||||||
/// Send as key=[value1, value2]
|
|
||||||
/// </summary>
|
|
||||||
JsonArray
|
|
||||||
#pragma warning restore CS1570 // XML comment has badly formed XML
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -152,11 +122,7 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Round to closest value
|
/// Round to closest value
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Closest,
|
Closest
|
||||||
/// <summary>
|
|
||||||
/// Round up (ceil)
|
|
||||||
/// </summary>
|
|
||||||
Up
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -173,39 +139,4 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
Snapshot
|
Snapshot
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Reconnect policy
|
|
||||||
/// </summary>
|
|
||||||
public enum ReconnectPolicy
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Reconnect is disabled
|
|
||||||
/// </summary>
|
|
||||||
Disabled,
|
|
||||||
/// <summary>
|
|
||||||
/// Fixed delay of `ReconnectInterval` between retries
|
|
||||||
/// </summary>
|
|
||||||
FixedDelay,
|
|
||||||
/// <summary>
|
|
||||||
/// Backof policy of 2^`reconnectAttempt`, where `reconnectAttempt` has a max value of 5
|
|
||||||
/// </summary>
|
|
||||||
ExponentialBackoff
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The data source of the result
|
|
||||||
/// </summary>
|
|
||||||
public enum ResultDataSource
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// From server
|
|
||||||
/// </summary>
|
|
||||||
Server,
|
|
||||||
/// <summary>
|
|
||||||
/// From cache
|
|
||||||
/// </summary>
|
|
||||||
Cache
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,15 +28,6 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public ApiCredentials? ApiCredentials { get; set; }
|
public ApiCredentials? ApiCredentials { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether or not client side rate limiting should be applied
|
|
||||||
/// </summary>
|
|
||||||
public bool RateLimiterEnabled { get; set; } = true;
|
|
||||||
/// <summary>
|
|
||||||
/// What should happen when a rate limit is reached
|
|
||||||
/// </summary>
|
|
||||||
public RateLimitingBehaviour RateLimitingBehaviour { get; set; } = RateLimitingBehaviour.Wait;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base for order book options
|
/// Base for order book options
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class OrderBookOptions
|
public class OrderBookOptions : ExchangeOptions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether or not checksum validation is enabled. Default is true, disabling will ignore checksum messages.
|
/// Whether or not checksum validation is enabled. Default is true, disabling will ignore checksum messages.
|
||||||
@@ -19,7 +19,11 @@
|
|||||||
{
|
{
|
||||||
return new T
|
return new T
|
||||||
{
|
{
|
||||||
|
ApiCredentials = ApiCredentials?.Copy(),
|
||||||
|
OutputOriginalData = OutputOriginalData,
|
||||||
ChecksumValidationEnabled = ChecksumValidationEnabled,
|
ChecksumValidationEnabled = ChecksumValidationEnabled,
|
||||||
|
Proxy = Proxy,
|
||||||
|
RequestTimeout = RequestTimeout
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
using CryptoExchange.Net.Authentication;
|
using CryptoExchange.Net.Authentication;
|
||||||
|
using CryptoExchange.Net.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects.Options
|
namespace CryptoExchange.Net.Objects.Options
|
||||||
{
|
{
|
||||||
@@ -8,6 +10,16 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class RestApiOptions : ApiOptions
|
public class RestApiOptions : ApiOptions
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// List of rate limiters to use
|
||||||
|
/// </summary>
|
||||||
|
public List<IRateLimiter> RateLimiters { get; set; } = new List<IRateLimiter>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// What to do when a call would exceed the rate limit
|
||||||
|
/// </summary>
|
||||||
|
public RateLimitingBehaviour RateLimitingBehaviour { get; set; } = RateLimitingBehaviour.Wait;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether or not to automatically sync the local time with the server time
|
/// Whether or not to automatically sync the local time with the server time
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -30,6 +42,8 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
ApiCredentials = ApiCredentials?.Copy(),
|
ApiCredentials = ApiCredentials?.Copy(),
|
||||||
OutputOriginalData = OutputOriginalData,
|
OutputOriginalData = OutputOriginalData,
|
||||||
AutoTimestamp = AutoTimestamp,
|
AutoTimestamp = AutoTimestamp,
|
||||||
|
RateLimiters = RateLimiters,
|
||||||
|
RateLimitingBehaviour = RateLimitingBehaviour,
|
||||||
TimestampRecalculationInterval = TimestampRecalculationInterval
|
TimestampRecalculationInterval = TimestampRecalculationInterval
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,16 +18,6 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan TimestampRecalculationInterval { get; set; } = TimeSpan.FromHours(1);
|
public TimeSpan TimestampRecalculationInterval { get; set; } = TimeSpan.FromHours(1);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether caching is enabled. Caching will only be applied to GET http requests. The lifetime of cached results can be determined by the `CachingMaxAge` option
|
|
||||||
/// </summary>
|
|
||||||
public bool CachingEnabled { get; set; } = false;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The max age of a cached entry, only used when the `CachingEnabled` options is set to true. When a cached entry is older than the max age it will be discarded and a new server request will be done
|
|
||||||
/// </summary>
|
|
||||||
public TimeSpan CachingMaxAge { get; set; } = TimeSpan.FromSeconds(5);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a copy of this options
|
/// Create a copy of this options
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -42,11 +32,7 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
TimestampRecalculationInterval = TimestampRecalculationInterval,
|
TimestampRecalculationInterval = TimestampRecalculationInterval,
|
||||||
ApiCredentials = ApiCredentials?.Copy(),
|
ApiCredentials = ApiCredentials?.Copy(),
|
||||||
Proxy = Proxy,
|
Proxy = Proxy,
|
||||||
RequestTimeout = RequestTimeout,
|
RequestTimeout = RequestTimeout
|
||||||
RateLimiterEnabled = RateLimiterEnabled,
|
|
||||||
RateLimitingBehaviour = RateLimitingBehaviour,
|
|
||||||
CachingEnabled = CachingEnabled,
|
|
||||||
CachingMaxAge = CachingMaxAge,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
using CryptoExchange.Net.Authentication;
|
using CryptoExchange.Net.Authentication;
|
||||||
|
using CryptoExchange.Net.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects.Options
|
namespace CryptoExchange.Net.Objects.Options
|
||||||
{
|
{
|
||||||
@@ -8,6 +10,11 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class SocketApiOptions : ApiOptions
|
public class SocketApiOptions : ApiOptions
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// List of rate limiters to use
|
||||||
|
/// </summary>
|
||||||
|
public List<IRateLimiter> RateLimiters { get; set; } = new List<IRateLimiter>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The max time of not receiving any data after which the connection is assumed to be dropped. This can only be used for socket connections where a steady flow of data is expected,
|
/// The max time of not receiving any data after which the connection is assumed to be dropped. This can only be used for socket connections where a steady flow of data is expected,
|
||||||
/// for example when the server sends intermittent ping requests
|
/// for example when the server sends intermittent ping requests
|
||||||
@@ -30,6 +37,7 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
{
|
{
|
||||||
ApiCredentials = ApiCredentials?.Copy(),
|
ApiCredentials = ApiCredentials?.Copy(),
|
||||||
OutputOriginalData = OutputOriginalData,
|
OutputOriginalData = OutputOriginalData,
|
||||||
|
RateLimiters = RateLimiters,
|
||||||
SocketNoDataTimeout = SocketNoDataTimeout,
|
SocketNoDataTimeout = SocketNoDataTimeout,
|
||||||
MaxSocketConnections = MaxSocketConnections,
|
MaxSocketConnections = MaxSocketConnections,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -9,14 +9,14 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
public class SocketExchangeOptions : ExchangeOptions
|
public class SocketExchangeOptions : ExchangeOptions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The fixed time to wait between reconnect attempts, only used when `ReconnectPolicy` is set to `ReconnectPolicy.ExponentialBackoff`
|
/// Whether or not the socket should automatically reconnect when losing connection
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan ReconnectInterval { get; set; } = TimeSpan.FromSeconds(5);
|
public bool AutoReconnect { get; set; } = true;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reconnect policy
|
/// Time to wait between reconnect attempts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ReconnectPolicy ReconnectPolicy { get; set; } = ReconnectPolicy.FixedDelay;
|
public TimeSpan ReconnectInterval { get; set; } = TimeSpan.FromSeconds(5);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Max number of concurrent resubscription tasks per socket after reconnecting a socket
|
/// Max number of concurrent resubscription tasks per socket after reconnecting a socket
|
||||||
@@ -46,12 +46,6 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan DelayAfterConnect { get; set; } = TimeSpan.Zero;
|
public TimeSpan DelayAfterConnect { get; set; } = TimeSpan.Zero;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// This delay is used to set a RetryAfter guard on the connection after a rate limit is hit on the server.
|
|
||||||
/// This is used to prevent the client from reconnecting too quickly after a rate limit is hit.
|
|
||||||
/// </summary>
|
|
||||||
public TimeSpan? ConnectDelayAfterRateLimited { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a copy of this options
|
/// Create a copy of this options
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -63,7 +57,7 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
{
|
{
|
||||||
ApiCredentials = ApiCredentials?.Copy(),
|
ApiCredentials = ApiCredentials?.Copy(),
|
||||||
OutputOriginalData = OutputOriginalData,
|
OutputOriginalData = OutputOriginalData,
|
||||||
ReconnectPolicy = ReconnectPolicy,
|
AutoReconnect = AutoReconnect,
|
||||||
DelayAfterConnect = DelayAfterConnect,
|
DelayAfterConnect = DelayAfterConnect,
|
||||||
MaxConcurrentResubscriptionsPerSocket = MaxConcurrentResubscriptionsPerSocket,
|
MaxConcurrentResubscriptionsPerSocket = MaxConcurrentResubscriptionsPerSocket,
|
||||||
ReconnectInterval = ReconnectInterval,
|
ReconnectInterval = ReconnectInterval,
|
||||||
@@ -71,9 +65,7 @@ namespace CryptoExchange.Net.Objects.Options
|
|||||||
SocketSubscriptionsCombineTarget = SocketSubscriptionsCombineTarget,
|
SocketSubscriptionsCombineTarget = SocketSubscriptionsCombineTarget,
|
||||||
MaxSocketConnections = MaxSocketConnections,
|
MaxSocketConnections = MaxSocketConnections,
|
||||||
Proxy = Proxy,
|
Proxy = Proxy,
|
||||||
RequestTimeout = RequestTimeout,
|
RequestTimeout = RequestTimeout
|
||||||
RateLimitingBehaviour = RateLimitingBehaviour,
|
|
||||||
RateLimiterEnabled = RateLimiterEnabled,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Order string comparer, sorts by alphabetical order
|
|
||||||
/// </summary>
|
|
||||||
public class OrderedStringComparer : IComparer<string>
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Compare function
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="x"></param>
|
|
||||||
/// <param name="y"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public int Compare(string x, string y)
|
|
||||||
{
|
|
||||||
// Shortcuts: If both are null, they are the same.
|
|
||||||
if (x == null && y == null) return 0;
|
|
||||||
|
|
||||||
// If one is null and the other isn't, then the
|
|
||||||
// one that is null is "lesser".
|
|
||||||
if (x == null) return -1;
|
|
||||||
if (y == null) return 1;
|
|
||||||
|
|
||||||
return x.CompareTo(y);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
using CryptoExchange.Net.Attributes;
|
using CryptoExchange.Net.Attributes;
|
||||||
using CryptoExchange.Net.Converters.SystemTextJson;
|
using CryptoExchange.Net.Converters;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects
|
namespace CryptoExchange.Net.Objects
|
||||||
{
|
{
|
||||||
@@ -149,27 +148,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
Add(key, DateTimeConverter.ConvertToSeconds(value));
|
Add(key, DateTimeConverter.ConvertToSeconds(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Add a datetime value as string seconds timestamp
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="key"></param>
|
|
||||||
/// <param name="value"></param>
|
|
||||||
public void AddSecondsString(string key, DateTime value)
|
|
||||||
{
|
|
||||||
Add(key, DateTimeConverter.ConvertToSeconds(value).ToString());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Add a datetime value as string seconds timestamp. Not added if value is null
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="key"></param>
|
|
||||||
/// <param name="value"></param>
|
|
||||||
public void AddOptionalSecondsString(string key, DateTime? value)
|
|
||||||
{
|
|
||||||
if (value != null)
|
|
||||||
Add(key, DateTimeConverter.ConvertToSeconds(value).ToString());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add an enum value as the string value as mapped using the <see cref="MapAttribute" />
|
/// Add an enum value as the string value as mapped using the <see cref="MapAttribute" />
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -180,17 +158,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
Add(key, EnumConverter.GetString(value)!);
|
Add(key, EnumConverter.GetString(value)!);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Add an enum value as the string value as mapped using the <see cref="MapAttribute" />
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="key"></param>
|
|
||||||
/// <param name="value"></param>
|
|
||||||
public void AddEnumAsInt<T>(string key, T value)
|
|
||||||
{
|
|
||||||
var stringVal = EnumConverter.GetString(value);
|
|
||||||
Add(key, int.Parse(stringVal)!);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add an enum value as the string value as mapped using the <see cref="MapAttribute" />. Not added if value is null
|
/// Add an enum value as the string value as mapped using the <see cref="MapAttribute" />. Not added if value is null
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -201,32 +168,5 @@ namespace CryptoExchange.Net.Objects
|
|||||||
if (value != null)
|
if (value != null)
|
||||||
Add(key, EnumConverter.GetString(value));
|
Add(key, EnumConverter.GetString(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Add an enum value as the string value as mapped using the <see cref="MapAttribute" />. Not added if value is null
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="key"></param>
|
|
||||||
/// <param name="value"></param>
|
|
||||||
public void AddOptionalEnumAsInt<T>(string key, T? value)
|
|
||||||
{
|
|
||||||
if (value != null)
|
|
||||||
{
|
|
||||||
var stringVal = EnumConverter.GetString(value);
|
|
||||||
Add(key, int.Parse(stringVal));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Set the request body. Can be used to specify a simple value or array as the body instead of an object
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="body">Body to set</param>
|
|
||||||
/// <exception cref="InvalidOperationException"></exception>
|
|
||||||
public void SetBody(object body)
|
|
||||||
{
|
|
||||||
if (this.Any())
|
|
||||||
throw new InvalidOperationException("Can't set body when other parameters already specified");
|
|
||||||
|
|
||||||
Add(Constants.BodyPlaceHolderKey, body);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,443 @@
|
|||||||
|
using CryptoExchange.Net.Interfaces;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Security;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace CryptoExchange.Net.Objects
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Limits the amount of requests to a certain constraint
|
||||||
|
/// </summary>
|
||||||
|
public class RateLimiter : IRateLimiter
|
||||||
|
{
|
||||||
|
private readonly object _limiterLock = new object();
|
||||||
|
internal List<Limiter> _limiters = new List<Limiter>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Create a new RateLimiter. Configure the rate limiter by calling <see cref="AddTotalRateLimit"/>,
|
||||||
|
/// <see cref="AddEndpointLimit(string, int, TimeSpan, HttpMethod?, bool)"/>, <see cref="AddPartialEndpointLimit(string, int, TimeSpan, HttpMethod?, bool, bool)"/> or <see cref="AddApiKeyLimit"/>.
|
||||||
|
/// </summary>
|
||||||
|
public RateLimiter()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a rate limit for the total amount of requests per time period
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="limit">The limit per period. Note that this is weight, not single request, altough by default requests have a weight of 1</param>
|
||||||
|
/// <param name="perTimePeriod">The time period the limit is for</param>
|
||||||
|
public RateLimiter AddTotalRateLimit(int limit, TimeSpan perTimePeriod)
|
||||||
|
{
|
||||||
|
lock(_limiterLock)
|
||||||
|
_limiters.Add(new TotalRateLimiter(limit, perTimePeriod, null));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a rate lmit for the amount of requests per time for an endpoint
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="endpoint">The endpoint the limit is for</param>
|
||||||
|
/// <param name="limit">The limit per period. Note that this is weight, not single request, altough by default requests have a weight of 1</param>
|
||||||
|
/// <param name="perTimePeriod">The time period the limit is for</param>
|
||||||
|
/// <param name="method">The HttpMethod the limit is for, null for all</param>
|
||||||
|
/// <param name="excludeFromOtherRateLimits">If set to true it ignores other rate limits</param>
|
||||||
|
public RateLimiter AddEndpointLimit(string endpoint, int limit, TimeSpan perTimePeriod, HttpMethod? method = null, bool excludeFromOtherRateLimits = false)
|
||||||
|
{
|
||||||
|
lock(_limiterLock)
|
||||||
|
_limiters.Add(new EndpointRateLimiter(new[] { endpoint }, limit, perTimePeriod, method, excludeFromOtherRateLimits));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a rate lmit for the amount of requests per time for an endpoint
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="endpoints">The endpoints the limit is for</param>
|
||||||
|
/// <param name="limit">The limit per period. Note that this is weight, not single request, altough by default requests have a weight of 1</param>
|
||||||
|
/// <param name="perTimePeriod">The time period the limit is for</param>
|
||||||
|
/// <param name="method">The HttpMethod the limit is for, null for all</param>
|
||||||
|
/// <param name="excludeFromOtherRateLimits">If set to true it ignores other rate limits</param>
|
||||||
|
public RateLimiter AddEndpointLimit(IEnumerable<string> endpoints, int limit, TimeSpan perTimePeriod, HttpMethod? method = null, bool excludeFromOtherRateLimits = false)
|
||||||
|
{
|
||||||
|
lock(_limiterLock)
|
||||||
|
_limiters.Add(new EndpointRateLimiter(endpoints.ToArray(), limit, perTimePeriod, method, excludeFromOtherRateLimits));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a rate lmit for the amount of requests per time for an endpoint
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="endpoint">The endpoint the limit is for</param>
|
||||||
|
/// <param name="limit">The limit per period. Note that this is weight, not single request, altough by default requests have a weight of 1</param>
|
||||||
|
/// <param name="perTimePeriod">The time period the limit is for</param>
|
||||||
|
/// <param name="method">The HttpMethod the limit is for, null for all</param>
|
||||||
|
/// <param name="ignoreOtherRateLimits">If set to true it ignores other rate limits</param>
|
||||||
|
/// <param name="countPerEndpoint">Whether all requests for this partial endpoint are bound to the same limit or each individual endpoint has its own limit</param>
|
||||||
|
public RateLimiter AddPartialEndpointLimit(string endpoint, int limit, TimeSpan perTimePeriod, HttpMethod? method = null, bool countPerEndpoint = false, bool ignoreOtherRateLimits = false)
|
||||||
|
{
|
||||||
|
lock(_limiterLock)
|
||||||
|
_limiters.Add(new PartialEndpointRateLimiter(new[] { endpoint }, limit, perTimePeriod, method, ignoreOtherRateLimits, countPerEndpoint));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a rate limit for the amount of requests per Api key
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="limit">The limit per period. Note that this is weight, not single request, altough by default requests have a weight of 1</param>
|
||||||
|
/// <param name="perTimePeriod">The time period the limit is for</param>
|
||||||
|
/// <param name="onlyForSignedRequests">Only include calls that are signed in this limiter</param>
|
||||||
|
/// <param name="excludeFromTotalRateLimit">Exclude requests with API key from the total rate limiter</param>
|
||||||
|
public RateLimiter AddApiKeyLimit(int limit, TimeSpan perTimePeriod, bool onlyForSignedRequests, bool excludeFromTotalRateLimit)
|
||||||
|
{
|
||||||
|
lock(_limiterLock)
|
||||||
|
_limiters.Add(new ApiKeyRateLimiter(limit, perTimePeriod, null, onlyForSignedRequests, excludeFromTotalRateLimit));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a rate limit for the amount of messages that can be send per connection
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="endpoint">The endpoint that the limit is for</param>
|
||||||
|
/// <param name="limit">The limit per period. Note that this is weight, not single request, altough by default requests have a weight of 1</param>
|
||||||
|
/// <param name="perTimePeriod">The time period the limit is for</param>
|
||||||
|
public RateLimiter AddConnectionRateLimit(string endpoint, int limit, TimeSpan perTimePeriod)
|
||||||
|
{
|
||||||
|
lock (_limiterLock)
|
||||||
|
_limiters.Add(new ConnectionRateLimiter(new[] { endpoint }, limit, perTimePeriod));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task<CallResult<int>> LimitRequestAsync(ILogger logger, string endpoint, HttpMethod method, bool signed, SecureString? apiKey, RateLimitingBehaviour limitBehaviour, int requestWeight, CancellationToken ct)
|
||||||
|
{
|
||||||
|
int totalWaitTime = 0;
|
||||||
|
|
||||||
|
List<EndpointRateLimiter> endpointLimits;
|
||||||
|
lock (_limiterLock)
|
||||||
|
endpointLimits = _limiters.OfType<EndpointRateLimiter>().Where(h => h.Endpoints.Contains(endpoint) && (h.Method == null || h.Method == method)).ToList();
|
||||||
|
foreach (var endpointLimit in endpointLimits)
|
||||||
|
{
|
||||||
|
var waitResult = await ProcessTopic(logger, endpointLimit, endpoint, requestWeight, limitBehaviour, ct).ConfigureAwait(false);
|
||||||
|
if (!waitResult)
|
||||||
|
return waitResult;
|
||||||
|
|
||||||
|
totalWaitTime += waitResult.Data;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (endpointLimits.Any(l => l.IgnoreOtherRateLimits))
|
||||||
|
return new CallResult<int>(totalWaitTime);
|
||||||
|
|
||||||
|
List<PartialEndpointRateLimiter> partialEndpointLimits;
|
||||||
|
lock (_limiterLock)
|
||||||
|
partialEndpointLimits = _limiters.OfType<PartialEndpointRateLimiter>().Where(h => h.PartialEndpoints.Any(h => endpoint.Contains(h)) && (h.Method == null || h.Method == method)).ToList();
|
||||||
|
foreach (var partialEndpointLimit in partialEndpointLimits)
|
||||||
|
{
|
||||||
|
if (partialEndpointLimit.CountPerEndpoint)
|
||||||
|
{
|
||||||
|
SingleTopicRateLimiter? thisEndpointLimit;
|
||||||
|
lock (_limiterLock)
|
||||||
|
{
|
||||||
|
thisEndpointLimit = _limiters.OfType<SingleTopicRateLimiter>().SingleOrDefault(h => h.Type == RateLimitType.PartialEndpoint && (string)h.Topic == endpoint);
|
||||||
|
if (thisEndpointLimit == null)
|
||||||
|
{
|
||||||
|
thisEndpointLimit = new SingleTopicRateLimiter(endpoint, partialEndpointLimit);
|
||||||
|
_limiters.Add(thisEndpointLimit);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var waitResult = await ProcessTopic(logger, thisEndpointLimit, endpoint, requestWeight, limitBehaviour, ct).ConfigureAwait(false);
|
||||||
|
if (!waitResult)
|
||||||
|
return waitResult;
|
||||||
|
|
||||||
|
totalWaitTime += waitResult.Data;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var waitResult = await ProcessTopic(logger, partialEndpointLimit, endpoint, requestWeight, limitBehaviour, ct).ConfigureAwait(false);
|
||||||
|
if (!waitResult)
|
||||||
|
return waitResult;
|
||||||
|
|
||||||
|
totalWaitTime += waitResult.Data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(partialEndpointLimits.Any(p => p.IgnoreOtherRateLimits))
|
||||||
|
return new CallResult<int>(totalWaitTime);
|
||||||
|
|
||||||
|
List<ApiKeyRateLimiter> apiLimits;
|
||||||
|
lock (_limiterLock)
|
||||||
|
apiLimits = _limiters.OfType<ApiKeyRateLimiter>().Where(h => h.Type == RateLimitType.ApiKey).ToList();
|
||||||
|
foreach (var apiLimit in apiLimits)
|
||||||
|
{
|
||||||
|
if(apiKey == null)
|
||||||
|
{
|
||||||
|
if (!apiLimit.OnlyForSignedRequests)
|
||||||
|
{
|
||||||
|
var waitResult = await ProcessTopic(logger, apiLimit, endpoint, requestWeight, limitBehaviour, ct).ConfigureAwait(false);
|
||||||
|
if (!waitResult)
|
||||||
|
return waitResult;
|
||||||
|
|
||||||
|
totalWaitTime += waitResult.Data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (signed || !apiLimit.OnlyForSignedRequests)
|
||||||
|
{
|
||||||
|
SingleTopicRateLimiter? thisApiLimit;
|
||||||
|
lock (_limiterLock)
|
||||||
|
{
|
||||||
|
thisApiLimit = _limiters.OfType<SingleTopicRateLimiter>().SingleOrDefault(h => h.Type == RateLimitType.ApiKey && ((SecureString)h.Topic).IsEqualTo(apiKey));
|
||||||
|
if (thisApiLimit == null)
|
||||||
|
{
|
||||||
|
thisApiLimit = new SingleTopicRateLimiter(apiKey, apiLimit);
|
||||||
|
_limiters.Add(thisApiLimit);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var waitResult = await ProcessTopic(logger, thisApiLimit, endpoint, requestWeight, limitBehaviour, ct).ConfigureAwait(false);
|
||||||
|
if (!waitResult)
|
||||||
|
return waitResult;
|
||||||
|
|
||||||
|
totalWaitTime += waitResult.Data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((signed || apiLimits.All(l => !l.OnlyForSignedRequests)) && apiLimits.Any(l => l.IgnoreTotalRateLimit))
|
||||||
|
return new CallResult<int>(totalWaitTime);
|
||||||
|
|
||||||
|
List<TotalRateLimiter> totalLimits;
|
||||||
|
lock (_limiterLock)
|
||||||
|
totalLimits = _limiters.OfType<TotalRateLimiter>().ToList();
|
||||||
|
foreach(var totalLimit in totalLimits)
|
||||||
|
{
|
||||||
|
var waitResult = await ProcessTopic(logger, totalLimit, endpoint, requestWeight, limitBehaviour, ct).ConfigureAwait(false);
|
||||||
|
if (!waitResult)
|
||||||
|
return waitResult;
|
||||||
|
|
||||||
|
totalWaitTime += waitResult.Data;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new CallResult<int>(totalWaitTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task<CallResult<int>> ProcessTopic(ILogger logger, Limiter historyTopic, string endpoint, int requestWeight, RateLimitingBehaviour limitBehaviour, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var sw = Stopwatch.StartNew();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await historyTopic.Semaphore.WaitAsync(ct).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
return new CallResult<int>(new CancellationRequestedError());
|
||||||
|
}
|
||||||
|
sw.Stop();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
int totalWaitTime = 0;
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
// Remove requests no longer in time period from the history
|
||||||
|
var checkTime = DateTime.UtcNow;
|
||||||
|
for (var i = 0; i < historyTopic.Entries.Count; i++)
|
||||||
|
{
|
||||||
|
if (historyTopic.Entries[i].Timestamp < checkTime - historyTopic.Period)
|
||||||
|
{
|
||||||
|
historyTopic.Entries.Remove(historyTopic.Entries[i]);
|
||||||
|
i--;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
var currentWeight = !historyTopic.Entries.Any() ? 0 : historyTopic.Entries.Sum(h => h.Weight);
|
||||||
|
if (currentWeight + requestWeight > historyTopic.Limit)
|
||||||
|
{
|
||||||
|
if (currentWeight == 0)
|
||||||
|
throw new Exception("Request limit reached without any prior request. " +
|
||||||
|
$"This request can never execute with the current rate limiter. Request weight: {requestWeight}, Ratelimit: {historyTopic.Limit}");
|
||||||
|
|
||||||
|
// Wait until the next entry should be removed from the history
|
||||||
|
var thisWaitTime = (int)Math.Round(((historyTopic.Entries.First().Timestamp + historyTopic.Period) - checkTime).TotalMilliseconds);
|
||||||
|
if (thisWaitTime > 0)
|
||||||
|
{
|
||||||
|
if (limitBehaviour == RateLimitingBehaviour.Fail)
|
||||||
|
{
|
||||||
|
var msg = $"Request to {endpoint} failed because of rate limit `{historyTopic.Type}`. Current weight: {currentWeight}/{historyTopic.Limit}, request weight: {requestWeight}";
|
||||||
|
logger.Log(LogLevel.Warning, msg);
|
||||||
|
return new CallResult<int>(new ClientRateLimitError(msg) { RetryAfter = DateTime.UtcNow.AddSeconds(thisWaitTime) });
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Log(LogLevel.Information, $"Message to {endpoint} waiting {thisWaitTime}ms for rate limit `{historyTopic.Type}`. Current weight: {currentWeight}/{historyTopic.Limit}, request weight: {requestWeight}");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await Task.Delay(thisWaitTime, ct).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
return new CallResult<int>(new CancellationRequestedError());
|
||||||
|
}
|
||||||
|
totalWaitTime += thisWaitTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var newTime = DateTime.UtcNow;
|
||||||
|
historyTopic.Entries.Add(new LimitEntry(newTime, requestWeight));
|
||||||
|
return new CallResult<int>(totalWaitTime);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
historyTopic.Semaphore.Release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal struct LimitEntry
|
||||||
|
{
|
||||||
|
public DateTime Timestamp { get; set; }
|
||||||
|
public int Weight { get; set; }
|
||||||
|
|
||||||
|
public LimitEntry(DateTime timestamp, int weight)
|
||||||
|
{
|
||||||
|
Timestamp = timestamp;
|
||||||
|
Weight = weight;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class Limiter
|
||||||
|
{
|
||||||
|
public RateLimitType Type { get; set; }
|
||||||
|
public HttpMethod? Method { get; set; }
|
||||||
|
|
||||||
|
public SemaphoreSlim Semaphore { get; set; }
|
||||||
|
public int Limit { get; set; }
|
||||||
|
|
||||||
|
public TimeSpan Period { get; set; }
|
||||||
|
public List<LimitEntry> Entries { get; set; } = new List<LimitEntry>();
|
||||||
|
|
||||||
|
public Limiter(RateLimitType type, int limit, TimeSpan perPeriod, HttpMethod? method)
|
||||||
|
{
|
||||||
|
Semaphore = new SemaphoreSlim(1, 1);
|
||||||
|
Type = type;
|
||||||
|
Limit = limit;
|
||||||
|
Period = perPeriod;
|
||||||
|
Method = method;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class TotalRateLimiter : Limiter
|
||||||
|
{
|
||||||
|
public TotalRateLimiter(int limit, TimeSpan perPeriod, HttpMethod? method)
|
||||||
|
: base(RateLimitType.Total, limit, perPeriod, method)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return nameof(TotalRateLimiter);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class ConnectionRateLimiter : PartialEndpointRateLimiter
|
||||||
|
{
|
||||||
|
public ConnectionRateLimiter(int limit, TimeSpan perPeriod)
|
||||||
|
: base(new[] { "/" }, limit, perPeriod, null, true, true)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public ConnectionRateLimiter(string[] endpoints, int limit, TimeSpan perPeriod)
|
||||||
|
: base(endpoints, limit, perPeriod, null, true, true)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return nameof(ConnectionRateLimiter);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class EndpointRateLimiter: Limiter
|
||||||
|
{
|
||||||
|
public string[] Endpoints { get; set; }
|
||||||
|
public bool IgnoreOtherRateLimits { get; set; }
|
||||||
|
|
||||||
|
public EndpointRateLimiter(string[] endpoints, int limit, TimeSpan perPeriod, HttpMethod? method, bool ignoreOtherRateLimits)
|
||||||
|
:base(RateLimitType.Endpoint, limit, perPeriod, method)
|
||||||
|
{
|
||||||
|
Endpoints = endpoints;
|
||||||
|
IgnoreOtherRateLimits = ignoreOtherRateLimits;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return nameof(EndpointRateLimiter) + $": {string.Join(", ", Endpoints)}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class PartialEndpointRateLimiter : Limiter
|
||||||
|
{
|
||||||
|
public string[] PartialEndpoints { get; set; }
|
||||||
|
public bool IgnoreOtherRateLimits { get; set; }
|
||||||
|
public bool CountPerEndpoint { get; set; }
|
||||||
|
|
||||||
|
public PartialEndpointRateLimiter(string[] partialEndpoints, int limit, TimeSpan perPeriod, HttpMethod? method, bool ignoreOtherRateLimits, bool countPerEndpoint)
|
||||||
|
: base(RateLimitType.PartialEndpoint, limit, perPeriod, method)
|
||||||
|
{
|
||||||
|
PartialEndpoints = partialEndpoints;
|
||||||
|
IgnoreOtherRateLimits = ignoreOtherRateLimits;
|
||||||
|
CountPerEndpoint = countPerEndpoint;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return nameof(PartialEndpointRateLimiter) + $": {string.Join(", ", PartialEndpoints)}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class ApiKeyRateLimiter : Limiter
|
||||||
|
{
|
||||||
|
public bool OnlyForSignedRequests { get; set; }
|
||||||
|
public bool IgnoreTotalRateLimit { get; set; }
|
||||||
|
|
||||||
|
public ApiKeyRateLimiter(int limit, TimeSpan perPeriod, HttpMethod? method, bool onlyForSignedRequests, bool ignoreTotalRateLimit)
|
||||||
|
:base(RateLimitType.ApiKey, limit, perPeriod, method)
|
||||||
|
{
|
||||||
|
OnlyForSignedRequests = onlyForSignedRequests;
|
||||||
|
IgnoreTotalRateLimit = ignoreTotalRateLimit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class SingleTopicRateLimiter: Limiter
|
||||||
|
{
|
||||||
|
public object Topic { get; set; }
|
||||||
|
|
||||||
|
public SingleTopicRateLimiter(object topic, Limiter limiter)
|
||||||
|
:base(limiter.Type, limiter.Limit, limiter.Period, limiter.Method)
|
||||||
|
{
|
||||||
|
Topic = topic;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return (Type == RateLimitType.ApiKey ? nameof(ApiKeyRateLimiter): nameof(EndpointRateLimiter)) + $": {Topic}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal enum RateLimitType
|
||||||
|
{
|
||||||
|
Total,
|
||||||
|
Endpoint,
|
||||||
|
PartialEndpoint,
|
||||||
|
ApiKey
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
using CryptoExchange.Net.RateLimiting.Interfaces;
|
|
||||||
using System.Net.Http;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// The definition of a rest request
|
|
||||||
/// </summary>
|
|
||||||
public class RequestDefinition
|
|
||||||
{
|
|
||||||
private string? _stringRep;
|
|
||||||
|
|
||||||
// Basics
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Path of the request
|
|
||||||
/// </summary>
|
|
||||||
public string Path { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// Http method of the request
|
|
||||||
/// </summary>
|
|
||||||
public HttpMethod Method { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// Is the request authenticated
|
|
||||||
/// </summary>
|
|
||||||
public bool Authenticated { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
// Formating
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The body format for this request
|
|
||||||
/// </summary>
|
|
||||||
public RequestBodyFormat? RequestBodyFormat { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// The position of parameters for this request
|
|
||||||
/// </summary>
|
|
||||||
public HttpMethodParameterPosition? ParameterPosition { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// The array serialization type for this request
|
|
||||||
/// </summary>
|
|
||||||
public ArrayParametersSerialization? ArraySerialization { get; set; }
|
|
||||||
|
|
||||||
// Rate limiting
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Request weight
|
|
||||||
/// </summary>
|
|
||||||
public int Weight { get; set; } = 1;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Rate limit gate to use
|
|
||||||
/// </summary>
|
|
||||||
public IRateLimitGate? RateLimitGate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Individual endpoint rate limit guard to use
|
|
||||||
/// </summary>
|
|
||||||
public IRateLimitGuard? LimitGuard { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether this request should never be cached
|
|
||||||
/// </summary>
|
|
||||||
public bool PreventCaching { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ctor
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="path"></param>
|
|
||||||
/// <param name="method"></param>
|
|
||||||
public RequestDefinition(string path, HttpMethod method)
|
|
||||||
{
|
|
||||||
Path = path;
|
|
||||||
Method = method;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string ToString()
|
|
||||||
{
|
|
||||||
return _stringRep ??= $"{Method} {Path}{(Authenticated ? " authenticated" : "")}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
using CryptoExchange.Net.RateLimiting.Interfaces;
|
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using System.Net.Http;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Request definitions cache
|
|
||||||
/// </summary>
|
|
||||||
public class RequestDefinitionCache
|
|
||||||
{
|
|
||||||
private readonly ConcurrentDictionary<string, RequestDefinition> _definitions = new();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get a definition if it is already in the cache or create a new definition and add it to the cache
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="method">The HttpMethod</param>
|
|
||||||
/// <param name="path">Endpoint path</param>
|
|
||||||
/// <param name="authenticated">Endpoint is authenticated</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public RequestDefinition GetOrCreate(HttpMethod method, string path, bool authenticated = false)
|
|
||||||
=> GetOrCreate(method, path, null, 0, authenticated, null, null, null, null, null);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get a definition if it is already in the cache or create a new definition and add it to the cache
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="method">The HttpMethod</param>
|
|
||||||
/// <param name="path">Endpoint path</param>
|
|
||||||
/// <param name="rateLimitGate">The rate limit gate</param>
|
|
||||||
/// <param name="weight">Request weight</param>
|
|
||||||
/// <param name="authenticated">Endpoint is authenticated</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public RequestDefinition GetOrCreate(HttpMethod method, string path, IRateLimitGate rateLimitGate, int weight = 1, bool authenticated = false)
|
|
||||||
=> GetOrCreate(method, path, rateLimitGate, weight, authenticated, null, null, null, null, null);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get a definition if it is already in the cache or create a new definition and add it to the cache
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="method">The HttpMethod</param>
|
|
||||||
/// <param name="path">Endpoint path</param>
|
|
||||||
/// <param name="rateLimitGate">The rate limit gate</param>
|
|
||||||
/// <param name="limitGuard">The rate limit guard for this specific endpoint</param>
|
|
||||||
/// <param name="weight">Request weight</param>
|
|
||||||
/// <param name="authenticated">Endpoint is authenticated</param>
|
|
||||||
/// <param name="requestBodyFormat">Request body format</param>
|
|
||||||
/// <param name="parameterPosition">Parameter position</param>
|
|
||||||
/// <param name="arraySerialization">Array serialization type</param>
|
|
||||||
/// <param name="preventCaching">Prevent request caching</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public RequestDefinition GetOrCreate(
|
|
||||||
HttpMethod method,
|
|
||||||
string path,
|
|
||||||
IRateLimitGate? rateLimitGate,
|
|
||||||
int weight,
|
|
||||||
bool authenticated,
|
|
||||||
IRateLimitGuard? limitGuard = null,
|
|
||||||
RequestBodyFormat? requestBodyFormat = null,
|
|
||||||
HttpMethodParameterPosition? parameterPosition = null,
|
|
||||||
ArrayParametersSerialization? arraySerialization = null,
|
|
||||||
bool? preventCaching = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
if (!_definitions.TryGetValue(method + path, out var def))
|
|
||||||
{
|
|
||||||
def = new RequestDefinition(path, method)
|
|
||||||
{
|
|
||||||
Authenticated = authenticated,
|
|
||||||
LimitGuard = limitGuard,
|
|
||||||
RateLimitGate = rateLimitGate,
|
|
||||||
Weight = weight,
|
|
||||||
ArraySerialization = arraySerialization,
|
|
||||||
RequestBodyFormat = requestBodyFormat,
|
|
||||||
ParameterPosition = parameterPosition,
|
|
||||||
PreventCaching = preventCaching ?? false
|
|
||||||
};
|
|
||||||
_definitions.TryAdd(method + path, def);
|
|
||||||
}
|
|
||||||
|
|
||||||
return def;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using CryptoExchange.Net.SharedApis;
|
using System;
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.Objects.Sockets
|
namespace CryptoExchange.Net.Objects.Sockets
|
||||||
{
|
{
|
||||||
@@ -15,14 +14,9 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
public DateTime Timestamp { get; set; }
|
public DateTime Timestamp { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The stream producing the update
|
/// The topic of the update, what symbol/asset etc..
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? StreamId { get; set; }
|
public string? Topic { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The symbol the update is for
|
|
||||||
/// </summary>
|
|
||||||
public string? Symbol { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The original data that was received, only available when OutputOriginalData is set to true in the client options
|
/// The original data that was received, only available when OutputOriginalData is set to true in the client options
|
||||||
@@ -39,14 +33,10 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public T Data { get; set; }
|
public T Data { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
internal DataEvent(T data, string? topic, string? originalData, DateTime timestamp, SocketUpdateType? updateType)
|
||||||
/// ctor
|
|
||||||
/// </summary>
|
|
||||||
public DataEvent(T data, string? streamId, string? symbol, string? originalData, DateTime timestamp, SocketUpdateType? updateType)
|
|
||||||
{
|
{
|
||||||
Data = data;
|
Data = data;
|
||||||
StreamId = streamId;
|
Topic = topic;
|
||||||
Symbol = symbol;
|
|
||||||
OriginalData = originalData;
|
OriginalData = originalData;
|
||||||
Timestamp = timestamp;
|
Timestamp = timestamp;
|
||||||
UpdateType = updateType;
|
UpdateType = updateType;
|
||||||
@@ -60,7 +50,7 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public DataEvent<K> As<K>(K data)
|
public DataEvent<K> As<K>(K data)
|
||||||
{
|
{
|
||||||
return new DataEvent<K>(data, StreamId, Symbol, OriginalData, Timestamp, UpdateType);
|
return new DataEvent<K>(data, Topic, OriginalData, Timestamp, UpdateType);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -68,11 +58,11 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="K">The type of the new data</typeparam>
|
/// <typeparam name="K">The type of the new data</typeparam>
|
||||||
/// <param name="data">The new data</param>
|
/// <param name="data">The new data</param>
|
||||||
/// <param name="symbol">The new symbol</param>
|
/// <param name="topic">The new topic</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public DataEvent<K> As<K>(K data, string? symbol)
|
public DataEvent<K> As<K>(K data, string? topic)
|
||||||
{
|
{
|
||||||
return new DataEvent<K>(data, StreamId, symbol, OriginalData, Timestamp, UpdateType);
|
return new DataEvent<K>(data, topic, OriginalData, Timestamp, UpdateType);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -80,92 +70,12 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="K">The type of the new data</typeparam>
|
/// <typeparam name="K">The type of the new data</typeparam>
|
||||||
/// <param name="data">The new data</param>
|
/// <param name="data">The new data</param>
|
||||||
/// <param name="streamId">The new stream id</param>
|
/// <param name="topic">The new topic</param>
|
||||||
/// <param name="symbol">The new symbol</param>
|
|
||||||
/// <param name="updateType">The type of update</param>
|
/// <param name="updateType">The type of update</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public DataEvent<K> As<K>(K data, string streamId, string? symbol, SocketUpdateType updateType)
|
public DataEvent<K> As<K>(K data, string? topic, SocketUpdateType updateType)
|
||||||
{
|
{
|
||||||
return new DataEvent<K>(data, streamId, symbol, OriginalData, Timestamp, updateType);
|
return new DataEvent<K>(data, topic, OriginalData, Timestamp, updateType);
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy the WebCallResult to a new data type
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="K">The new type</typeparam>
|
|
||||||
/// <param name="exchange">The exchange the result is for</param>
|
|
||||||
/// <param name="data">The data</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public ExchangeEvent<K> AsExchangeEvent<K>(string exchange, K data)
|
|
||||||
{
|
|
||||||
return new ExchangeEvent<K>(exchange, this.As<K>(data));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Specify the symbol
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="symbol"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public DataEvent<T> WithSymbol(string symbol)
|
|
||||||
{
|
|
||||||
Symbol = symbol;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Specify the update type
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="type"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public DataEvent<T> WithUpdateType(SocketUpdateType type)
|
|
||||||
{
|
|
||||||
UpdateType = type;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Specify the stream id
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="streamId"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public DataEvent<T> WithStreamId(string streamId)
|
|
||||||
{
|
|
||||||
StreamId = streamId;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a CallResult from this DataEvent
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public CallResult<T> ToCallResult()
|
|
||||||
{
|
|
||||||
return new CallResult<T>(Data, OriginalData, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a CallResult from this DataEvent
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public CallResult<K> ToCallResult<K>(K data)
|
|
||||||
{
|
|
||||||
return new CallResult<K>(data, OriginalData, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a CallResult from this DataEvent
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
public CallResult<K> ToCallResult<K>(Error error)
|
|
||||||
{
|
|
||||||
return new CallResult<K>(default, OriginalData, error);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public override string ToString()
|
|
||||||
{
|
|
||||||
return $"{StreamId} - {(Symbol == null ? "" : (Symbol + " - "))}{(UpdateType == null ? "" : (UpdateType + " - "))}{Data}";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,15 +30,6 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
remove => _connection.ConnectionClosed -= value;
|
remove => _connection.ConnectionClosed -= value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Event when a lost connection is restored, but the resubscribing of update subscriptions failed
|
|
||||||
/// </summary>
|
|
||||||
public event Action<Error> ResubscribingFailed
|
|
||||||
{
|
|
||||||
add => _connection.ResubscribingFailed += value;
|
|
||||||
remove => _connection.ResubscribingFailed -= value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Event when the connection is restored. Timespan parameter indicates the time the socket has been offline for before reconnecting.
|
/// Event when the connection is restored. Timespan parameter indicates the time the socket has been offline for before reconnecting.
|
||||||
/// Note that when the executing code is suspended and resumed at a later period (for example, a laptop going to sleep) the disconnect time will be incorrect as the diconnect
|
/// Note that when the executing code is suspended and resumed at a later period (for example, a laptop going to sleep) the disconnect time will be incorrect as the diconnect
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using CryptoExchange.Net.RateLimiting.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@@ -26,20 +26,20 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
public IDictionary<string, string> Cookies { get; set; } = new Dictionary<string, string>();
|
public IDictionary<string, string> Cookies { get; set; } = new Dictionary<string, string>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The fixed time to wait between reconnect attempts, only used when `ReconnectPolicy` is set to `ReconnectPolicy.ExponentialBackoff`
|
/// The time to wait between reconnect attempts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan ReconnectInterval { get; set; } = TimeSpan.FromSeconds(5);
|
public TimeSpan ReconnectInterval { get; set; } = TimeSpan.FromSeconds(5);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Reconnect policy
|
|
||||||
/// </summary>
|
|
||||||
public ReconnectPolicy ReconnectPolicy { get; set; } = ReconnectPolicy.FixedDelay;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Proxy for the connection
|
/// Proxy for the connection
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ApiProxy? Proxy { get; set; }
|
public ApiProxy? Proxy { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether the socket should automatically reconnect when connection is lost
|
||||||
|
/// </summary>
|
||||||
|
public bool AutoReconnect { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The maximum time of no data received before considering the connection lost and closting/reconnecting the socket
|
/// The maximum time of no data received before considering the connection lost and closting/reconnecting the socket
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -51,13 +51,9 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
public TimeSpan? KeepAliveInterval { get; set; }
|
public TimeSpan? KeepAliveInterval { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The rate limiter for the socket connection
|
/// The rate limiters for the socket connection
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IRateLimitGate? RateLimiter { get; set; }
|
public IEnumerable<IRateLimiter>? RateLimiters { get; set; }
|
||||||
/// <summary>
|
|
||||||
/// What to do when rate limit is reached
|
|
||||||
/// </summary>
|
|
||||||
public RateLimitingBehaviour RateLimitingBehaviour { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Encoding for sending/receiving data
|
/// Encoding for sending/receiving data
|
||||||
@@ -68,11 +64,11 @@ namespace CryptoExchange.Net.Objects.Sockets
|
|||||||
/// ctor
|
/// ctor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="uri">Uri</param>
|
/// <param name="uri">Uri</param>
|
||||||
/// <param name="policy">Reconnect policy</param>
|
/// <param name="autoReconnect">Auto reconnect</param>
|
||||||
public WebSocketParameters(Uri uri, ReconnectPolicy policy)
|
public WebSocketParameters(Uri uri, bool autoReconnect)
|
||||||
{
|
{
|
||||||
Uri = uri;
|
Uri = uri;
|
||||||
ReconnectPolicy = policy;
|
AutoReconnect = autoReconnect;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,8 +31,8 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class TraceLogger : ILogger
|
public class TraceLogger : ILogger
|
||||||
{
|
{
|
||||||
private readonly string? _categoryName;
|
private string? _categoryName;
|
||||||
private readonly LogLevel _logLevel;
|
private LogLevel _logLevel;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ctor
|
/// ctor
|
||||||
@@ -46,14 +46,14 @@ namespace CryptoExchange.Net.Objects
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public IDisposable? BeginScope<TState>(TState state) where TState : notnull => null!;
|
public IDisposable BeginScope<TState>(TState state) => null!;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public bool IsEnabled(LogLevel logLevel) => (int)logLevel >= (int)_logLevel;
|
public bool IsEnabled(LogLevel logLevel) => (int)logLevel < (int)_logLevel;
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
|
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
|
||||||
{
|
{
|
||||||
if (!IsEnabled(logLevel))
|
if ((int)logLevel < (int)_logLevel)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var logMessage = $"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | {logLevel} | {(_categoryName == null ? "" : $"{_categoryName} | ")}{formatter(state, exception)}";
|
var logMessage = $"{DateTime.Now:yyyy/MM/dd HH:mm:ss:fff} | {logLevel} | {(_categoryName == null ? "" : $"{_categoryName} | ")}{formatter(state, exception)}";
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
using CryptoExchange.Net.Interfaces;
|
|
||||||
using CryptoExchange.Net.Objects.Options;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.OrderBook
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public class OrderBookFactory<TOptions> : IOrderBookFactory<TOptions> where TOptions: OrderBookOptions
|
|
||||||
{
|
|
||||||
private readonly Func<string, Action<TOptions>?, ISymbolOrderBook> _symbolCtor;
|
|
||||||
private readonly Func<string, string, Action<TOptions>?, ISymbolOrderBook> _assetsCtor;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ctor
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="symbolCtor"></param>
|
|
||||||
/// <param name="assetsCtor"></param>
|
|
||||||
public OrderBookFactory(Func<string, Action<TOptions>?, ISymbolOrderBook> symbolCtor, Func<string, string, Action<TOptions>?, ISymbolOrderBook> assetsCtor)
|
|
||||||
{
|
|
||||||
_symbolCtor = symbolCtor;
|
|
||||||
_assetsCtor = assetsCtor;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public ISymbolOrderBook Create(string symbol, Action<TOptions>? options = null) => _symbolCtor(symbol, options);
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public ISymbolOrderBook Create(string baseAsset, string quoteAsset, Action<TOptions>? options = null) => _assetsCtor(baseAsset, quoteAsset, options);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -7,12 +7,10 @@ using System.Text;
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CryptoExchange.Net.Interfaces;
|
using CryptoExchange.Net.Interfaces;
|
||||||
using CryptoExchange.Net.Logging.Extensions;
|
|
||||||
using CryptoExchange.Net.Objects;
|
using CryptoExchange.Net.Objects;
|
||||||
using CryptoExchange.Net.Objects.Options;
|
using CryptoExchange.Net.Objects.Options;
|
||||||
using CryptoExchange.Net.Objects.Sockets;
|
using CryptoExchange.Net.Objects.Sockets;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.Extensions.Logging.Abstractions;
|
|
||||||
|
|
||||||
namespace CryptoExchange.Net.OrderBook
|
namespace CryptoExchange.Net.OrderBook
|
||||||
{
|
{
|
||||||
@@ -90,10 +88,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
protected int? Levels { get; set; } = null;
|
protected int? Levels { get; set; } = null;
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public string Exchange { get; }
|
public string Id { get; }
|
||||||
|
|
||||||
/// <inheritdoc/>
|
|
||||||
public string Api { get; }
|
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public OrderBookStatus Status
|
public OrderBookStatus Status
|
||||||
@@ -106,7 +101,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
|
|
||||||
var old = _status;
|
var old = _status;
|
||||||
_status = value;
|
_status = value;
|
||||||
_logger.OrderBookStatusChanged(Api, Symbol, old, value);
|
_logger.Log(LogLevel.Information, $"{Id} order book {Symbol} status changed: {old} => {value}");
|
||||||
OnStatusChange?.Invoke(old, _status);
|
OnStatusChange?.Invoke(old, _status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -197,17 +192,14 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
/// ctor
|
/// ctor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="logger">Logger to use. If not provided will create a TraceLogger</param>
|
/// <param name="logger">Logger to use. If not provided will create a TraceLogger</param>
|
||||||
/// <param name="exchange">The exchange of the order book</param>
|
/// <param name="id">The id of the order book. Should be set to {Exchange}[{type}], for example: Kucoin[Spot]</param>
|
||||||
/// <param name="api">The API the book is for, for example Spot</param>
|
|
||||||
/// <param name="symbol">The symbol the order book is for</param>
|
/// <param name="symbol">The symbol the order book is for</param>
|
||||||
protected SymbolOrderBook(ILoggerFactory? logger, string exchange, string api, string symbol)
|
protected SymbolOrderBook(ILogger? logger, string id, string symbol)
|
||||||
{
|
{
|
||||||
if (symbol == null)
|
if (symbol == null)
|
||||||
throw new ArgumentNullException(nameof(symbol));
|
throw new ArgumentNullException(nameof(symbol));
|
||||||
|
|
||||||
Exchange = exchange;
|
Id = id;
|
||||||
Api = api;
|
|
||||||
|
|
||||||
_processBuffer = new List<ProcessBufferRangeSequenceEntry>();
|
_processBuffer = new List<ProcessBufferRangeSequenceEntry>();
|
||||||
_processQueue = new ConcurrentQueue<object>();
|
_processQueue = new ConcurrentQueue<object>();
|
||||||
_queueEvent = new AsyncResetEvent(false, true);
|
_queueEvent = new AsyncResetEvent(false, true);
|
||||||
@@ -218,7 +210,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
_asks = new SortedList<decimal, ISymbolOrderBookEntry>();
|
_asks = new SortedList<decimal, ISymbolOrderBookEntry>();
|
||||||
_bids = new SortedList<decimal, ISymbolOrderBookEntry>(new DescComparer<decimal>());
|
_bids = new SortedList<decimal, ISymbolOrderBookEntry>(new DescComparer<decimal>());
|
||||||
|
|
||||||
_logger = logger?.CreateLogger(Exchange) ?? NullLoggerFactory.Instance.CreateLogger(Exchange);
|
_logger = logger ?? new TraceLogger();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -240,7 +232,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
if (Status != OrderBookStatus.Disconnected)
|
if (Status != OrderBookStatus.Disconnected)
|
||||||
throw new InvalidOperationException($"Can't start book unless state is {OrderBookStatus.Disconnected}. Current state: {Status}");
|
throw new InvalidOperationException($"Can't start book unless state is {OrderBookStatus.Disconnected}. Current state: {Status}");
|
||||||
|
|
||||||
_logger.OrderBookStarting(Api, Symbol);
|
_logger.Log(LogLevel.Debug, $"{Id} order book {Symbol} starting");
|
||||||
_cts = new CancellationTokenSource();
|
_cts = new CancellationTokenSource();
|
||||||
ct?.Register(async () =>
|
ct?.Register(async () =>
|
||||||
{
|
{
|
||||||
@@ -265,7 +257,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
|
|
||||||
if (_cts.IsCancellationRequested)
|
if (_cts.IsCancellationRequested)
|
||||||
{
|
{
|
||||||
_logger.OrderBookStoppedStarting(Api, Symbol);
|
_logger.Log(LogLevel.Debug, $"{Id} order book {Symbol} stopped while starting");
|
||||||
await startResult.Data.CloseAsync().ConfigureAwait(false);
|
await startResult.Data.CloseAsync().ConfigureAwait(false);
|
||||||
Status = OrderBookStatus.Disconnected;
|
Status = OrderBookStatus.Disconnected;
|
||||||
return new CallResult<bool>(new CancellationRequestedError());
|
return new CallResult<bool>(new CancellationRequestedError());
|
||||||
@@ -280,17 +272,16 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
return new CallResult<bool>(true);
|
return new CallResult<bool>(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HandleConnectionLost()
|
private void HandleConnectionLost() {
|
||||||
{
|
_logger.Log(LogLevel.Warning, $"{Id} order book {Symbol} connection lost");
|
||||||
_logger.OrderBookConnectionLost(Api, Symbol);
|
if (Status != OrderBookStatus.Disposed) {
|
||||||
if (Status != OrderBookStatus.Disposed) {
|
|
||||||
Status = OrderBookStatus.Reconnecting;
|
Status = OrderBookStatus.Reconnecting;
|
||||||
Reset();
|
Reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HandleConnectionClosed() {
|
private void HandleConnectionClosed() {
|
||||||
_logger.OrderBookDisconnected(Api, Symbol);
|
_logger.Log(LogLevel.Warning, $"{Id} order book {Symbol} disconnected");
|
||||||
Status = OrderBookStatus.Disconnected;
|
Status = OrderBookStatus.Disconnected;
|
||||||
_ = StopAsync();
|
_ = StopAsync();
|
||||||
}
|
}
|
||||||
@@ -302,7 +293,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public async Task StopAsync()
|
public async Task StopAsync()
|
||||||
{
|
{
|
||||||
_logger.OrderBookStopping(Api, Symbol);
|
_logger.Log(LogLevel.Debug, $"{Id} order book {Symbol} stopping");
|
||||||
Status = OrderBookStatus.Disconnected;
|
Status = OrderBookStatus.Disconnected;
|
||||||
_cts?.Cancel();
|
_cts?.Cancel();
|
||||||
_queueEvent.Set();
|
_queueEvent.Set();
|
||||||
@@ -315,8 +306,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
_subscription.ConnectionClosed -= HandleConnectionClosed;
|
_subscription.ConnectionClosed -= HandleConnectionClosed;
|
||||||
_subscription.ConnectionRestored -= HandleConnectionRestored;
|
_subscription.ConnectionRestored -= HandleConnectionRestored;
|
||||||
}
|
}
|
||||||
|
_logger.Log(LogLevel.Trace, $"{Id} order book {Symbol} stopped");
|
||||||
_logger.OrderBookStopped(Api, Symbol);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
@@ -474,7 +464,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
{
|
{
|
||||||
var pbList = _processBuffer.ToList();
|
var pbList = _processBuffer.ToList();
|
||||||
if (pbList.Count > 0)
|
if (pbList.Count > 0)
|
||||||
_logger.OrderBookProcessingBufferedUpdates(Api, Symbol, pbList.Count);
|
_logger.Log(LogLevel.Debug, $"{Id} Processing {pbList.Count} buffered updates");
|
||||||
|
|
||||||
foreach (var bufferEntry in pbList)
|
foreach (var bufferEntry in pbList)
|
||||||
{
|
{
|
||||||
@@ -493,14 +483,14 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
{
|
{
|
||||||
if (sequence <= LastSequenceNumber)
|
if (sequence <= LastSequenceNumber)
|
||||||
{
|
{
|
||||||
_logger.OrderBookSkippedMessage(Api, Symbol, sequence, LastSequenceNumber);
|
_logger.Log(LogLevel.Debug, $"{Id} order book {Symbol} update skipped #{sequence}, currently at #{LastSequenceNumber}");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_sequencesAreConsecutive && sequence > LastSequenceNumber + 1)
|
if (_sequencesAreConsecutive && sequence > LastSequenceNumber + 1)
|
||||||
{
|
{
|
||||||
// Out of sync
|
// Out of sync
|
||||||
_logger.OrderBookOutOfSync(Api, Symbol, LastSequenceNumber + 1, sequence);
|
_logger.Log(LogLevel.Warning, $"{Id} order book {Symbol} out of sync (expected { LastSequenceNumber + 1}, was {sequence}), reconnecting");
|
||||||
_stopProcessing = true;
|
_stopProcessing = true;
|
||||||
Resubscribe();
|
Resubscribe();
|
||||||
return false;
|
return false;
|
||||||
@@ -654,7 +644,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
success = resyncResult;
|
success = resyncResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.OrderBookResynced(Api, Symbol);
|
_logger.Log(LogLevel.Information, $"{Id} order book {Symbol} successfully resynchronized");
|
||||||
Status = OrderBookStatus.Synced;
|
Status = OrderBookStatus.Synced;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -671,7 +661,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
|
|
||||||
if (_stopProcessing)
|
if (_stopProcessing)
|
||||||
{
|
{
|
||||||
_logger.OrderBookMessageSkippedResubscribing(Api, Symbol);
|
_logger.Log(LogLevel.Trace, $"{Id} Skipping message because of resubscribing");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -703,7 +693,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
BidCount = _bids.Count;
|
BidCount = _bids.Count;
|
||||||
|
|
||||||
UpdateTime = DateTime.UtcNow;
|
UpdateTime = DateTime.UtcNow;
|
||||||
_logger.OrderBookDataSet(Api, Symbol, BidCount, AskCount, item.EndUpdateId);
|
_logger.Log(LogLevel.Debug, $"{Id} order book {Symbol} data set: {BidCount} bids, {AskCount} asks. #{item.EndUpdateId}");
|
||||||
CheckProcessBuffer();
|
CheckProcessBuffer();
|
||||||
OnOrderBookUpdate?.Invoke((item.Bids, item.Asks));
|
OnOrderBookUpdate?.Invoke((item.Bids, item.Asks));
|
||||||
OnBestOffersChanged?.Invoke((BestBid, BestAsk));
|
OnBestOffersChanged?.Invoke((BestBid, BestAsk));
|
||||||
@@ -723,8 +713,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
FirstUpdateId = item.StartUpdateId,
|
FirstUpdateId = item.StartUpdateId,
|
||||||
LastUpdateId = item.EndUpdateId,
|
LastUpdateId = item.EndUpdateId,
|
||||||
});
|
});
|
||||||
|
_logger.Log(LogLevel.Trace, $"{Id} order book {Symbol} update buffered #{item.StartUpdateId}-#{item.EndUpdateId} [{item.Asks.Count()} asks, {item.Bids.Count()} bids]");
|
||||||
_logger.OrderBookUpdateBuffered(Api, Symbol, item.StartUpdateId, item.EndUpdateId, item.Asks.Count(), item.Bids.Count());
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -737,7 +726,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
|
|
||||||
if (_asks.First().Key < _bids.First().Key)
|
if (_asks.First().Key < _bids.First().Key)
|
||||||
{
|
{
|
||||||
_logger.OrderBookOutOfSyncDetected(Api, Symbol, _asks.First().Key, _bids.First().Key);
|
_logger.Log(LogLevel.Warning, $"{Id} order book {Symbol} detected out of sync order book. First ask: {_asks.First().Key}, first bid: {_bids.First().Key}. Resyncing");
|
||||||
_stopProcessing = true;
|
_stopProcessing = true;
|
||||||
Resubscribe();
|
Resubscribe();
|
||||||
return;
|
return;
|
||||||
@@ -771,7 +760,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
|
|
||||||
if (!checksumResult)
|
if (!checksumResult)
|
||||||
{
|
{
|
||||||
_logger.OrderBookOutOfSyncChecksum(Api, Symbol);
|
_logger.Log(LogLevel.Warning, $"{Id} order book {Symbol} out of sync. Resyncing");
|
||||||
_stopProcessing = true;
|
_stopProcessing = true;
|
||||||
Resubscribe();
|
Resubscribe();
|
||||||
}
|
}
|
||||||
@@ -795,7 +784,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
if (!await _subscription!.ResubscribeAsync().ConfigureAwait(false))
|
if (!await _subscription!.ResubscribeAsync().ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
// Resubscribing failed, reconnect the socket
|
// Resubscribing failed, reconnect the socket
|
||||||
_logger.OrderBookResyncFailed(Api, Symbol);
|
_logger.Log(LogLevel.Warning, $"{Id} order book {Symbol} resync failed, reconnecting socket");
|
||||||
Status = OrderBookStatus.Reconnecting;
|
Status = OrderBookStatus.Reconnecting;
|
||||||
_ = _subscription!.ReconnectAsync();
|
_ = _subscription!.ReconnectAsync();
|
||||||
}
|
}
|
||||||
@@ -810,7 +799,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
{
|
{
|
||||||
if (lastUpdateId <= LastSequenceNumber)
|
if (lastUpdateId <= LastSequenceNumber)
|
||||||
{
|
{
|
||||||
_logger.OrderBookUpdateSkipped(Api, Symbol, lastUpdateId, LastSequenceNumber);
|
_logger.Log(LogLevel.Trace, $"{Id} order book {Symbol} update skipped #{firstUpdateId}-{lastUpdateId}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -836,8 +825,7 @@ namespace CryptoExchange.Net.OrderBook
|
|||||||
}
|
}
|
||||||
|
|
||||||
LastSequenceNumber = lastUpdateId;
|
LastSequenceNumber = lastUpdateId;
|
||||||
|
_logger.Log(LogLevel.Trace, $"{Id} order book {Symbol} update processed #{firstUpdateId}-{lastUpdateId}");
|
||||||
_logger.OrderBookProcessedMessage(Api, Symbol, firstUpdateId, lastUpdateId);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user