forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registry.go
137 lines (112 loc) · 3.52 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
// 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 targetSubID FIXString
msg.Header.GetField(tagTargetSubID, &targetSubID)
var senderCompID FIXString
if err := msg.Header.GetField(tagSenderCompID, &senderCompID); err != nil {
return err
}
var senderSubID FIXString
msg.Header.GetField(tagSenderSubID, &senderSubID)
sessionID := SessionID{
BeginString: string(beginString),
TargetCompID: string(targetCompID),
TargetSubID: string(targetSubID),
SenderCompID: string(senderCompID),
SenderSubID: string(senderSubID),
}
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)
}
// SendReject is a helper function which allows to send an error outside of the
// quickfix application methods. Useful when doing asynchronous work.
func SendReject(m *Message, sessionID SessionID, rej MessageRejectError) error {
session, ok := lookupSession(sessionID)
if !ok {
return errUnknownSession
}
return session.doReject(m, rej)
}
// 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
}
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
}