Documentation ¶
Index ¶
- Constants
- Variables
- func FileExist(name string) bool
- func GenUniqueId() string
- func InitHTTPMoniter(b *Broker)
- func NewInfo(sid, url string) *packets.PublishPacket
- func NewTLSConfig(tlsInfo TLSInfo) (*tls.Config, error)
- func ProcessMessage(msg *Message)
- type Broker
- func (b *Broker) BroadcastInfoMessage(remoteID string, msg *packets.PublishPacket)
- func (b *Broker) BroadcastSubOrUnsubMessage(packet packets.ControlPacket)
- func (b *Broker) BroadcastUnSubscribe(topicsToUnSubscribeFrom []string)
- func (b *Broker) CheckConnectAuth(clientID, username, password string) bool
- func (b *Broker) CheckRemoteExist(remoteID, url string) bool
- func (b *Broker) CheckTopicAuth(action, clientID, username, ip, topic string) bool
- func (b *Broker) ConnectToDiscovery()
- func (b *Broker) DisConnClientByClientId(clientId string)
- func (b *Broker) OnlineOfflineNotification(info Info, online bool, lastMsg int64)
- func (b *Broker) Publish(e *bridge.Elements) bool
- func (b *Broker) PublishMessage(packet *packets.PublishPacket)
- func (b *Broker) PublishMessageByClientId(packet *packets.PublishPacket, clientId string) error
- func (b *Broker) SendLocalSubsToRouter(c *client)
- func (b *Broker) Start()
- func (b *Broker) StartClientListening(Tls bool)
- func (b *Broker) StartClusterListening()
- func (b *Broker) StartPipeSocketListening(pipeName string, usePipe bool)
- func (b *Broker) StartUnixSocketClientListening(socketPath string, unixSocket bool)
- func (b *Broker) StartWebsocketListening()
- func (b *Broker) SubmitWork(clientId string, msg *Message)
- type Config
- type ConnClient
- type InflightStatus
- type Info
- type Message
- type NamedPlugins
- type OnlineOfflineMsg
- type Plugins
- type PubPacket
- type RouteInfo
- type TLSInfo
Constants ¶
View Source
const ( SUB = "1" PUB = "2" )
View Source
const ( MessagePoolNum = 1024 MessagePoolMessageNum = 1024 )
View Source
const ( // BrokerInfoTopic special pub topic for cluster info BrokerInfoTopic = "broker000100101info" // CLIENT is an end user. CLIENT = 0 // ROUTER is another router in the cluster. ROUTER = 1 //REMOTE is the router connect to other cluster REMOTE = 2 CLUSTER = 3 )
View Source
const ( Connected = 1 Disconnected = 2 )
View Source
const ( // ACCEPT_MIN_SLEEP is the minimum acceptable sleep times on temporary errors. ACCEPT_MIN_SLEEP = 100 * time.Millisecond // ACCEPT_MAX_SLEEP is the maximum acceptable sleep times on temporary errors ACCEPT_MAX_SLEEP = 10 * time.Second // DEFAULT_ROUTE_CONNECT Route solicitation intervals. DEFAULT_ROUTE_CONNECT = 5 * time.Second // DEFAULT_TLS_TIMEOUT DEFAULT_TLS_TIMEOUT = 5 * time.Second )
View Source
const ( CONNECT = uint8(iota + 1) CONNACK PUBLISH PUBACK PUBREC PUBREL PUBCOMP SUBSCRIBE SUBACK UNSUBSCRIBE UNSUBACK PINGREQ PINGRESP DISCONNECT )
View Source
const ( QosAtMostOnce byte = iota QosAtLeastOnce QosExactlyOnce QosFailure = 0x80 )
View Source
const (
CONNECTIONS = "api/v1/connections"
)
Variables ¶
View Source
var (
DisconnectedPacket = packets.NewControlPacket(packets.Disconnect).(*packets.DisconnectPacket)
)
Functions ¶
func GenUniqueId ¶
func GenUniqueId() string
func InitHTTPMoniter ¶
func InitHTTPMoniter(b *Broker)
func NewInfo ¶
func NewInfo(sid, url string) *packets.PublishPacket
func ProcessMessage ¶
func ProcessMessage(msg *Message)
Types ¶
type Broker ¶
type Broker struct {
// contains filtered or unexported fields
}
func (*Broker) BroadcastInfoMessage ¶
func (b *Broker) BroadcastInfoMessage(remoteID string, msg *packets.PublishPacket)
func (*Broker) BroadcastSubOrUnsubMessage ¶
func (b *Broker) BroadcastSubOrUnsubMessage(packet packets.ControlPacket)
func (*Broker) BroadcastUnSubscribe ¶
func (*Broker) CheckConnectAuth ¶
func (*Broker) CheckRemoteExist ¶
func (*Broker) CheckTopicAuth ¶
func (*Broker) ConnectToDiscovery ¶
func (b *Broker) ConnectToDiscovery()
func (*Broker) DisConnClientByClientId ¶
func (*Broker) OnlineOfflineNotification ¶
func (*Broker) PublishMessage ¶
func (b *Broker) PublishMessage(packet *packets.PublishPacket)
func (*Broker) PublishMessageByClientId ¶
func (b *Broker) PublishMessageByClientId(packet *packets.PublishPacket, clientId string) error
func (*Broker) SendLocalSubsToRouter ¶
func (b *Broker) SendLocalSubsToRouter(c *client)
func (*Broker) StartClientListening ¶
func (*Broker) StartClusterListening ¶
func (b *Broker) StartClusterListening()
func (*Broker) StartPipeSocketListening ¶ added in v1.5.5
StartPipeSocketListening We use the open source npipe library to jump over pipe communication in linux
func (*Broker) StartUnixSocketClientListening ¶ added in v1.5.4
func (*Broker) StartWebsocketListening ¶
func (b *Broker) StartWebsocketListening()
func (*Broker) SubmitWork ¶
type Config ¶
type Config struct { Worker int `json:"workerNum"` HTTPPort string `json:"httpPort"` Host string `json:"host"` Port string `json:"port"` Cluster RouteInfo `json:"cluster"` Router string `json:"router"` TlsHost string `json:"tlsHost"` TlsPort string `json:"tlsPort"` WsPath string `json:"wsPath"` WsPort string `json:"wsPort"` WsTLS bool `json:"wsTLS"` TlsInfo TLSInfo `json:"tlsInfo"` Debug bool `json:"debug"` Plugin Plugins `json:"plugins"` UnixFilePath string `json:"unixFilePath"` WindowsPipeName string `json:"windowsPipeName"` }
func ConfigureConfig ¶
func LoadConfig ¶
type ConnClient ¶ added in v1.5.2
type InflightStatus ¶
type InflightStatus uint8
const ( Publish InflightStatus = 0 Pubrel InflightStatus = 1 )
type NamedPlugins ¶
type OnlineOfflineMsg ¶ added in v1.5.2
type Plugins ¶
func (*Plugins) UnmarshalJSON ¶
Source Files ¶
Click to show internal directories.
Click to hide internal directories.