-
Notifications
You must be signed in to change notification settings - Fork 291
/
registry.go
168 lines (141 loc) · 4.67 KB
/
registry.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// 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 [email protected] if any conditions of this licensing
// are not clear to you.
package quickfix
import (
"errors"
"sync"
)
var sessionsLock sync.RWMutex
var sessions = make(map[SessionID]*session)
var errDuplicateSessionID = errors.New("Duplicate SessionID")
var errUnknownSession = errors.New("Unknown session")
// Messagable is a Message or something that can be converted to a Message.
type Messagable interface {
ToMessage() *Message
}
// Send determines the session to send Messagable using header fields BeginString, TargetCompID, SenderCompID.
func Send(m Messagable) (err error) {
msg := m.ToMessage()
var beginString FIXString
if err := msg.Header.GetField(tagBeginString, &beginString); err != nil {
return err
}
var targetCompID FIXString
if err := msg.Header.GetField(tagTargetCompID, &targetCompID); err != nil {
return err
}
var senderCompID FIXString
if err := msg.Header.GetField(tagSenderCompID, &senderCompID); err != nil {
return err
}
sessionID := SessionID{BeginString: string(beginString), TargetCompID: string(targetCompID), SenderCompID: string(senderCompID)}
return SendToTarget(msg, sessionID)
}
// SendToTarget sends a message based on the sessionID. Convenient for use in FromApp since it provides a session ID for incoming messages.
func SendToTarget(m Messagable, sessionID SessionID) error {
msg := m.ToMessage()
session, ok := lookupSession(sessionID)
if !ok {
return errUnknownSession
}
return session.queueForSend(msg)
}
// ResetSession resets session's sequence numbers.
func ResetSession(sessionID SessionID) error {
session, ok := lookupSession(sessionID)
if !ok {
return errUnknownSession
}
session.log.OnEvent("Session reset")
session.State.ShutdownNow(session)
if err := session.dropAndReset(); err != nil {
session.logError(err)
return err
}
return nil
}
// UnregisterSession removes a session from the set of known sessions.
func UnregisterSession(sessionID SessionID) error {
sessionsLock.Lock()
defer sessionsLock.Unlock()
if _, ok := sessions[sessionID]; ok {
delete(sessions, sessionID)
return nil
}
return errUnknownSession
}
// SetNextTargetMsgSeqNum set the next expected target message sequence number for the session matching the session id.
func SetNextTargetMsgSeqNum(sessionID SessionID, seqNum int) error {
session, ok := lookupSession(sessionID)
if !ok {
return errUnknownSession
}
return session.store.SetNextTargetMsgSeqNum(seqNum)
}
// SetNextSenderMsgSeqNum sets the next outgoing message sequence number for the session matching the session id.
func SetNextSenderMsgSeqNum(sessionID SessionID, seqNum int) error {
session, ok := lookupSession(sessionID)
if !ok {
return errUnknownSession
}
return session.store.SetNextSenderMsgSeqNum(seqNum)
}
// GetExpectedSenderNum retrieves the expected sender sequence number for the session matching the session id.
func GetExpectedSenderNum(sessionID SessionID) (int, error) {
session, ok := lookupSession(sessionID)
if !ok {
return 0, errUnknownSession
}
return session.store.NextSenderMsgSeqNum(), nil
}
// GetExpectedTargetNum retrieves the next target sequence number for the session matching the session id.
func GetExpectedTargetNum(sessionID SessionID) (int, error) {
session, ok := lookupSession(sessionID)
if !ok {
return 0, errUnknownSession
}
return session.store.NextTargetMsgSeqNum(), nil
}
// GetMessageStore returns the MessageStore interface for session matching the session id.
func GetMessageStore(sessionID SessionID) (MessageStore, error) {
session, ok := lookupSession(sessionID)
if !ok {
return nil, errUnknownSession
}
return session.store, nil
}
// GetLog returns the Log interface for session matching the session id.
func GetLog(sessionID SessionID) (Log, error) {
session, ok := lookupSession(sessionID)
if !ok {
return nil, errUnknownSession
}
return session.log, nil
}
func registerSession(s *session) error {
sessionsLock.Lock()
defer sessionsLock.Unlock()
if _, ok := sessions[s.sessionID]; ok {
return errDuplicateSessionID
}
sessions[s.sessionID] = s
return nil
}
func lookupSession(sessionID SessionID) (s *session, ok bool) {
sessionsLock.RLock()
defer sessionsLock.RUnlock()
s, ok = sessions[sessionID]
return
}