adding quickfix library
This commit is contained in:
393
quickfix/store/mongo/mongo_store.go
Normal file
393
quickfix/store/mongo/mongo_store.go
Normal file
@ -0,0 +1,393 @@
|
||||
// Copyright (c) quickfixengine.org All rights reserved.
|
||||
//
|
||||
// This file may be distributed under the terms of the quickfixengine.org
|
||||
// license as defined by quickfixengine.org and appearing in the file
|
||||
// LICENSE included in the packaging of this file.
|
||||
//
|
||||
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
|
||||
// THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
|
||||
// PARTICULAR PURPOSE.
|
||||
//
|
||||
// See http://www.quickfixengine.org/LICENSE for licensing information.
|
||||
//
|
||||
// Contact ask@quickfixengine.org if any conditions of this licensing
|
||||
// are not clear to you.
|
||||
|
||||
package mongo
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"go.mongodb.org/mongo-driver/bson"
|
||||
"go.mongodb.org/mongo-driver/mongo"
|
||||
"go.mongodb.org/mongo-driver/mongo/options"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
)
|
||||
|
||||
type mongoStoreFactory struct {
|
||||
settings *quickfix.Settings
|
||||
messagesCollection string
|
||||
sessionsCollection string
|
||||
}
|
||||
|
||||
type mongoStore struct {
|
||||
sessionID quickfix.SessionID
|
||||
cache quickfix.MessageStore
|
||||
mongoURL string
|
||||
mongoDatabase string
|
||||
db *mongo.Client
|
||||
messagesCollection string
|
||||
sessionsCollection string
|
||||
allowTransactions bool
|
||||
}
|
||||
|
||||
// NewStoreFactory returns a mongo-based implementation of MessageStoreFactory.
|
||||
func NewStoreFactory(settings *quickfix.Settings) quickfix.MessageStoreFactory {
|
||||
return NewStoreFactoryPrefixed(settings, "")
|
||||
}
|
||||
|
||||
// NewStoreFactoryPrefixed returns a mongo-based implementation of MessageStoreFactory, with prefix on collections.
|
||||
func NewStoreFactoryPrefixed(settings *quickfix.Settings, collectionsPrefix string) quickfix.MessageStoreFactory {
|
||||
return mongoStoreFactory{
|
||||
settings: settings,
|
||||
messagesCollection: collectionsPrefix + "messages",
|
||||
sessionsCollection: collectionsPrefix + "sessions",
|
||||
}
|
||||
}
|
||||
|
||||
// Create creates a new MongoStore implementation of the MessageStore interface.
|
||||
func (f mongoStoreFactory) Create(sessionID quickfix.SessionID) (msgStore quickfix.MessageStore, err error) {
|
||||
globalSettings := f.settings.GlobalSettings()
|
||||
dynamicSessions, _ := globalSettings.BoolSetting(config.DynamicSessions)
|
||||
|
||||
sessionSettings, ok := f.settings.SessionSettings()[sessionID]
|
||||
if !ok {
|
||||
if dynamicSessions {
|
||||
sessionSettings = globalSettings
|
||||
} else {
|
||||
return nil, fmt.Errorf("unknown session: %v", sessionID)
|
||||
}
|
||||
}
|
||||
mongoConnectionURL, err := sessionSettings.Setting(config.MongoStoreConnection)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
mongoDatabase, err := sessionSettings.Setting(config.MongoStoreDatabase)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Optional.
|
||||
mongoReplicaSet, _ := sessionSettings.Setting(config.MongoStoreReplicaSet)
|
||||
|
||||
return newMongoStore(sessionID, mongoConnectionURL, mongoDatabase, mongoReplicaSet, f.messagesCollection, f.sessionsCollection)
|
||||
}
|
||||
|
||||
func newMongoStore(sessionID quickfix.SessionID, mongoURL, mongoDatabase, mongoReplicaSet, messagesCollection, sessionsCollection string) (store *mongoStore, err error) {
|
||||
|
||||
memStore, memErr := quickfix.NewMemoryStoreFactory().Create(sessionID)
|
||||
if memErr != nil {
|
||||
err = errors.Wrap(memErr, "cache creation")
|
||||
return
|
||||
}
|
||||
|
||||
allowTransactions := len(mongoReplicaSet) > 0
|
||||
store = &mongoStore{
|
||||
sessionID: sessionID,
|
||||
cache: memStore,
|
||||
mongoURL: mongoURL,
|
||||
mongoDatabase: mongoDatabase,
|
||||
messagesCollection: messagesCollection,
|
||||
sessionsCollection: sessionsCollection,
|
||||
allowTransactions: allowTransactions,
|
||||
}
|
||||
|
||||
if err = store.cache.Reset(); err != nil {
|
||||
err = errors.Wrap(err, "cache reset")
|
||||
return
|
||||
}
|
||||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||
defer cancel()
|
||||
store.db, err = mongo.Connect(ctx, options.Client().ApplyURI(mongoURL).SetDirect(len(mongoReplicaSet) == 0).SetReplicaSet(mongoReplicaSet))
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
err = store.populateCache()
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func generateMessageFilter(s *quickfix.SessionID) (messageFilter *mongoQuickFixEntryData) {
|
||||
messageFilter = &mongoQuickFixEntryData{
|
||||
BeginString: s.BeginString,
|
||||
SessionQualifier: s.Qualifier,
|
||||
SenderCompID: s.SenderCompID,
|
||||
SenderSubID: s.SenderSubID,
|
||||
SenderLocID: s.SenderLocationID,
|
||||
TargetCompID: s.TargetCompID,
|
||||
TargetSubID: s.TargetSubID,
|
||||
TargetLocID: s.TargetLocationID,
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
type mongoQuickFixEntryData struct {
|
||||
// Message specific data.
|
||||
Msgseq int `bson:"msgseq,omitempty"`
|
||||
Message []byte `bson:"message,omitempty"`
|
||||
// Session specific data.
|
||||
CreationTime time.Time `bson:"creation_time,omitempty"`
|
||||
IncomingSeqNum int `bson:"incoming_seq_num,omitempty"`
|
||||
OutgoingSeqNum int `bson:"outgoing_seq_num,omitempty"`
|
||||
// Indexed data.
|
||||
BeginString string `bson:"begin_string"`
|
||||
SessionQualifier string `bson:"session_qualifier"`
|
||||
SenderCompID string `bson:"sender_comp_id"`
|
||||
SenderSubID string `bson:"sender_sub_id"`
|
||||
SenderLocID string `bson:"sender_loc_id"`
|
||||
TargetCompID string `bson:"target_comp_id"`
|
||||
TargetSubID string `bson:"target_sub_id"`
|
||||
TargetLocID string `bson:"target_loc_id"`
|
||||
}
|
||||
|
||||
// Reset deletes the store records and sets the seqnums back to 1.
|
||||
func (store *mongoStore) Reset() error {
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
_, err := store.db.Database(store.mongoDatabase).Collection(store.messagesCollection).DeleteMany(context.Background(), msgFilter)
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err = store.cache.Reset(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
sessionUpdate := generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate.CreationTime = store.cache.CreationTime()
|
||||
sessionUpdate.IncomingSeqNum = store.cache.NextTargetMsgSeqNum()
|
||||
sessionUpdate.OutgoingSeqNum = store.cache.NextSenderMsgSeqNum()
|
||||
_, err = store.db.Database(store.mongoDatabase).Collection(store.sessionsCollection).UpdateOne(context.Background(), msgFilter, bson.M{"$set": sessionUpdate})
|
||||
|
||||
return err
|
||||
}
|
||||
|
||||
// Refresh reloads the store from the database.
|
||||
func (store *mongoStore) Refresh() error {
|
||||
if err := store.cache.Reset(); err != nil {
|
||||
return err
|
||||
}
|
||||
return store.populateCache()
|
||||
}
|
||||
|
||||
func (store *mongoStore) populateCache() error {
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
res := store.db.Database(store.mongoDatabase).Collection(store.sessionsCollection).FindOne(context.Background(), msgFilter)
|
||||
if res.Err() != nil && res.Err() != mongo.ErrNoDocuments {
|
||||
return errors.Wrap(res.Err(), "query")
|
||||
}
|
||||
|
||||
if res.Err() != mongo.ErrNoDocuments {
|
||||
// session record found, load it
|
||||
sessionData := &mongoQuickFixEntryData{}
|
||||
if err := res.Decode(&sessionData); err != nil {
|
||||
return errors.Wrap(err, "decode")
|
||||
}
|
||||
|
||||
store.cache.SetCreationTime(sessionData.CreationTime)
|
||||
if err := store.cache.SetNextTargetMsgSeqNum(sessionData.IncomingSeqNum); err != nil {
|
||||
return errors.Wrap(err, "cache set next target")
|
||||
}
|
||||
|
||||
if err := store.cache.SetNextSenderMsgSeqNum(sessionData.OutgoingSeqNum); err != nil {
|
||||
return errors.Wrap(err, "cache set next sender")
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// session record not found, create it
|
||||
msgFilter.CreationTime = store.cache.CreationTime()
|
||||
msgFilter.IncomingSeqNum = store.cache.NextTargetMsgSeqNum()
|
||||
msgFilter.OutgoingSeqNum = store.cache.NextSenderMsgSeqNum()
|
||||
|
||||
if _, err := store.db.Database(store.mongoDatabase).Collection(store.sessionsCollection).InsertOne(context.Background(), msgFilter); err != nil {
|
||||
return errors.Wrap(err, "insert")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// NextSenderMsgSeqNum returns the next MsgSeqNum that will be sent.
|
||||
func (store *mongoStore) NextSenderMsgSeqNum() int {
|
||||
return store.cache.NextSenderMsgSeqNum()
|
||||
}
|
||||
|
||||
// NextTargetMsgSeqNum returns the next MsgSeqNum that should be received.
|
||||
func (store *mongoStore) NextTargetMsgSeqNum() int {
|
||||
return store.cache.NextTargetMsgSeqNum()
|
||||
}
|
||||
|
||||
// SetNextSenderMsgSeqNum sets the next MsgSeqNum that will be sent.
|
||||
func (store *mongoStore) SetNextSenderMsgSeqNum(next int) error {
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate := generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate.IncomingSeqNum = store.cache.NextTargetMsgSeqNum()
|
||||
sessionUpdate.OutgoingSeqNum = next
|
||||
sessionUpdate.CreationTime = store.cache.CreationTime()
|
||||
if _, err := store.db.Database(store.mongoDatabase).Collection(store.sessionsCollection).UpdateOne(context.Background(), msgFilter, bson.M{"$set": sessionUpdate}); err != nil {
|
||||
return err
|
||||
}
|
||||
return store.cache.SetNextSenderMsgSeqNum(next)
|
||||
}
|
||||
|
||||
// SetNextTargetMsgSeqNum sets the next MsgSeqNum that should be received.
|
||||
func (store *mongoStore) SetNextTargetMsgSeqNum(next int) error {
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate := generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate.IncomingSeqNum = next
|
||||
sessionUpdate.OutgoingSeqNum = store.cache.NextSenderMsgSeqNum()
|
||||
sessionUpdate.CreationTime = store.cache.CreationTime()
|
||||
if _, err := store.db.Database(store.mongoDatabase).Collection(store.sessionsCollection).UpdateOne(context.Background(), msgFilter, bson.M{"$set": sessionUpdate}); err != nil {
|
||||
return err
|
||||
}
|
||||
return store.cache.SetNextTargetMsgSeqNum(next)
|
||||
}
|
||||
|
||||
// IncrNextSenderMsgSeqNum increments the next MsgSeqNum that will be sent.
|
||||
func (store *mongoStore) IncrNextSenderMsgSeqNum() error {
|
||||
if err := store.SetNextSenderMsgSeqNum(store.cache.NextSenderMsgSeqNum() + 1); err != nil {
|
||||
return errors.Wrap(err, "save sequence number")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// IncrNextTargetMsgSeqNum increments the next MsgSeqNum that should be received.
|
||||
func (store *mongoStore) IncrNextTargetMsgSeqNum() error {
|
||||
if err := store.SetNextTargetMsgSeqNum(store.cache.NextTargetMsgSeqNum() + 1); err != nil {
|
||||
return errors.Wrap(err, "save sequence number")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// CreationTime returns the creation time of the store.
|
||||
func (store *mongoStore) CreationTime() time.Time {
|
||||
return store.cache.CreationTime()
|
||||
}
|
||||
|
||||
// SetCreationTime is a no-op for MongoStore.
|
||||
func (store *mongoStore) SetCreationTime(_ time.Time) {
|
||||
}
|
||||
|
||||
func (store *mongoStore) SaveMessage(seqNum int, msg []byte) (err error) {
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
msgFilter.Msgseq = seqNum
|
||||
msgFilter.Message = msg
|
||||
_, err = store.db.Database(store.mongoDatabase).Collection(store.messagesCollection).InsertOne(context.Background(), msgFilter)
|
||||
return
|
||||
}
|
||||
|
||||
func (store *mongoStore) SaveMessageAndIncrNextSenderMsgSeqNum(seqNum int, msg []byte) error {
|
||||
|
||||
if !store.allowTransactions {
|
||||
err := store.SaveMessage(seqNum, msg)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return store.IncrNextSenderMsgSeqNum()
|
||||
}
|
||||
|
||||
// If the mongodb supports replicasets, perform this operation as a transaction instead-
|
||||
var next int
|
||||
err := store.db.UseSession(context.Background(), func(sessionCtx mongo.SessionContext) error {
|
||||
if err := sessionCtx.StartTransaction(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
msgFilter.Msgseq = seqNum
|
||||
msgFilter.Message = msg
|
||||
_, err := store.db.Database(store.mongoDatabase).Collection(store.messagesCollection).InsertOne(sessionCtx, msgFilter)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
next = store.cache.NextSenderMsgSeqNum() + 1
|
||||
|
||||
msgFilter = generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate := generateMessageFilter(&store.sessionID)
|
||||
sessionUpdate.IncomingSeqNum = store.cache.NextTargetMsgSeqNum()
|
||||
sessionUpdate.OutgoingSeqNum = next
|
||||
sessionUpdate.CreationTime = store.cache.CreationTime()
|
||||
_, err = store.db.Database(store.mongoDatabase).Collection(store.sessionsCollection).UpdateOne(sessionCtx, msgFilter, bson.M{"$set": sessionUpdate})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return sessionCtx.CommitTransaction(context.Background())
|
||||
})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return store.cache.SetNextSenderMsgSeqNum(next)
|
||||
}
|
||||
|
||||
func (store *mongoStore) IterateMessages(beginSeqNum, endSeqNum int, cb func([]byte) error) error {
|
||||
msgFilter := generateMessageFilter(&store.sessionID)
|
||||
// Marshal into database form.
|
||||
msgFilterBytes, err := bson.Marshal(msgFilter)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
seqFilter := bson.M{}
|
||||
err = bson.Unmarshal(msgFilterBytes, &seqFilter)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// Modify the query to use a range for the sequence filter.
|
||||
seqFilter["msgseq"] = bson.M{
|
||||
"$gte": beginSeqNum,
|
||||
"$lte": endSeqNum,
|
||||
}
|
||||
sortOpt := options.Find().SetSort(bson.D{{Key: "msgseq", Value: 1}})
|
||||
cursor, err := store.db.Database(store.mongoDatabase).Collection(store.messagesCollection).Find(context.Background(), seqFilter, sortOpt)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer func() { _ = cursor.Close(context.Background()) }()
|
||||
for cursor.Next(context.Background()) {
|
||||
if err = cursor.Decode(&msgFilter); err != nil {
|
||||
return err
|
||||
} else if err = cb(msgFilter.Message); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (store *mongoStore) GetMessages(beginSeqNum, endSeqNum int) ([][]byte, error) {
|
||||
var msgs [][]byte
|
||||
err := store.IterateMessages(beginSeqNum, endSeqNum, func(msg []byte) error {
|
||||
msgs = append(msgs, msg)
|
||||
return nil
|
||||
})
|
||||
return msgs, err
|
||||
}
|
||||
|
||||
// Close closes the store's database connection.
|
||||
func (store *mongoStore) Close() error {
|
||||
if store.db != nil {
|
||||
err := store.db.Disconnect(context.Background())
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "error disconnecting from database")
|
||||
}
|
||||
store.db = nil
|
||||
}
|
||||
return nil
|
||||
}
|
||||
75
quickfix/store/mongo/mongo_store_test.go
Normal file
75
quickfix/store/mongo/mongo_store_test.go
Normal file
@ -0,0 +1,75 @@
|
||||
// Copyright (c) quickfixengine.org All rights reserved.
|
||||
//
|
||||
// This file may be distributed under the terms of the quickfixengine.org
|
||||
// license as defined by quickfixengine.org and appearing in the file
|
||||
// LICENSE included in the packaging of this file.
|
||||
//
|
||||
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
|
||||
// THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
|
||||
// PARTICULAR PURPOSE.
|
||||
//
|
||||
// See http://www.quickfixengine.org/LICENSE for licensing information.
|
||||
//
|
||||
// Contact ask@quickfixengine.org if any conditions of this licensing
|
||||
// are not clear to you.
|
||||
|
||||
package mongo
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/internal/testsuite"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/stretchr/testify/suite"
|
||||
)
|
||||
|
||||
// MongoStoreTestSuite runs all tests in the message.StoreTestSuite against the MongoStore implementation.
|
||||
type MongoStoreTestSuite struct {
|
||||
testsuite.StoreTestSuite
|
||||
}
|
||||
|
||||
func (suite *MongoStoreTestSuite) SetupTest() {
|
||||
mongoDbCxn := os.Getenv("MONGODB_TEST_CXN")
|
||||
if len(mongoDbCxn) <= 0 {
|
||||
log.Println("MONGODB_TEST_CXN environment arg is not provided, skipping...")
|
||||
suite.T().SkipNow()
|
||||
}
|
||||
mongoDatabase := "automated_testing_database"
|
||||
mongoReplicaSet := "replicaset"
|
||||
|
||||
// create settings
|
||||
sessionID := quickfix.SessionID{BeginString: "FIX.4.4", SenderCompID: "SENDER", TargetCompID: "TARGET"}
|
||||
settings, err := quickfix.ParseSettings(strings.NewReader(fmt.Sprintf(`
|
||||
[DEFAULT]
|
||||
MongoStoreConnection=%s
|
||||
MongoStoreDatabase=%s
|
||||
MongoStoreReplicaSet=%s
|
||||
|
||||
[SESSION]
|
||||
BeginString=%s
|
||||
SenderCompID=%s
|
||||
TargetCompID=%s`, mongoDbCxn, mongoDatabase, mongoReplicaSet, sessionID.BeginString, sessionID.SenderCompID, sessionID.TargetCompID)))
|
||||
require.Nil(suite.T(), err)
|
||||
|
||||
// create store
|
||||
suite.MsgStore, err = NewStoreFactory(settings).Create(sessionID)
|
||||
require.Nil(suite.T(), err)
|
||||
err = suite.MsgStore.Reset()
|
||||
require.Nil(suite.T(), err)
|
||||
}
|
||||
|
||||
func (suite *MongoStoreTestSuite) TearDownTest() {
|
||||
if suite.MsgStore != nil {
|
||||
err := suite.MsgStore.Close()
|
||||
require.Nil(suite.T(), err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestMongoStoreTestSuite(t *testing.T) {
|
||||
suite.Run(t, new(MongoStoreTestSuite))
|
||||
}
|
||||
Reference in New Issue
Block a user