forked from nanomsg/mangos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
socket.go
121 lines (96 loc) · 4.68 KB
/
socket.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
// Copyright 2018 The Mangos Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use file except in compliance with the License.
// You may obtain a copy of the license at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package mangos
// Socket is the main access handle applications use to access the SP
// system. It is an abstraction of an application's "connection" to a
// messaging topology. Applications can have more than one Socket open
// at a time.
type Socket interface {
// Info returns information about the protocol (numbers and names)
// and peer protocol.
Info() ProtocolInfo
// Close closes the open Socket. Further operations on the socket
// will return ErrClosed.
Close() error
// Send puts the message on the outbound send queue. It blocks
// until the message can be queued, or the send deadline expires.
// If a queued message is later dropped for any reason,
// there will be no notification back to the application.
Send([]byte) error
// Recv receives a complete message. The entire message is received.
Recv() ([]byte, error)
// SendMsg puts the message on the outbound send. It works like Send,
// but allows the caller to supply message headers. AGAIN, the Socket
// ASSUMES OWNERSHIP OF THE MESSAGE.
SendMsg(*Message) error
// RecvMsg receives a complete message, including the message header,
// which is useful for protocols in raw mode.
RecvMsg() (*Message, error)
// Dial connects a remote endpoint to the Socket. The function
// returns immediately, and an asynchronous goroutine is started to
// establish and maintain the connection, reconnecting as needed.
// If the address is invalid, then an error is returned.
Dial(addr string) error
DialOptions(addr string, options map[string]interface{}) error
// NewDialer returns a Dialer object which can be used to get
// access to the underlying configuration for dialing.
NewDialer(addr string, options map[string]interface{}) (Dialer, error)
// Listen connects a local endpoint to the Socket. Remote peers
// may connect (e.g. with Dial) and will each be "connected" to
// the Socket. The accepter logic is run in a separate goroutine.
// The only error possible is if the address is invalid.
Listen(addr string) error
ListenOptions(addr string, options map[string]interface{}) error
NewListener(addr string, options map[string]interface{}) (Listener, error)
// GetOption is used to retrieve an option for a socket.
GetOption(name string) (interface{}, error)
// SetOption is used to set an option for a socket.
SetOption(name string, value interface{}) error
// OpenContext creates a new Context. If a protocol does not
// support separate contexts, this will return an error.
OpenContext() (Context, error)
// SetPipeEventHook sets a PipeEventHook function to be called when a
// Pipe is added or removed from this socket (connect/disconnect).
// The previous hook is returned (nil if none.) (Only one hook can
// be used at a time.)
SetPipeEventHook(PipeEventHook) PipeEventHook
}
// Context is a protocol context, and represents the upper side operations
// that applications will want to use. Every socket has a default context,
// but only a certain protocols will allow the creation of additional
// Context instances (only if separate stateful contexts make sense for
// a given protocol).
type Context interface {
// Close closes the open Socket. Further operations on the socket
// will return ErrClosed.
Close() error
// GetOption is used to retrieve an option for a socket.
GetOption(name string) (interface{}, error)
// SetOption is used to set an option for a socket.
SetOption(name string, value interface{}) error
// Send puts the message on the outbound send queue. It blocks
// until the message can be queued, or the send deadline expires.
// If a queued message is later dropped for any reason,
// there will be no notification back to the application.
Send([]byte) error
// Recv receives a complete message. The entire message is received.
Recv() ([]byte, error)
// SendMsg puts the message on the outbound send. It works like Send,
// but allows the caller to supply message headers. AGAIN, the Socket
// ASSUMES OWNERSHIP OF THE MESSAGE.
SendMsg(*Message) error
// RecvMsg receives a complete message, including the message header,
// which is useful for protocols in raw mode.
RecvMsg() (*Message, error)
}