Skip to content

Commit 489d33b

Browse files
authored
KException when Serialization fails. Closes #55 (#56)
1 parent bf5ce9c commit 489d33b

File tree

2 files changed

+43
-13
lines changed

2 files changed

+43
-13
lines changed

kx.Test/Connection/ConnectionSerialisationTests.cs

+23
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,29 @@ public void ConnectionSerialiseThrowsIfInputIsNull()
2020
}
2121
}
2222

23+
[Test]
24+
public void ConnectionSerialiseThrowsKExceptionWithInnerExceptionIfSerialisationThrowsException()
25+
{
26+
using (var connection = new c(_testVersionNumber))
27+
{
28+
29+
c.Dict dataRow = new c.Dict(
30+
new[]
31+
{
32+
"sym"
33+
},
34+
new object[]
35+
{
36+
new object[] { null },
37+
});
38+
39+
c.Flip f = new c.Flip(dataRow);
40+
41+
var exception = Assert.Throws<KException>(() => connection.Serialize(1, f));
42+
Assert.NotNull(exception.InnerException);
43+
44+
}
45+
}
2346
[Test]
2447
public void ConnectionSerialiseThrowsIfGuidSerialisationIsNotSupported()
2548
{

kx/c.cs

+20-13
Original file line numberDiff line numberDiff line change
@@ -700,22 +700,29 @@ public byte[] Serialize(int messageType, object x, bool zip)
700700
$"Unable to serialize data. {nameof(x)} parameter cannot be null");
701701
}
702702

703-
int length = nx(x) + 8;
704-
_writeBuffer = new byte[length];
705-
_writeBuffer[0] = 1;
706-
_writeBuffer[1] = (byte)messageType;
707-
_writePosition = 4;
708-
w(length);
709-
w(x);
703+
try
704+
{
705+
int length = nx(x) + 8;
706+
_writeBuffer = new byte[length];
707+
_writeBuffer[0] = 1;
708+
_writeBuffer[1] = (byte)messageType;
709+
_writePosition = 4;
710+
w(length);
711+
w(x);
710712

711-
if (zip &&
712-
_writePosition > 2000 &&
713-
!_isLoopback)
713+
if (zip &&
714+
_writePosition > 2000 &&
715+
!_isLoopback)
716+
{
717+
Compress();
718+
}
719+
720+
return _writeBuffer;
721+
}
722+
catch (Exception ex)
714723
{
715-
Compress();
724+
throw new KException("Error occurred while trying to serialize object.", ex);
716725
}
717-
718-
return _writeBuffer;
719726
}
720727

721728
/// <summary>

0 commit comments

Comments
 (0)