-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show detecting incorrect write order on SBE flyweight.
Adds a new schema and test, which is referenced from the SBE Warnings page. The aim is to show how precedence checks in SBE `1.30.0` can help prevent some incorrect usages of SBE flyweights.
- Loading branch information
Showing
3 changed files
with
98 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
sbe-protocol/src/main/resources/precedence-checked-messages.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<!-- | ||
~ Copyright 2019-2023 Adaptive Financial Consulting Ltd. | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ https://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<sbe:messageSchema xmlns:sbe="http://fixprotocol.io/2016/sbe" | ||
package="com.aeroncookbook.sbe" | ||
id="689" | ||
version="1" | ||
semanticVersion="0.1" | ||
description="Sample SBE Messages" | ||
byteOrder="littleEndian"> | ||
<types> | ||
<composite name="messageHeader" description="Message identifiers and length of message root"> | ||
<type name="blockLength" primitiveType="uint16"/> | ||
<type name="templateId" primitiveType="uint16"/> | ||
<type name="schemaId" primitiveType="uint16"/> | ||
<type name="version" primitiveType="uint16"/> | ||
</composite> | ||
<composite name="varStringEncoding"> | ||
<type name="length" primitiveType="uint32" maxValue="1073741824"/> | ||
<type name="varData" primitiveType="uint8" length="0" characterEncoding="UTF-8"/> | ||
</composite> | ||
</types> | ||
<types> | ||
<type name="Sequence" primitiveType="int64"/> | ||
</types> | ||
|
||
<sbe:message name="SampleCorruptionDetected" id="1002" description="Corruption sample"> | ||
<field name="sequence1" id="1" type="Sequence"/> | ||
<field name="sequence2" id="2" type="Sequence"/> | ||
<data name="data1" id="3" type="varStringEncoding"/> | ||
<data name="data2" id="4" type="varStringEncoding"/> | ||
</sbe:message> | ||
|
||
</sbe:messageSchema> |