jspurefix 1.2.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.travis.yml +1 -1
- package/README.md +48 -2
- package/appveyor.yml +46 -11
- package/data/session/certs/ca/ca.crt +33 -0
- package/data/session/certs/ca/ca.key +54 -0
- package/data/session/certs/client/client.crt +31 -0
- package/data/session/certs/client/client.key +51 -0
- package/data/session/certs/server/server.crt +31 -0
- package/data/session/certs/server/server.key +51 -0
- package/data/session/genkey.ps1 +179 -0
- package/dist/a-session-msg-factory.d.ts +0 -0
- package/dist/a-session-msg-factory.js +1 -0
- package/dist/a-session-msg-factory.js.map +1 -0
- package/dist/ascii-encoder.test.d.ts +0 -0
- package/dist/ascii-encoder.test.js +1 -0
- package/dist/ascii-encoder.test.js.map +1 -0
- package/dist/ascii-parser.test.d.ts +0 -0
- package/dist/ascii-parser.test.js +1 -0
- package/dist/ascii-parser.test.js.map +1 -0
- package/dist/ascii-segment.test.d.ts +0 -0
- package/dist/ascii-segment.test.js +1 -0
- package/dist/ascii-segment.test.js.map +1 -0
- package/dist/ascii-store-replay.test.d.ts +0 -0
- package/dist/ascii-store-replay.test.js +1 -0
- package/dist/ascii-store-replay.test.js.map +1 -0
- package/dist/ascii-tag-pos.test.d.ts +0 -0
- package/dist/ascii-tag-pos.test.js +1 -0
- package/dist/ascii-tag-pos.test.js.map +1 -0
- package/dist/buffer/{ascii-chars.d.ts → ascii/ascii-chars.d.ts} +0 -0
- package/dist/buffer/{ascii-chars.js → ascii/ascii-chars.js} +0 -0
- package/dist/buffer/ascii/ascii-chars.js.map +1 -0
- package/dist/buffer/ascii/ascii-encoder.d.ts +5 -3
- package/dist/buffer/ascii/ascii-encoder.js +82 -48
- package/dist/buffer/ascii/ascii-encoder.js.map +1 -1
- package/dist/buffer/ascii/ascii-parser-state.d.ts +3 -10
- package/dist/buffer/ascii/ascii-parser-state.js +37 -25
- package/dist/buffer/ascii/ascii-parser-state.js.map +1 -1
- package/dist/buffer/ascii/ascii-parser.d.ts +7 -7
- package/dist/buffer/ascii/ascii-parser.js +50 -24
- package/dist/buffer/ascii/ascii-parser.js.map +1 -1
- package/dist/buffer/ascii/ascii-segment-parser.d.ts +2 -2
- package/dist/buffer/ascii/ascii-segment-parser.js +34 -13
- package/dist/buffer/ascii/ascii-segment-parser.js.map +1 -1
- package/dist/buffer/ascii/ascii-view.d.ts +2 -4
- package/dist/buffer/ascii/ascii-view.js +11 -15
- package/dist/buffer/ascii/ascii-view.js.map +1 -1
- package/dist/buffer/ascii/index.d.ts +1 -0
- package/dist/buffer/ascii/index.js +1 -0
- package/dist/buffer/ascii/index.js.map +1 -1
- package/dist/buffer/ascii/parse-state.d.ts +8 -0
- package/dist/buffer/ascii/parse-state.js +13 -0
- package/dist/buffer/ascii/parse-state.js.map +1 -0
- package/dist/buffer/ascii/time-formatter.js +1 -1
- package/dist/buffer/ascii/time-formatter.js.map +1 -1
- package/dist/buffer/elastic-buffer.js +29 -8
- package/dist/buffer/elastic-buffer.js.map +1 -1
- package/dist/buffer/encode-proxy.d.ts +1 -1
- package/dist/buffer/encode-proxy.js +16 -17
- package/dist/buffer/encode-proxy.js.map +1 -1
- package/dist/buffer/fixml/fixml-encoder.d.ts +2 -1
- package/dist/buffer/fixml/fixml-encoder.js +43 -20
- package/dist/buffer/fixml/fixml-encoder.js.map +1 -1
- package/dist/buffer/fixml/fixml-parser.js +47 -24
- package/dist/buffer/fixml/fixml-parser.js.map +1 -1
- package/dist/buffer/fixml/fixml-view.d.ts +2 -2
- package/dist/buffer/fixml/fixml-view.js +13 -13
- package/dist/buffer/fixml/fixml-view.js.map +1 -1
- package/dist/buffer/fixml/populated-attributes.d.ts +5 -0
- package/dist/buffer/fixml/populated-attributes.js +3 -0
- package/dist/buffer/fixml/populated-attributes.js.map +1 -0
- package/dist/buffer/index.d.ts +4 -8
- package/dist/buffer/index.js +4 -8
- package/dist/buffer/index.js.map +1 -1
- package/dist/buffer/msg-encoder.d.ts +2 -1
- package/dist/buffer/msg-encoder.js.map +1 -1
- package/dist/buffer/msg-view.d.ts +3 -3
- package/dist/buffer/msg-view.js +8 -5
- package/dist/buffer/msg-view.js.map +1 -1
- package/dist/buffer/segment/segment-description.d.ts +26 -0
- package/dist/buffer/segment/segment-description.js +72 -0
- package/dist/buffer/segment/segment-description.js.map +1 -0
- package/dist/buffer/segment/segment-summary.d.ts +13 -0
- package/dist/buffer/segment/segment-summary.js +20 -0
- package/dist/buffer/segment/segment-summary.js.map +1 -0
- package/dist/buffer/segment/segment-type.d.ts +8 -0
- package/dist/buffer/segment/segment-type.js +13 -0
- package/dist/buffer/segment/segment-type.js.map +1 -0
- package/dist/buffer/segment-description.d.ts +2 -9
- package/dist/buffer/segment-description.js +5 -13
- package/dist/buffer/segment-description.js.map +1 -1
- package/dist/buffer/segment-type.d.ts +8 -0
- package/dist/buffer/segment-type.js +13 -0
- package/dist/buffer/segment-type.js.map +1 -0
- package/dist/buffer/structure.d.ts +3 -3
- package/dist/buffer/structure.js +1 -1
- package/dist/buffer/structure.js.map +1 -1
- package/dist/buffer/tag/tag-pos.d.ts +12 -0
- package/dist/buffer/tag/tag-pos.js +55 -0
- package/dist/buffer/tag/tag-pos.js.map +1 -0
- package/dist/buffer/tag/tag-type.d.ts +13 -0
- package/dist/buffer/tag/tag-type.js +18 -0
- package/dist/buffer/tag/tag-type.js.map +1 -0
- package/dist/buffer/tag/tags.d.ts +21 -0
- package/dist/buffer/tag/tags.js +122 -0
- package/dist/buffer/tag/tags.js.map +1 -0
- package/dist/buffer/tag-type.d.ts +13 -0
- package/dist/buffer/tag-type.js +18 -0
- package/dist/buffer/tag-type.js.map +1 -0
- package/dist/buffer/tags.d.ts +3 -14
- package/dist/buffer/tags.js +23 -36
- package/dist/buffer/tags.js.map +1 -1
- package/dist/config/get-js-fx-logger.d.ts +4 -0
- package/dist/config/get-js-fx-logger.js +3 -0
- package/dist/config/get-js-fx-logger.js.map +1 -0
- package/dist/config/index.d.ts +1 -0
- package/dist/config/index.js +1 -0
- package/dist/config/index.js.map +1 -1
- package/dist/config/js-fix-config.d.ts +4 -1
- package/dist/config/js-fix-config.js +3 -3
- package/dist/config/js-fix-config.js.map +1 -1
- package/dist/config/js-fix-logger.d.ts +0 -3
- package/dist/config/js-fix-logger.js.map +1 -1
- package/dist/dict-parser.js +30 -25
- package/dist/dict-parser.js.map +1 -1
- package/dist/dictionary/compiler/compiler-type.js +7 -7
- package/dist/dictionary/compiler/compiler-type.js.map +1 -1
- package/dist/dictionary/compiler/enum-compiler.d.ts +1 -0
- package/dist/dictionary/compiler/enum-compiler.js +11 -1
- package/dist/dictionary/compiler/enum-compiler.js.map +1 -1
- package/dist/dictionary/compiler/msg-compiler.js +8 -6
- package/dist/dictionary/compiler/msg-compiler.js.map +1 -1
- package/dist/dictionary/contained/contained-component-field.js +2 -1
- package/dist/dictionary/contained/contained-component-field.js.map +1 -1
- package/dist/dictionary/contained/contained-field-dispatch.d.ts +1 -14
- package/dist/dictionary/contained/contained-field-dispatch.js +4 -4
- package/dist/dictionary/contained/contained-field-dispatch.js.map +1 -1
- package/dist/dictionary/contained/contained-field-dispatcher.d.ts +14 -0
- package/dist/dictionary/contained/contained-field-dispatcher.js +3 -0
- package/dist/dictionary/contained/contained-field-dispatcher.js.map +1 -0
- package/dist/dictionary/contained/contained-field-set.d.ts +1 -1
- package/dist/dictionary/contained/contained-field-set.js +12 -11
- package/dist/dictionary/contained/contained-field-set.js.map +1 -1
- package/dist/dictionary/contained/contained-field-type.d.ts +5 -0
- package/dist/dictionary/contained/contained-field-type.js +10 -0
- package/dist/dictionary/contained/contained-field-type.js.map +1 -0
- package/dist/dictionary/contained/contained-field.d.ts +1 -5
- package/dist/dictionary/contained/contained-field.js +1 -7
- package/dist/dictionary/contained/contained-field.js.map +1 -1
- package/dist/dictionary/contained/contained-group-field.js +2 -1
- package/dist/dictionary/contained/contained-group-field.js.map +1 -1
- package/dist/dictionary/contained/contained-simple-field.js +2 -1
- package/dist/dictionary/contained/contained-simple-field.js.map +1 -1
- package/dist/dictionary/{fields-dispatch.d.ts → contained/field-dispatcher.d.ts} +3 -2
- package/dist/dictionary/contained/field-dispatcher.js +3 -0
- package/dist/dictionary/contained/field-dispatcher.js.map +1 -0
- package/dist/dictionary/contained/fields-dispatch.d.ts +6 -0
- package/dist/dictionary/contained/fields-dispatch.js +42 -0
- package/dist/dictionary/contained/fields-dispatch.js.map +1 -0
- package/dist/dictionary/contained/index.d.ts +2 -0
- package/dist/dictionary/contained/index.js +2 -0
- package/dist/dictionary/contained/index.js.map +1 -1
- package/dist/dictionary/contained-set-type.d.ts +5 -0
- package/dist/dictionary/contained-set-type.js +10 -0
- package/dist/dictionary/contained-set-type.js.map +1 -0
- package/dist/dictionary/definition/component-field-definition.js +2 -2
- package/dist/dictionary/definition/component-field-definition.js.map +1 -1
- package/dist/dictionary/definition/fix-definitions.d.ts +2 -1
- package/dist/dictionary/definition/fix-definitions.js.map +1 -1
- package/dist/dictionary/definition/group-field-definition.js +2 -2
- package/dist/dictionary/definition/group-field-definition.js.map +1 -1
- package/dist/dictionary/definition/index.d.ts +0 -1
- package/dist/dictionary/definition/index.js +0 -1
- package/dist/dictionary/definition/index.js.map +1 -1
- package/dist/dictionary/definition/message-definition.js +2 -2
- package/dist/dictionary/definition/message-definition.js.map +1 -1
- package/dist/dictionary/definition/simple-field-definition.d.ts +1 -1
- package/dist/dictionary/definition/simple-field-definition.js +5 -4
- package/dist/dictionary/definition/simple-field-definition.js.map +1 -1
- package/dist/dictionary/dict-primitive.d.ts +0 -11
- package/dist/dictionary/dict-primitive.js +0 -7
- package/dist/dictionary/dict-primitive.js.map +1 -1
- package/dist/dictionary/fix-definition-source.d.ts +6 -0
- package/dist/dictionary/fix-definition-source.js +11 -0
- package/dist/dictionary/fix-definition-source.js.map +1 -0
- package/dist/dictionary/fix-versions.d.ts +0 -9
- package/dist/dictionary/fix-versions.js +1 -39
- package/dist/dictionary/fix-versions.js.map +1 -1
- package/dist/dictionary/index.d.ts +1 -5
- package/dist/dictionary/index.js +1 -5
- package/dist/dictionary/index.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/abbreviations-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/abbreviations-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/abbreviations-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/base-parser.d.ts +2 -4
- package/dist/dictionary/parser/fix-repository/base-parser.js +1 -2
- package/dist/dictionary/parser/fix-repository/base-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/components-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/components-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/components-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/data-types-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/data-types-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/data-types-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/enums-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/enums-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/enums-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/fields-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/fields-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/fields-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/messages-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/messages-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/messages-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/msg-contents-parser.d.ts +1 -3
- package/dist/dictionary/parser/fix-repository/msg-contents-parser.js +2 -3
- package/dist/dictionary/parser/fix-repository/msg-contents-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/repository-abbreviation.d.ts +5 -0
- package/dist/dictionary/parser/fix-repository/repository-abbreviation.js +3 -0
- package/dist/dictionary/parser/fix-repository/repository-abbreviation.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-component.d.ts +10 -0
- package/dist/dictionary/parser/fix-repository/repository-component.js +3 -0
- package/dist/dictionary/parser/fix-repository/repository-component.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-data-type.d.ts +6 -0
- package/dist/dictionary/parser/fix-repository/repository-data-type.js +3 -0
- package/dist/dictionary/parser/fix-repository/repository-data-type.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-enum.d.ts +7 -0
- package/dist/{standard_header.js → dictionary/parser/fix-repository/repository-enum.js} +1 -1
- package/dist/dictionary/parser/fix-repository/repository-enum.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-field.d.ts +11 -0
- package/dist/dictionary/parser/fix-repository/repository-field.js +3 -0
- package/dist/dictionary/parser/fix-repository/repository-field.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-message.d.ts +11 -0
- package/dist/dictionary/parser/fix-repository/repository-message.js +3 -0
- package/dist/dictionary/parser/fix-repository/repository-message.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-msg-content.d.ts +9 -0
- package/dist/dictionary/parser/fix-repository/repository-msg-content.js +3 -0
- package/dist/dictionary/parser/fix-repository/repository-msg-content.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-msg.d.ts +0 -0
- package/dist/dictionary/parser/fix-repository/repository-msg.js +1 -0
- package/dist/dictionary/parser/fix-repository/repository-msg.js.map +1 -0
- package/dist/dictionary/parser/fix-repository/repository-type.d.ts +0 -53
- package/dist/dictionary/parser/fix-repository/repository-type.js +0 -2
- package/dist/dictionary/parser/fix-repository/repository-type.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/repository-xml-parser.js +10 -10
- package/dist/dictionary/parser/fix-repository/repository-xml-parser.js.map +1 -1
- package/dist/dictionary/parser/fix-repository/repository.d.ts +12 -1
- package/dist/dictionary/parser/fix-repository/repository.js +50 -28
- package/dist/dictionary/parser/fix-repository/repository.js.map +1 -1
- package/dist/dictionary/parser/fixml/components-parser.d.ts +1 -1
- package/dist/dictionary/parser/fixml/components-parser.js.map +1 -1
- package/dist/dictionary/parser/fixml/fields-parser.d.ts +1 -1
- package/dist/dictionary/parser/fixml/fields-parser.js.map +1 -1
- package/dist/dictionary/parser/fixml/fix-xsd-parser.js +3 -2
- package/dist/dictionary/parser/fixml/fix-xsd-parser.js.map +1 -1
- package/dist/dictionary/parser/fixml/include-graph.js.map +1 -1
- package/dist/dictionary/parser/fixml/xsd-parser.d.ts +1 -1
- package/dist/dictionary/parser/fixml/xsd-parser.js.map +1 -1
- package/dist/dictionary/parser/quickfix/field-definition-parser.d.ts +4 -4
- package/dist/dictionary/parser/quickfix/field-definition-parser.js +3 -3
- package/dist/dictionary/parser/quickfix/field-definition-parser.js.map +1 -1
- package/dist/dictionary/parser/quickfix/field-set-parser.d.ts +4 -4
- package/dist/dictionary/parser/quickfix/field-set-parser.js +3 -3
- package/dist/dictionary/parser/quickfix/field-set-parser.js.map +1 -1
- package/dist/dictionary/parser/quickfix/message-parser.d.ts +4 -4
- package/dist/dictionary/parser/quickfix/message-parser.js +3 -3
- package/dist/dictionary/parser/quickfix/message-parser.js.map +1 -1
- package/dist/dictionary/parser/quickfix/node-parser.d.ts +4 -5
- package/dist/dictionary/parser/quickfix/node-parser.js +4 -4
- package/dist/dictionary/parser/quickfix/node-parser.js.map +1 -1
- package/dist/dictionary/parser/quickfix/parse-state.d.ts +8 -0
- package/dist/dictionary/parser/quickfix/parse-state.js +13 -0
- package/dist/dictionary/parser/quickfix/parse-state.js.map +1 -0
- package/dist/dictionary/parser/quickfix/quick-fix-xml-file-parser.d.ts +1 -9
- package/dist/dictionary/parser/quickfix/quick-fix-xml-file-parser.js +28 -35
- package/dist/dictionary/parser/quickfix/quick-fix-xml-file-parser.js.map +1 -1
- package/dist/dictionary/sax-node.d.ts +6 -0
- package/dist/{header.js → dictionary/sax-node.js} +1 -1
- package/dist/dictionary/sax-node.js.map +1 -0
- package/dist/dictionary/set-reduce.d.ts +5 -12
- package/dist/dictionary/set-reduce.js +28 -26
- package/dist/dictionary/set-reduce.js.map +1 -1
- package/dist/dictionary/type-dispatcher.d.ts +12 -0
- package/dist/dictionary/type-dispatcher.js +3 -0
- package/dist/dictionary/type-dispatcher.js.map +1 -0
- package/dist/dictionary/version-util.d.ts +4 -0
- package/dist/dictionary/version-util.js +36 -0
- package/dist/dictionary/version-util.js.map +1 -0
- package/dist/execution-report.test.d.ts +0 -0
- package/dist/execution-report.test.js +1 -0
- package/dist/execution-report.test.js.map +1 -0
- package/dist/experiment.d.ts +0 -0
- package/dist/experiment.js +1 -0
- package/dist/experiment.js.map +1 -0
- package/dist/fix-repo-dict.test.d.ts +0 -0
- package/dist/fix-repo-dict.test.js +1 -0
- package/dist/fix-repo-dict.test.js.map +1 -0
- package/dist/fix-session-state-args.d.ts +0 -0
- package/dist/fix-session-state-args.js +1 -0
- package/dist/fix-session-state-args.js.map +1 -0
- package/dist/fix-session-state.d.ts +0 -0
- package/dist/fix-session-state.js +1 -0
- package/dist/fix-session-state.js.map +1 -0
- package/dist/fix-session.d.ts +0 -0
- package/dist/fix-session.js +1 -0
- package/dist/fix-session.js.map +1 -0
- package/dist/fix.txt +1 -1
- package/dist/fixml-alloc-parse.test.d.ts +0 -0
- package/dist/fixml-alloc-parse.test.js +1 -0
- package/dist/fixml-alloc-parse.test.js.map +1 -0
- package/dist/fixml-mkt-data-fut-parse.test.d.ts +0 -0
- package/dist/fixml-mkt-data-fut-parse.test.js +1 -0
- package/dist/fixml-mkt-data-fut-parse.test.js.map +1 -0
- package/dist/fixml-mkt-data-settle-parse.test.d.ts +0 -0
- package/dist/fixml-mkt-data-settle-parse.test.js +1 -0
- package/dist/fixml-mkt-data-settle-parse.test.js.map +1 -0
- package/dist/fixml-tc-bi-lateral-parse.test.d.ts +0 -0
- package/dist/fixml-tc-bi-lateral-parse.test.js +1 -0
- package/dist/fixml-tc-bi-lateral-parse.test.js.map +1 -0
- package/dist/includes.test.d.ts +0 -0
- package/dist/includes.test.js +1 -0
- package/dist/includes.test.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/jsfix-cmd.d.ts +5 -0
- package/dist/jsfix-cmd.js +28 -21
- package/dist/jsfix-cmd.js.map +1 -1
- package/dist/launcher.d.ts +0 -0
- package/dist/launcher.js +1 -0
- package/dist/launcher.js.map +1 -0
- package/dist/logon.test.d.ts +0 -0
- package/dist/logon.test.js +1 -0
- package/dist/logon.test.js.map +1 -0
- package/dist/make-fix-session.d.ts +0 -0
- package/dist/make-fix-session.js +1 -0
- package/dist/make-fix-session.js.map +1 -0
- package/dist/memory-store.test.d.ts +0 -0
- package/dist/memory-store.test.js +1 -0
- package/dist/memory-store.test.js.map +1 -0
- package/dist/object.json +473 -698
- package/dist/qf-full-msg.test.d.ts +0 -0
- package/dist/qf-full-msg.test.js +1 -0
- package/dist/qf-full-msg.test.js.map +1 -0
- package/dist/repo-full-ascii-msg.test.d.ts +0 -0
- package/dist/repo-full-ascii-msg.test.js +1 -0
- package/dist/repo-full-ascii-msg.test.js.map +1 -0
- package/dist/runtime/DITokens.d.ts +20 -0
- package/dist/runtime/DITokens.js +25 -0
- package/dist/runtime/DITokens.js.map +1 -0
- package/dist/runtime/app-launcher.d.ts +27 -0
- package/dist/runtime/app-launcher.js +131 -0
- package/dist/runtime/app-launcher.js.map +1 -0
- package/dist/runtime/di-tokens.d.ts +28 -0
- package/dist/runtime/di-tokens.js +33 -0
- package/dist/runtime/di-tokens.js.map +1 -0
- package/dist/runtime/engine-factory.d.ts +4 -0
- package/dist/runtime/engine-factory.js +3 -0
- package/dist/runtime/engine-factory.js.map +1 -0
- package/dist/runtime/index.d.ts +5 -0
- package/dist/runtime/index.js +18 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/runtime/launcher.d.ts +29 -0
- package/dist/runtime/launcher.js +131 -0
- package/dist/runtime/launcher.js.map +1 -0
- package/dist/runtime/make-config.d.ts +11 -0
- package/dist/runtime/make-config.js +57 -0
- package/dist/runtime/make-config.js.map +1 -0
- package/dist/runtime/session-container.d.ts +16 -0
- package/dist/runtime/session-container.js +168 -0
- package/dist/runtime/session-container.js.map +1 -0
- package/dist/runtime/session-launcher.d.ts +26 -0
- package/dist/runtime/session-launcher.js +131 -0
- package/dist/runtime/session-launcher.js.map +1 -0
- package/dist/sample/http/oms/app.d.ts +1 -1
- package/dist/sample/http/oms/app.js +16 -12
- package/dist/sample/http/oms/app.js.map +1 -1
- package/dist/sample/http/oms/http-client.js +22 -2
- package/dist/sample/http/oms/http-client.js.map +1 -1
- package/dist/sample/http/oms/http-server.js +21 -2
- package/dist/sample/http/oms/http-server.js.map +1 -1
- package/dist/sample/launcher.d.ts +21 -3
- package/dist/sample/launcher.js +88 -11
- package/dist/sample/launcher.js.map +1 -1
- package/dist/sample/tcp/qf-md/app.d.ts +1 -1
- package/dist/sample/tcp/qf-md/app.js +11 -11
- package/dist/sample/tcp/qf-md/app.js.map +1 -1
- package/dist/sample/tcp/qf-md/md-client.js +21 -2
- package/dist/sample/tcp/qf-md/md-client.js.map +1 -1
- package/dist/sample/tcp/qf-md/md-server.js +20 -2
- package/dist/sample/tcp/qf-md/md-server.js.map +1 -1
- package/dist/sample/tcp/recovering-skeleton/app.d.ts +1 -1
- package/dist/sample/tcp/recovering-skeleton/app.js +36 -16
- package/dist/sample/tcp/recovering-skeleton/app.js.map +1 -1
- package/dist/sample/tcp/recovering-skeleton/respawn-acceptor.d.ts +3 -1
- package/dist/sample/tcp/recovering-skeleton/respawn-acceptor.js +30 -8
- package/dist/sample/tcp/recovering-skeleton/respawn-acceptor.js.map +1 -1
- package/dist/sample/tcp/recovering-skeleton/skeleton-client.d.ts +1 -1
- package/dist/sample/tcp/recovering-skeleton/skeleton-client.js +22 -3
- package/dist/sample/tcp/recovering-skeleton/skeleton-client.js.map +1 -1
- package/dist/sample/tcp/recovering-skeleton/skeleton-server.js +21 -2
- package/dist/sample/tcp/recovering-skeleton/skeleton-server.js.map +1 -1
- package/dist/sample/tcp/skeleton/app.d.ts +1 -1
- package/dist/sample/tcp/skeleton/app.js +8 -13
- package/dist/sample/tcp/skeleton/app.js.map +1 -1
- package/dist/sample/tcp/skeleton/skeleton-session.d.ts +5 -1
- package/dist/sample/tcp/skeleton/skeleton-session.js +45 -4
- package/dist/sample/tcp/skeleton/skeleton-session.js.map +1 -1
- package/dist/sample/tcp/tls-trade-capture/app.d.ts +1 -1
- package/dist/sample/tcp/tls-trade-capture/app.js +4 -24
- package/dist/sample/tcp/tls-trade-capture/app.js.map +1 -1
- package/dist/sample/tcp/trade-capture/app-launcher.d.ts +6 -0
- package/dist/sample/tcp/trade-capture/app-launcher.js +21 -0
- package/dist/sample/tcp/trade-capture/app-launcher.js.map +1 -0
- package/dist/sample/tcp/trade-capture/app-launher.d.ts +0 -0
- package/dist/sample/tcp/trade-capture/app-launher.js +1 -0
- package/dist/sample/tcp/trade-capture/app-launher.js.map +1 -0
- package/dist/sample/tcp/trade-capture/app.d.ts +1 -1
- package/dist/sample/tcp/trade-capture/app.js +4 -21
- package/dist/sample/tcp/trade-capture/app.js.map +1 -1
- package/dist/sample/tcp/trade-capture/jsfix.test_client.txt +11 -14
- package/dist/sample/tcp/trade-capture/jsfix.test_server.txt +10 -14
- package/dist/sample/tcp/trade-capture/trade-capture-client.d.ts +1 -0
- package/dist/sample/tcp/trade-capture/trade-capture-client.js +7 -3
- package/dist/sample/tcp/trade-capture/trade-capture-client.js.map +1 -1
- package/dist/sample/tcp/trade-capture/trade-capture-server.js.map +1 -1
- package/dist/sample/tcp/trade-capture/trade-factory.js +7 -1
- package/dist/sample/tcp/trade-capture/trade-factory.js.map +1 -1
- package/dist/segment-description.d.ts +0 -0
- package/dist/segment-description.js +1 -0
- package/dist/segment-description.js.map +1 -0
- package/dist/segment-summary.d.ts +0 -0
- package/dist/segment-summary.js +1 -0
- package/dist/segment-summary.js.map +1 -0
- package/dist/segment-type.d.ts +0 -0
- package/dist/segment-type.js +1 -0
- package/dist/segment-type.js.map +1 -0
- package/dist/session-description.d.ts +0 -0
- package/dist/session-description.js +1 -0
- package/dist/session-description.js.map +1 -0
- package/dist/session-msg-factory.d.ts +0 -0
- package/dist/session-msg-factory.js +1 -0
- package/dist/session-msg-factory.js.map +1 -0
- package/dist/session-state.d.ts +0 -0
- package/dist/session-state.js +1 -0
- package/dist/session-state.js.map +1 -0
- package/dist/session-state.test.d.ts +0 -0
- package/dist/session-state.test.js +1 -0
- package/dist/session-state.test.js.map +1 -0
- package/dist/session.test.d.ts +0 -0
- package/dist/session.test.js +1 -0
- package/dist/session.test.js.map +1 -0
- package/dist/setup.d.ts +0 -0
- package/dist/setup.js +1 -0
- package/dist/setup.js.map +1 -0
- package/dist/skeleton-runner.d.ts +0 -0
- package/dist/skeleton-runner.js +1 -0
- package/dist/skeleton-runner.js.map +1 -0
- package/dist/store/fix-msg-ascii-store-resend.d.ts +3 -2
- package/dist/store/fix-msg-ascii-store-resend.js +30 -21
- package/dist/store/fix-msg-ascii-store-resend.js.map +1 -1
- package/dist/store/fix-msg-memory-store.d.ts +11 -8
- package/dist/store/fix-msg-memory-store.js +108 -42
- package/dist/store/fix-msg-memory-store.js.map +1 -1
- package/dist/store/fix-msg-store-record.d.ts +4 -0
- package/dist/store/fix-msg-store-record.js +7 -0
- package/dist/store/fix-msg-store-record.js.map +1 -1
- package/dist/store/fix-msg-store-state.d.ts +6 -0
- package/dist/store/fix-msg-store-state.js +3 -0
- package/dist/store/fix-msg-store-state.js.map +1 -0
- package/dist/store/fix-msg-store.d.ts +8 -9
- package/dist/store/fix-msg-store.js.map +1 -1
- package/dist/structure.json +225 -485
- package/dist/tag-pos.d.ts +0 -0
- package/dist/tag-pos.js +1 -0
- package/dist/tag-pos.js.map +1 -0
- package/dist/tag-type.d.ts +0 -0
- package/dist/tag-type.js +1 -0
- package/dist/tag-type.js.map +1 -0
- package/dist/tags.d.ts +0 -0
- package/dist/tags.js +1 -0
- package/dist/tags.js.map +1 -0
- package/dist/test/ascii/ascii-encoder.test.d.ts +1 -0
- package/dist/test/ascii/ascii-encoder.test.js +507 -0
- package/dist/test/ascii/ascii-encoder.test.js.map +1 -0
- package/dist/test/ascii/ascii-parser.test.d.ts +1 -0
- package/dist/test/ascii/ascii-parser.test.js +123 -0
- package/dist/test/ascii/ascii-parser.test.js.map +1 -0
- package/dist/test/ascii/ascii-segment.test.d.ts +1 -0
- package/dist/test/ascii/ascii-segment.test.js +86 -0
- package/dist/test/ascii/ascii-segment.test.js.map +1 -0
- package/dist/test/ascii/ascii-store-replay.test.d.ts +1 -0
- package/dist/test/ascii/ascii-store-replay.test.js +92 -0
- package/dist/test/ascii/ascii-store-replay.test.js.map +1 -0
- package/dist/test/ascii/ascii-tag-pos.test.d.ts +1 -0
- package/dist/test/ascii/ascii-tag-pos.test.js +105 -0
- package/dist/test/ascii/ascii-tag-pos.test.js.map +1 -0
- package/dist/test/ascii/execution-report.test.d.ts +1 -0
- package/dist/test/ascii/execution-report.test.js +489 -0
- package/dist/test/ascii/execution-report.test.js.map +1 -0
- package/dist/test/ascii/fix-log-replay.test.d.ts +1 -0
- package/dist/test/{memory-store-test.js → ascii/fix-log-replay.test.js} +11 -23
- package/dist/test/ascii/fix-log-replay.test.js.map +1 -0
- package/dist/test/ascii/fix-repo-dict.test.d.ts +1 -0
- package/dist/test/ascii/fix-repo-dict.test.js +128 -0
- package/dist/test/ascii/fix-repo-dict.test.js.map +1 -0
- package/dist/test/ascii/includes.test.d.ts +1 -0
- package/dist/test/ascii/includes.test.js +43 -0
- package/dist/test/ascii/includes.test.js.map +1 -0
- package/dist/test/ascii/logon.test.d.ts +1 -0
- package/dist/test/ascii/logon.test.js +91 -0
- package/dist/test/ascii/logon.test.js.map +1 -0
- package/dist/test/ascii/memory-store.test.d.ts +1 -0
- package/dist/test/ascii/memory-store.test.js +75 -0
- package/dist/test/ascii/memory-store.test.js.map +1 -0
- package/dist/test/ascii/qf-full-msg.test.d.ts +1 -0
- package/dist/test/ascii/qf-full-msg.test.js +81 -0
- package/dist/test/ascii/qf-full-msg.test.js.map +1 -0
- package/dist/test/ascii/repo-full-ascii-msg.test.d.ts +1 -0
- package/dist/test/ascii/repo-full-ascii-msg.test.js +87 -0
- package/dist/test/ascii/repo-full-ascii-msg.test.js.map +1 -0
- package/dist/test/ascii/session-state.test.d.ts +1 -0
- package/dist/test/ascii/session-state.test.js +73 -0
- package/dist/test/ascii/session-state.test.js.map +1 -0
- package/dist/test/ascii/session.test.d.ts +1 -0
- package/dist/test/ascii/session.test.js +280 -0
- package/dist/test/ascii/session.test.js.map +1 -0
- package/dist/test/ascii/time-formatter.test.d.ts +1 -0
- package/dist/test/ascii/time-formatter.test.js +80 -0
- package/dist/test/ascii/time-formatter.test.js.map +1 -0
- package/dist/test/ascii/view-decode.test.d.ts +1 -0
- package/dist/test/ascii/view-decode.test.js +183 -0
- package/dist/test/ascii/view-decode.test.js.map +1 -0
- package/dist/test/ascii-encoder.test.d.ts +1 -0
- package/dist/test/{ascii-encode.test.js → ascii-encoder.test.js} +140 -48
- package/dist/test/ascii-encoder.test.js.map +1 -0
- package/dist/test/ascii-parser.test.d.ts +1 -1
- package/dist/test/ascii-parser.test.js +31 -48
- package/dist/test/ascii-parser.test.js.map +1 -1
- package/dist/test/ascii-segment.test.d.ts +1 -1
- package/dist/test/ascii-segment.test.js +19 -39
- package/dist/test/ascii-segment.test.js.map +1 -1
- package/dist/test/ascii-store-replay.test.d.ts +1 -1
- package/dist/test/ascii-store-replay.test.js +32 -44
- package/dist/test/ascii-store-replay.test.js.map +1 -1
- package/dist/test/ascii-tag-pos.test.d.ts +1 -1
- package/dist/test/ascii-tag-pos.test.js +8 -8
- package/dist/test/ascii-tag-pos.test.js.map +1 -1
- package/dist/test/elastic-buffer.test.d.ts +1 -1
- package/dist/test/elastic-buffer.test.js +3 -1
- package/dist/test/elastic-buffer.test.js.map +1 -1
- package/dist/test/encode-proxy.test.d.ts +1 -1
- package/dist/test/encode-proxy.test.js +9 -9
- package/dist/test/encode-proxy.test.js.map +1 -1
- package/dist/test/env/experiment.d.ts +23 -0
- package/dist/test/env/experiment.js +33 -0
- package/dist/test/env/experiment.js.map +1 -0
- package/dist/test/env/parsing-result.d.ts +10 -0
- package/dist/test/env/parsing-result.js +14 -0
- package/dist/test/env/parsing-result.js.map +1 -0
- package/dist/test/env/setup.d.ts +39 -0
- package/dist/test/env/setup.js +98 -0
- package/dist/test/env/setup.js.map +1 -0
- package/dist/test/env/skeleton-runner.d.ts +15 -0
- package/dist/test/env/skeleton-runner.js +108 -0
- package/dist/test/env/skeleton-runner.js.map +1 -0
- package/dist/test/env/test-recovery.d.ts +13 -0
- package/dist/test/env/test-recovery.js +41 -0
- package/dist/test/env/test-recovery.js.map +1 -0
- package/dist/test/env/to-views.d.ts +11 -0
- package/dist/test/env/to-views.js +56 -0
- package/dist/test/env/to-views.js.map +1 -0
- package/dist/test/execution-report.test.d.ts +1 -1
- package/dist/test/execution-report.test.js +53 -49
- package/dist/test/execution-report.test.js.map +1 -1
- package/dist/test/experiment.d.ts +23 -0
- package/dist/test/experiment.js +33 -0
- package/dist/test/experiment.js.map +1 -0
- package/dist/test/expieriment.d.ts +23 -0
- package/dist/test/expieriment.js +33 -0
- package/dist/test/expieriment.js.map +1 -0
- package/dist/test/fix-log-replay.test.d.ts +1 -1
- package/dist/test/fix-log-replay.test.js +7 -5
- package/dist/test/fix-log-replay.test.js.map +1 -1
- package/dist/test/fix-repo-dict.test.d.ts +1 -1
- package/dist/test/fix-repo-dict.test.js +6 -5
- package/dist/test/fix-repo-dict.test.js.map +1 -1
- package/dist/test/fixml/fixml-alloc-parse.test.d.ts +1 -0
- package/dist/test/fixml/fixml-alloc-parse.test.js +161 -0
- package/dist/test/fixml/fixml-alloc-parse.test.js.map +1 -0
- package/dist/test/fixml/fixml-mkt-data-fut-parse.test.d.ts +1 -0
- package/dist/test/fixml/fixml-mkt-data-fut-parse.test.js +61 -0
- package/dist/test/fixml/fixml-mkt-data-fut-parse.test.js.map +1 -0
- package/dist/test/fixml/fixml-mkt-data-settle-parse.test.d.ts +1 -0
- package/dist/test/fixml/fixml-mkt-data-settle-parse.test.js +34 -0
- package/dist/test/fixml/fixml-mkt-data-settle-parse.test.js.map +1 -0
- package/dist/test/fixml/fixml-tc-bi-lateral-parse.test.d.ts +1 -0
- package/dist/test/fixml/fixml-tc-bi-lateral-parse.test.js +97 -0
- package/dist/test/fixml/fixml-tc-bi-lateral-parse.test.js.map +1 -0
- package/dist/test/fixml/repo-full-fixml-msg.test.d.ts +1 -0
- package/dist/test/fixml/repo-full-fixml-msg.test.js +143 -0
- package/dist/test/fixml/repo-full-fixml-msg.test.js.map +1 -0
- package/dist/test/fixml-alloc-parse.test.d.ts +1 -1
- package/dist/test/fixml-alloc-parse.test.js +2 -1
- package/dist/test/fixml-alloc-parse.test.js.map +1 -1
- package/dist/test/fixml-mkt-data-fut-parse.test.d.ts +1 -1
- package/dist/test/fixml-mkt-data-fut-parse.test.js +2 -1
- package/dist/test/fixml-mkt-data-fut-parse.test.js.map +1 -1
- package/dist/test/fixml-mkt-data-settle-parse.test.d.ts +1 -1
- package/dist/test/fixml-mkt-data-settle-parse.test.js +2 -1
- package/dist/test/fixml-mkt-data-settle-parse.test.js.map +1 -1
- package/dist/test/fixml-tc-bi-lateral-parse.test.d.ts +1 -1
- package/dist/test/fixml-tc-bi-lateral-parse.test.js +2 -1
- package/dist/test/fixml-tc-bi-lateral-parse.test.js.map +1 -1
- package/dist/test/includes.test.d.ts +1 -1
- package/dist/test/includes.test.js +1 -0
- package/dist/test/includes.test.js.map +1 -1
- package/dist/test/logon.test.d.ts +1 -1
- package/dist/test/logon.test.js +11 -11
- package/dist/test/logon.test.js.map +1 -1
- package/dist/test/memory-store.test.d.ts +1 -1
- package/dist/test/memory-store.test.js +35 -27
- package/dist/test/memory-store.test.js.map +1 -1
- package/dist/test/qf-full-msg.test.d.ts +1 -1
- package/dist/test/qf-full-msg.test.js +25 -19
- package/dist/test/qf-full-msg.test.js.map +1 -1
- package/dist/test/repo-full-ascii-msg.test.d.ts +1 -1
- package/dist/test/repo-full-ascii-msg.test.js +28 -22
- package/dist/test/repo-full-ascii-msg.test.js.map +1 -1
- package/dist/test/repo-full-fixml-msg.test.d.ts +1 -1
- package/dist/test/repo-full-fixml-msg.test.js +21 -18
- package/dist/test/repo-full-fixml-msg.test.js.map +1 -1
- package/dist/test/session-state.test.d.ts +1 -1
- package/dist/test/session-state.test.js +2 -1
- package/dist/test/session-state.test.js.map +1 -1
- package/dist/test/session.test.d.ts +1 -1
- package/dist/test/session.test.js +152 -163
- package/dist/test/session.test.js.map +1 -1
- package/dist/test/setup.d.ts +45 -0
- package/dist/test/setup.js +102 -0
- package/dist/test/setup.js.map +1 -0
- package/dist/test/skeleton-runner.d.ts +15 -0
- package/dist/test/skeleton-runner.js +108 -0
- package/dist/test/skeleton-runner.js.map +1 -0
- package/dist/test/time-formatter.test.d.ts +1 -1
- package/dist/test/time-formatter.test.js +3 -1
- package/dist/test/time-formatter.test.js.map +1 -1
- package/dist/test/to-views.d.ts +1 -1
- package/dist/test/to-views.js +5 -4
- package/dist/test/to-views.js.map +1 -1
- package/dist/test/view-decode.test.d.ts +1 -1
- package/dist/test/view-decode.test.js +9 -33
- package/dist/test/view-decode.test.js.map +1 -1
- package/dist/time-formatter.test.d.ts +0 -0
- package/dist/time-formatter.test.js +1 -0
- package/dist/time-formatter.test.js.map +1 -0
- package/dist/to-views.d.ts +0 -0
- package/dist/to-views.js +1 -0
- package/dist/to-views.js.map +1 -0
- package/dist/token.txt +246 -308
- package/dist/transport/FixEntity.d.ts +8 -0
- package/dist/transport/FixEntity.js +12 -0
- package/dist/transport/FixEntity.js.map +1 -0
- package/dist/transport/a-session-msg-factory.d.ts +23 -0
- package/dist/transport/a-session-msg-factory.js +58 -0
- package/dist/transport/a-session-msg-factory.js.map +1 -0
- package/dist/transport/ascii/ascii-msg-transmitter.js +50 -12
- package/dist/transport/ascii/ascii-msg-transmitter.js.map +1 -1
- package/dist/transport/ascii/ascii-session-msg-factory.d.ts +16 -0
- package/dist/transport/ascii/ascii-session-msg-factory.js +47 -0
- package/dist/transport/ascii/ascii-session-msg-factory.js.map +1 -0
- package/dist/transport/ascii/ascii-session.d.ts +10 -1
- package/dist/transport/ascii/ascii-session.js +98 -41
- package/dist/transport/ascii/ascii-session.js.map +1 -1
- package/dist/transport/ascii/index.d.ts +1 -1
- package/dist/transport/ascii/index.js +1 -1
- package/dist/transport/ascii/index.js.map +1 -1
- package/dist/transport/duplex/http-duplex.d.ts +1 -1
- package/dist/transport/duplex/http-duplex.js +2 -2
- package/dist/transport/duplex/http-duplex.js.map +1 -1
- package/dist/transport/duplex/tcp-duplex.js +22 -2
- package/dist/transport/duplex/tcp-duplex.js.map +1 -1
- package/dist/transport/factory/index.d.ts +1 -0
- package/dist/{sample/tcp/trade_capture → transport/factory}/index.js +1 -2
- package/dist/transport/factory/index.js.map +1 -0
- package/dist/transport/{msg-transport.d.ts → factory/msg-transport.d.ts} +4 -4
- package/dist/transport/factory/msg-transport.js +61 -0
- package/dist/transport/factory/msg-transport.js.map +1 -0
- package/dist/transport/fix-acceptor.d.ts +2 -2
- package/dist/transport/fix-acceptor.js.map +1 -1
- package/dist/transport/fix-entity.d.ts +8 -0
- package/dist/transport/fix-entity.js +12 -0
- package/dist/transport/fix-entity.js.map +1 -0
- package/dist/transport/fix-initiator.d.ts +2 -2
- package/dist/transport/fix-initiator.js.map +1 -1
- package/dist/transport/fix-msg-factory.d.ts +1 -1
- package/dist/transport/fix-msg-factory.js.map +1 -1
- package/dist/transport/fix-session-state-args.d.ts +8 -0
- package/dist/transport/fix-session-state-args.js +3 -0
- package/dist/transport/fix-session-state-args.js.map +1 -0
- package/dist/transport/fix-session-state.d.ts +8 -38
- package/dist/transport/fix-session-state.js +26 -56
- package/dist/transport/fix-session-state.js.map +1 -1
- package/dist/transport/fix-session.d.ts +9 -2
- package/dist/transport/fix-session.js +115 -59
- package/dist/transport/fix-session.js.map +1 -1
- package/dist/transport/fixml/fixml-msg-transmitter.js +23 -5
- package/dist/transport/fixml/fixml-msg-transmitter.js.map +1 -1
- package/dist/transport/fixml/fixml-session-msg-factory.d.ts +13 -0
- package/dist/transport/fixml/fixml-session-msg-factory.js +68 -0
- package/dist/transport/fixml/fixml-session-msg-factory.js.map +1 -0
- package/dist/transport/fixml/fixml-session.d.ts +1 -1
- package/dist/transport/fixml/fixml-session.js +3 -3
- package/dist/transport/fixml/fixml-session.js.map +1 -1
- package/dist/transport/fixml/index.d.ts +1 -2
- package/dist/transport/fixml/index.js +1 -2
- package/dist/transport/fixml/index.js.map +1 -1
- package/dist/transport/http/html-options.d.ts +8 -0
- package/dist/{hop_no_hops.js → transport/http/html-options.js} +1 -1
- package/dist/transport/http/html-options.js.map +1 -0
- package/dist/transport/http/html-route.d.ts +5 -0
- package/dist/{hop.js → transport/http/html-route.js} +1 -1
- package/dist/transport/http/html-route.js.map +1 -0
- package/dist/transport/http/http-acceptor-listener.d.ts +7 -0
- package/dist/transport/http/http-acceptor-listener.js +68 -0
- package/dist/transport/http/http-acceptor-listener.js.map +1 -0
- package/dist/transport/http/http-acceptor.js +31 -11
- package/dist/transport/http/http-acceptor.js.map +1 -1
- package/dist/transport/http/http-adapter.d.ts +7 -0
- package/dist/{trailer.js → transport/http/http-adapter.js} +1 -1
- package/dist/transport/http/http-adapter.js.map +1 -0
- package/dist/transport/http/http-initiator.d.ts +9 -3
- package/dist/transport/http/http-initiator.js +57 -26
- package/dist/transport/http/http-initiator.js.map +1 -1
- package/dist/transport/http/http-json-sample-adapter.d.ts +2 -1
- package/dist/transport/http/http-json-sample-adapter.js +21 -2
- package/dist/transport/http/http-json-sample-adapter.js.map +1 -1
- package/dist/transport/http/http-transaction.d.ts +1 -1
- package/dist/transport/http/http-transaction.js.map +1 -1
- package/dist/transport/http/http-transport-description.d.ts +8 -0
- package/dist/transport/http/http-transport-description.js +3 -0
- package/dist/transport/http/http-transport-description.js.map +1 -0
- package/dist/transport/http/index.d.ts +1 -0
- package/dist/transport/http/index.js +1 -0
- package/dist/transport/http/index.js.map +1 -1
- package/dist/transport/index.d.ts +11 -10
- package/dist/transport/index.js +11 -10
- package/dist/transport/index.js.map +1 -1
- package/dist/transport/{make-fixl-session.d.ts → make-fix-session.d.ts} +0 -0
- package/dist/transport/make-fix-session.js +3 -0
- package/dist/transport/make-fix-session.js.map +1 -0
- package/dist/transport/msg-application.d.ts +12 -0
- package/dist/transport/msg-application.js +3 -0
- package/dist/transport/msg-application.js.map +1 -0
- package/dist/transport/msg-transmitter.d.ts +5 -5
- package/dist/transport/msg-transmitter.js +2 -3
- package/dist/transport/msg-transmitter.js.map +1 -1
- package/dist/transport/session/a-session-msg-factory.d.ts +23 -0
- package/dist/transport/session/a-session-msg-factory.js +58 -0
- package/dist/transport/session/a-session-msg-factory.js.map +1 -0
- package/dist/transport/session/fix-session-state-args.d.ts +8 -0
- package/dist/transport/session/fix-session-state-args.js +3 -0
- package/dist/transport/session/fix-session-state-args.js.map +1 -0
- package/dist/transport/session/fix-session-state.d.ts +32 -0
- package/dist/transport/session/fix-session-state.js +133 -0
- package/dist/transport/session/fix-session-state.js.map +1 -0
- package/dist/transport/session/fix-session.d.ts +50 -0
- package/dist/transport/session/fix-session.js +291 -0
- package/dist/transport/session/fix-session.js.map +1 -0
- package/dist/transport/session/make-fix-session.d.ts +5 -0
- package/dist/transport/session/make-fix-session.js +3 -0
- package/dist/transport/session/make-fix-session.js.map +1 -0
- package/dist/transport/session/session-description.d.ts +17 -0
- package/dist/transport/session/session-description.js +3 -0
- package/dist/transport/session/session-description.js.map +1 -0
- package/dist/transport/session/session-msg-factory.d.ts +15 -0
- package/dist/transport/session/session-msg-factory.js +3 -0
- package/dist/transport/session/session-msg-factory.js.map +1 -0
- package/dist/transport/session/session-state.d.ts +25 -0
- package/dist/transport/session/session-state.js +30 -0
- package/dist/transport/session/session-state.js.map +1 -0
- package/dist/transport/session-description.d.ts +1 -48
- package/dist/transport/session-description.js.map +1 -1
- package/dist/transport/session-msg-factory.d.ts +7 -20
- package/dist/transport/session-msg-factory.js +0 -150
- package/dist/transport/session-msg-factory.js.map +1 -1
- package/dist/transport/session-state.d.ts +25 -0
- package/dist/transport/session-state.js +30 -0
- package/dist/transport/session-state.js.map +1 -0
- package/dist/transport/tcp/index.d.ts +3 -2
- package/dist/transport/tcp/index.js +3 -2
- package/dist/transport/tcp/index.js.map +1 -1
- package/dist/transport/tcp/recovering-tcp-initiator.d.ts +7 -9
- package/dist/transport/tcp/recovering-tcp-initiator.js +41 -16
- package/dist/transport/tcp/recovering-tcp-initiator.js.map +1 -1
- package/dist/transport/tcp/tcp-acceptor-listener.d.ts +7 -0
- package/dist/transport/tcp/tcp-acceptor-listener.js +70 -0
- package/dist/transport/tcp/tcp-acceptor-listener.js.map +1 -0
- package/dist/transport/tcp/tcp-acceptor.d.ts +7 -0
- package/dist/transport/tcp/tcp-acceptor.js +79 -43
- package/dist/transport/tcp/tcp-acceptor.js.map +1 -1
- package/dist/transport/tcp/tcp-initiator-connector.d.ts +10 -0
- package/dist/transport/tcp/tcp-initiator-connector.js +97 -0
- package/dist/transport/tcp/tcp-initiator-connector.js.map +1 -0
- package/dist/transport/tcp/tcp-initiator.d.ts +4 -2
- package/dist/transport/tcp/tcp-initiator.js +82 -36
- package/dist/transport/tcp/tcp-initiator.js.map +1 -1
- package/dist/transport/tcp/tcp-transport-description.d.ts +6 -0
- package/dist/transport/tcp/tcp-transport-description.js +3 -0
- package/dist/transport/tcp/tcp-transport-description.js.map +1 -0
- package/dist/transport/tcp/tls-options-factory.d.ts +9 -0
- package/dist/transport/tcp/tls-options-factory.js +53 -0
- package/dist/transport/tcp/tls-options-factory.js.map +1 -0
- package/dist/transport/tcp/tls-options.d.ts +10 -5
- package/dist/transport/tcp/tls-options.js +0 -49
- package/dist/transport/tcp/tls-options.js.map +1 -1
- package/dist/transport/tick-action.d.ts +8 -0
- package/dist/transport/tick-action.js +13 -0
- package/dist/transport/tick-action.js.map +1 -0
- package/dist/types/FIX4.4/repo/enum/all-enum.js.map +1 -1
- package/dist/util/buffer-helper.js +1 -1
- package/dist/util/buffer-helper.js.map +1 -1
- package/dist/util/definition-factory.d.ts +10 -0
- package/dist/util/definition-factory.js +56 -0
- package/dist/util/definition-factory.js.map +1 -0
- package/dist/util/dictionary-path.d.ts +4 -0
- package/dist/util/dictionary-path.js +3 -0
- package/dist/util/dictionary-path.js.map +1 -0
- package/dist/util/index.d.ts +1 -1
- package/dist/util/index.js +1 -1
- package/dist/util/index.js.map +1 -1
- package/dist/util/json-helper.d.ts +3 -1
- package/dist/util/json-helper.js +13 -12
- package/dist/util/json-helper.js.map +1 -1
- package/dist/util/message-generator.d.ts +1 -1
- package/dist/util/message-generator.js +16 -15
- package/dist/util/message-generator.js.map +1 -1
- package/dist/util/replay.d.ts +6 -3
- package/dist/util/replay.js +24 -26
- package/dist/util/replay.js.map +1 -1
- package/package.json +27 -20
- package/script/build.cmd +1 -0
- package/script/build.sh +2 -0
- package/script/genkey.ps1 +179 -179
- package/script/test.cmd +3 -0
- package/src/buffer/{ascii-chars.ts → ascii/ascii-chars.ts} +0 -0
- package/src/buffer/ascii/ascii-encoder.ts +80 -38
- package/src/buffer/ascii/ascii-parser-state.ts +7 -12
- package/src/buffer/ascii/ascii-parser.ts +23 -16
- package/src/buffer/ascii/ascii-segment-parser.ts +14 -8
- package/src/buffer/ascii/ascii-view.ts +4 -9
- package/src/buffer/ascii/index.ts +1 -0
- package/src/buffer/ascii/parse-state.ts +8 -0
- package/src/buffer/ascii/time-formatter.ts +3 -3
- package/src/buffer/elastic-buffer.ts +7 -2
- package/src/buffer/encode-proxy.ts +10 -5
- package/src/buffer/fixml/fixml-encoder.ts +15 -11
- package/src/buffer/fixml/fixml-parser.ts +16 -6
- package/src/buffer/fixml/fixml-view.ts +4 -4
- package/src/buffer/fixml/populated-attributes.ts +6 -0
- package/src/buffer/index.ts +4 -8
- package/src/buffer/msg-encoder.ts +2 -1
- package/src/buffer/msg-view.ts +13 -6
- package/src/buffer/{segment-description.ts → segment/segment-description.ts} +4 -11
- package/src/buffer/{segment-summary.ts → segment/segment-summary.ts} +0 -0
- package/src/buffer/segment/segment-type.ts +8 -0
- package/src/buffer/structure.ts +3 -3
- package/src/buffer/{tag-pos.ts → tag/tag-pos.ts} +0 -0
- package/src/buffer/tag/tag-type.ts +13 -0
- package/src/buffer/{tags.ts → tag/tags.ts} +4 -16
- package/src/config/get-js-fx-logger.ts +4 -0
- package/src/config/index.ts +1 -0
- package/src/config/js-fix-config.ts +5 -2
- package/src/config/js-fix-logger.ts +0 -3
- package/src/dictionary/compiler/compiler-type.ts +3 -3
- package/src/dictionary/compiler/enum-compiler.ts +12 -1
- package/src/dictionary/compiler/msg-compiler.ts +8 -7
- package/src/dictionary/contained/contained-component-field.ts +2 -1
- package/src/dictionary/contained/contained-field-dispatch.ts +3 -7
- package/src/dictionary/contained/contained-field-dispatcher.ts +9 -0
- package/src/dictionary/contained/contained-field-set.ts +5 -3
- package/src/dictionary/contained/contained-field-type.ts +5 -0
- package/src/dictionary/contained/contained-field.ts +1 -6
- package/src/dictionary/contained/contained-group-field.ts +2 -1
- package/src/dictionary/contained/contained-simple-field.ts +2 -1
- package/src/dictionary/contained/field-dispatcher.ts +9 -0
- package/src/dictionary/contained/fields-dispatch.ts +46 -0
- package/src/dictionary/contained/index.ts +2 -0
- package/src/dictionary/contained-set-type.ts +5 -0
- package/src/dictionary/definition/component-field-definition.ts +1 -1
- package/src/dictionary/definition/fix-definitions.ts +2 -1
- package/src/dictionary/definition/group-field-definition.ts +1 -1
- package/src/dictionary/definition/index.ts +0 -1
- package/src/dictionary/definition/message-definition.ts +1 -1
- package/src/dictionary/definition/simple-field-definition.ts +3 -1
- package/src/dictionary/dict-primitive.ts +0 -13
- package/src/dictionary/fix-definition-source.ts +6 -0
- package/src/dictionary/fix-versions.ts +0 -32
- package/src/dictionary/index.ts +1 -5
- package/src/dictionary/parser/fix-repository/abbreviations-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/base-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/components-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/data-types-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/enums-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/fields-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/messages-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/msg-contents-parser.ts +2 -3
- package/src/dictionary/parser/fix-repository/repository-abbreviation.ts +6 -0
- package/src/dictionary/parser/fix-repository/repository-component.ts +11 -0
- package/src/dictionary/parser/fix-repository/repository-data-type.ts +7 -0
- package/src/dictionary/parser/fix-repository/repository-enum.ts +8 -0
- package/src/dictionary/parser/fix-repository/repository-field.ts +12 -0
- package/src/dictionary/parser/fix-repository/repository-message.ts +12 -0
- package/src/dictionary/parser/fix-repository/repository-msg-content.ts +10 -0
- package/src/dictionary/parser/fix-repository/repository-type.ts +0 -59
- package/src/dictionary/parser/fix-repository/repository-xml-parser.ts +10 -9
- package/src/dictionary/parser/fix-repository/repository.ts +69 -38
- package/src/dictionary/parser/fixml/components-parser.ts +6 -3
- package/src/dictionary/parser/fixml/fields-parser.ts +1 -1
- package/src/dictionary/parser/fixml/fix-xsd-parser.ts +2 -1
- package/src/dictionary/parser/fixml/include-graph.ts +2 -1
- package/src/dictionary/parser/fixml/xsd-parser.ts +2 -1
- package/src/dictionary/parser/quickfix/field-definition-parser.ts +4 -5
- package/src/dictionary/parser/quickfix/field-set-parser.ts +4 -5
- package/src/dictionary/parser/quickfix/message-parser.ts +4 -5
- package/src/dictionary/parser/quickfix/node-parser.ts +3 -6
- package/src/dictionary/parser/quickfix/parse-state.ts +8 -0
- package/src/dictionary/parser/quickfix/quick-fix-xml-file-parser.ts +9 -15
- package/src/dictionary/sax-node.ts +7 -0
- package/src/dictionary/set-reduce.ts +30 -31
- package/src/dictionary/type-dispatcher.ts +7 -0
- package/src/dictionary/version-util.ts +25 -0
- package/src/index.ts +1 -0
- package/src/jsfix-cmd.ts +31 -16
- package/src/runtime/di-tokens.ts +48 -0
- package/src/runtime/engine-factory.ts +5 -0
- package/src/runtime/index.ts +5 -0
- package/src/runtime/make-config.ts +35 -0
- package/src/runtime/session-container.ts +180 -0
- package/src/runtime/session-launcher.ts +127 -0
- package/src/sample/http/oms/app.ts +20 -12
- package/src/sample/http/oms/http-client.ts +5 -2
- package/src/sample/http/oms/http-server.ts +5 -1
- package/src/sample/tcp/qf-md/app.ts +12 -12
- package/src/sample/tcp/qf-md/md-client.ts +4 -1
- package/src/sample/tcp/qf-md/md-server.ts +3 -1
- package/src/sample/tcp/recovering-skeleton/app.ts +37 -15
- package/src/sample/tcp/recovering-skeleton/respawn-acceptor.ts +16 -9
- package/src/sample/tcp/recovering-skeleton/skeleton-client.ts +4 -2
- package/src/sample/tcp/recovering-skeleton/skeleton-server.ts +4 -2
- package/src/sample/tcp/skeleton/app.ts +10 -15
- package/src/sample/tcp/skeleton/skeleton-session.ts +29 -3
- package/src/sample/tcp/tls-trade-capture/app.ts +8 -31
- package/src/sample/tcp/trade-capture/app-launcher.ts +22 -0
- package/src/sample/tcp/trade-capture/app.ts +3 -26
- package/src/sample/tcp/trade-capture/trade-capture-client.ts +10 -4
- package/src/sample/tcp/trade-capture/trade-capture-server.ts +2 -1
- package/src/sample/tcp/trade-capture/trade-factory.ts +7 -1
- package/src/store/fix-msg-ascii-store-resend.ts +38 -26
- package/src/store/fix-msg-memory-store.ts +105 -42
- package/src/store/fix-msg-store-record.ts +11 -0
- package/src/store/fix-msg-store-state.ts +6 -0
- package/src/store/fix-msg-store.ts +8 -13
- package/src/transport/ascii/ascii-msg-transmitter.ts +23 -13
- package/src/transport/ascii/ascii-session-msg-factory.ts +62 -0
- package/src/transport/ascii/ascii-session.ts +102 -34
- package/src/transport/ascii/index.ts +1 -1
- package/src/transport/duplex/http-duplex.ts +3 -3
- package/src/transport/duplex/tcp-duplex.ts +4 -1
- package/src/transport/factory/index.ts +1 -0
- package/src/transport/factory/msg-transport.ts +55 -0
- package/src/transport/fix-acceptor.ts +2 -2
- package/src/transport/fix-entity.ts +9 -0
- package/src/transport/fix-initiator.ts +2 -2
- package/src/transport/fixml/fixml-msg-transmitter.ts +8 -4
- package/src/transport/fixml/fixml-session-msg-factory.ts +76 -0
- package/src/transport/fixml/fixml-session.ts +2 -2
- package/src/transport/fixml/index.ts +1 -2
- package/src/transport/http/html-options.ts +8 -0
- package/src/transport/http/html-route.ts +6 -0
- package/src/transport/http/http-acceptor-listener.ts +42 -0
- package/src/transport/http/http-acceptor.ts +12 -8
- package/src/transport/http/http-adapter.ts +7 -0
- package/src/transport/http/http-initiator.ts +40 -25
- package/src/transport/http/http-json-sample-adapter.ts +7 -2
- package/src/transport/http/http-transaction.ts +1 -1
- package/src/transport/http/http-transport-description.ts +9 -0
- package/src/transport/http/index.ts +1 -0
- package/src/transport/index.ts +11 -10
- package/src/transport/msg-application.ts +13 -0
- package/src/transport/msg-transmitter.ts +5 -5
- package/src/transport/session/a-session-msg-factory.ts +81 -0
- package/src/transport/session/fix-session-state-args.ts +9 -0
- package/src/transport/{fix-session-state.ts → session/fix-session-state.ts} +23 -43
- package/src/transport/{fix-session.ts → session/fix-session.ts} +111 -46
- package/src/transport/{make-fixl-session.ts → session/make-fix-session.ts} +1 -1
- package/src/transport/session/session-description.ts +18 -0
- package/src/transport/{fix-msg-factory.ts → session/session-msg-factory.ts} +2 -2
- package/src/transport/session/session-state.ts +25 -0
- package/src/transport/tcp/index.ts +3 -2
- package/src/transport/tcp/recovering-tcp-initiator.ts +24 -13
- package/src/transport/tcp/tcp-acceptor-listener.ts +45 -0
- package/src/transport/tcp/tcp-acceptor.ts +65 -40
- package/src/transport/tcp/tcp-initiator-connector.ts +71 -0
- package/src/transport/tcp/tcp-initiator.ts +71 -42
- package/src/transport/tcp/tcp-transport-description.ts +7 -0
- package/src/transport/tcp/tls-options-factory.ts +55 -0
- package/src/transport/tcp/tls-options.ts +9 -51
- package/src/transport/tick-action.ts +8 -0
- package/src/types/FIX4.4/repo/enum/all-enum.ts +0 -1
- package/src/util/definition-factory.ts +47 -0
- package/src/util/dictionary-path.ts +4 -0
- package/src/util/index.ts +1 -1
- package/src/util/json-helper.ts +14 -4
- package/src/util/message-generator.ts +6 -3
- package/src/util/replay.ts +26 -21
- package/tsconfig.json +2 -0
- package/dist/buffer/ascii-chars.js.map +0 -1
- package/dist/dictionary/fields-dispatch.js +0 -40
- package/dist/dictionary/fields-dispatch.js.map +0 -1
- package/dist/header.d.ts +0 -31
- package/dist/header.js.map +0 -1
- package/dist/hop.d.ts +0 -4
- package/dist/hop.js.map +0 -1
- package/dist/hop_no_hops.d.ts +0 -5
- package/dist/hop_no_hops.js.map +0 -1
- package/dist/sample/http/oms/jsfix.test_http-client.txt +0 -170
- package/dist/sample/http/oms/jsfix.test_http-server.txt +0 -170
- package/dist/sample/tcp/qf-md/jsfix.test_client.txt +0 -18
- package/dist/sample/tcp/qf-md/jsfix.test_server.txt +0 -17
- package/dist/sample/tcp/recovering-skeleton/jsfix.test_client.txt +0 -96
- package/dist/sample/tcp/recovering-skeleton/jsfix.test_server.txt +0 -93
- package/dist/sample/tcp/recovering-skeleton/skeleton-session.d.ts +0 -17
- package/dist/sample/tcp/recovering-skeleton/skeleton-session.js +0 -70
- package/dist/sample/tcp/recovering-skeleton/skeleton-session.js.map +0 -1
- package/dist/sample/tcp/skeleton/jsfix.test_client.txt +0 -6
- package/dist/sample/tcp/skeleton/jsfix.test_server.txt +0 -6
- package/dist/sample/tcp/tls-trade-capture/jsfix.test_client.txt +0 -1871
- package/dist/sample/tcp/tls-trade-capture/jsfix.test_server.txt +0 -3059
- package/dist/sample/tcp/trade_capture/app.d.ts +0 -1
- package/dist/sample/tcp/trade_capture/app.js +0 -24
- package/dist/sample/tcp/trade_capture/app.js.map +0 -1
- package/dist/sample/tcp/trade_capture/index.d.ts +0 -2
- package/dist/sample/tcp/trade_capture/index.js.map +0 -1
- package/dist/sample/tcp/trade_capture/jsfix.test_client.txt +0 -193
- package/dist/sample/tcp/trade_capture/jsfix.test_server.txt +0 -193
- package/dist/sample/tcp/trade_capture/trade-capture-client.d.ts +0 -16
- package/dist/sample/tcp/trade_capture/trade-capture-client.js +0 -57
- package/dist/sample/tcp/trade_capture/trade-capture-client.js.map +0 -1
- package/dist/sample/tcp/trade_capture/trade-capture-server.d.ts +0 -18
- package/dist/sample/tcp/trade_capture/trade-capture-server.js +0 -72
- package/dist/sample/tcp/trade_capture/trade-capture-server.js.map +0 -1
- package/dist/sample/tcp/trade_capture/trade-factory.d.ts +0 -11
- package/dist/sample/tcp/trade_capture/trade-factory.js +0 -81
- package/dist/sample/tcp/trade_capture/trade-factory.js.map +0 -1
- package/dist/standard_header.d.ts +0 -31
- package/dist/standard_header.js.map +0 -1
- package/dist/standard_trailer.d.ts +0 -6
- package/dist/standard_trailer.js +0 -3
- package/dist/standard_trailer.js.map +0 -1
- package/dist/store/fix-msg-ascii-store-recovery.d.ts +0 -12
- package/dist/store/fix-msg-ascii-store-recovery.js +0 -60
- package/dist/store/fix-msg-ascii-store-recovery.js.map +0 -1
- package/dist/store/fix-resend-record.d.ts +0 -12
- package/dist/store/fix-resend-record.js +0 -12
- package/dist/store/fix-resend-record.js.map +0 -1
- package/dist/test/ascii-encode.test.d.ts +0 -1
- package/dist/test/ascii-encode.test.js.map +0 -1
- package/dist/test/ascii-store-recovery.test.d.ts +0 -1
- package/dist/test/ascii-store-recovery.test.js +0 -50
- package/dist/test/ascii-store-recovery.test.js.map +0 -1
- package/dist/test/memory-store-test.d.ts +0 -1
- package/dist/test/memory-store-test.js.map +0 -1
- package/dist/trailer.d.ts +0 -6
- package/dist/trailer.js.map +0 -1
- package/dist/transport/fixml/acceptor.d.ts +0 -3
- package/dist/transport/fixml/acceptor.js +0 -38
- package/dist/transport/fixml/acceptor.js.map +0 -1
- package/dist/transport/make-config.d.ts +0 -4
- package/dist/transport/make-config.js +0 -31
- package/dist/transport/make-config.js.map +0 -1
- package/dist/transport/make-fixl-session.js +0 -3
- package/dist/transport/make-fixl-session.js.map +0 -1
- package/dist/transport/msg-store.d.ts +0 -2
- package/dist/transport/msg-store.js +0 -3
- package/dist/transport/msg-store.js.map +0 -1
- package/dist/transport/msg-transport.js +0 -57
- package/dist/transport/msg-transport.js.map +0 -1
- package/dist/transport/tcp/acceptor.d.ts +0 -3
- package/dist/transport/tcp/acceptor.js +0 -40
- package/dist/transport/tcp/acceptor.js.map +0 -1
- package/dist/transport/tcp/initiator.d.ts +0 -3
- package/dist/transport/tcp/initiator.js +0 -67
- package/dist/transport/tcp/initiator.js.map +0 -1
- package/dist/transport/tcp/recovering-initiator.d.ts +0 -17
- package/dist/transport/tcp/recovering-initiator.js +0 -30
- package/dist/transport/tcp/recovering-initiator.js.map +0 -1
- package/dist/transport/tcp/recovering_initiator.d.ts +0 -12
- package/dist/transport/tcp/recovering_initiator.js +0 -25
- package/dist/transport/tcp/recovering_initiator.js.map +0 -1
- package/dist/types/FIX4.4/quickfix/set/header.d.ts +0 -31
- package/dist/types/FIX4.4/quickfix/set/header.js +0 -3
- package/dist/types/FIX4.4/quickfix/set/header.js.map +0 -1
- package/dist/types/FIX4.4/quickfix/set/trailer.d.ts +0 -6
- package/dist/types/FIX4.4/quickfix/set/trailer.js +0 -3
- package/dist/types/FIX4.4/quickfix/set/trailer.js.map +0 -1
- package/dist/util/dictionary-definitions.d.ts +0 -8
- package/dist/util/dictionary-definitions.js +0 -51
- package/dist/util/dictionary-definitions.js.map +0 -1
- package/src/dictionary/fields-dispatch.ts +0 -45
- package/src/sample/launcher.ts +0 -46
- package/src/transport/fixml/acceptor.ts +0 -29
- package/src/transport/make-config.ts +0 -19
- package/src/transport/msg-transport.ts +0 -67
- package/src/transport/session-description.ts +0 -70
- package/src/transport/session-msg-factory.ts +0 -195
- package/src/transport/tcp/acceptor.ts +0 -31
- package/src/transport/tcp/initiator.ts +0 -59
- package/src/util/dictionary-definitions.ts +0 -41
package/.travis.yml
CHANGED
|
@@ -12,7 +12,7 @@ before_script:
|
|
|
12
12
|
script:
|
|
13
13
|
- npm run tcp-tc
|
|
14
14
|
- npm run http-oms
|
|
15
|
-
- npm t src/test/ascii-
|
|
15
|
+
- npm t src/test/ascii-encoder.test.ts
|
|
16
16
|
- npm t src/test/includes.test.ts
|
|
17
17
|
- npm t src/test/fixml-mkt-data-settle-parse.test.ts
|
|
18
18
|
- npm t src/test/repo-full-ascii-msg.test.ts
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ compiled typescript is now included. Install the package from npm:
|
|
|
27
27
|
|
|
28
28
|
```shell
|
|
29
29
|
npm install jspurefix
|
|
30
|
-
npm run unzip-repo
|
|
30
|
+
cd node_modules/jspurefix && npm run unzip-repo
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
see our [demo application](https://github.com/TimelordUK/jspf-demo/)
|
|
@@ -176,6 +176,8 @@ to run the provided example tls trade capture a script such as script\getKey.ps1
|
|
|
176
176
|
"Password": "pwd-tls-client",
|
|
177
177
|
"EncryptMethod": 0,
|
|
178
178
|
"ResetSeqNumFlag": true,
|
|
179
|
+
"LastSentSeqNum": 10,
|
|
180
|
+
"LastReceivedSeqNum": 11,
|
|
179
181
|
"HeartBtInt": 30,
|
|
180
182
|
"SenderCompId": "init-tls-comp",
|
|
181
183
|
"TargetCompID": "accept-tls-comp",
|
|
@@ -197,6 +199,50 @@ i.e. include field BodyLengthChars which defaults to 7 characters if omitted.
|
|
|
197
199
|
}
|
|
198
200
|
```
|
|
199
201
|
|
|
202
|
+
## launching without resetting message sequences
|
|
203
|
+
|
|
204
|
+
If the message sequences are persisted over multiple sessions and are not reset on logon (ie. `"ResetSeqNumFlag": false,`),
|
|
205
|
+
then the previously used sequence numbers can be set as follows:
|
|
206
|
+
|
|
207
|
+
```json
|
|
208
|
+
{
|
|
209
|
+
"ResetSeqNumFlag": false,
|
|
210
|
+
"LastSentSeqNum": 10,
|
|
211
|
+
"LastReceivedSeqNum": 11
|
|
212
|
+
}
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
## resending messages
|
|
216
|
+
|
|
217
|
+
By default, the library will not resend past messages as this requires persisting messages which depending on the volume,
|
|
218
|
+
may also require a database. If you want to support resending you must override `AsciiSession.onResendRequest()` with a resending logic.
|
|
219
|
+
Additionally, make sure to include the original message sequence and the duplicate message flag in the FIX object:
|
|
220
|
+
|
|
221
|
+
```typescript
|
|
222
|
+
{
|
|
223
|
+
...messageBodyData,
|
|
224
|
+
StandardHeader: { PossDupFlag: true, MsgSeqNum: sequenceNumber},
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
### Example
|
|
230
|
+
|
|
231
|
+
```json
|
|
232
|
+
{
|
|
233
|
+
"ClOrdID": "acceptor-order-id",
|
|
234
|
+
"HandlInst": "2",
|
|
235
|
+
"OrdType": "2",
|
|
236
|
+
"Side": "2",
|
|
237
|
+
"TransactTime": "2021-08-03T08:23:57.041Z",
|
|
238
|
+
"Symbol": "some ticker",
|
|
239
|
+
"StandardHeader": {
|
|
240
|
+
"PossDupFlag": true,
|
|
241
|
+
"MsgSeqNum": 2
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
```
|
|
245
|
+
|
|
200
246
|
## Unit Tests
|
|
201
247
|
|
|
202
248
|
there is a comprehensive suite of tests which can be run
|
|
@@ -211,7 +257,7 @@ RUNS src/test/session.test.ts
|
|
|
211
257
|
PASS src/test/encode-proxy.test.tsst.ts
|
|
212
258
|
PASS src/test/execution-report.test.ts
|
|
213
259
|
PASS src/test/view-decode.test.ts
|
|
214
|
-
PASS src/test/ascii-
|
|
260
|
+
PASS src/test/ascii-encoder.test.ts
|
|
215
261
|
PASS src/test/ascii-parser.test.ts
|
|
216
262
|
PASS src/test/includes.test.ts
|
|
217
263
|
PASS src/test/fixml-alloc-parse.test.ts (9.433s)
|
package/appveyor.yml
CHANGED
|
@@ -1,21 +1,56 @@
|
|
|
1
1
|
version: 1.0.{build}
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
image:
|
|
4
|
+
- Ubuntu
|
|
5
|
+
- Visual Studio 2017
|
|
6
|
+
|
|
7
|
+
platform:
|
|
8
|
+
- x64
|
|
3
9
|
|
|
4
10
|
environment:
|
|
5
11
|
matrix:
|
|
12
|
+
- nodejs_version: "16"
|
|
6
13
|
- nodejs_version: "14"
|
|
7
14
|
- nodejs_version: "12"
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
-
|
|
16
|
+
test_script:
|
|
17
|
+
- ps: Write-Host "jspurefix test script"
|
|
11
18
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
19
|
+
for:
|
|
20
|
+
-
|
|
21
|
+
matrix:
|
|
22
|
+
only:
|
|
23
|
+
- image: Visual Studio 2017
|
|
24
|
+
|
|
25
|
+
clone_folder: c:\projects\jspurefix
|
|
26
|
+
install:
|
|
27
|
+
- ps: Install-Product node $env:nodejs_version $env:platform
|
|
28
|
+
- npm install
|
|
29
|
+
build_script:
|
|
30
|
+
- node --version
|
|
31
|
+
- cmd: script\build.cmd
|
|
32
|
+
test_script:
|
|
33
|
+
- cmd: script\test.cmd
|
|
34
|
+
-
|
|
35
|
+
matrix:
|
|
36
|
+
only:
|
|
37
|
+
- image: Ubuntu
|
|
38
|
+
- platform: x64
|
|
39
|
+
clone_folder: /home/appveyor/projects/jspurefix
|
|
40
|
+
|
|
41
|
+
install:
|
|
42
|
+
- nvm install $nodejs_version
|
|
43
|
+
- npm install
|
|
15
44
|
|
|
16
|
-
build_script:
|
|
17
|
-
|
|
18
|
-
|
|
45
|
+
build_script:
|
|
46
|
+
- node --version
|
|
47
|
+
- sh: script/build.sh
|
|
48
|
+
|
|
49
|
+
test_script:
|
|
50
|
+
- sh: "npm run repo44-bench-er"
|
|
51
|
+
- sh: "npm run tcp-tc"
|
|
52
|
+
- sh: "npm run http-oms"
|
|
53
|
+
- sh: "npm run tcp-qf-md"
|
|
54
|
+
- sh: "npm run tcp-rec-sk"
|
|
55
|
+
- sh: "npm test"
|
|
19
56
|
|
|
20
|
-
test_script:
|
|
21
|
-
- cmd: script\test.cmd
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
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
|
|
32
|
+
63eA7bPisfrHRGIvUGrQ
|
|
33
|
+
-----END CERTIFICATE-----
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
+
Proc-Type: 4,ENCRYPTED
|
|
3
|
+
DEK-Info: DES-EDE3-CBC,727A90E31089AEE0
|
|
4
|
+
|
|
5
|
+
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
|
|
54
|
+
-----END RSA PRIVATE KEY-----
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
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
|
|
30
|
+
6cB2SZ4lRQ==
|
|
31
|
+
-----END CERTIFICATE-----
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
+
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
|
|
51
|
+
-----END RSA PRIVATE KEY-----
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
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
|
|
30
|
+
7gCF1E3SM1C29A==
|
|
31
|
+
-----END CERTIFICATE-----
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
+
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
|
|
51
|
+
-----END RSA PRIVATE KEY-----
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
|
|
2
|
+
function read-or-default {
|
|
3
|
+
Param
|
|
4
|
+
(
|
|
5
|
+
[Parameter(Mandatory=$true, Position=0)]
|
|
6
|
+
[string] $text,
|
|
7
|
+
[Parameter(Mandatory=$true, Position=1)]
|
|
8
|
+
[string] $default
|
|
9
|
+
)
|
|
10
|
+
$a = Read-Host "$text [$default]"
|
|
11
|
+
if ($a.Length -eq 0) {
|
|
12
|
+
$a = $default
|
|
13
|
+
}
|
|
14
|
+
$a
|
|
15
|
+
}
|
|
16
|
+
Function Test-CommandExists {
|
|
17
|
+
Param ($command)
|
|
18
|
+
$oldPreference = $ErrorActionPreference
|
|
19
|
+
$ErrorActionPreference = ‘stop’
|
|
20
|
+
try {
|
|
21
|
+
if (Get-Command $command) {
|
|
22
|
+
1
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
Catch {
|
|
26
|
+
0
|
|
27
|
+
}
|
|
28
|
+
Finally {
|
|
29
|
+
$ErrorActionPreference = $oldPreference
|
|
30
|
+
}
|
|
31
|
+
} #end function test-CommandExists
|
|
32
|
+
|
|
33
|
+
if (-Not (Test-CommandExists "openssl")) {
|
|
34
|
+
Write-Output "openssl does not appear to be in path."
|
|
35
|
+
exit -1
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function New-Folder {
|
|
39
|
+
param (
|
|
40
|
+
[Parameter(Mandatory=$true, Position=0)]
|
|
41
|
+
[string] $name
|
|
42
|
+
)
|
|
43
|
+
if (-Not (Test-Path -PathType Container $Name)) {
|
|
44
|
+
New-Item -Type Directory -p $Name
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
$ROOTPATH = read-or-default "rootpath" "."
|
|
49
|
+
|
|
50
|
+
$PATH_CA = "$ROOTPATH/certs/ca"
|
|
51
|
+
$PATH_SERVER = "$ROOTPATH/certs/server"
|
|
52
|
+
$PATH_CLIENT = "$ROOTPATH/certs/client"
|
|
53
|
+
$PATH_TMP = "$ROOTPATH/certs/tmp"
|
|
54
|
+
|
|
55
|
+
New-Folder($PATH_CA)
|
|
56
|
+
New-Folder($PATH_SERVER)
|
|
57
|
+
New-Folder($PATH_CLIENT)
|
|
58
|
+
New-Folder($PATH_TMP)
|
|
59
|
+
|
|
60
|
+
Write-Output ""
|
|
61
|
+
Write-Output " _____ _ __ _____ _ _ "
|
|
62
|
+
Write-Output " / ___| | |/ _| / ___(_) | | "
|
|
63
|
+
Write-Output " \ \`--. ___| | |_ ______\ \`--. _ __ _ _ __ ___ __| | "
|
|
64
|
+
Write-Output " \`--. \/ _ \ | _|______|\`--. \ |/ _\` | '_ \ / _ \/ _\` | "
|
|
65
|
+
Write-Output " /\__/ / __/ | | /\__/ / | (_| | | | | __/ (_| | "
|
|
66
|
+
Write-Output " \____/ \___|_|_| \____/|_|\__, |_| |_|\___|\__,_| "
|
|
67
|
+
Write-Output " __/ | "
|
|
68
|
+
Write-Output " |___/ "
|
|
69
|
+
Write-Output " _____ _ _____ _ "
|
|
70
|
+
Write-Output " / __ \ | | | __ \ | | "
|
|
71
|
+
Write-Output " | / \/ ___ _ __| |_ ___ | | \/ ___ _ __ ___ _ __ __ _| |_ ___ _ __ "
|
|
72
|
+
Write-Output " | | / _ \ '__| __/ __| | | __ / _ \ '_ \ / _ \ '__/ _\` | __/ _ \| '__| "
|
|
73
|
+
Write-Output " | \__/\ __/ | | |_\__ \ | |_\ \ __/ | | | __/ | | (_| | || (_) | | "
|
|
74
|
+
Write-Output " \____/\___|_| \__|___/ \____/\___|_| |_|\___|_| \__,_|\__\___/|_| "
|
|
75
|
+
Write-Output " "
|
|
76
|
+
Write-Output ""
|
|
77
|
+
|
|
78
|
+
Write-Output ""
|
|
79
|
+
Write-Output " Global conf "
|
|
80
|
+
Write-Output ""
|
|
81
|
+
|
|
82
|
+
$RSABITS = read-or-default "RSA bit length" "4096"
|
|
83
|
+
$EXPIREDAYS = read-or-default "Expire days" "365"
|
|
84
|
+
|
|
85
|
+
$PASSWORD = "."
|
|
86
|
+
while ($PASSWORD.Length -lt 4) {
|
|
87
|
+
$PASSWORD = read-or-default "Password for certs" "jspurefix"
|
|
88
|
+
if ($PASSWORD.Length -lt 4) {
|
|
89
|
+
Write-Output "Password length cannot be lower than 4 chars"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
Write-Output ""
|
|
94
|
+
Write-Output " OpenSSL conf "
|
|
95
|
+
Write-Output ""
|
|
96
|
+
|
|
97
|
+
# Classic openssl prompt
|
|
98
|
+
|
|
99
|
+
$GK_C = read-or-default "(C) Country Name (2 letter code)" "US"
|
|
100
|
+
$GK_ST = read-or-default "(ST) State or Province Name (full name)" "."
|
|
101
|
+
$GK_L = read-or-default "(L) Locality Name (eg, city)" "city"
|
|
102
|
+
$GK_O = read-or-default "(O) Organization Name (eg, company)" "ACME Signing Authority Inc"
|
|
103
|
+
$GK_OU = read-or-default "(OU) Organizational Unit Name (eg, section) " "."
|
|
104
|
+
$GK_CN = read-or-default "(CN) Common Name (eg, your name or your server's hostname) " "localhost"
|
|
105
|
+
|
|
106
|
+
$GK_emailAddress = Read-Host "(emailAddress) Email Address []:"
|
|
107
|
+
if ($GK_emailAddress.Length -gt 0) {
|
|
108
|
+
$GK_emailAddress = "/emailAddress=$GK_emailAddress"
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
Write-Output "Please enter the following 'extra' attributes"
|
|
112
|
+
Write-Output "to be sent with your certificate request"
|
|
113
|
+
$GK_unstructuredName = Read-Host "(unstructuredName) An optional company name []:"
|
|
114
|
+
if ($GK_unstructuredName.Length -gt 0) {
|
|
115
|
+
$GK_unstructuredName = "/unstructuredName=$GK_unstructuredName"
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
$OTHER_FIELDS = ""
|
|
119
|
+
$ADD_OTHER_FIELD = "Y"
|
|
120
|
+
while ($ADD_OTHER_FIELD -eq "y" || $ADD_OTHER_FIELD -eq "Y") {
|
|
121
|
+
$ADD_OTHER_FIELD = read-or-default "Add other field [y/N]" "N"
|
|
122
|
+
if ($ADD_OTHER_FIELD -eq "y" || $ADD_OTHER_FIELD -eq "Y") {
|
|
123
|
+
$OTHER_FIELD_NAME = Read-Host "Field name: "
|
|
124
|
+
$OTHER_FIELD_VALUE = Read-Host "Field value: "
|
|
125
|
+
if ($OTHER_FIELD_VALUE.Length -eq 0) {
|
|
126
|
+
OTHER_FIELD_VALUE="."
|
|
127
|
+
}
|
|
128
|
+
$OTHER_FIELDS = "$OTHER_FIELDS/$OTHER_FIELD_NAME=$OTHER_FIELD_VALUE"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
Write-Output ""
|
|
133
|
+
Write-Output "Generate certs "
|
|
134
|
+
Write-Output ""
|
|
135
|
+
|
|
136
|
+
# CA
|
|
137
|
+
Write-Output ""
|
|
138
|
+
Write-Output "CA"
|
|
139
|
+
Write-Output ""
|
|
140
|
+
|
|
141
|
+
openssl genrsa -des3 -passout "pass:$PASSWORD" -out "$PATH_CA/ca.key" $RSABITS
|
|
142
|
+
|
|
143
|
+
# Create Authority Certificate
|
|
144
|
+
openssl req -new -x509 -days "$EXPIREDAYS" -key "$PATH_CA/ca.key" -out "$PATH_CA/ca.crt" -passin "pass:$PASSWORD" -subj "/C=$GK_C/ST=$GK_ST/L=$GK_L/O=$GK_O/OU=$GK_OU/CN=.$GK_unstructuredName$GK_emailAddress$GK_subjectAltName$OTHER_FIELDS"
|
|
145
|
+
|
|
146
|
+
# SERVER
|
|
147
|
+
Write-Output ""
|
|
148
|
+
Write-Output "Server"
|
|
149
|
+
Write-Output ""
|
|
150
|
+
|
|
151
|
+
# Generate server key
|
|
152
|
+
openssl genrsa -out "$PATH_SERVER/server.key" $RSABITS
|
|
153
|
+
|
|
154
|
+
# Generate server cert
|
|
155
|
+
openssl req -new -key "$PATH_SERVER/server.key" -out "$PATH_TMP/server.csr" -passout "pass:$PASSWORD" -subj "/C=$GK_C/ST=$GK_ST/L=$GK_L/O=$GK_O/OU=$GK_OU/CN=$GK_CN$GK_unstructuredName$GK_emailAddress$GK_subjectAltName$OTHER_FIELDS"
|
|
156
|
+
|
|
157
|
+
# Sign server cert with self-signed cert
|
|
158
|
+
openssl x509 -req -days "$EXPIREDAYS" -passin "pass:$PASSWORD" -in "$PATH_TMP/server.csr" -CA "$PATH_CA/ca.crt" -CAkey "$PATH_CA/ca.key" -set_serial 01 -out "$PATH_SERVER/server.crt"
|
|
159
|
+
|
|
160
|
+
# CLIENT
|
|
161
|
+
|
|
162
|
+
Write-Output ""
|
|
163
|
+
Write-Output "Client"
|
|
164
|
+
Write-Output ""
|
|
165
|
+
|
|
166
|
+
openssl genrsa -out "$PATH_CLIENT/client.key" $RSABITS
|
|
167
|
+
|
|
168
|
+
openssl req -new -key "$PATH_CLIENT/client.key" -out "$PATH_TMP/client.csr" -passout "pass:$PASSWORD" -subj "/C=$GK_C/ST=$GK_ST/L=$GK_L/O=$GK_O/OU=$GK_OU/CN=CLIENT$GK_unstructuredName$GK_emailAddress$GK_subjectAltName$OTHER_FIELDS"
|
|
169
|
+
|
|
170
|
+
openssl x509 -req -days 365 -passin "pass:$PASSWORD" -in "$PATH_TMP/client.csr" -CA "$PATH_CA/ca.crt" -CAkey "$PATH_CA/ca.key" -set_serial 01 -out "$PATH_CLIENT/client.crt"
|
|
171
|
+
|
|
172
|
+
# Clean tmp dir
|
|
173
|
+
|
|
174
|
+
Remove-Item -Recurse $PATH_TMP
|
|
175
|
+
|
|
176
|
+
Write-Output ""
|
|
177
|
+
Write-Output "Done !"
|
|
178
|
+
|
|
179
|
+
exit 0
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=a-session-msg-factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"a-session-msg-factory.js","sourceRoot":"","sources":["../src/transport/a-session-msg-factory.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=ascii-encoder.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascii-encoder.test.js","sourceRoot":"","sources":["../src/test/ascii-encoder.test.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=ascii-parser.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascii-parser.test.js","sourceRoot":"","sources":["../src/test/ascii-parser.test.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=ascii-segment.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascii-segment.test.js","sourceRoot":"","sources":["../src/test/ascii-segment.test.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=ascii-store-replay.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascii-store-replay.test.js","sourceRoot":"","sources":["../src/test/ascii-store-replay.test.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=ascii-tag-pos.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascii-tag-pos.test.js","sourceRoot":"","sources":["../src/test/ascii-tag-pos.test.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
File without changes
|
|
File without changes
|