mirror of https://github.com/tidwall/tile38.git
Merge branch 'm1ome-mqtt-endpoint'
This commit is contained in:
commit
d9ed059887
|
@ -20,6 +20,7 @@ const (
|
||||||
GRPC = EndpointProtocol("grpc") // GRPC
|
GRPC = EndpointProtocol("grpc") // GRPC
|
||||||
Redis = EndpointProtocol("redis") // Redis
|
Redis = EndpointProtocol("redis") // Redis
|
||||||
Kafka = EndpointProtocol("kafka") // Kafka
|
Kafka = EndpointProtocol("kafka") // Kafka
|
||||||
|
MQTT = EndpointProtocol("mqtt") // MQTT
|
||||||
AMQP = EndpointProtocol("amqp") // AMQP
|
AMQP = EndpointProtocol("amqp") // AMQP
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -55,6 +56,13 @@ type Endpoint struct {
|
||||||
QueueName string
|
QueueName string
|
||||||
RouteKey string
|
RouteKey string
|
||||||
}
|
}
|
||||||
|
MQTT struct {
|
||||||
|
Host string
|
||||||
|
Port int
|
||||||
|
QueueName string
|
||||||
|
Qos byte
|
||||||
|
Retained bool
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type EndpointConn interface {
|
type EndpointConn interface {
|
||||||
|
@ -122,6 +130,8 @@ func (epc *EndpointManager) Send(endpoint, val string) error {
|
||||||
conn = newRedisEndpointConn(ep)
|
conn = newRedisEndpointConn(ep)
|
||||||
case Kafka:
|
case Kafka:
|
||||||
conn = newKafkaEndpointConn(ep)
|
conn = newKafkaEndpointConn(ep)
|
||||||
|
case MQTT:
|
||||||
|
conn = newMQTTEndpointConn(ep)
|
||||||
case AMQP:
|
case AMQP:
|
||||||
conn = newAMQPEndpointConn(ep)
|
conn = newAMQPEndpointConn(ep)
|
||||||
}
|
}
|
||||||
|
@ -164,6 +174,8 @@ func parseEndpoint(s string) (Endpoint, error) {
|
||||||
endpoint.Protocol = AMQP
|
endpoint.Protocol = AMQP
|
||||||
case strings.HasPrefix(s, "amqps:"):
|
case strings.HasPrefix(s, "amqps:"):
|
||||||
endpoint.Protocol = AMQP
|
endpoint.Protocol = AMQP
|
||||||
|
case strings.HasPrefix(s, "mqtt:"):
|
||||||
|
endpoint.Protocol = MQTT
|
||||||
}
|
}
|
||||||
|
|
||||||
s = s[strings.Index(s, ":")+1:]
|
s = s[strings.Index(s, ":")+1:]
|
||||||
|
@ -303,6 +315,74 @@ func parseEndpoint(s string) (Endpoint, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if endpoint.Protocol == MQTT {
|
||||||
|
// Parsing connection from URL string
|
||||||
|
hp := strings.Split(s, ":")
|
||||||
|
switch len(hp) {
|
||||||
|
default:
|
||||||
|
return endpoint, errors.New("invalid MQTT url")
|
||||||
|
case 1:
|
||||||
|
endpoint.MQTT.Host = hp[0]
|
||||||
|
endpoint.MQTT.Port = 1883
|
||||||
|
case 2:
|
||||||
|
n, err := strconv.ParseUint(hp[1], 10, 16)
|
||||||
|
if err != nil {
|
||||||
|
return endpoint, errors.New("invalid MQTT url port")
|
||||||
|
}
|
||||||
|
|
||||||
|
endpoint.MQTT.Host = hp[0]
|
||||||
|
endpoint.MQTT.Port = int(n)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parsing MQTT queue name
|
||||||
|
if len(sp) > 1 {
|
||||||
|
var err error
|
||||||
|
endpoint.MQTT.QueueName, err = url.QueryUnescape(sp[1])
|
||||||
|
if err != nil {
|
||||||
|
return endpoint, errors.New("invalid MQTT topic name")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parsing additional params
|
||||||
|
if len(sqp) > 1 {
|
||||||
|
m, err := url.ParseQuery(sqp[1])
|
||||||
|
if err != nil {
|
||||||
|
return endpoint, errors.New("invalid MQTT url")
|
||||||
|
}
|
||||||
|
for key, val := range m {
|
||||||
|
if len(val) == 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
switch key {
|
||||||
|
case "qos":
|
||||||
|
n, err := strconv.ParseUint(val[0], 10, 8)
|
||||||
|
if err != nil {
|
||||||
|
return endpoint, errors.New("invalid MQTT qos value")
|
||||||
|
}
|
||||||
|
endpoint.MQTT.Qos = byte(n)
|
||||||
|
case "retained":
|
||||||
|
n, err := strconv.ParseUint(val[0], 10, 8)
|
||||||
|
if err != nil {
|
||||||
|
return endpoint, errors.New("invalid MQTT retained value")
|
||||||
|
}
|
||||||
|
|
||||||
|
if n != 1 && n != 0 {
|
||||||
|
return endpoint, errors.New("invalid MQTT retained, should be [0, 1]")
|
||||||
|
}
|
||||||
|
|
||||||
|
if n == 1 {
|
||||||
|
endpoint.MQTT.Retained = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Throw error if we not provide any queue name
|
||||||
|
if endpoint.MQTT.QueueName == "" {
|
||||||
|
return endpoint, errors.New("missing MQTT topic name")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Basic AMQP connection strings in HOOKS interface
|
// Basic AMQP connection strings in HOOKS interface
|
||||||
// amqp://guest:guest@localhost:5672/<queue_name>/?params=value
|
// amqp://guest:guest@localhost:5672/<queue_name>/?params=value
|
||||||
//
|
//
|
||||||
|
|
|
@ -0,0 +1,82 @@
|
||||||
|
package endpoint
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
paho "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
mqttExpiresAfter = time.Second * 30
|
||||||
|
)
|
||||||
|
|
||||||
|
type MQTTEndpointConn struct {
|
||||||
|
mu sync.Mutex
|
||||||
|
ep Endpoint
|
||||||
|
conn paho.Client
|
||||||
|
ex bool
|
||||||
|
t time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
func (conn *MQTTEndpointConn) Expired() bool {
|
||||||
|
conn.mu.Lock()
|
||||||
|
defer conn.mu.Unlock()
|
||||||
|
if !conn.ex {
|
||||||
|
if time.Now().Sub(conn.t) > mqttExpiresAfter {
|
||||||
|
conn.close()
|
||||||
|
conn.ex = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return conn.ex
|
||||||
|
}
|
||||||
|
|
||||||
|
func (conn *MQTTEndpointConn) close() {
|
||||||
|
if conn.conn != nil {
|
||||||
|
if conn.conn.IsConnected() {
|
||||||
|
conn.conn.Disconnect(250)
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.conn = nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (conn *MQTTEndpointConn) Send(msg string) error {
|
||||||
|
conn.mu.Lock()
|
||||||
|
defer conn.mu.Unlock()
|
||||||
|
|
||||||
|
if conn.ex {
|
||||||
|
return errExpired
|
||||||
|
}
|
||||||
|
conn.t = time.Now()
|
||||||
|
|
||||||
|
if conn.conn == nil {
|
||||||
|
uri := fmt.Sprintf("tcp://%s:%d", conn.ep.MQTT.Host, conn.ep.MQTT.Port)
|
||||||
|
ops := paho.NewClientOptions().SetClientID("tile38").AddBroker(uri)
|
||||||
|
c := paho.NewClient(ops)
|
||||||
|
|
||||||
|
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
return token.Error()
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.conn = c
|
||||||
|
}
|
||||||
|
|
||||||
|
t := conn.conn.Publish(conn.ep.MQTT.QueueName, conn.ep.MQTT.Qos, conn.ep.MQTT.Retained, msg)
|
||||||
|
t.Wait()
|
||||||
|
|
||||||
|
if t.Error() != nil {
|
||||||
|
conn.close()
|
||||||
|
return t.Error()
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newMQTTEndpointConn(ep Endpoint) *MQTTEndpointConn {
|
||||||
|
return &MQTTEndpointConn{
|
||||||
|
ep: ep,
|
||||||
|
t: time.Now(),
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
Contributing to Paho
|
||||||
|
====================
|
||||||
|
|
||||||
|
Thanks for your interest in this project.
|
||||||
|
|
||||||
|
Project description:
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
The Paho project has been created to provide scalable open-source implementations of open and standard messaging protocols aimed at new, existing, and emerging applications for Machine-to-Machine (M2M) and Internet of Things (IoT).
|
||||||
|
Paho reflects the inherent physical and cost constraints of device connectivity. Its objectives include effective levels of decoupling between devices and applications, designed to keep markets open and encourage the rapid growth of scalable Web and Enterprise middleware and applications. Paho is being kicked off with MQTT publish/subscribe client implementations for use on embedded platforms, along with corresponding server support as determined by the community.
|
||||||
|
|
||||||
|
- https://projects.eclipse.org/projects/technology.paho
|
||||||
|
|
||||||
|
Developer resources:
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Information regarding source code management, builds, coding standards, and more.
|
||||||
|
|
||||||
|
- https://projects.eclipse.org/projects/technology.paho/developer
|
||||||
|
|
||||||
|
Contributor License Agreement:
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
Before your contribution can be accepted by the project, you need to create and electronically sign the Eclipse Foundation Contributor License Agreement (CLA).
|
||||||
|
|
||||||
|
- http://www.eclipse.org/legal/CLA.php
|
||||||
|
|
||||||
|
Contributing Code:
|
||||||
|
------------------
|
||||||
|
|
||||||
|
The Go client is developed in Github, see their documentation on the process of forking and pull requests; https://help.github.com/categories/collaborating-on-projects-using-pull-requests/
|
||||||
|
|
||||||
|
Git commit messages should follow the style described here;
|
||||||
|
|
||||||
|
http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
||||||
|
|
||||||
|
Contact:
|
||||||
|
--------
|
||||||
|
|
||||||
|
Contact the project developers via the project's "dev" list.
|
||||||
|
|
||||||
|
- https://dev.eclipse.org/mailman/listinfo/paho-dev
|
||||||
|
|
||||||
|
Search for bugs:
|
||||||
|
----------------
|
||||||
|
|
||||||
|
This project uses Github issues to track ongoing development and issues.
|
||||||
|
|
||||||
|
- https://github.com/eclipse/paho.mqtt.golang/issues
|
||||||
|
|
||||||
|
Create a new bug:
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
Be sure to search for existing bugs before you create another one. Remember that contributions are always welcome!
|
||||||
|
|
||||||
|
- https://github.com/eclipse/paho.mqtt.golang/issues
|
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
|
||||||
|
Eclipse Distribution License - v 1.0
|
||||||
|
|
||||||
|
Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
|
||||||
|
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -0,0 +1,87 @@
|
||||||
|
Eclipse Public License - v 1.0
|
||||||
|
|
||||||
|
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
|
||||||
|
|
||||||
|
1. DEFINITIONS
|
||||||
|
|
||||||
|
"Contribution" means:
|
||||||
|
|
||||||
|
a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
|
||||||
|
|
||||||
|
b) in the case of each subsequent Contributor:
|
||||||
|
|
||||||
|
i) changes to the Program, and
|
||||||
|
|
||||||
|
ii) additions to the Program;
|
||||||
|
|
||||||
|
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
|
||||||
|
|
||||||
|
"Contributor" means any person or entity that distributes the Program.
|
||||||
|
|
||||||
|
"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
|
||||||
|
|
||||||
|
"Program" means the Contributions distributed in accordance with this Agreement.
|
||||||
|
|
||||||
|
"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
|
||||||
|
|
||||||
|
2. GRANT OF RIGHTS
|
||||||
|
|
||||||
|
a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
|
||||||
|
|
||||||
|
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
|
||||||
|
|
||||||
|
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
|
||||||
|
|
||||||
|
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
|
||||||
|
|
||||||
|
3. REQUIREMENTS
|
||||||
|
|
||||||
|
A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
|
||||||
|
|
||||||
|
a) it complies with the terms and conditions of this Agreement; and
|
||||||
|
|
||||||
|
b) its license agreement:
|
||||||
|
|
||||||
|
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
|
||||||
|
|
||||||
|
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
|
||||||
|
|
||||||
|
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
|
||||||
|
|
||||||
|
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
|
||||||
|
|
||||||
|
When the Program is made available in source code form:
|
||||||
|
|
||||||
|
a) it must be made available under this Agreement; and
|
||||||
|
|
||||||
|
b) a copy of this Agreement must be included with each copy of the Program.
|
||||||
|
|
||||||
|
Contributors may not remove or alter any copyright notices contained within the Program.
|
||||||
|
|
||||||
|
Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.
|
||||||
|
|
||||||
|
4. COMMERCIAL DISTRIBUTION
|
||||||
|
|
||||||
|
Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
|
||||||
|
|
||||||
|
For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
|
||||||
|
|
||||||
|
5. NO WARRANTY
|
||||||
|
|
||||||
|
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
|
||||||
|
|
||||||
|
6. DISCLAIMER OF LIABILITY
|
||||||
|
|
||||||
|
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
7. GENERAL
|
||||||
|
|
||||||
|
If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
||||||
|
|
||||||
|
If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
|
||||||
|
|
||||||
|
All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
|
||||||
|
|
||||||
|
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.
|
|
@ -0,0 +1,62 @@
|
||||||
|
Eclipse Paho MQTT Go client
|
||||||
|
===========================
|
||||||
|
|
||||||
|
|
||||||
|
This repository contains the source code for the [Eclipse Paho](http://eclipse.org/paho) MQTT Go client library.
|
||||||
|
|
||||||
|
This code builds a library which enable applications to connect to an [MQTT](http://mqtt.org) broker to publish messages, and to subscribe to topics and receive published messages.
|
||||||
|
|
||||||
|
This library supports a fully asynchronous mode of operation.
|
||||||
|
|
||||||
|
|
||||||
|
Installation and Build
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
This client is designed to work with the standard Go tools, so installation is as easy as:
|
||||||
|
|
||||||
|
```
|
||||||
|
go get github.com/eclipse/paho.mqtt.golang
|
||||||
|
```
|
||||||
|
|
||||||
|
The client depends on Google's [websockets](https://godoc.org/golang.org/x/net/websocket) package,
|
||||||
|
also easily installed with the command:
|
||||||
|
|
||||||
|
```
|
||||||
|
go get golang.org/x/net/websocket
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Usage and API
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Detailed API documentation is available by using to godoc tool, or can be browsed online
|
||||||
|
using the [godoc.org](http://godoc.org/github.com/eclipse/paho.mqtt.golang) service.
|
||||||
|
|
||||||
|
Make use of the library by importing it in your Go client source code. For example,
|
||||||
|
```
|
||||||
|
import "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
```
|
||||||
|
|
||||||
|
Samples are available in the `/samples` directory for reference.
|
||||||
|
|
||||||
|
|
||||||
|
Runtime tracing
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Tracing is enabled by assigning logs (from the Go log package) to the logging endpoints, ERROR, CRITICAL, WARN and DEBUG
|
||||||
|
|
||||||
|
|
||||||
|
Reporting bugs
|
||||||
|
--------------
|
||||||
|
|
||||||
|
Please report bugs by raising issues for this project in github https://github.com/eclipse/paho.mqtt.golang/issues
|
||||||
|
|
||||||
|
|
||||||
|
More information
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Discussion of the Paho clients takes place on the [Eclipse paho-dev mailing list](https://dev.eclipse.org/mailman/listinfo/paho-dev).
|
||||||
|
|
||||||
|
General questions about the MQTT protocol are discussed in the [MQTT Google Group](https://groups.google.com/forum/?hl=en-US&fromgroups#!forum/mqtt).
|
||||||
|
|
||||||
|
There is much more information available via the [MQTT community site](http://mqtt.org).
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||||
|
<title>About</title>
|
||||||
|
</head>
|
||||||
|
<body lang="EN-US">
|
||||||
|
<h2>About This Content</h2>
|
||||||
|
|
||||||
|
<p><em>December 9, 2013</em></p>
|
||||||
|
<h3>License</h3>
|
||||||
|
|
||||||
|
<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
|
||||||
|
indicated below, the Content is provided to you under the terms and conditions of the
|
||||||
|
Eclipse Public License Version 1.0 ("EPL") and Eclipse Distribution License Version 1.0 ("EDL").
|
||||||
|
A copy of the EPL is available at
|
||||||
|
<a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
|
||||||
|
and a copy of the EDL is available at
|
||||||
|
<a href="http://www.eclipse.org/org/documents/edl-v10.php">http://www.eclipse.org/org/documents/edl-v10.php</a>.
|
||||||
|
For purposes of the EPL, "Program" will mean the Content.</p>
|
||||||
|
|
||||||
|
<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
|
||||||
|
being redistributed by another party ("Redistributor") and different terms and conditions may
|
||||||
|
apply to your use of any object code in the Content. Check the Redistributor's license that was
|
||||||
|
provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
|
||||||
|
indicated below, the terms and conditions of the EPL still apply to any source code in the Content
|
||||||
|
and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Third Party Content</h3>
|
||||||
|
<p>The Content includes items that have been sourced from third parties as set out below. If you
|
||||||
|
did not receive this Content directly from the Eclipse Foundation, the following is provided
|
||||||
|
for informational purposes only, and you should look to the Redistributor's license for
|
||||||
|
terms and conditions of use.</p>
|
||||||
|
<p><em>
|
||||||
|
<strong>None</strong> <br><br>
|
||||||
|
<br><br>
|
||||||
|
</em></p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body></html>
|
|
@ -0,0 +1,590 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Package mqtt provides an MQTT v3.1.1 client library.
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"net"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
type connStatus uint
|
||||||
|
|
||||||
|
const (
|
||||||
|
disconnected connStatus = iota
|
||||||
|
connecting
|
||||||
|
reconnecting
|
||||||
|
connected
|
||||||
|
)
|
||||||
|
|
||||||
|
// Client is the interface definition for a Client as used by this
|
||||||
|
// library, the interface is primarily to allow mocking tests.
|
||||||
|
//
|
||||||
|
// It is an MQTT v3.1.1 client for communicating
|
||||||
|
// with an MQTT server using non-blocking methods that allow work
|
||||||
|
// to be done in the background.
|
||||||
|
// An application may connect to an MQTT server using:
|
||||||
|
// A plain TCP socket
|
||||||
|
// A secure SSL/TLS socket
|
||||||
|
// A websocket
|
||||||
|
// To enable ensured message delivery at Quality of Service (QoS) levels
|
||||||
|
// described in the MQTT spec, a message persistence mechanism must be
|
||||||
|
// used. This is done by providing a type which implements the Store
|
||||||
|
// interface. For convenience, FileStore and MemoryStore are provided
|
||||||
|
// implementations that should be sufficient for most use cases. More
|
||||||
|
// information can be found in their respective documentation.
|
||||||
|
// Numerous connection options may be specified by configuring a
|
||||||
|
// and then supplying a ClientOptions type.
|
||||||
|
|
||||||
|
type Client interface {
|
||||||
|
IsConnected() bool
|
||||||
|
Connect() Token
|
||||||
|
Disconnect(quiesce uint)
|
||||||
|
Publish(topic string, qos byte, retained bool, payload interface{}) Token
|
||||||
|
Subscribe(topic string, qos byte, callback MessageHandler) Token
|
||||||
|
SubscribeMultiple(filters map[string]byte, callback MessageHandler) Token
|
||||||
|
Unsubscribe(topics ...string) Token
|
||||||
|
}
|
||||||
|
|
||||||
|
// client implements the Client interface
|
||||||
|
type client struct {
|
||||||
|
sync.RWMutex
|
||||||
|
messageIds
|
||||||
|
conn net.Conn
|
||||||
|
ibound chan packets.ControlPacket
|
||||||
|
obound chan *PacketAndToken
|
||||||
|
oboundP chan *PacketAndToken
|
||||||
|
msgRouter *router
|
||||||
|
stopRouter chan bool
|
||||||
|
incomingPubChan chan *packets.PublishPacket
|
||||||
|
errors chan error
|
||||||
|
stop chan struct{}
|
||||||
|
persist Store
|
||||||
|
options ClientOptions
|
||||||
|
pingResp chan struct{}
|
||||||
|
status connStatus
|
||||||
|
workers sync.WaitGroup
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewClient will create an MQTT v3.1.1 client with all of the options specified
|
||||||
|
// in the provided ClientOptions. The client must have the Connect method called
|
||||||
|
// on it before it may be used. This is to make sure resources (such as a net
|
||||||
|
// connection) are created before the application is actually ready.
|
||||||
|
func NewClient(o *ClientOptions) Client {
|
||||||
|
c := &client{}
|
||||||
|
c.options = *o
|
||||||
|
|
||||||
|
if c.options.Store == nil {
|
||||||
|
c.options.Store = NewMemoryStore()
|
||||||
|
}
|
||||||
|
switch c.options.ProtocolVersion {
|
||||||
|
case 3, 4:
|
||||||
|
c.options.protocolVersionExplicit = true
|
||||||
|
default:
|
||||||
|
c.options.ProtocolVersion = 4
|
||||||
|
c.options.protocolVersionExplicit = false
|
||||||
|
}
|
||||||
|
c.persist = c.options.Store
|
||||||
|
c.status = disconnected
|
||||||
|
c.messageIds = messageIds{index: make(map[uint16]Token)}
|
||||||
|
c.msgRouter, c.stopRouter = newRouter()
|
||||||
|
c.msgRouter.setDefaultHandler(c.options.DefaultPublishHander)
|
||||||
|
if !c.options.AutoReconnect {
|
||||||
|
c.options.MessageChannelDepth = 0
|
||||||
|
}
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
// IsConnected returns a bool signifying whether
|
||||||
|
// the client is connected or not.
|
||||||
|
func (c *client) IsConnected() bool {
|
||||||
|
c.RLock()
|
||||||
|
defer c.RUnlock()
|
||||||
|
switch {
|
||||||
|
case c.status == connected:
|
||||||
|
return true
|
||||||
|
case c.options.AutoReconnect && c.status > disconnected:
|
||||||
|
return true
|
||||||
|
default:
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) connectionStatus() connStatus {
|
||||||
|
c.RLock()
|
||||||
|
defer c.RUnlock()
|
||||||
|
return c.status
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) setConnected(status connStatus) {
|
||||||
|
c.Lock()
|
||||||
|
defer c.Unlock()
|
||||||
|
c.status = status
|
||||||
|
}
|
||||||
|
|
||||||
|
//ErrNotConnected is the error returned from function calls that are
|
||||||
|
//made when the client is not connected to a broker
|
||||||
|
var ErrNotConnected = errors.New("Not Connected")
|
||||||
|
|
||||||
|
// Connect will create a connection to the message broker
|
||||||
|
// If clean session is false, then a slice will
|
||||||
|
// be returned containing Receipts for all messages
|
||||||
|
// that were in-flight at the last disconnect.
|
||||||
|
// If clean session is true, then any existing client
|
||||||
|
// state will be removed.
|
||||||
|
func (c *client) Connect() Token {
|
||||||
|
var err error
|
||||||
|
t := newToken(packets.Connect).(*ConnectToken)
|
||||||
|
DEBUG.Println(CLI, "Connect()")
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
c.persist.Open()
|
||||||
|
|
||||||
|
c.setConnected(connecting)
|
||||||
|
var rc byte
|
||||||
|
cm := newConnectMsgFromOptions(&c.options)
|
||||||
|
|
||||||
|
for _, broker := range c.options.Servers {
|
||||||
|
CONN:
|
||||||
|
DEBUG.Println(CLI, "about to write new connect msg")
|
||||||
|
c.conn, err = openConnection(broker, &c.options.TLSConfig, c.options.ConnectTimeout)
|
||||||
|
if err == nil {
|
||||||
|
DEBUG.Println(CLI, "socket connected to broker")
|
||||||
|
switch c.options.ProtocolVersion {
|
||||||
|
case 3:
|
||||||
|
DEBUG.Println(CLI, "Using MQTT 3.1 protocol")
|
||||||
|
cm.ProtocolName = "MQIsdp"
|
||||||
|
cm.ProtocolVersion = 3
|
||||||
|
default:
|
||||||
|
DEBUG.Println(CLI, "Using MQTT 3.1.1 protocol")
|
||||||
|
c.options.ProtocolVersion = 4
|
||||||
|
cm.ProtocolName = "MQTT"
|
||||||
|
cm.ProtocolVersion = 4
|
||||||
|
}
|
||||||
|
cm.Write(c.conn)
|
||||||
|
|
||||||
|
rc = c.connect()
|
||||||
|
if rc != packets.Accepted {
|
||||||
|
c.conn.Close()
|
||||||
|
c.conn = nil
|
||||||
|
//if the protocol version was explicitly set don't do any fallback
|
||||||
|
if c.options.protocolVersionExplicit {
|
||||||
|
ERROR.Println(CLI, "Connecting to", broker, "CONNACK was not CONN_ACCEPTED, but rather", packets.ConnackReturnCodes[rc])
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if c.options.ProtocolVersion == 4 {
|
||||||
|
DEBUG.Println(CLI, "Trying reconnect using MQTT 3.1 protocol")
|
||||||
|
c.options.ProtocolVersion = 3
|
||||||
|
goto CONN
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break
|
||||||
|
} else {
|
||||||
|
ERROR.Println(CLI, err.Error())
|
||||||
|
WARN.Println(CLI, "failed to connect to broker, trying next")
|
||||||
|
rc = packets.ErrNetworkError
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.conn == nil {
|
||||||
|
ERROR.Println(CLI, "Failed to connect to a broker")
|
||||||
|
t.returnCode = rc
|
||||||
|
if rc != packets.ErrNetworkError {
|
||||||
|
t.err = packets.ConnErrors[rc]
|
||||||
|
} else {
|
||||||
|
t.err = fmt.Errorf("%s : %s", packets.ConnErrors[rc], err)
|
||||||
|
}
|
||||||
|
c.setConnected(disconnected)
|
||||||
|
c.persist.Close()
|
||||||
|
t.flowComplete()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c.obound = make(chan *PacketAndToken, c.options.MessageChannelDepth)
|
||||||
|
c.oboundP = make(chan *PacketAndToken, c.options.MessageChannelDepth)
|
||||||
|
c.ibound = make(chan packets.ControlPacket)
|
||||||
|
c.errors = make(chan error, 1)
|
||||||
|
c.stop = make(chan struct{})
|
||||||
|
c.pingResp = make(chan struct{}, 1)
|
||||||
|
|
||||||
|
c.incomingPubChan = make(chan *packets.PublishPacket, c.options.MessageChannelDepth)
|
||||||
|
c.msgRouter.matchAndDispatch(c.incomingPubChan, c.options.Order, c)
|
||||||
|
|
||||||
|
c.workers.Add(1)
|
||||||
|
go outgoing(c)
|
||||||
|
go alllogic(c)
|
||||||
|
|
||||||
|
c.setConnected(connected)
|
||||||
|
DEBUG.Println(CLI, "client is connected")
|
||||||
|
if c.options.OnConnect != nil {
|
||||||
|
go c.options.OnConnect(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.KeepAlive != 0 {
|
||||||
|
c.workers.Add(1)
|
||||||
|
go keepalive(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Take care of any messages in the store
|
||||||
|
//var leftovers []Receipt
|
||||||
|
if c.options.CleanSession == false {
|
||||||
|
//leftovers = c.resume()
|
||||||
|
} else {
|
||||||
|
c.persist.Reset()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Do not start incoming until resume has completed
|
||||||
|
c.workers.Add(1)
|
||||||
|
go incoming(c)
|
||||||
|
|
||||||
|
DEBUG.Println(CLI, "exit startClient")
|
||||||
|
t.flowComplete()
|
||||||
|
}()
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// internal function used to reconnect the client when it loses its connection
|
||||||
|
func (c *client) reconnect() {
|
||||||
|
DEBUG.Println(CLI, "enter reconnect")
|
||||||
|
var (
|
||||||
|
err error
|
||||||
|
|
||||||
|
rc = byte(1)
|
||||||
|
sleep = time.Duration(1 * time.Second)
|
||||||
|
)
|
||||||
|
|
||||||
|
for rc != 0 && c.status != disconnected {
|
||||||
|
cm := newConnectMsgFromOptions(&c.options)
|
||||||
|
|
||||||
|
for _, broker := range c.options.Servers {
|
||||||
|
CONN:
|
||||||
|
DEBUG.Println(CLI, "about to write new connect msg")
|
||||||
|
c.conn, err = openConnection(broker, &c.options.TLSConfig, c.options.ConnectTimeout)
|
||||||
|
if err == nil {
|
||||||
|
DEBUG.Println(CLI, "socket connected to broker")
|
||||||
|
switch c.options.ProtocolVersion {
|
||||||
|
case 3:
|
||||||
|
DEBUG.Println(CLI, "Using MQTT 3.1 protocol")
|
||||||
|
cm.ProtocolName = "MQIsdp"
|
||||||
|
cm.ProtocolVersion = 3
|
||||||
|
default:
|
||||||
|
DEBUG.Println(CLI, "Using MQTT 3.1.1 protocol")
|
||||||
|
c.options.ProtocolVersion = 4
|
||||||
|
cm.ProtocolName = "MQTT"
|
||||||
|
cm.ProtocolVersion = 4
|
||||||
|
}
|
||||||
|
cm.Write(c.conn)
|
||||||
|
|
||||||
|
rc = c.connect()
|
||||||
|
if rc != packets.Accepted {
|
||||||
|
c.conn.Close()
|
||||||
|
c.conn = nil
|
||||||
|
//if the protocol version was explicitly set don't do any fallback
|
||||||
|
if c.options.protocolVersionExplicit {
|
||||||
|
ERROR.Println(CLI, "Connecting to", broker, "CONNACK was not Accepted, but rather", packets.ConnackReturnCodes[rc])
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if c.options.ProtocolVersion == 4 {
|
||||||
|
DEBUG.Println(CLI, "Trying reconnect using MQTT 3.1 protocol")
|
||||||
|
c.options.ProtocolVersion = 3
|
||||||
|
goto CONN
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break
|
||||||
|
} else {
|
||||||
|
ERROR.Println(CLI, err.Error())
|
||||||
|
WARN.Println(CLI, "failed to connect to broker, trying next")
|
||||||
|
rc = packets.ErrNetworkError
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if rc != 0 {
|
||||||
|
DEBUG.Println(CLI, "Reconnect failed, sleeping for", int(sleep.Seconds()), "seconds")
|
||||||
|
time.Sleep(sleep)
|
||||||
|
if sleep < c.options.MaxReconnectInterval {
|
||||||
|
sleep *= 2
|
||||||
|
}
|
||||||
|
|
||||||
|
if sleep > c.options.MaxReconnectInterval {
|
||||||
|
sleep = c.options.MaxReconnectInterval
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Disconnect() must have been called while we were trying to reconnect.
|
||||||
|
if c.status == disconnected {
|
||||||
|
DEBUG.Println(CLI, "Client moved to disconnected state while reconnecting, abandoning reconnect")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c.stop = make(chan struct{})
|
||||||
|
|
||||||
|
c.workers.Add(1)
|
||||||
|
go outgoing(c)
|
||||||
|
go alllogic(c)
|
||||||
|
|
||||||
|
c.setConnected(connected)
|
||||||
|
DEBUG.Println(CLI, "client is reconnected")
|
||||||
|
if c.options.OnConnect != nil {
|
||||||
|
go c.options.OnConnect(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.KeepAlive != 0 {
|
||||||
|
c.workers.Add(1)
|
||||||
|
go keepalive(c)
|
||||||
|
}
|
||||||
|
c.workers.Add(1)
|
||||||
|
go incoming(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
// This function is only used for receiving a connack
|
||||||
|
// when the connection is first started.
|
||||||
|
// This prevents receiving incoming data while resume
|
||||||
|
// is in progress if clean session is false.
|
||||||
|
func (c *client) connect() byte {
|
||||||
|
DEBUG.Println(NET, "connect started")
|
||||||
|
|
||||||
|
ca, err := packets.ReadPacket(c.conn)
|
||||||
|
if err != nil {
|
||||||
|
ERROR.Println(NET, "connect got error", err)
|
||||||
|
return packets.ErrNetworkError
|
||||||
|
}
|
||||||
|
if ca == nil {
|
||||||
|
ERROR.Println(NET, "received nil packet")
|
||||||
|
return packets.ErrNetworkError
|
||||||
|
}
|
||||||
|
|
||||||
|
msg, ok := ca.(*packets.ConnackPacket)
|
||||||
|
if !ok {
|
||||||
|
ERROR.Println(NET, "received msg that was not CONNACK")
|
||||||
|
return packets.ErrNetworkError
|
||||||
|
}
|
||||||
|
|
||||||
|
DEBUG.Println(NET, "received connack")
|
||||||
|
return msg.ReturnCode
|
||||||
|
}
|
||||||
|
|
||||||
|
// Disconnect will end the connection with the server, but not before waiting
|
||||||
|
// the specified number of milliseconds to wait for existing work to be
|
||||||
|
// completed.
|
||||||
|
func (c *client) Disconnect(quiesce uint) {
|
||||||
|
if c.status == connected {
|
||||||
|
DEBUG.Println(CLI, "disconnecting")
|
||||||
|
c.setConnected(disconnected)
|
||||||
|
|
||||||
|
dm := packets.NewControlPacket(packets.Disconnect).(*packets.DisconnectPacket)
|
||||||
|
dt := newToken(packets.Disconnect)
|
||||||
|
c.oboundP <- &PacketAndToken{p: dm, t: dt}
|
||||||
|
|
||||||
|
// wait for work to finish, or quiesce time consumed
|
||||||
|
dt.WaitTimeout(time.Duration(quiesce) * time.Millisecond)
|
||||||
|
} else {
|
||||||
|
WARN.Println(CLI, "Disconnect() called but not connected (disconnected/reconnecting)")
|
||||||
|
c.setConnected(disconnected)
|
||||||
|
}
|
||||||
|
|
||||||
|
c.disconnect()
|
||||||
|
}
|
||||||
|
|
||||||
|
// ForceDisconnect will end the connection with the mqtt broker immediately.
|
||||||
|
func (c *client) forceDisconnect() {
|
||||||
|
if !c.IsConnected() {
|
||||||
|
WARN.Println(CLI, "already disconnected")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.setConnected(disconnected)
|
||||||
|
c.conn.Close()
|
||||||
|
DEBUG.Println(CLI, "forcefully disconnecting")
|
||||||
|
c.disconnect()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) internalConnLost(err error) {
|
||||||
|
// Only do anything if this was called and we are still "connected"
|
||||||
|
// forceDisconnect can cause incoming/outgoing/alllogic to end with
|
||||||
|
// error from closing the socket but state will be "disconnected"
|
||||||
|
if c.IsConnected() {
|
||||||
|
c.closeStop()
|
||||||
|
c.conn.Close()
|
||||||
|
c.workers.Wait()
|
||||||
|
if c.options.AutoReconnect {
|
||||||
|
c.setConnected(reconnecting)
|
||||||
|
go c.reconnect()
|
||||||
|
} else {
|
||||||
|
c.setConnected(disconnected)
|
||||||
|
}
|
||||||
|
if c.options.OnConnectionLost != nil {
|
||||||
|
go c.options.OnConnectionLost(c, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) closeStop() {
|
||||||
|
c.Lock()
|
||||||
|
defer c.Unlock()
|
||||||
|
select {
|
||||||
|
case <-c.stop:
|
||||||
|
DEBUG.Println("In disconnect and stop channel is already closed")
|
||||||
|
default:
|
||||||
|
close(c.stop)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) closeConn() {
|
||||||
|
c.Lock()
|
||||||
|
defer c.Unlock()
|
||||||
|
if c.conn != nil {
|
||||||
|
c.conn.Close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) disconnect() {
|
||||||
|
c.closeStop()
|
||||||
|
c.closeConn()
|
||||||
|
c.workers.Wait()
|
||||||
|
close(c.stopRouter)
|
||||||
|
DEBUG.Println(CLI, "disconnected")
|
||||||
|
c.persist.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Publish will publish a message with the specified QoS and content
|
||||||
|
// to the specified topic.
|
||||||
|
// Returns a token to track delivery of the message to the broker
|
||||||
|
func (c *client) Publish(topic string, qos byte, retained bool, payload interface{}) Token {
|
||||||
|
token := newToken(packets.Publish).(*PublishToken)
|
||||||
|
DEBUG.Println(CLI, "enter Publish")
|
||||||
|
switch {
|
||||||
|
case !c.IsConnected():
|
||||||
|
token.err = ErrNotConnected
|
||||||
|
token.flowComplete()
|
||||||
|
return token
|
||||||
|
case c.connectionStatus() == reconnecting && qos == 0:
|
||||||
|
token.flowComplete()
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
pub := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pub.Qos = qos
|
||||||
|
pub.TopicName = topic
|
||||||
|
pub.Retain = retained
|
||||||
|
switch payload.(type) {
|
||||||
|
case string:
|
||||||
|
pub.Payload = []byte(payload.(string))
|
||||||
|
case []byte:
|
||||||
|
pub.Payload = payload.([]byte)
|
||||||
|
default:
|
||||||
|
token.err = errors.New("Unknown payload type")
|
||||||
|
token.flowComplete()
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
DEBUG.Println(CLI, "sending publish message, topic:", topic)
|
||||||
|
if pub.Qos != 0 && pub.MessageID == 0 {
|
||||||
|
pub.MessageID = c.getID(token)
|
||||||
|
token.messageID = pub.MessageID
|
||||||
|
}
|
||||||
|
persistOutbound(c.persist, pub)
|
||||||
|
c.obound <- &PacketAndToken{p: pub, t: token}
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subscribe starts a new subscription. Provide a MessageHandler to be executed when
|
||||||
|
// a message is published on the topic provided.
|
||||||
|
func (c *client) Subscribe(topic string, qos byte, callback MessageHandler) Token {
|
||||||
|
token := newToken(packets.Subscribe).(*SubscribeToken)
|
||||||
|
DEBUG.Println(CLI, "enter Subscribe")
|
||||||
|
if !c.IsConnected() {
|
||||||
|
token.err = ErrNotConnected
|
||||||
|
token.flowComplete()
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
sub := packets.NewControlPacket(packets.Subscribe).(*packets.SubscribePacket)
|
||||||
|
if err := validateTopicAndQos(topic, qos); err != nil {
|
||||||
|
token.err = err
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
sub.Topics = append(sub.Topics, topic)
|
||||||
|
sub.Qoss = append(sub.Qoss, qos)
|
||||||
|
DEBUG.Println(CLI, sub.String())
|
||||||
|
|
||||||
|
if callback != nil {
|
||||||
|
c.msgRouter.addRoute(topic, callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
token.subs = append(token.subs, topic)
|
||||||
|
c.oboundP <- &PacketAndToken{p: sub, t: token}
|
||||||
|
DEBUG.Println(CLI, "exit Subscribe")
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
// SubscribeMultiple starts a new subscription for multiple topics. Provide a MessageHandler to
|
||||||
|
// be executed when a message is published on one of the topics provided.
|
||||||
|
func (c *client) SubscribeMultiple(filters map[string]byte, callback MessageHandler) Token {
|
||||||
|
var err error
|
||||||
|
token := newToken(packets.Subscribe).(*SubscribeToken)
|
||||||
|
DEBUG.Println(CLI, "enter SubscribeMultiple")
|
||||||
|
if !c.IsConnected() {
|
||||||
|
token.err = ErrNotConnected
|
||||||
|
token.flowComplete()
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
sub := packets.NewControlPacket(packets.Subscribe).(*packets.SubscribePacket)
|
||||||
|
if sub.Topics, sub.Qoss, err = validateSubscribeMap(filters); err != nil {
|
||||||
|
token.err = err
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
if callback != nil {
|
||||||
|
for topic := range filters {
|
||||||
|
c.msgRouter.addRoute(topic, callback)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
token.subs = make([]string, len(sub.Topics))
|
||||||
|
copy(token.subs, sub.Topics)
|
||||||
|
c.oboundP <- &PacketAndToken{p: sub, t: token}
|
||||||
|
DEBUG.Println(CLI, "exit SubscribeMultiple")
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unsubscribe will end the subscription from each of the topics provided.
|
||||||
|
// Messages published to those topics from other clients will no longer be
|
||||||
|
// received.
|
||||||
|
func (c *client) Unsubscribe(topics ...string) Token {
|
||||||
|
token := newToken(packets.Unsubscribe).(*UnsubscribeToken)
|
||||||
|
DEBUG.Println(CLI, "enter Unsubscribe")
|
||||||
|
if !c.IsConnected() {
|
||||||
|
token.err = ErrNotConnected
|
||||||
|
token.flowComplete()
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
unsub := packets.NewControlPacket(packets.Unsubscribe).(*packets.UnsubscribePacket)
|
||||||
|
unsub.Topics = make([]string, len(topics))
|
||||||
|
copy(unsub.Topics, topics)
|
||||||
|
|
||||||
|
c.oboundP <- &PacketAndToken{p: unsub, t: token}
|
||||||
|
for _, topic := range topics {
|
||||||
|
c.msgRouter.deleteRoute(topic)
|
||||||
|
}
|
||||||
|
|
||||||
|
DEBUG.Println(CLI, "exit Unsubscribe")
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
//DefaultConnectionLostHandler is a definition of a function that simply
|
||||||
|
//reports to the DEBUG log the reason for the client losing a connection.
|
||||||
|
func DefaultConnectionLostHandler(client Client, reason error) {
|
||||||
|
DEBUG.Println("Connection lost:", reason.Error())
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
for dir in `ls -d */ | cut -f1 -d'/'`
|
||||||
|
do
|
||||||
|
echo "Compiling $dir ...\c"
|
||||||
|
cd $dir
|
||||||
|
go clean
|
||||||
|
go build
|
||||||
|
cd ..
|
||||||
|
echo " done."
|
||||||
|
done
|
96
vendor/github.com/eclipse/paho.mqtt.golang/cmd/custom_store/main.go
generated
vendored
Normal file
96
vendor/github.com/eclipse/paho.mqtt.golang/cmd/custom_store/main.go
generated
vendored
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
// This demonstrates how to implement your own Store interface and provide
|
||||||
|
// it to the go-mqtt client.
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
MQTT "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
// This NoOpStore type implements the go-mqtt/Store interface, which
|
||||||
|
// allows it to be used by the go-mqtt client library. However, it is
|
||||||
|
// highly recommended that you do not use this NoOpStore in production,
|
||||||
|
// because it will NOT provide any sort of guaruntee of message delivery.
|
||||||
|
type NoOpStore struct {
|
||||||
|
// Contain nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) Open() {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) Put(string, packets.ControlPacket) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) Get(string) packets.ControlPacket {
|
||||||
|
// Do nothing
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) Del(string) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) All() []string {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) Close() {
|
||||||
|
// Do Nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *NoOpStore) Reset() {
|
||||||
|
// Do Nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
myNoOpStore := &NoOpStore{}
|
||||||
|
|
||||||
|
opts := MQTT.NewClientOptions()
|
||||||
|
opts.AddBroker("tcp://iot.eclipse.org:1883")
|
||||||
|
opts.SetClientID("custom-store")
|
||||||
|
opts.SetStore(myNoOpStore)
|
||||||
|
|
||||||
|
var callback MQTT.MessageHandler = func(client MQTT.Client, msg MQTT.Message) {
|
||||||
|
fmt.Printf("TOPIC: %s\n", msg.Topic())
|
||||||
|
fmt.Printf("MSG: %s\n", msg.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
c := MQTT.NewClient(opts)
|
||||||
|
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Subscribe("/go-mqtt/sample", 0, callback)
|
||||||
|
|
||||||
|
for i := 0; i < 5; i++ {
|
||||||
|
text := fmt.Sprintf("this is msg #%d!", i)
|
||||||
|
token := c.Publish("/go-mqtt/sample", 0, false, text)
|
||||||
|
token.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := 1; i < 5; i++ {
|
||||||
|
time.Sleep(1 * time.Second)
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Disconnect(250)
|
||||||
|
}
|
|
@ -0,0 +1,105 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------
|
||||||
|
This sample is designed to demonstrate the ability to set individual
|
||||||
|
callbacks on a per-subscription basis. There are three handlers in use:
|
||||||
|
brokerLoadHandler - $SYS/broker/load/#
|
||||||
|
brokerConnectionHandler - $SYS/broker/connection/#
|
||||||
|
brokerClientHandler - $SYS/broker/clients/#
|
||||||
|
The client will receive 100 messages total from those subscriptions,
|
||||||
|
and then print the total number of messages received from each.
|
||||||
|
It may take a few moments for the sample to complete running, as it
|
||||||
|
must wait for messages to be published.
|
||||||
|
-----------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
MQTT "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
var brokerLoad = make(chan bool)
|
||||||
|
var brokerConnection = make(chan bool)
|
||||||
|
var brokerClients = make(chan bool)
|
||||||
|
|
||||||
|
func brokerLoadHandler(client MQTT.Client, msg MQTT.Message) {
|
||||||
|
brokerLoad <- true
|
||||||
|
fmt.Printf("BrokerLoadHandler ")
|
||||||
|
fmt.Printf("[%s] ", msg.Topic())
|
||||||
|
fmt.Printf("%s\n", msg.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
func brokerConnectionHandler(client MQTT.Client, msg MQTT.Message) {
|
||||||
|
brokerConnection <- true
|
||||||
|
fmt.Printf("BrokerConnectionHandler ")
|
||||||
|
fmt.Printf("[%s] ", msg.Topic())
|
||||||
|
fmt.Printf("%s\n", msg.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
func brokerClientsHandler(client MQTT.Client, msg MQTT.Message) {
|
||||||
|
brokerClients <- true
|
||||||
|
fmt.Printf("BrokerClientsHandler ")
|
||||||
|
fmt.Printf("[%s] ", msg.Topic())
|
||||||
|
fmt.Printf("%s\n", msg.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
opts := MQTT.NewClientOptions().AddBroker("tcp://iot.eclipse.org:1883").SetClientID("router-sample")
|
||||||
|
opts.SetCleanSession(true)
|
||||||
|
|
||||||
|
c := MQTT.NewClient(opts)
|
||||||
|
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
if token := c.Subscribe("$SYS/broker/load/#", 0, brokerLoadHandler); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
if token := c.Subscribe("$SYS/broker/connection/#", 0, brokerConnectionHandler); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
if token := c.Subscribe("$SYS/broker/clients/#", 0, brokerClientsHandler); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
loadCount := 0
|
||||||
|
connectionCount := 0
|
||||||
|
clientsCount := 0
|
||||||
|
|
||||||
|
for i := 0; i < 100; i++ {
|
||||||
|
select {
|
||||||
|
case <-brokerLoad:
|
||||||
|
loadCount++
|
||||||
|
case <-brokerConnection:
|
||||||
|
connectionCount++
|
||||||
|
case <-brokerClients:
|
||||||
|
clientsCount++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Received %3d Broker Load messages\n", loadCount)
|
||||||
|
fmt.Printf("Received %3d Broker Connection messages\n", connectionCount)
|
||||||
|
fmt.Printf("Received %3d Broker Clients messages\n", clientsCount)
|
||||||
|
|
||||||
|
c.Disconnect(250)
|
||||||
|
}
|
|
@ -0,0 +1,130 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
MQTT "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
/*
|
||||||
|
Options:
|
||||||
|
[-help] Display help
|
||||||
|
[-a pub|sub] Action pub (publish) or sub (subscribe)
|
||||||
|
[-m <message>] Payload to send
|
||||||
|
[-n <number>] Number of messages to send or receive
|
||||||
|
[-q 0|1|2] Quality of Service
|
||||||
|
[-clean] CleanSession (true if -clean is present)
|
||||||
|
[-id <clientid>] CliendID
|
||||||
|
[-user <user>] User
|
||||||
|
[-password <password>] Password
|
||||||
|
[-broker <uri>] Broker URI
|
||||||
|
[-topic <topic>] Topic
|
||||||
|
[-store <path>] Store Directory
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
topic := flag.String("topic", "", "The topic name to/from which to publish/subscribe")
|
||||||
|
broker := flag.String("broker", "tcp://iot.eclipse.org:1883", "The broker URI. ex: tcp://10.10.1.1:1883")
|
||||||
|
password := flag.String("password", "", "The password (optional)")
|
||||||
|
user := flag.String("user", "", "The User (optional)")
|
||||||
|
id := flag.String("id", "testgoid", "The ClientID (optional)")
|
||||||
|
cleansess := flag.Bool("clean", false, "Set Clean Session (default false)")
|
||||||
|
qos := flag.Int("qos", 0, "The Quality of Service 0,1,2 (default 0)")
|
||||||
|
num := flag.Int("num", 1, "The number of messages to publish or subscribe (default 1)")
|
||||||
|
payload := flag.String("message", "", "The message text to publish (default empty)")
|
||||||
|
action := flag.String("action", "", "Action publish or subscribe (required)")
|
||||||
|
store := flag.String("store", ":memory:", "The Store Directory (default use memory store)")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
if *action != "pub" && *action != "sub" {
|
||||||
|
fmt.Println("Invalid setting for -action, must be pub or sub")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if *topic == "" {
|
||||||
|
fmt.Println("Invalid setting for -topic, must not be empty")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Sample Info:\n")
|
||||||
|
fmt.Printf("\taction: %s\n", *action)
|
||||||
|
fmt.Printf("\tbroker: %s\n", *broker)
|
||||||
|
fmt.Printf("\tclientid: %s\n", *id)
|
||||||
|
fmt.Printf("\tuser: %s\n", *user)
|
||||||
|
fmt.Printf("\tpassword: %s\n", *password)
|
||||||
|
fmt.Printf("\ttopic: %s\n", *topic)
|
||||||
|
fmt.Printf("\tmessage: %s\n", *payload)
|
||||||
|
fmt.Printf("\tqos: %d\n", *qos)
|
||||||
|
fmt.Printf("\tcleansess: %v\n", *cleansess)
|
||||||
|
fmt.Printf("\tnum: %d\n", *num)
|
||||||
|
fmt.Printf("\tstore: %s\n", *store)
|
||||||
|
|
||||||
|
opts := MQTT.NewClientOptions()
|
||||||
|
opts.AddBroker(*broker)
|
||||||
|
opts.SetClientID(*id)
|
||||||
|
opts.SetUsername(*user)
|
||||||
|
opts.SetPassword(*password)
|
||||||
|
opts.SetCleanSession(*cleansess)
|
||||||
|
if *store != ":memory:" {
|
||||||
|
opts.SetStore(MQTT.NewFileStore(*store))
|
||||||
|
}
|
||||||
|
|
||||||
|
if *action == "pub" {
|
||||||
|
client := MQTT.NewClient(opts)
|
||||||
|
if token := client.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
fmt.Println("Sample Publisher Started")
|
||||||
|
for i := 0; i < *num; i++ {
|
||||||
|
fmt.Println("---- doing publish ----")
|
||||||
|
token := client.Publish(*topic, byte(*qos), false, *payload)
|
||||||
|
token.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
|
client.Disconnect(250)
|
||||||
|
fmt.Println("Sample Publisher Disconnected")
|
||||||
|
} else {
|
||||||
|
receiveCount := 0
|
||||||
|
choke := make(chan [2]string)
|
||||||
|
|
||||||
|
opts.SetDefaultPublishHandler(func(client MQTT.Client, msg MQTT.Message) {
|
||||||
|
choke <- [2]string{msg.Topic(), string(msg.Payload())}
|
||||||
|
})
|
||||||
|
|
||||||
|
client := MQTT.NewClient(opts)
|
||||||
|
if token := client.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
if token := client.Subscribe(*topic, byte(*qos), nil); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
for receiveCount < *num {
|
||||||
|
incoming := <-choke
|
||||||
|
fmt.Printf("RECEIVED TOPIC: %s MESSAGE: %s\n", incoming[0], incoming[1])
|
||||||
|
receiveCount++
|
||||||
|
}
|
||||||
|
|
||||||
|
client.Disconnect(250)
|
||||||
|
fmt.Println("Sample Subscriber Disconnected")
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,65 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
var f mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) {
|
||||||
|
fmt.Printf("TOPIC: %s\n", msg.Topic())
|
||||||
|
fmt.Printf("MSG: %s\n", msg.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
mqtt.DEBUG = log.New(os.Stdout, "", 0)
|
||||||
|
mqtt.ERROR = log.New(os.Stdout, "", 0)
|
||||||
|
opts := mqtt.NewClientOptions().AddBroker("tcp://iot.eclipse.org:1883").SetClientID("gotrivial")
|
||||||
|
opts.SetKeepAlive(2 * time.Second)
|
||||||
|
opts.SetDefaultPublishHandler(f)
|
||||||
|
opts.SetPingTimeout(1 * time.Second)
|
||||||
|
|
||||||
|
c := mqtt.NewClient(opts)
|
||||||
|
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
if token := c.Subscribe("go-mqtt/sample", 0, nil); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := 0; i < 5; i++ {
|
||||||
|
text := fmt.Sprintf("this is msg #%d!", i)
|
||||||
|
token := c.Publish("go-mqtt/sample", 0, false, text)
|
||||||
|
token.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(6 * time.Second)
|
||||||
|
|
||||||
|
if token := c.Unsubscribe("go-mqtt/sample"); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Disconnect(250)
|
||||||
|
|
||||||
|
time.Sleep(1 * time.Second)
|
||||||
|
}
|
|
@ -0,0 +1,126 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
To run this sample, The following certificates
|
||||||
|
must be created:
|
||||||
|
|
||||||
|
rootCA-crt.pem - root certificate authority that is used
|
||||||
|
to sign and verify the client and server
|
||||||
|
certificates.
|
||||||
|
rootCA-key.pem - keyfile for the rootCA.
|
||||||
|
|
||||||
|
server-crt.pem - server certificate signed by the CA.
|
||||||
|
server-key.pem - keyfile for the server certificate.
|
||||||
|
|
||||||
|
client-crt.pem - client certificate signed by the CA.
|
||||||
|
client-key.pem - keyfile for the client certificate.
|
||||||
|
|
||||||
|
CAfile.pem - file containing concatenated CA certificates
|
||||||
|
if there is more than 1 in the chain.
|
||||||
|
(e.g. root CA -> intermediate CA -> server cert)
|
||||||
|
|
||||||
|
Instead of creating CAfile.pem, rootCA-crt.pem can be added
|
||||||
|
to the default openssl CA certificate bundle. To find the
|
||||||
|
default CA bundle used, check:
|
||||||
|
$GO_ROOT/src/pks/crypto/x509/root_unix.go
|
||||||
|
To use this CA bundle, just set tls.Config.RootCAs = nil.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"crypto/x509"
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
MQTT "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
func NewTLSConfig() *tls.Config {
|
||||||
|
// Import trusted certificates from CAfile.pem.
|
||||||
|
// Alternatively, manually add CA certificates to
|
||||||
|
// default openssl CA bundle.
|
||||||
|
certpool := x509.NewCertPool()
|
||||||
|
pemCerts, err := ioutil.ReadFile("samplecerts/CAfile.pem")
|
||||||
|
if err == nil {
|
||||||
|
certpool.AppendCertsFromPEM(pemCerts)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Import client certificate/key pair
|
||||||
|
cert, err := tls.LoadX509KeyPair("samplecerts/client-crt.pem", "samplecerts/client-key.pem")
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Just to print out the client certificate..
|
||||||
|
cert.Leaf, err = x509.ParseCertificate(cert.Certificate[0])
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
fmt.Println(cert.Leaf)
|
||||||
|
|
||||||
|
// Create tls.Config with desired tls properties
|
||||||
|
return &tls.Config{
|
||||||
|
// RootCAs = certs used to verify server cert.
|
||||||
|
RootCAs: certpool,
|
||||||
|
// ClientAuth = whether to request cert from server.
|
||||||
|
// Since the server is set up for SSL, this happens
|
||||||
|
// anyways.
|
||||||
|
ClientAuth: tls.NoClientCert,
|
||||||
|
// ClientCAs = certs used to validate client cert.
|
||||||
|
ClientCAs: nil,
|
||||||
|
// InsecureSkipVerify = verify that cert contents
|
||||||
|
// match server. IP matches what is in cert etc.
|
||||||
|
InsecureSkipVerify: true,
|
||||||
|
// Certificates = list of certs client sends to server.
|
||||||
|
Certificates: []tls.Certificate{cert},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var f MQTT.MessageHandler = func(client MQTT.Client, msg MQTT.Message) {
|
||||||
|
fmt.Printf("TOPIC: %s\n", msg.Topic())
|
||||||
|
fmt.Printf("MSG: %s\n", msg.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
tlsconfig := NewTLSConfig()
|
||||||
|
|
||||||
|
opts := MQTT.NewClientOptions()
|
||||||
|
opts.AddBroker("ssl://iot.eclipse.org:8883")
|
||||||
|
opts.SetClientID("ssl-sample").SetTLSConfig(tlsconfig)
|
||||||
|
opts.SetDefaultPublishHandler(f)
|
||||||
|
|
||||||
|
// Start the connection
|
||||||
|
c := MQTT.NewClient(opts)
|
||||||
|
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Subscribe("/go-mqtt/sample", 0, nil)
|
||||||
|
|
||||||
|
i := 0
|
||||||
|
for _ = range time.Tick(time.Duration(1) * time.Second) {
|
||||||
|
if i == 5 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
text := fmt.Sprintf("this is msg #%d!", i)
|
||||||
|
c.Publish("/go-mqtt/sample", 0, false, text)
|
||||||
|
i++
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Disconnect(250)
|
||||||
|
}
|
150
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/CAfile.pem
generated
vendored
Normal file
150
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/CAfile.pem
generated
vendored
Normal file
|
@ -0,0 +1,150 @@
|
||||||
|
Certificate:
|
||||||
|
Data:
|
||||||
|
Version: 3 (0x2)
|
||||||
|
Serial Number: 1 (0x1)
|
||||||
|
Signature Algorithm: sha1WithRSAEncryption
|
||||||
|
Issuer: C=US, ST=Dummy, L=Dummy, O=Dummy, OU=Dummy, CN=Dummy CA
|
||||||
|
Validity
|
||||||
|
Not Before: Oct 21 19:24:23 2013 GMT
|
||||||
|
Not After : Sep 25 19:24:23 2018 GMT
|
||||||
|
Subject: C=US, ST=Dummy, L=Dummy, O=Dummy, OU=Dummy, CN=Dummy CA
|
||||||
|
Subject Public Key Info:
|
||||||
|
Public Key Algorithm: rsaEncryption
|
||||||
|
Public-Key: (2048 bit)
|
||||||
|
Modulus:
|
||||||
|
00:c2:d1:d0:31:dc:93:c3:ad:88:0d:f8:93:fe:cc:
|
||||||
|
aa:04:1d:85:aa:c3:bb:bd:87:04:f0:42:67:14:34:
|
||||||
|
4a:56:94:2b:bf:d0:6b:72:30:38:39:35:20:8c:e3:
|
||||||
|
7e:65:82:b0:7e:3e:1d:f1:18:82:b7:d6:19:59:43:
|
||||||
|
ed:81:be:eb:51:44:fc:77:9e:37:ad:e1:a0:18:b9:
|
||||||
|
4b:59:79:90:81:a4:e4:52:2f:fc:e2:ff:98:10:5e:
|
||||||
|
d5:13:9a:16:62:1a:e0:cb:ab:1d:ae:da:d1:40:d4:
|
||||||
|
97:b1:e6:e3:f1:97:2c:2a:52:73:ab:d0:a2:15:f3:
|
||||||
|
1e:9a:b0:67:d0:62:67:4b:74:b0:bb:8f:ef:9e:32:
|
||||||
|
6a:4c:27:4e:82:7c:16:66:ce:06:e9:a3:d9:36:4f:
|
||||||
|
f4:3e:bc:80:00:93:c1:ca:31:cf:03:68:d4:e5:8b:
|
||||||
|
38:45:b6:1b:35:b0:c0:e9:4a:62:75:83:01:aa:b9:
|
||||||
|
c1:0b:c0:ee:97:c0:73:23:cd:34:ec:bb:3c:95:35:
|
||||||
|
c8:2d:69:ff:86:d8:1f:c8:04:7e:18:de:62:c2:4b:
|
||||||
|
37:c6:aa:8e:03:bf:2b:0d:97:20:2a:75:47:ec:98:
|
||||||
|
29:3c:64:52:ef:91:8b:63:0f:6a:f8:c2:9d:08:6a:
|
||||||
|
61:68:6f:64:9a:56:b2:0a:bc:7b:59:3d:7f:fd:ba:
|
||||||
|
12:4b
|
||||||
|
Exponent: 65537 (0x10001)
|
||||||
|
X509v3 extensions:
|
||||||
|
X509v3 Subject Key Identifier:
|
||||||
|
5B:BB:3E:8E:2D:90:AD:AE:58:07:FF:53:00:18:98:FF:44:84:4C:BA
|
||||||
|
X509v3 Authority Key Identifier:
|
||||||
|
keyid:5B:BB:3E:8E:2D:90:AD:AE:58:07:FF:53:00:18:98:FF:44:84:4C:BA
|
||||||
|
|
||||||
|
X509v3 Basic Constraints:
|
||||||
|
CA:TRUE
|
||||||
|
Signature Algorithm: sha1WithRSAEncryption
|
||||||
|
3c:89:0b:bd:49:10:a6:1a:f6:2a:4b:5f:02:3d:ee:f3:19:4f:
|
||||||
|
c9:10:79:9c:01:ef:88:22:3d:03:5b:1a:14:46:b6:7f:9b:af:
|
||||||
|
a5:99:1a:d4:d4:9b:d6:6f:c1:fe:96:8f:9a:9e:47:42:b4:ee:
|
||||||
|
21:56:6a:c4:92:38:6c:81:cd:8e:31:43:86:7c:97:15:90:80:
|
||||||
|
d8:21:f0:46:be:2a:2f:f2:96:07:85:74:a8:fa:1b:78:8f:80:
|
||||||
|
c1:5e:bc:d9:06:c2:33:9e:8e:f9:08:dd:43:7b:6f:5a:22:67:
|
||||||
|
46:78:5d:fb:4a:4e:c2:c6:29:94:17:53:a6:c5:a9:d6:67:06:
|
||||||
|
4f:07:ef:da:5b:45:21:83:cb:31:b2:dc:dc:ac:13:19:98:3f:
|
||||||
|
98:5f:2c:b4:b4:da:d4:43:d7:a9:1a:6e:b6:cf:be:85:a8:80:
|
||||||
|
1f:8a:c1:95:8a:83:a4:af:d2:23:4a:b6:18:87:4e:28:31:36:
|
||||||
|
03:2c:bf:e4:9e:b6:75:fd:c4:68:ed:4d:d5:a8:fa:a5:81:13:
|
||||||
|
17:1c:43:67:02:1c:d0:e6:00:6e:8b:13:e6:60:1f:ba:40:78:
|
||||||
|
93:25:ca:59:5a:71:cc:58:d4:52:63:1d:b3:3c:ce:37:f1:89:
|
||||||
|
78:fc:13:fa:b3:ea:22:af:17:68:8a:a1:59:57:f5:1a:49:6e:
|
||||||
|
b9:f6:5f:b3
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDizCCAnOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJVUzEO
|
||||||
|
MAwGA1UECAwFRHVtbXkxDjAMBgNVBAcMBUR1bW15MQ4wDAYDVQQKDAVEdW1teTEO
|
||||||
|
MAwGA1UECwwFRHVtbXkxETAPBgNVBAMMCER1bW15IENBMB4XDTEzMTAyMTE5MjQy
|
||||||
|
M1oXDTE4MDkyNTE5MjQyM1owYDELMAkGA1UEBhMCVVMxDjAMBgNVBAgMBUR1bW15
|
||||||
|
MQ4wDAYDVQQHDAVEdW1teTEOMAwGA1UECgwFRHVtbXkxDjAMBgNVBAsMBUR1bW15
|
||||||
|
MREwDwYDVQQDDAhEdW1teSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
||||||
|
ggEBAMLR0DHck8OtiA34k/7MqgQdharDu72HBPBCZxQ0SlaUK7/Qa3IwODk1IIzj
|
||||||
|
fmWCsH4+HfEYgrfWGVlD7YG+61FE/HeeN63hoBi5S1l5kIGk5FIv/OL/mBBe1ROa
|
||||||
|
FmIa4MurHa7a0UDUl7Hm4/GXLCpSc6vQohXzHpqwZ9BiZ0t0sLuP754yakwnToJ8
|
||||||
|
FmbOBumj2TZP9D68gACTwcoxzwNo1OWLOEW2GzWwwOlKYnWDAaq5wQvA7pfAcyPN
|
||||||
|
NOy7PJU1yC1p/4bYH8gEfhjeYsJLN8aqjgO/Kw2XICp1R+yYKTxkUu+Ri2MPavjC
|
||||||
|
nQhqYWhvZJpWsgq8e1k9f/26EksCAwEAAaNQME4wHQYDVR0OBBYEFFu7Po4tkK2u
|
||||||
|
WAf/UwAYmP9EhEy6MB8GA1UdIwQYMBaAFFu7Po4tkK2uWAf/UwAYmP9EhEy6MAwG
|
||||||
|
A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADyJC71JEKYa9ipLXwI97vMZ
|
||||||
|
T8kQeZwB74giPQNbGhRGtn+br6WZGtTUm9Zvwf6Wj5qeR0K07iFWasSSOGyBzY4x
|
||||||
|
Q4Z8lxWQgNgh8Ea+Ki/ylgeFdKj6G3iPgMFevNkGwjOejvkI3UN7b1oiZ0Z4XftK
|
||||||
|
TsLGKZQXU6bFqdZnBk8H79pbRSGDyzGy3NysExmYP5hfLLS02tRD16kabrbPvoWo
|
||||||
|
gB+KwZWKg6Sv0iNKthiHTigxNgMsv+SetnX9xGjtTdWo+qWBExccQ2cCHNDmAG6L
|
||||||
|
E+ZgH7pAeJMlyllaccxY1FJjHbM8zjfxiXj8E/qz6iKvF2iKoVlX9RpJbrn2X7M=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
Certificate:
|
||||||
|
Data:
|
||||||
|
Version: 3 (0x2)
|
||||||
|
Serial Number: 1 (0x1)
|
||||||
|
Signature Algorithm: sha1WithRSAEncryption
|
||||||
|
Issuer: C=US, ST=Dummy, L=Dummy, O=Dummy, OU=Dummy, CN=Dummy CA
|
||||||
|
Validity
|
||||||
|
Not Before: Oct 21 19:24:23 2013 GMT
|
||||||
|
Not After : Sep 25 19:24:23 2018 GMT
|
||||||
|
Subject: C=US, ST=Dummy, L=Dummy, O=Dummy, OU=Dummy, CN=Dummy Intermediate CA
|
||||||
|
Subject Public Key Info:
|
||||||
|
Public Key Algorithm: rsaEncryption
|
||||||
|
Public-Key: (2048 bit)
|
||||||
|
Modulus:
|
||||||
|
00:cf:7d:92:07:a5:56:1b:6f:4c:f3:34:c2:12:c2:
|
||||||
|
34:62:3b:69:aa:a6:0c:c6:70:5b:93:bc:dc:41:98:
|
||||||
|
61:87:61:36:be:8c:08:dd:31:a9:33:76:d3:66:3e:
|
||||||
|
77:60:1e:ed:9e:e1:e5:ef:bf:17:91:ac:0c:63:07:
|
||||||
|
01:ab:30:67:bc:16:a6:2f:79:f0:61:8c:79:2d:3c:
|
||||||
|
98:60:74:61:c4:5f:60:44:85:71:92:9d:cc:7b:14:
|
||||||
|
39:74:aa:44:f9:9f:ae:f6:c7:8d:c3:01:47:53:24:
|
||||||
|
ac:7b:a2:f6:c5:7d:65:37:40:0b:20:c8:d4:14:cd:
|
||||||
|
f8:f4:57:ea:23:70:f4:e3:99:2b:1c:9a:67:37:ed:
|
||||||
|
93:c7:a7:7c:86:90:f7:ae:fc:6f:4b:18:dc:d5:eb:
|
||||||
|
f3:68:33:d6:78:14:d1:ca:a7:06:7d:75:34:f6:c0:
|
||||||
|
d4:15:1b:21:2b:78:d9:76:24:a5:f0:c6:13:c8:1e:
|
||||||
|
4a:c8:ca:77:34:4e:f8:fa:49:5f:6c:e1:66:a8:65:
|
||||||
|
f0:8c:bc:44:20:03:ac:af:4a:61:a5:39:48:51:1b:
|
||||||
|
cb:d8:22:29:60:27:47:42:fc:bf:6a:77:65:58:09:
|
||||||
|
20:82:1c:d1:16:5e:5a:18:ea:99:61:8e:93:94:27:
|
||||||
|
30:20:dd:44:03:50:43:b4:ec:a3:0f:ee:91:69:d7:
|
||||||
|
b1:5b
|
||||||
|
Exponent: 65537 (0x10001)
|
||||||
|
X509v3 extensions:
|
||||||
|
X509v3 Basic Constraints:
|
||||||
|
CA:TRUE
|
||||||
|
Signature Algorithm: sha1WithRSAEncryption
|
||||||
|
39:a0:8d:2f:68:22:1d:4f:3e:db:f1:9b:29:20:77:23:f8:21:
|
||||||
|
34:17:84:00:88:a8:3e:a1:4d:84:94:90:96:02:e6:6a:b4:20:
|
||||||
|
51:a0:66:20:38:05:18:aa:2a:3e:9a:50:60:af:eb:4a:70:ac:
|
||||||
|
9b:59:30:d5:17:14:9c:b4:91:6a:1b:c3:45:8a:dd:cd:2f:c6:
|
||||||
|
c5:8c:fe:d0:76:20:63:a4:97:db:e3:2a:8e:c1:3d:c8:b6:06:
|
||||||
|
2d:49:7a:d9:8a:de:16:ea:5d:5f:fb:41:79:0d:8f:d2:23:00:
|
||||||
|
d9:b9:6f:93:45:bb:74:17:ea:6b:72:13:01:86:fe:8d:7e:8f:
|
||||||
|
27:71:76:a9:37:6d:6c:90:5a:3f:d9:6d:4d:6c:a4:64:7a:ea:
|
||||||
|
82:c9:87:ee:6a:d0:6e:30:05:7f:19:1d:19:31:a9:9a:ce:21:
|
||||||
|
84:da:47:c7:a0:66:12:e8:7e:57:69:5d:9c:24:e5:46:3c:bf:
|
||||||
|
37:f6:88:c3:b1:42:de:3b:81:ed:f5:ae:e2:23:9e:c2:89:a1:
|
||||||
|
e7:5c:1d:49:0f:ed:ae:55:60:0e:4e:4c:e9:8a:64:e6:ae:c5:
|
||||||
|
d1:99:a7:70:4c:7e:5d:53:ac:88:2c:0f:0b:21:94:1a:32:f9:
|
||||||
|
a1:cc:1e:67:98:6b:b6:e9:b1:b9:4b:46:02:b1:65:c9:49:83:
|
||||||
|
80:bd:b9:70
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDWDCCAkCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJVUzEO
|
||||||
|
MAwGA1UECAwFRHVtbXkxDjAMBgNVBAcMBUR1bW15MQ4wDAYDVQQKDAVEdW1teTEO
|
||||||
|
MAwGA1UECwwFRHVtbXkxETAPBgNVBAMMCER1bW15IENBMB4XDTEzMTAyMTE5MjQy
|
||||||
|
M1oXDTE4MDkyNTE5MjQyM1owbTELMAkGA1UEBhMCVVMxDjAMBgNVBAgMBUR1bW15
|
||||||
|
MQ4wDAYDVQQHDAVEdW1teTEOMAwGA1UECgwFRHVtbXkxDjAMBgNVBAsMBUR1bW15
|
||||||
|
MR4wHAYDVQQDDBVEdW1teSBJbnRlcm1lZGlhdGUgQ0EwggEiMA0GCSqGSIb3DQEB
|
||||||
|
AQUAA4IBDwAwggEKAoIBAQDPfZIHpVYbb0zzNMISwjRiO2mqpgzGcFuTvNxBmGGH
|
||||||
|
YTa+jAjdMakzdtNmPndgHu2e4eXvvxeRrAxjBwGrMGe8FqYvefBhjHktPJhgdGHE
|
||||||
|
X2BEhXGSncx7FDl0qkT5n672x43DAUdTJKx7ovbFfWU3QAsgyNQUzfj0V+ojcPTj
|
||||||
|
mSscmmc37ZPHp3yGkPeu/G9LGNzV6/NoM9Z4FNHKpwZ9dTT2wNQVGyEreNl2JKXw
|
||||||
|
xhPIHkrIync0Tvj6SV9s4WaoZfCMvEQgA6yvSmGlOUhRG8vYIilgJ0dC/L9qd2VY
|
||||||
|
CSCCHNEWXloY6plhjpOUJzAg3UQDUEO07KMP7pFp17FbAgMBAAGjEDAOMAwGA1Ud
|
||||||
|
EwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADmgjS9oIh1PPtvxmykgdyP4ITQX
|
||||||
|
hACIqD6hTYSUkJYC5mq0IFGgZiA4BRiqKj6aUGCv60pwrJtZMNUXFJy0kWobw0WK
|
||||||
|
3c0vxsWM/tB2IGOkl9vjKo7BPci2Bi1JetmK3hbqXV/7QXkNj9IjANm5b5NFu3QX
|
||||||
|
6mtyEwGG/o1+jydxdqk3bWyQWj/ZbU1spGR66oLJh+5q0G4wBX8ZHRkxqZrOIYTa
|
||||||
|
R8egZhLofldpXZwk5UY8vzf2iMOxQt47ge31ruIjnsKJoedcHUkP7a5VYA5OTOmK
|
||||||
|
ZOauxdGZp3BMfl1TrIgsDwshlBoy+aHMHmeYa7bpsblLRgKxZclJg4C9uXA=
|
||||||
|
-----END CERTIFICATE-----
|
9
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/README
generated
vendored
Normal file
9
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/README
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
Certificate structure:
|
||||||
|
|
||||||
|
Root CA
|
||||||
|
|
|
||||||
|
|-> Intermediate CA
|
||||||
|
|
|
||||||
|
|-> Server
|
||||||
|
|
|
||||||
|
|-> Client
|
20
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/client-crt.pem
generated
vendored
Normal file
20
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/client-crt.pem
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDRzCCAi8CAQIwDQYJKoZIhvcNAQEFBQAwbTELMAkGA1UEBhMCVVMxDjAMBgNV
|
||||||
|
BAgMBUR1bW15MQ4wDAYDVQQHDAVEdW1teTEOMAwGA1UECgwFRHVtbXkxDjAMBgNV
|
||||||
|
BAsMBUR1bW15MR4wHAYDVQQDDBVEdW1teSBJbnRlcm1lZGlhdGUgQ0EwHhcNMTMx
|
||||||
|
MDIxMTkyNDIzWhcNMTgwOTI1MTkyNDIzWjBmMQswCQYDVQQGEwJVUzEOMAwGA1UE
|
||||||
|
CAwFRHVtbXkxDjAMBgNVBAcMBUR1bW15MQ4wDAYDVQQKDAVEdW1teTEOMAwGA1UE
|
||||||
|
CwwFRHVtbXkxFzAVBgNVBAMMDkR1bW15IChjbGllbnQpMIIBIjANBgkqhkiG9w0B
|
||||||
|
AQEFAAOCAQ8AMIIBCgKCAQEA4J/+eKqsjK0QS+cSDa5Fh4XM4THy812JkWMySA5r
|
||||||
|
bFxHZ5ye36/IuwyRQ0Yn2DvhhsDR5K7yz8K+Yfp9A6WRBkyHK/sy/8vurQHeDH3y
|
||||||
|
lLtHCLi5nfyt2fDxWOYwFrS1giGn2IxJIHBAWu4cBODCkqwqAp92+Lqp3Sn+D+Fb
|
||||||
|
maHEU3LHua8OIJiSeAIHo/jPqfHFqZxK1bXhGCSQKvUZCaTftsqDtn+LZSElqj1y
|
||||||
|
5/cnc7XGsTf8ml/+FDMX1aSAHf+pu+UAp9JqOXOM60A5JIpYu3Lsejp1RppyPJYP
|
||||||
|
zC4nSN8R2LOdDChP2MB7f1/sXRGlLM/X3Vi4X+c6xQ85TQIDAQABMA0GCSqGSIb3
|
||||||
|
DQEBBQUAA4IBAQAMWt9qMUOY5z1uyYcjUnconPHLM9MADCZI2sRbfdBOBHEnTVKv
|
||||||
|
Y63SWnCt8TRJb01LKLIEys6pW1NUlxr6b+FwicNmycR0L8b63cmNXg2NmSZsnK9C
|
||||||
|
fGT6BbbDdVPYjvmghpSd3soBGBLPsJvaFc6UL5tunm+hT7PxWjDxHZEiE18PTs05
|
||||||
|
Vpp/ytILzhoXvJeFOWQHIdf4DLR5izGMNTKdQzgg1eBq2vKgjJIlEZ3j/AyHkJLE
|
||||||
|
qFip1tyc0PRzgKYFLWttaZzakCLJOGuxtvYB+GrixVM7U23p5LQbLE0KX7fe2Gql
|
||||||
|
xKMfSID5NUDNf1SuSrrGLD3gfnJEKVB8TVBk
|
||||||
|
-----END CERTIFICATE-----
|
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/client-key.pem
generated
vendored
Normal file
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/client-key.pem
generated
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEpAIBAAKCAQEA4J/+eKqsjK0QS+cSDa5Fh4XM4THy812JkWMySA5rbFxHZ5ye
|
||||||
|
36/IuwyRQ0Yn2DvhhsDR5K7yz8K+Yfp9A6WRBkyHK/sy/8vurQHeDH3ylLtHCLi5
|
||||||
|
nfyt2fDxWOYwFrS1giGn2IxJIHBAWu4cBODCkqwqAp92+Lqp3Sn+D+FbmaHEU3LH
|
||||||
|
ua8OIJiSeAIHo/jPqfHFqZxK1bXhGCSQKvUZCaTftsqDtn+LZSElqj1y5/cnc7XG
|
||||||
|
sTf8ml/+FDMX1aSAHf+pu+UAp9JqOXOM60A5JIpYu3Lsejp1RppyPJYPzC4nSN8R
|
||||||
|
2LOdDChP2MB7f1/sXRGlLM/X3Vi4X+c6xQ85TQIDAQABAoIBABosCiZdHIW3lHKD
|
||||||
|
leLqL0e/G0QR4dDhUSoTeMRUiceyaM91vD0r6iOBL1u7TOEw+PIOfWY7zCbQ9gXM
|
||||||
|
fcxy+hbVy9ogBq0vQbv+v7SM6DrUJ06o11fFHSyLmlNVXr0GiS+EZF4i2lJhQd5W
|
||||||
|
aAVZetJEJRDxK5eHiEswnV2UUGvx6VCpFILL0JVGxWY7oOPxiiBLl+cmfRZdTfGx
|
||||||
|
46VzQvBu7N8hGpCIsljuVFP/DxR7c+2oyrtFaFSMZBMNI8fICgkb2QeLk/XUBXtn
|
||||||
|
0bDttgmOP/BvnNAor7nIRoeer/7kbXc9jOsgXwnvDKPapltQddL+exycXzbIjLuY
|
||||||
|
Z2SFsDECgYEA+2A4QGV0biqdICAoKCHCHCU/CrdDUQiQDHqRU6/nhka7MFPSl4Wy
|
||||||
|
9oISRrYZhKIbSbaXwTW5ZcYq8Hpn/yGYIWlINP9sjprnOWPE7L74lac+PFWXNMUI
|
||||||
|
jNJOJkLK1IeppByXAt5ekGBrG556bhzRCJsTjYsyUR/r/bMEF1FD8WMCgYEA5MHM
|
||||||
|
hqmkDK5CbklVaPonNc251Lx+HSzzQ40WExC/PrCczRaZMKlhmyKZfWJCInQsUDln
|
||||||
|
w6Lqa5UnwZV2HYAF30VZYQsq84ulNnx1/36BEZyIimfAL1WHvKeGWjGsZqniXxxb
|
||||||
|
Os5wEMAvxk0SWVrR5v6YpBDv3t9+lLg/bzBOAY8CgYEAuZ0q7CH9/vroWrhj7n4+
|
||||||
|
3pmCG1+HDWbNNumqNalFxBimT+EVN1058FvLMvtzjERG8f8pvzj0VPom6rr336Pm
|
||||||
|
uYUMFFYmyoYHBpFs74Nz+s0rX1Gz/PsgfRstKYNYUeZ6lPunZi7clK8dZ591t6j/
|
||||||
|
kOMxZOrLlKuFjieJdc5D5RECgYAVTzxXOwxOJhmIHoq3Sb5HU8/A0oJJA3vxyf3J
|
||||||
|
buDx3Q/uRvGkR9MQ2YtE09dnUD0kiARzhASkWvOmI98p5lglsVcfJCQvJc4RIkz3
|
||||||
|
rPgnBNbvVbTgc+4+E7j/Q+tUcPTmeUTCWKK13MFWjq1r53rwMr1TY0SFFXq8LeGy
|
||||||
|
4OQTXwKBgQDCuPN3Q+EJusYy7TXt0WicY/xyu15s1216N7PmRKFr/WAn2JdAfjbD
|
||||||
|
JKDwVqo0AQiEDAobJk0JMPs+ENK2d58GsybCK4QGAh6z5FGunb5T432YfnoXtL3J
|
||||||
|
ZKVvkf7eowvokTIeiDf3XrCPajLDBpo88Xax+RH03US7XRdu/fVzMA==
|
||||||
|
-----END RSA PRIVATE KEY-----
|
20
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/intermediateCA-crt.pem
generated
vendored
Normal file
20
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/intermediateCA-crt.pem
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDWDCCAkCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJVUzEO
|
||||||
|
MAwGA1UECAwFRHVtbXkxDjAMBgNVBAcMBUR1bW15MQ4wDAYDVQQKDAVEdW1teTEO
|
||||||
|
MAwGA1UECwwFRHVtbXkxETAPBgNVBAMMCER1bW15IENBMB4XDTEzMTAyMTE5MjQy
|
||||||
|
M1oXDTE4MDkyNTE5MjQyM1owbTELMAkGA1UEBhMCVVMxDjAMBgNVBAgMBUR1bW15
|
||||||
|
MQ4wDAYDVQQHDAVEdW1teTEOMAwGA1UECgwFRHVtbXkxDjAMBgNVBAsMBUR1bW15
|
||||||
|
MR4wHAYDVQQDDBVEdW1teSBJbnRlcm1lZGlhdGUgQ0EwggEiMA0GCSqGSIb3DQEB
|
||||||
|
AQUAA4IBDwAwggEKAoIBAQDPfZIHpVYbb0zzNMISwjRiO2mqpgzGcFuTvNxBmGGH
|
||||||
|
YTa+jAjdMakzdtNmPndgHu2e4eXvvxeRrAxjBwGrMGe8FqYvefBhjHktPJhgdGHE
|
||||||
|
X2BEhXGSncx7FDl0qkT5n672x43DAUdTJKx7ovbFfWU3QAsgyNQUzfj0V+ojcPTj
|
||||||
|
mSscmmc37ZPHp3yGkPeu/G9LGNzV6/NoM9Z4FNHKpwZ9dTT2wNQVGyEreNl2JKXw
|
||||||
|
xhPIHkrIync0Tvj6SV9s4WaoZfCMvEQgA6yvSmGlOUhRG8vYIilgJ0dC/L9qd2VY
|
||||||
|
CSCCHNEWXloY6plhjpOUJzAg3UQDUEO07KMP7pFp17FbAgMBAAGjEDAOMAwGA1Ud
|
||||||
|
EwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADmgjS9oIh1PPtvxmykgdyP4ITQX
|
||||||
|
hACIqD6hTYSUkJYC5mq0IFGgZiA4BRiqKj6aUGCv60pwrJtZMNUXFJy0kWobw0WK
|
||||||
|
3c0vxsWM/tB2IGOkl9vjKo7BPci2Bi1JetmK3hbqXV/7QXkNj9IjANm5b5NFu3QX
|
||||||
|
6mtyEwGG/o1+jydxdqk3bWyQWj/ZbU1spGR66oLJh+5q0G4wBX8ZHRkxqZrOIYTa
|
||||||
|
R8egZhLofldpXZwk5UY8vzf2iMOxQt47ge31ruIjnsKJoedcHUkP7a5VYA5OTOmK
|
||||||
|
ZOauxdGZp3BMfl1TrIgsDwshlBoy+aHMHmeYa7bpsblLRgKxZclJg4C9uXA=
|
||||||
|
-----END CERTIFICATE-----
|
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/intermediateCA-key.pem
generated
vendored
Normal file
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/intermediateCA-key.pem
generated
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEogIBAAKCAQEAz32SB6VWG29M8zTCEsI0YjtpqqYMxnBbk7zcQZhhh2E2vowI
|
||||||
|
3TGpM3bTZj53YB7tnuHl778XkawMYwcBqzBnvBamL3nwYYx5LTyYYHRhxF9gRIVx
|
||||||
|
kp3MexQ5dKpE+Z+u9seNwwFHUySse6L2xX1lN0ALIMjUFM349FfqI3D045krHJpn
|
||||||
|
N+2Tx6d8hpD3rvxvSxjc1evzaDPWeBTRyqcGfXU09sDUFRshK3jZdiSl8MYTyB5K
|
||||||
|
yMp3NE74+klfbOFmqGXwjLxEIAOsr0phpTlIURvL2CIpYCdHQvy/andlWAkgghzR
|
||||||
|
Fl5aGOqZYY6TlCcwIN1EA1BDtOyjD+6RadexWwIDAQABAoIBAEs6OsS85DBENUEE
|
||||||
|
QszsTnPDGLd/Rqh3uiwhUDYUGmAsFd4WBWy1AaSgE1tBkKRv8jUlr+kxfkkZeNA6
|
||||||
|
jRdVEHc4Ov6Blm63sIN/Mbve1keNUOjm/NtsjOOe3In45dMfWx8sELC/+O0jIcod
|
||||||
|
tpy5rwXOGXrEdWgpmXZ1nXVGEfOmQH3eGEPkqbY1I4YlAoXD0mc5fNQQrn7qrogH
|
||||||
|
M5USCnC44yIIF0Yube2Fg0Cem41vzIvENAlZC273gyW+pQwez0uma2LaCWmkEz1N
|
||||||
|
sESrNSQ4yeQnDQYlgX2w3RRpqql4GDzAdISL2WJcNhW6KJ72B0SQ1ny/TmQgZePG
|
||||||
|
Ojv1T0ECgYEA9CXqKyXBSPF+Wdc/fNagrIi6tcNkLAN2/p5J3Z6TtbZGjItoMlDX
|
||||||
|
c+hwHobcI3GZLMlxlBx7ePc7cKgaMDXrl8BZZjFoyEV9OHOLicfNkLFmBIZ14gtX
|
||||||
|
bGZYDuCcal46r7IKRjT8lcYWCoLJnI9vLEII7Q7P/eBgcntw3+h/ziECgYEA2ZAa
|
||||||
|
bp9d0xBaOXq/E341guxNG49R09/DeZ/2CEM+V1pMD8OVH9cvxrBdDLUmAnrqeGTh
|
||||||
|
Djoi1UEbOVAV6/dXbTQHrla+HF4Uq+t9tV+mt68TEa54PQ/ERt5ih3nZGBiqZ6rX
|
||||||
|
SGeyZmIXMLIZEs2dIbJ2DmLcZj6Tjxkd/PxPt/sCgYBGczZaEv/uK3k5NWplfI1K
|
||||||
|
m/28e1BJfwp0OHq6D4sx8RH0djmv4zH4iUbpGCMnuxznFo3Gnl1mr3igbnF4HecI
|
||||||
|
mAF0AqfoulyC0JygOl5v9TCp957Ghl1Is1OPn3KjIuOuVSKv1ZRZJ5qul8TTf3Qm
|
||||||
|
AjwPI6oS6Q8LmeEdSzqt4QKBgB5MglHboe5t/ZK5tHibgApOrGJlMEkohYmfrFz0
|
||||||
|
OG9j5OnhHBiGGGI8V4kYhUWdJqBDtFAN6qH2Yjs2Gwd0t9k+gL9X1zwOIiTbM/OZ
|
||||||
|
cZdtK2Ov/5DJbFVOTTx+zKwda0Xqtfagcmjtyjr+4p0Kw5JYzzYrsHQQzO4F2nZM
|
||||||
|
ETIXAoGADskTzhgpPrC5/qfuLY4gBUtCfYIb8kaKN90AT8A/14lBrT4lSnmsEvKP
|
||||||
|
tRDmFjnc/ogDlHa5SRDijtT6UoyQPuauAt6DYrJ8G6qKJqiMwJcuLV1XFks7z1J8
|
||||||
|
VzB8kso1pPAtcvVXBPklsjvZ10NdQOCqm4N3EVp69agbB1oco4I=
|
||||||
|
-----END RSA PRIVATE KEY-----
|
18
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/mosquitto.org.crt
generated
vendored
Normal file
18
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/mosquitto.org.crt
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIC8DCCAlmgAwIBAgIJAOD63PlXjJi8MA0GCSqGSIb3DQEBBQUAMIGQMQswCQYD
|
||||||
|
VQQGEwJHQjEXMBUGA1UECAwOVW5pdGVkIEtpbmdkb20xDjAMBgNVBAcMBURlcmJ5
|
||||||
|
MRIwEAYDVQQKDAlNb3NxdWl0dG8xCzAJBgNVBAsMAkNBMRYwFAYDVQQDDA1tb3Nx
|
||||||
|
dWl0dG8ub3JnMR8wHQYJKoZIhvcNAQkBFhByb2dlckBhdGNob28ub3JnMB4XDTEy
|
||||||
|
MDYyOTIyMTE1OVoXDTIyMDYyNzIyMTE1OVowgZAxCzAJBgNVBAYTAkdCMRcwFQYD
|
||||||
|
VQQIDA5Vbml0ZWQgS2luZ2RvbTEOMAwGA1UEBwwFRGVyYnkxEjAQBgNVBAoMCU1v
|
||||||
|
c3F1aXR0bzELMAkGA1UECwwCQ0ExFjAUBgNVBAMMDW1vc3F1aXR0by5vcmcxHzAd
|
||||||
|
BgkqhkiG9w0BCQEWEHJvZ2VyQGF0Y2hvby5vcmcwgZ8wDQYJKoZIhvcNAQEBBQAD
|
||||||
|
gY0AMIGJAoGBAMYkLmX7SqOT/jJCZoQ1NWdCrr/pq47m3xxyXcI+FLEmwbE3R9vM
|
||||||
|
rE6sRbP2S89pfrCt7iuITXPKycpUcIU0mtcT1OqxGBV2lb6RaOT2gC5pxyGaFJ+h
|
||||||
|
A+GIbdYKO3JprPxSBoRponZJvDGEZuM3N7p3S/lRoi7G5wG5mvUmaE5RAgMBAAGj
|
||||||
|
UDBOMB0GA1UdDgQWBBTad2QneVztIPQzRRGj6ZHKqJTv5jAfBgNVHSMEGDAWgBTa
|
||||||
|
d2QneVztIPQzRRGj6ZHKqJTv5jAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUA
|
||||||
|
A4GBAAqw1rK4NlRUCUBLhEFUQasjP7xfFqlVbE2cRy0Rs4o3KS0JwzQVBwG85xge
|
||||||
|
REyPOFdGdhBY2P1FNRy0MDr6xr+D2ZOwxs63dG1nnAnWZg7qwoLgpZ4fESPD3PkA
|
||||||
|
1ZgKJc2zbSQ9fCPxt2W3mdVav66c6fsb7els2W2Iz7gERJSX
|
||||||
|
-----END CERTIFICATE-----
|
21
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/rootCA-crt.pem
generated
vendored
Normal file
21
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/rootCA-crt.pem
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDizCCAnOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJVUzEO
|
||||||
|
MAwGA1UECAwFRHVtbXkxDjAMBgNVBAcMBUR1bW15MQ4wDAYDVQQKDAVEdW1teTEO
|
||||||
|
MAwGA1UECwwFRHVtbXkxETAPBgNVBAMMCER1bW15IENBMB4XDTEzMTAyMTE5MjQy
|
||||||
|
M1oXDTE4MDkyNTE5MjQyM1owYDELMAkGA1UEBhMCVVMxDjAMBgNVBAgMBUR1bW15
|
||||||
|
MQ4wDAYDVQQHDAVEdW1teTEOMAwGA1UECgwFRHVtbXkxDjAMBgNVBAsMBUR1bW15
|
||||||
|
MREwDwYDVQQDDAhEdW1teSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
||||||
|
ggEBAMLR0DHck8OtiA34k/7MqgQdharDu72HBPBCZxQ0SlaUK7/Qa3IwODk1IIzj
|
||||||
|
fmWCsH4+HfEYgrfWGVlD7YG+61FE/HeeN63hoBi5S1l5kIGk5FIv/OL/mBBe1ROa
|
||||||
|
FmIa4MurHa7a0UDUl7Hm4/GXLCpSc6vQohXzHpqwZ9BiZ0t0sLuP754yakwnToJ8
|
||||||
|
FmbOBumj2TZP9D68gACTwcoxzwNo1OWLOEW2GzWwwOlKYnWDAaq5wQvA7pfAcyPN
|
||||||
|
NOy7PJU1yC1p/4bYH8gEfhjeYsJLN8aqjgO/Kw2XICp1R+yYKTxkUu+Ri2MPavjC
|
||||||
|
nQhqYWhvZJpWsgq8e1k9f/26EksCAwEAAaNQME4wHQYDVR0OBBYEFFu7Po4tkK2u
|
||||||
|
WAf/UwAYmP9EhEy6MB8GA1UdIwQYMBaAFFu7Po4tkK2uWAf/UwAYmP9EhEy6MAwG
|
||||||
|
A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADyJC71JEKYa9ipLXwI97vMZ
|
||||||
|
T8kQeZwB74giPQNbGhRGtn+br6WZGtTUm9Zvwf6Wj5qeR0K07iFWasSSOGyBzY4x
|
||||||
|
Q4Z8lxWQgNgh8Ea+Ki/ylgeFdKj6G3iPgMFevNkGwjOejvkI3UN7b1oiZ0Z4XftK
|
||||||
|
TsLGKZQXU6bFqdZnBk8H79pbRSGDyzGy3NysExmYP5hfLLS02tRD16kabrbPvoWo
|
||||||
|
gB+KwZWKg6Sv0iNKthiHTigxNgMsv+SetnX9xGjtTdWo+qWBExccQ2cCHNDmAG6L
|
||||||
|
E+ZgH7pAeJMlyllaccxY1FJjHbM8zjfxiXj8E/qz6iKvF2iKoVlX9RpJbrn2X7M=
|
||||||
|
-----END CERTIFICATE-----
|
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/rootCA-key.pem
generated
vendored
Normal file
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/rootCA-key.pem
generated
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEowIBAAKCAQEAwtHQMdyTw62IDfiT/syqBB2FqsO7vYcE8EJnFDRKVpQrv9Br
|
||||||
|
cjA4OTUgjON+ZYKwfj4d8RiCt9YZWUPtgb7rUUT8d543reGgGLlLWXmQgaTkUi/8
|
||||||
|
4v+YEF7VE5oWYhrgy6sdrtrRQNSXsebj8ZcsKlJzq9CiFfMemrBn0GJnS3Swu4/v
|
||||||
|
njJqTCdOgnwWZs4G6aPZNk/0PryAAJPByjHPA2jU5Ys4RbYbNbDA6UpidYMBqrnB
|
||||||
|
C8Dul8BzI8007Ls8lTXILWn/htgfyAR+GN5iwks3xqqOA78rDZcgKnVH7JgpPGRS
|
||||||
|
75GLYw9q+MKdCGphaG9kmlayCrx7WT1//boSSwIDAQABAoIBAGphOzge5Cjzdtl6
|
||||||
|
JQX7J9M7c6O9YaSqN44iFDs6GmWQXxtMaX9eyTSjx/RmvLwdUtZ8gMkHw0kzBYBy
|
||||||
|
0RwJ7mDgNKP0px6xl0Qo2fYvpTLFoU8nmQUy4AwAXIVpnFNRrfJIq9qw7ZZi/7pL
|
||||||
|
A6kGDT3G7Bajw/4MVWfOb8GgGhte1ZhZgXFEZNjGkhwi3Na1/6slOQIfnkkhco0X
|
||||||
|
ru1Cw82nXNPHqu6K+pbHP9ucYdUNZWRh+yQS3p92lr5tB3/IL/lD0Cl3+xP8JFl+
|
||||||
|
5NMSISOKGb3ld0rzrJd1ncgLgv/XlHu8DqvcFs9QwXbaUlG0U/0GrorGYqFaZYaH
|
||||||
|
R1rkZjECgYEA9mAarVAeL7IOeEIg28f/qyp//5+pMzRpVhnI+xscHB5QUO9WH+uE
|
||||||
|
nOXwcGvcRME134H4o/0j75aMhVs7sGfMOQ+enAwOxRC5h4MCClDSWysWftU8Ihhf
|
||||||
|
Sm6eZ0kYLZNqXt/TxTs124NiF1Bb5pekzEr9fTj//vP4meuAQ/D0JoUCgYEAym4f
|
||||||
|
BCm5tLwYYxZM4tko0g9BHxy4aAPfyshuLed1JjkK4JCFp368GBoknj5rUNewTun2
|
||||||
|
1zkQF9b5Mi3k5qWkboP5rpp7DuG3PJdWypV6b/btUeqcyG1gteQwTAwebfqeM0vH
|
||||||
|
QvpuAoRMtEcSBQBl2s9zgmObXUpDlLwuIlL+to8CgYEAyJBtxx8Mo9k4jE+Q/jnu
|
||||||
|
+QFtF8R68jM9eRkeksR7+qv2yBw+KVgKKcvKE0rLErGS0LO2nJELexQ8qqcdjTrC
|
||||||
|
dsUvYmsybtxxnE5bD9jBlfQaqP+fp0Xd9PLeQsivRRLXqgpeFBZifqOS69XAKpTS
|
||||||
|
VHjLqPAI/hzQCUU8spJpvx0CgYAePgt2NMGgxcUi8I72CRl3IH5LJqBKMeH6Sq1j
|
||||||
|
QEQZPMZqPE0rc9yoASfdWFfyEPcvIvcUulq0JRK/s2mSJ8cEF8Vyl3OxCnm0nKuD
|
||||||
|
woczOQHFjjZ0HxsmsXuhsOHO7nU6FqUjVYSf7aIEAOYpRyDwarPIFBd+/XxROTfv
|
||||||
|
OtUA8wKBgAOiGXRxycb4rAtJBDqPAgdAAwNgvQHyVgn32ArWtgu8ermuZW5h1y45
|
||||||
|
hULFvCbLSCpo+I7QhRhw4y2DoB1DgIw04BeFUIcE+az7HH3euAyCLQ0caaA8Xk/6
|
||||||
|
bpPfUMe1SNi51f345QlOPvvwGllTC6DeBhZ730k7VNB32dOCV3kE
|
||||||
|
-----END RSA PRIVATE KEY-----
|
21
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/server-crt.pem
generated
vendored
Normal file
21
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/server-crt.pem
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDYTCCAkmgAwIBAgIBATANBgkqhkiG9w0BAQUFADBtMQswCQYDVQQGEwJVUzEO
|
||||||
|
MAwGA1UECAwFRHVtbXkxDjAMBgNVBAcMBUR1bW15MQ4wDAYDVQQKDAVEdW1teTEO
|
||||||
|
MAwGA1UECwwFRHVtbXkxHjAcBgNVBAMMFUR1bW15IEludGVybWVkaWF0ZSBDQTAe
|
||||||
|
Fw0xMzEwMjExOTI0MjNaFw0xODA5MjUxOTI0MjNaMGYxCzAJBgNVBAYTAlVTMQ4w
|
||||||
|
DAYDVQQIDAVEdW1teTEOMAwGA1UEBwwFRHVtbXkxDjAMBgNVBAoMBUR1bW15MQ4w
|
||||||
|
DAYDVQQLDAVEdW1teTEXMBUGA1UEAwwORHVtbXkgKHNlcnZlcikwggEiMA0GCSqG
|
||||||
|
SIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0fQCRUWXt+i7JMR55Zuo6wBRxG7RnPutN
|
||||||
|
2L7J/18io52vxjm8AZDiC0JFkCHh72ZzvbgVA+e+WxAIYfioRis4JWw4jK8v5m8q
|
||||||
|
cZzS0GJNTMROPiZQi7A81tAbrV00XN7d5PsmIJ2Bf4XbJWMy31CsmoFloeRMd7bR
|
||||||
|
LxwDIb0qqRawhKsWdfZB/c9wGKmHlei50B7PXk+koKnVdsLwXxtCZDvc/3fNRHEK
|
||||||
|
lZs4m0N05G38FdrnczPm/0pie87nK9rnklL7u1sYOukOznnOtW5h7+A4M+DxzME0
|
||||||
|
HRU6k4d+6QvukxBlsE93gHhwRsejIuDGlqD+DRxk2PdmmgsmPH59AgMBAAGjEzAR
|
||||||
|
MA8GA1UdEQQIMAaHBAoKBOQwDQYJKoZIhvcNAQEFBQADggEBAJ3bKs2b4cAJWTZj
|
||||||
|
69dMEfYZKcQIXs7euwtKlP7H8m5c+X5KmZPi1Puq4Z0gtvLu/z7J9UjZjG0CoylV
|
||||||
|
q15Zp5svryJ7XzcsZs7rwyo1JtngW1z54wr9MezqIOF2w12dTwEAINFsW7TxAsH7
|
||||||
|
bfqkzZjuCbbsww5q4eHuZp0yaMHc3hOGaUot27OTlxlIMhv7VBBqWAj0jmvAfTKf
|
||||||
|
la0SiL/Mc8rD8D5C0SXGcCL6li/kqtinAxzhokuyyPf+hQX35kcZxEPu6WxtYVLv
|
||||||
|
hMzrokOZP2FrGbCnhaNT8gw4Aa0RXV1JgonRWYSbkeaCzvr2bJ0OuJiDdwdRKvOo
|
||||||
|
raKLlfY=
|
||||||
|
-----END CERTIFICATE-----
|
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/server-key.pem
generated
vendored
Normal file
27
vendor/github.com/eclipse/paho.mqtt.golang/cmd/ssl/samplecerts/server-key.pem
generated
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEowIBAAKCAQEAtH0AkVFl7fouyTEeeWbqOsAUcRu0Zz7rTdi+yf9fIqOdr8Y5
|
||||||
|
vAGQ4gtCRZAh4e9mc724FQPnvlsQCGH4qEYrOCVsOIyvL+ZvKnGc0tBiTUzETj4m
|
||||||
|
UIuwPNbQG61dNFze3eT7JiCdgX+F2yVjMt9QrJqBZaHkTHe20S8cAyG9KqkWsISr
|
||||||
|
FnX2Qf3PcBiph5XoudAez15PpKCp1XbC8F8bQmQ73P93zURxCpWbOJtDdORt/BXa
|
||||||
|
53Mz5v9KYnvO5yva55JS+7tbGDrpDs55zrVuYe/gODPg8czBNB0VOpOHfukL7pMQ
|
||||||
|
ZbBPd4B4cEbHoyLgxpag/g0cZNj3ZpoLJjx+fQIDAQABAoIBAG0UfxtUTn4dDdma
|
||||||
|
TgihIj6Ph8s0Kzua0yshK215YU3WBJ8O9iWh7KYwl8Ti7xdVUF3y8yYATjbFYlMu
|
||||||
|
otFQVx5/v4ANxnL0mYrVTyo5tq9xDdMbzJwxUDn0uaGAjSvwVOFWWlMYsxhoscVY
|
||||||
|
OzOrs14dosaBqTBtyZdzGULrSSBWPCBlucRcvTV/eZwgYrYJ3bG66ZTfdc930KPj
|
||||||
|
nfkWrsAWmPz8irHoWQ2OX+ZJTprVYRYIZXqpFn3zuwmhpJkZUVULMMk6LFBKDmBT
|
||||||
|
F2+b4h49P+oNJ+6CRoOERHYq2k1MmYBcu1z8lMjdfRGUDdK4vS9pcqhBXJJg1vU9
|
||||||
|
APRtfiECgYEA6Y3LqQJLkUI0w6g/9T+XyzUoi0aUfH6PT81XnGYqJxTBHinZvgML
|
||||||
|
mF3qtZ0bHGwEoAsyhSgDkeCawE/E7Phd+B6aku2QMVm8GHygZg0Pbao4cxXv+CF3
|
||||||
|
i1Lo7n3zY0kTVrjsvDRsDDESmRK4Ea48fJwOfUEtfG6VDtwmZAe8chcCgYEAxdWd
|
||||||
|
sWcc45ARi2vY6yb5Ysgt/g0z26KyQydF+GMWIz1FDfUxXJ/axdCovd3VIHDvItJE
|
||||||
|
n9LjFiobkyOKX99ou1foWwsmhn11duVrF7hsVrE0nsbd4RX3sTbqXa9x3GN/ujFr
|
||||||
|
0xHUTmiXt3Qyn/076jBiLGnbtzSxJ/IZIEI9VIsCgYEAketHnTaT5BOLR9ss6ptq
|
||||||
|
yUlTJYFZcFbaTy+qV0r1dyleZuwa4L6iVfYHmKSptZ4/XYbhb5RKdq/vv8uW679Z
|
||||||
|
ZpYoWTgX6N15yYrD5D6wrwG09yJzpYGzYNbSNX93u0aC0KIFNqlCAHQAfKbXXiSQ
|
||||||
|
IgKWgudf9ehZNMmTKtgygs0CgYAoTV9Fr7Lj7QqV84+KQDNX2137PmdNHDTil1Ka
|
||||||
|
ylzNKwMxV70JmIsx91MY8uMjK76bwmg2gvi+IC/j5r6ez11/pOXx/jCH/3D5mr0Z
|
||||||
|
ZPm1I36LxgmXfCkskfpmwYIZmq9/l+fWZPByVL5roiFaFHWrPNYTJDGdff+FGr3h
|
||||||
|
o3zpBwKBgDY1sih/nY+6rwOP+DcabGK9KFFKLXsoJrXobEniLxp7oFaGN2GkmKvN
|
||||||
|
NajCs5pr3wfb4LrVrsNvERnUsUXWg6ReLqfWbT4bmjzE2iJ3IbtVQ5M4kl6YrbdZ
|
||||||
|
PMgWoLCqnoo8NoGBtmVMWhaXNJvVZPgZHk33T5F0Cg6PKNdHDchH
|
||||||
|
-----END RSA PRIVATE KEY-----
|
|
@ -0,0 +1,70 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"crypto/tls"
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
//"log"
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
MQTT "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
//MQTT.DEBUG = log.New(os.Stdout, "", 0)
|
||||||
|
//MQTT.ERROR = log.New(os.Stdout, "", 0)
|
||||||
|
stdin := bufio.NewReader(os.Stdin)
|
||||||
|
hostname, _ := os.Hostname()
|
||||||
|
|
||||||
|
server := flag.String("server", "tcp://127.0.0.1:1883", "The full URL of the MQTT server to connect to")
|
||||||
|
topic := flag.String("topic", hostname, "Topic to publish the messages on")
|
||||||
|
qos := flag.Int("qos", 0, "The QoS to send the messages at")
|
||||||
|
retained := flag.Bool("retained", false, "Are the messages sent with the retained flag")
|
||||||
|
clientid := flag.String("clientid", hostname+strconv.Itoa(time.Now().Second()), "A clientid for the connection")
|
||||||
|
username := flag.String("username", "", "A username to authenticate to the MQTT server")
|
||||||
|
password := flag.String("password", "", "Password to match username")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
connOpts := MQTT.NewClientOptions().AddBroker(*server).SetClientID(*clientid).SetCleanSession(true)
|
||||||
|
if *username != "" {
|
||||||
|
connOpts.SetUsername(*username)
|
||||||
|
if *password != "" {
|
||||||
|
connOpts.SetPassword(*password)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tlsConfig := &tls.Config{InsecureSkipVerify: true, ClientAuth: tls.NoClientCert}
|
||||||
|
connOpts.SetTLSConfig(tlsConfig)
|
||||||
|
|
||||||
|
client := MQTT.NewClient(connOpts)
|
||||||
|
if token := client.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
fmt.Println(token.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Printf("Connected to %s\n", *server)
|
||||||
|
|
||||||
|
for {
|
||||||
|
message, err := stdin.ReadString('\n')
|
||||||
|
if err == io.EOF {
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
client.Publish(*topic, byte(*qos), *retained, message)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,85 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
//"log"
|
||||||
|
"os"
|
||||||
|
"os/signal"
|
||||||
|
"strconv"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
MQTT "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
)
|
||||||
|
|
||||||
|
func onMessageReceived(client MQTT.Client, message MQTT.Message) {
|
||||||
|
fmt.Printf("Received message on topic: %s\nMessage: %s\n", message.Topic(), message.Payload())
|
||||||
|
}
|
||||||
|
|
||||||
|
var i int64
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
//MQTT.DEBUG = log.New(os.Stdout, "", 0)
|
||||||
|
//MQTT.ERROR = log.New(os.Stdout, "", 0)
|
||||||
|
c := make(chan os.Signal, 1)
|
||||||
|
i = 0
|
||||||
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
||||||
|
go func() {
|
||||||
|
<-c
|
||||||
|
fmt.Println("signal received, exiting")
|
||||||
|
os.Exit(0)
|
||||||
|
}()
|
||||||
|
|
||||||
|
hostname, _ := os.Hostname()
|
||||||
|
|
||||||
|
server := flag.String("server", "tcp://127.0.0.1:1883", "The full url of the MQTT server to connect to ex: tcp://127.0.0.1:1883")
|
||||||
|
topic := flag.String("topic", "#", "Topic to subscribe to")
|
||||||
|
qos := flag.Int("qos", 0, "The QoS to subscribe to messages at")
|
||||||
|
clientid := flag.String("clientid", hostname+strconv.Itoa(time.Now().Second()), "A clientid for the connection")
|
||||||
|
username := flag.String("username", "", "A username to authenticate to the MQTT server")
|
||||||
|
password := flag.String("password", "", "Password to match username")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
connOpts := &MQTT.ClientOptions{
|
||||||
|
ClientID: *clientid,
|
||||||
|
CleanSession: true,
|
||||||
|
Username: *username,
|
||||||
|
Password: *password,
|
||||||
|
MaxReconnectInterval: 1 * time.Second,
|
||||||
|
KeepAlive: 30 * time.Second,
|
||||||
|
TLSConfig: tls.Config{InsecureSkipVerify: true, ClientAuth: tls.NoClientCert},
|
||||||
|
}
|
||||||
|
connOpts.AddBroker(*server)
|
||||||
|
connOpts.OnConnect = func(c MQTT.Client) {
|
||||||
|
if token := c.Subscribe(*topic, byte(*qos), onMessageReceived); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
client := MQTT.NewClient(connOpts)
|
||||||
|
if token := client.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
panic(token.Error())
|
||||||
|
} else {
|
||||||
|
fmt.Printf("Connected to %s\n", *server)
|
||||||
|
}
|
||||||
|
|
||||||
|
for {
|
||||||
|
time.Sleep(1 * time.Second)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
type component string
|
||||||
|
|
||||||
|
// Component names for debug output
|
||||||
|
const (
|
||||||
|
NET component = "[net] "
|
||||||
|
PNG component = "[pinger] "
|
||||||
|
CLI component = "[client] "
|
||||||
|
DEC component = "[decode] "
|
||||||
|
MES component = "[message] "
|
||||||
|
STR component = "[store] "
|
||||||
|
MID component = "[msgids] "
|
||||||
|
TST component = "[test] "
|
||||||
|
STA component = "[state] "
|
||||||
|
ERR component = "[error] "
|
||||||
|
)
|
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
Eclipse Distribution License - v 1.0
|
||||||
|
|
||||||
|
Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
|
||||||
|
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
Eclipse Public License - v 1.0
|
||||||
|
|
||||||
|
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
|
||||||
|
|
||||||
|
1. DEFINITIONS
|
||||||
|
|
||||||
|
"Contribution" means:
|
||||||
|
|
||||||
|
a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
|
||||||
|
b) in the case of each subsequent Contributor:
|
||||||
|
i) changes to the Program, and
|
||||||
|
ii) additions to the Program;
|
||||||
|
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
|
||||||
|
"Contributor" means any person or entity that distributes the Program.
|
||||||
|
|
||||||
|
"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
|
||||||
|
|
||||||
|
"Program" means the Contributions distributed in accordance with this Agreement.
|
||||||
|
|
||||||
|
"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
|
||||||
|
|
||||||
|
2. GRANT OF RIGHTS
|
||||||
|
|
||||||
|
a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
|
||||||
|
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
|
||||||
|
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
|
||||||
|
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
|
||||||
|
3. REQUIREMENTS
|
||||||
|
|
||||||
|
A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
|
||||||
|
|
||||||
|
a) it complies with the terms and conditions of this Agreement; and
|
||||||
|
b) its license agreement:
|
||||||
|
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
|
||||||
|
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
|
||||||
|
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
|
||||||
|
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
|
||||||
|
When the Program is made available in source code form:
|
||||||
|
|
||||||
|
a) it must be made available under this Agreement; and
|
||||||
|
b) a copy of this Agreement must be included with each copy of the Program.
|
||||||
|
Contributors may not remove or alter any copyright notices contained within the Program.
|
||||||
|
|
||||||
|
Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.
|
||||||
|
|
||||||
|
4. COMMERCIAL DISTRIBUTION
|
||||||
|
|
||||||
|
Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
|
||||||
|
|
||||||
|
For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
|
||||||
|
|
||||||
|
5. NO WARRANTY
|
||||||
|
|
||||||
|
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
|
||||||
|
|
||||||
|
6. DISCLAIMER OF LIABILITY
|
||||||
|
|
||||||
|
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
7. GENERAL
|
||||||
|
|
||||||
|
If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
||||||
|
|
||||||
|
If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
|
||||||
|
|
||||||
|
All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
|
||||||
|
|
||||||
|
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.
|
|
@ -0,0 +1,235 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"path"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
msgExt = ".msg"
|
||||||
|
tmpExt = ".tmp"
|
||||||
|
corruptExt = ".CORRUPT"
|
||||||
|
)
|
||||||
|
|
||||||
|
// FileStore implements the store interface using the filesystem to provide
|
||||||
|
// true persistence, even across client failure. This is designed to use a
|
||||||
|
// single directory per running client. If you are running multiple clients
|
||||||
|
// on the same filesystem, you will need to be careful to specify unique
|
||||||
|
// store directories for each.
|
||||||
|
type FileStore struct {
|
||||||
|
sync.RWMutex
|
||||||
|
directory string
|
||||||
|
opened bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewFileStore will create a new FileStore which stores its messages in the
|
||||||
|
// directory provided.
|
||||||
|
func NewFileStore(directory string) *FileStore {
|
||||||
|
store := &FileStore{
|
||||||
|
directory: directory,
|
||||||
|
opened: false,
|
||||||
|
}
|
||||||
|
return store
|
||||||
|
}
|
||||||
|
|
||||||
|
// Open will allow the FileStore to be used.
|
||||||
|
func (store *FileStore) Open() {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
// if no store directory was specified in ClientOpts, by default use the
|
||||||
|
// current working directory
|
||||||
|
if store.directory == "" {
|
||||||
|
store.directory, _ = os.Getwd()
|
||||||
|
}
|
||||||
|
|
||||||
|
// if store dir exists, great, otherwise, create it
|
||||||
|
if !exists(store.directory) {
|
||||||
|
perms := os.FileMode(0770)
|
||||||
|
merr := os.MkdirAll(store.directory, perms)
|
||||||
|
chkerr(merr)
|
||||||
|
}
|
||||||
|
store.opened = true
|
||||||
|
DEBUG.Println(STR, "store is opened at", store.directory)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close will disallow the FileStore from being used.
|
||||||
|
func (store *FileStore) Close() {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
store.opened = false
|
||||||
|
DEBUG.Println(STR, "store is closed")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Put will put a message into the store, associated with the provided
|
||||||
|
// key value.
|
||||||
|
func (store *FileStore) Put(key string, m packets.ControlPacket) {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use file store, but not open")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
full := fullpath(store.directory, key)
|
||||||
|
write(store.directory, key, m)
|
||||||
|
if !exists(full) {
|
||||||
|
ERROR.Println(STR, "file not created:", full)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get will retrieve a message from the store, the one associated with
|
||||||
|
// the provided key value.
|
||||||
|
func (store *FileStore) Get(key string) packets.ControlPacket {
|
||||||
|
store.RLock()
|
||||||
|
defer store.RUnlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use file store, but not open")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
filepath := fullpath(store.directory, key)
|
||||||
|
if !exists(filepath) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
mfile, oerr := os.Open(filepath)
|
||||||
|
chkerr(oerr)
|
||||||
|
msg, rerr := packets.ReadPacket(mfile)
|
||||||
|
chkerr(mfile.Close())
|
||||||
|
|
||||||
|
// Message was unreadable, return nil
|
||||||
|
if rerr != nil {
|
||||||
|
newpath := corruptpath(store.directory, key)
|
||||||
|
WARN.Println(STR, "corrupted file detected:", rerr.Error(), "archived at:", newpath)
|
||||||
|
os.Rename(filepath, newpath)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return msg
|
||||||
|
}
|
||||||
|
|
||||||
|
// All will provide a list of all of the keys associated with messages
|
||||||
|
// currenly residing in the FileStore.
|
||||||
|
func (store *FileStore) All() []string {
|
||||||
|
store.RLock()
|
||||||
|
defer store.RUnlock()
|
||||||
|
return store.all()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Del will remove the persisted message associated with the provided
|
||||||
|
// key from the FileStore.
|
||||||
|
func (store *FileStore) Del(key string) {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
store.del(key)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset will remove all persisted messages from the FileStore.
|
||||||
|
func (store *FileStore) Reset() {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
WARN.Println(STR, "FileStore Reset")
|
||||||
|
for _, key := range store.all() {
|
||||||
|
store.del(key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// lockless
|
||||||
|
func (store *FileStore) all() []string {
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use file store, but not open")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
keys := []string{}
|
||||||
|
files, rderr := ioutil.ReadDir(store.directory)
|
||||||
|
chkerr(rderr)
|
||||||
|
for _, f := range files {
|
||||||
|
DEBUG.Println(STR, "file in All():", f.Name())
|
||||||
|
name := f.Name()
|
||||||
|
if name[len(name)-4:len(name)] != msgExt {
|
||||||
|
DEBUG.Println(STR, "skipping file, doesn't have right extension: ", name)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
key := name[0 : len(name)-4] // remove file extension
|
||||||
|
keys = append(keys, key)
|
||||||
|
}
|
||||||
|
return keys
|
||||||
|
}
|
||||||
|
|
||||||
|
// lockless
|
||||||
|
func (store *FileStore) del(key string) {
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use file store, but not open")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
DEBUG.Println(STR, "store del filepath:", store.directory)
|
||||||
|
DEBUG.Println(STR, "store delete key:", key)
|
||||||
|
filepath := fullpath(store.directory, key)
|
||||||
|
DEBUG.Println(STR, "path of deletion:", filepath)
|
||||||
|
if !exists(filepath) {
|
||||||
|
WARN.Println(STR, "store could not delete key:", key)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
rerr := os.Remove(filepath)
|
||||||
|
chkerr(rerr)
|
||||||
|
DEBUG.Println(STR, "del msg:", key)
|
||||||
|
if exists(filepath) {
|
||||||
|
ERROR.Println(STR, "file not deleted:", filepath)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func fullpath(store string, key string) string {
|
||||||
|
p := path.Join(store, key+msgExt)
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func tmppath(store string, key string) string {
|
||||||
|
p := path.Join(store, key+tmpExt)
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func corruptpath(store string, key string) string {
|
||||||
|
p := path.Join(store, key+corruptExt)
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
// create file called "X.[messageid].tmp" located in the store
|
||||||
|
// the contents of the file is the bytes of the message, then
|
||||||
|
// rename it to "X.[messageid].msg", overwriting any existing
|
||||||
|
// message with the same id
|
||||||
|
// X will be 'i' for inbound messages, and O for outbound messages
|
||||||
|
func write(store, key string, m packets.ControlPacket) {
|
||||||
|
temppath := tmppath(store, key)
|
||||||
|
f, err := os.Create(temppath)
|
||||||
|
chkerr(err)
|
||||||
|
werr := m.Write(f)
|
||||||
|
chkerr(werr)
|
||||||
|
cerr := f.Close()
|
||||||
|
chkerr(cerr)
|
||||||
|
rerr := os.Rename(temppath, fullpath(store, key))
|
||||||
|
chkerr(rerr)
|
||||||
|
}
|
||||||
|
|
||||||
|
func exists(file string) bool {
|
||||||
|
if _, err := os.Stat(file); err != nil {
|
||||||
|
if os.IsNotExist(err) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
chkerr(err)
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
|
@ -0,0 +1,74 @@
|
||||||
|
FVT Instructions
|
||||||
|
================
|
||||||
|
|
||||||
|
The FVT tests are currenly only supported by [IBM MessageSight](http://www-03.ibm.com/software/products/us/en/messagesight/).
|
||||||
|
|
||||||
|
Support for [mosquitto](http://mosquitto.org/) and [IBM Really Small Message Broker](https://www.ibm.com/developerworks/community/groups/service/html/communityview?communityUuid=d5bedadd-e46f-4c97-af89-22d65ffee070) might be added in the future.
|
||||||
|
|
||||||
|
|
||||||
|
IBM MessageSight Configuration
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
The IBM MessageSight Virtual Appliance can be downloaded here:
|
||||||
|
[Download](http://www-933.ibm.com/support/fixcentral/swg/selectFixes?parent=ibm~Other+software&product=ibm/Other+software/MessageSight&function=fixId&fixids=1.0.0.1-IMA-DeveloperImage&includeSupersedes=0 "IBM MessageSight")
|
||||||
|
|
||||||
|
There is a nice blog post about it here:
|
||||||
|
[Blog](https://www.ibm.com/developerworks/community/blogs/c565c720-fe84-4f63-873f-607d87787327/entry/ibm_messagesight_for_developers_is_here?lang=en "Blog")
|
||||||
|
|
||||||
|
|
||||||
|
The virtual appliance must be installed into a virtual machine like
|
||||||
|
Oracle VirtualBox or VMWare Player. (Follow the instructions that come
|
||||||
|
with the download).
|
||||||
|
|
||||||
|
Next, copy your authorized keys (basically a file containing the public
|
||||||
|
rsa key of your own computer) onto the appliance to enable passwordless ssh.
|
||||||
|
|
||||||
|
For example,
|
||||||
|
|
||||||
|
Console> user sshkey add "scp://user@host:~/.ssh/authorized_keys"
|
||||||
|
|
||||||
|
More information can be found in the IBM MessageSight InfoCenter:
|
||||||
|
[InfoCenter](https://infocenters.hursley.ibm.com/ism/v1/help/index.jsp "InfoCenter")
|
||||||
|
|
||||||
|
Now, execute the script setup_IMA.sh to create the objects necessary
|
||||||
|
to configure the server for the unit test cases provided.
|
||||||
|
|
||||||
|
For example,
|
||||||
|
|
||||||
|
./setup_IMA.sh
|
||||||
|
|
||||||
|
You should now be able to view the objects on your server:
|
||||||
|
|
||||||
|
Console> imaserver show Endpoint Name=GoMqttEP1
|
||||||
|
Name = GoMqttEP1
|
||||||
|
Enabled = True
|
||||||
|
Port = 17001
|
||||||
|
Protocol = MQTT
|
||||||
|
Interface = all
|
||||||
|
SecurityProfile =
|
||||||
|
ConnectionPolicies = GoMqttCP1
|
||||||
|
MessagingPolicies = GoMqttMP1
|
||||||
|
MaxMessageSize = 1024KB
|
||||||
|
MessageHub = GoMqttTestHub
|
||||||
|
Description =
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
RSMB Configuration
|
||||||
|
------------------
|
||||||
|
Wait for SSL support?
|
||||||
|
|
||||||
|
|
||||||
|
Mosquitto Configuration
|
||||||
|
-----------------------
|
||||||
|
Launch mosquitto from the fvt directory, specifiying mosquitto.cfg as config file
|
||||||
|
|
||||||
|
``ex: /usr/bin/mosquitto -c ./mosquitto.cfg``
|
||||||
|
|
||||||
|
Note: Mosquitto requires SSL 1.1 or better, while Go 1.1.2 supports
|
||||||
|
only SSL v1.0. However, Go 1.2+ supports SSL v1.1 and SSL v1.2.
|
||||||
|
|
||||||
|
|
||||||
|
Other Notes
|
||||||
|
-----------
|
||||||
|
Go 1.1.2 does not support intermediate certificates, however Go 1.2+ does.
|
|
@ -0,0 +1,17 @@
|
||||||
|
allow_anonymous true
|
||||||
|
allow_duplicate_messages false
|
||||||
|
connection_messages true
|
||||||
|
log_dest stdout
|
||||||
|
log_timestamp true
|
||||||
|
log_type all
|
||||||
|
persistence false
|
||||||
|
bind_address 127.0.0.1
|
||||||
|
|
||||||
|
listener 17001
|
||||||
|
listener 17002
|
||||||
|
listener 17003
|
||||||
|
listener 17004
|
||||||
|
|
||||||
|
#capath ../samples/samplecerts
|
||||||
|
#certfile ../samples/samplecerts/server-crt.pem
|
||||||
|
#keyfile ../samples/samplecerts/server-key.pem
|
|
@ -0,0 +1,8 @@
|
||||||
|
allow_anonymous false
|
||||||
|
bind_address 127.0.0.1
|
||||||
|
connection_messages true
|
||||||
|
log_level detail
|
||||||
|
|
||||||
|
listener 17001
|
||||||
|
#listener 17003
|
||||||
|
#listener 17004
|
|
@ -0,0 +1,111 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#######################################################################
|
||||||
|
# This script is for configuring your IBM Messaging Appliance for use #
|
||||||
|
# as an mqtt test server for testing the go-mqtt open source client. #
|
||||||
|
# It creates the Policies and Endpoints necessary to test particular #
|
||||||
|
# features of the client, such as IPv6, SSL, and other things #
|
||||||
|
# #
|
||||||
|
# You do not need this script for any other purpose. #
|
||||||
|
#######################################################################
|
||||||
|
|
||||||
|
# Edit options to match your configuration
|
||||||
|
IMA_HOST=9.41.55.184
|
||||||
|
IMA_USER=admin
|
||||||
|
HOST=9.41.55.146
|
||||||
|
USER=root
|
||||||
|
CERTDIR=~/GO/src/github.com/shoenig/go-mqtt/samples/samplecerts
|
||||||
|
|
||||||
|
echo 'Configuring your IBM Messaging Appliance for testing go-mqtt'
|
||||||
|
echo 'IMA_HOST: ' $IMA_HOST
|
||||||
|
|
||||||
|
|
||||||
|
function ima {
|
||||||
|
reply=`ssh $IMA_USER@$IMA_HOST imaserver $@`
|
||||||
|
}
|
||||||
|
|
||||||
|
function imp {
|
||||||
|
reply=`ssh $IMA_USER@$IMA_HOST file get $@`
|
||||||
|
}
|
||||||
|
|
||||||
|
ima create MessageHub Name=GoMqttTestHub
|
||||||
|
|
||||||
|
# Config "1" is a basic, open endpoint, port 17001
|
||||||
|
ima create MessagingPolicy \
|
||||||
|
Name=GoMqttMP1 \
|
||||||
|
Protocol=MQTT \
|
||||||
|
ActionList=Publish,Subscribe \
|
||||||
|
MaxMessages=100000 \
|
||||||
|
DestinationType=Topic \
|
||||||
|
Destination=*
|
||||||
|
|
||||||
|
ima create ConnectionPolicy \
|
||||||
|
Name=GoMqttCP1 \
|
||||||
|
Protocol=MQTT
|
||||||
|
|
||||||
|
ima create Endpoint \
|
||||||
|
Name=GoMqttEP1 \
|
||||||
|
Protocol=MQTT \
|
||||||
|
MessageHub=GoMqttTestHub \
|
||||||
|
ConnectionPolicies=GoMqttCP1 \
|
||||||
|
MessagingPolicies=GoMqttMP1 \
|
||||||
|
Port=17001
|
||||||
|
|
||||||
|
# Config "2" is IPv6 only , port 17002
|
||||||
|
|
||||||
|
# Config "3" is for authorization failures, port 17003
|
||||||
|
ima create ConnectionPolicy \
|
||||||
|
Name=GoMqttCP2 \
|
||||||
|
Protocol=MQTT \
|
||||||
|
ClientID=GoMqttClient
|
||||||
|
|
||||||
|
ima create Endpoint \
|
||||||
|
Name=GoMqttEP3 \
|
||||||
|
Protocol=MQTT \
|
||||||
|
MessageHub=GoMqttTestHub \
|
||||||
|
ConnectionPolicies=GoMqttCP2 \
|
||||||
|
MessagingPolicies=GoMqttMP1 \
|
||||||
|
Port=17003
|
||||||
|
|
||||||
|
# Config "4" is secure connections, port 17004
|
||||||
|
imp scp://$USER@$HOST:${CERTDIR}/server-crt.pem .
|
||||||
|
imp scp://$USER@$HOST:${CERTDIR}/server-key.pem .
|
||||||
|
imp scp://$USER@$HOST:${CERTDIR}/rootCA-crt.pem .
|
||||||
|
imp scp://$USER@$HOST:${CERTDIR}/intermediateCA-crt.pem .
|
||||||
|
|
||||||
|
ima apply Certificate \
|
||||||
|
CertFileName=server-crt.pem \
|
||||||
|
"CertFilePassword=" \
|
||||||
|
KeyFileName=server-key.pem \
|
||||||
|
"KeyFilePassword="
|
||||||
|
|
||||||
|
ima create CertificateProfile \
|
||||||
|
Name=GoMqttCertProf \
|
||||||
|
Certificate=server-crt.pem \
|
||||||
|
Key=server-key.pem
|
||||||
|
|
||||||
|
ima create SecurityProfile \
|
||||||
|
Name=GoMqttSecProf \
|
||||||
|
MinimumProtocolMethod=SSLv3 \
|
||||||
|
UseClientCertificate=True \
|
||||||
|
UsePasswordAuthentication=False \
|
||||||
|
Ciphers=Fast \
|
||||||
|
CertificateProfile=GoMqttCertProf
|
||||||
|
|
||||||
|
ima apply Certificate \
|
||||||
|
TrustedCertificate=rootCA-crt.pem \
|
||||||
|
SecurityProfileName=GoMqttSecProf
|
||||||
|
|
||||||
|
ima apply Certificate \
|
||||||
|
TrustedCertificate=intermediateCA-crt.pem \
|
||||||
|
SecurityProfileName=GoMqttSecProf
|
||||||
|
|
||||||
|
ima create Endpoint \
|
||||||
|
Name=GoMqttEP4 \
|
||||||
|
Port=17004 \
|
||||||
|
MessageHub=GoMqttTestHub \
|
||||||
|
ConnectionPolicies=GoMqttCP1 \
|
||||||
|
MessagingPolicies=GoMqttMP1 \
|
||||||
|
SecurityProfile=GoMqttSecProf \
|
||||||
|
Protocol=MQTT
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,544 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
/**********************************************
|
||||||
|
**** A mock store implementation for test ****
|
||||||
|
**********************************************/
|
||||||
|
|
||||||
|
type TestStore struct {
|
||||||
|
mput []uint16
|
||||||
|
mget []uint16
|
||||||
|
mdel []uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) Open() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) Close() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) Put(key string, m packets.ControlPacket) {
|
||||||
|
ts.mput = append(ts.mput, m.Details().MessageID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) Get(key string) packets.ControlPacket {
|
||||||
|
mid := mIDFromKey(key)
|
||||||
|
ts.mget = append(ts.mget, mid)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) All() []string {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) Del(key string) {
|
||||||
|
mid := mIDFromKey(key)
|
||||||
|
ts.mdel = append(ts.mdel, mid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ts *TestStore) Reset() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************
|
||||||
|
**** FileStore ****
|
||||||
|
*******************/
|
||||||
|
|
||||||
|
func Test_NewFileStore(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_new"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
if f.opened {
|
||||||
|
t.Fatalf("filestore was opened without opening it")
|
||||||
|
}
|
||||||
|
if f.directory != storedir {
|
||||||
|
t.Fatalf("filestore directory is wrong")
|
||||||
|
}
|
||||||
|
// storedir might exist or might not, just like with a real client
|
||||||
|
// the point is, we don't care, we just want it to exist after it is
|
||||||
|
// opened
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_Open(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_open"
|
||||||
|
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
if !f.opened {
|
||||||
|
t.Fatalf("filestore was not set open")
|
||||||
|
}
|
||||||
|
if f.directory != storedir {
|
||||||
|
t.Fatalf("filestore directory is wrong")
|
||||||
|
}
|
||||||
|
if !exists(storedir) {
|
||||||
|
t.Fatalf("filestore directory does not exst after opening it")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_Close(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_unopen"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
if !f.opened {
|
||||||
|
t.Fatalf("filestore was not set open")
|
||||||
|
}
|
||||||
|
if f.directory != storedir {
|
||||||
|
t.Fatalf("filestore directory is wrong")
|
||||||
|
}
|
||||||
|
if !exists(storedir) {
|
||||||
|
t.Fatalf("filestore directory does not exst after opening it")
|
||||||
|
}
|
||||||
|
|
||||||
|
f.Close()
|
||||||
|
if f.opened {
|
||||||
|
t.Fatalf("filestore was still open after unopen")
|
||||||
|
}
|
||||||
|
if !exists(storedir) {
|
||||||
|
t.Fatalf("filestore was deleted after unopen")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_write(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_write"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 91
|
||||||
|
|
||||||
|
key := inboundKeyFromMID(pm.MessageID)
|
||||||
|
f.Put(key, pm)
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.91.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_Get(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_get"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "/a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 120
|
||||||
|
|
||||||
|
key := outboundKeyFromMID(pm.MessageID)
|
||||||
|
f.Put(key, pm)
|
||||||
|
|
||||||
|
if !exists(storedir + "/o.120.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
exp := []byte{
|
||||||
|
/* msg type */
|
||||||
|
0x32, // qos 1
|
||||||
|
|
||||||
|
/* remlen */
|
||||||
|
0x0d,
|
||||||
|
|
||||||
|
/* topic, msg id in varheader */
|
||||||
|
0x00, // length of topic
|
||||||
|
0x06,
|
||||||
|
0x2F, // /
|
||||||
|
0x61, // a
|
||||||
|
0x2F, // /
|
||||||
|
0x62, // b
|
||||||
|
0x2F, // /
|
||||||
|
0x63, // c
|
||||||
|
|
||||||
|
/* msg id (is always 2 bytes) */
|
||||||
|
0x00,
|
||||||
|
0x78,
|
||||||
|
|
||||||
|
/*payload */
|
||||||
|
0xBE,
|
||||||
|
0xEF,
|
||||||
|
0xED,
|
||||||
|
}
|
||||||
|
|
||||||
|
m := f.Get(key)
|
||||||
|
|
||||||
|
if m == nil {
|
||||||
|
t.Fatalf("message not retreived from store")
|
||||||
|
}
|
||||||
|
|
||||||
|
var msg bytes.Buffer
|
||||||
|
m.Write(&msg)
|
||||||
|
if !bytes.Equal(exp, msg.Bytes()) {
|
||||||
|
t.Fatal("message from store not same as what went in", msg.Bytes())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_Get_Corrupted(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_get_error"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "/a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 120
|
||||||
|
|
||||||
|
key := outboundKeyFromMID(pm.MessageID)
|
||||||
|
|
||||||
|
exp := []byte{
|
||||||
|
/* msg type */
|
||||||
|
0x32, // qos 1
|
||||||
|
|
||||||
|
/* remlen */
|
||||||
|
0x0d,
|
||||||
|
|
||||||
|
/* topic, msg id in varheader */
|
||||||
|
0x00, // length of topic
|
||||||
|
0x06,
|
||||||
|
// Oh no the rest is gone!
|
||||||
|
}
|
||||||
|
|
||||||
|
file, err := os.Create(storedir + "/o.120.msg")
|
||||||
|
chkerr(err)
|
||||||
|
_, err = file.Write(exp)
|
||||||
|
chkerr(err)
|
||||||
|
chkerr(file.Close())
|
||||||
|
|
||||||
|
if !exists(storedir + "/o.120.msg") {
|
||||||
|
t.Fatalf("corrupt message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
m := f.Get(key)
|
||||||
|
|
||||||
|
if m != nil {
|
||||||
|
t.Fatalf("corrupted message retrieved from store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists(storedir + "/o.120.msg") {
|
||||||
|
t.Fatalf("corrupt message left in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !exists(storedir + "/o.120.CORRUPT") {
|
||||||
|
t.Fatalf("corrupt message not archived")
|
||||||
|
}
|
||||||
|
|
||||||
|
contents, err := ioutil.ReadFile(storedir + "/o.120.CORRUPT")
|
||||||
|
chkerr(err)
|
||||||
|
|
||||||
|
if !bytes.Equal(exp, contents) {
|
||||||
|
t.Fatal("archived corrupted bytes not the same as those saved", exp, contents)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_All(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_all"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 2
|
||||||
|
pm.TopicName = "/t/r/v"
|
||||||
|
pm.Payload = []byte{0x01, 0x02}
|
||||||
|
pm.MessageID = 121
|
||||||
|
|
||||||
|
key := outboundKeyFromMID(pm.MessageID)
|
||||||
|
f.Put(key, pm)
|
||||||
|
|
||||||
|
keys := f.All()
|
||||||
|
if len(keys) != 1 {
|
||||||
|
t.Logf("Keys: %s", keys)
|
||||||
|
t.Fatalf("FileStore.All does not have the messages")
|
||||||
|
}
|
||||||
|
|
||||||
|
if keys[0] != "o.121" {
|
||||||
|
t.Fatalf("FileStore.All has wrong key")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_Del(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_del"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 17
|
||||||
|
|
||||||
|
key := inboundKeyFromMID(pm.MessageID)
|
||||||
|
f.Put(key, pm)
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.17.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
f.Del(key)
|
||||||
|
|
||||||
|
if exists(storedir + "/i.17.msg") {
|
||||||
|
t.Fatalf("message still exists after deletion")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_FileStore_Reset(t *testing.T) {
|
||||||
|
storedir := "/tmp/TestStore/_reset"
|
||||||
|
f := NewFileStore(storedir)
|
||||||
|
f.Open()
|
||||||
|
|
||||||
|
pm1 := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm1.Qos = 1
|
||||||
|
pm1.TopicName = "/q/w/e"
|
||||||
|
pm1.Payload = []byte{0xBB}
|
||||||
|
pm1.MessageID = 71
|
||||||
|
key1 := inboundKeyFromMID(pm1.MessageID)
|
||||||
|
f.Put(key1, pm1)
|
||||||
|
|
||||||
|
pm2 := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm2.Qos = 1
|
||||||
|
pm2.TopicName = "/q/w/e"
|
||||||
|
pm2.Payload = []byte{0xBB}
|
||||||
|
pm2.MessageID = 72
|
||||||
|
key2 := inboundKeyFromMID(pm2.MessageID)
|
||||||
|
f.Put(key2, pm2)
|
||||||
|
|
||||||
|
pm3 := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm3.Qos = 1
|
||||||
|
pm3.TopicName = "/q/w/e"
|
||||||
|
pm3.Payload = []byte{0xBB}
|
||||||
|
pm3.MessageID = 73
|
||||||
|
key3 := inboundKeyFromMID(pm3.MessageID)
|
||||||
|
f.Put(key3, pm3)
|
||||||
|
|
||||||
|
pm4 := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm4.Qos = 1
|
||||||
|
pm4.TopicName = "/q/w/e"
|
||||||
|
pm4.Payload = []byte{0xBB}
|
||||||
|
pm4.MessageID = 74
|
||||||
|
key4 := inboundKeyFromMID(pm4.MessageID)
|
||||||
|
f.Put(key4, pm4)
|
||||||
|
|
||||||
|
pm5 := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm5.Qos = 1
|
||||||
|
pm5.TopicName = "/q/w/e"
|
||||||
|
pm5.Payload = []byte{0xBB}
|
||||||
|
pm5.MessageID = 75
|
||||||
|
key5 := inboundKeyFromMID(pm5.MessageID)
|
||||||
|
f.Put(key5, pm5)
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.71.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.72.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.73.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.74.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !exists(storedir + "/i.75.msg") {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
f.Reset()
|
||||||
|
|
||||||
|
if exists(storedir + "/i.71.msg") {
|
||||||
|
t.Fatalf("message still exists after reset")
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists(storedir + "/i.72.msg") {
|
||||||
|
t.Fatalf("message still exists after reset")
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists(storedir + "/i.73.msg") {
|
||||||
|
t.Fatalf("message still exists after reset")
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists(storedir + "/i.74.msg") {
|
||||||
|
t.Fatalf("message still exists after reset")
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists(storedir + "/i.75.msg") {
|
||||||
|
t.Fatalf("message still exists after reset")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************
|
||||||
|
*** MemoryStore ***
|
||||||
|
*******************/
|
||||||
|
|
||||||
|
func Test_NewMemoryStore(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
if m == nil {
|
||||||
|
t.Fatalf("MemoryStore could not be created")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MemoryStore_Open(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
m.Open()
|
||||||
|
if !m.opened {
|
||||||
|
t.Fatalf("MemoryStore was not set open")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MemoryStore_Close(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
m.Open()
|
||||||
|
if !m.opened {
|
||||||
|
t.Fatalf("MemoryStore was not set open")
|
||||||
|
}
|
||||||
|
|
||||||
|
m.Close()
|
||||||
|
if m.opened {
|
||||||
|
t.Fatalf("MemoryStore was still open after unopen")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MemoryStore_Reset(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
m.Open()
|
||||||
|
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 2
|
||||||
|
pm.TopicName = "/f/r/s"
|
||||||
|
pm.Payload = []byte{0xAB}
|
||||||
|
pm.MessageID = 81
|
||||||
|
|
||||||
|
key := outboundKeyFromMID(pm.MessageID)
|
||||||
|
m.Put(key, pm)
|
||||||
|
|
||||||
|
if len(m.messages) != 1 {
|
||||||
|
t.Fatalf("message not in memstore")
|
||||||
|
}
|
||||||
|
|
||||||
|
m.Reset()
|
||||||
|
|
||||||
|
if len(m.messages) != 0 {
|
||||||
|
t.Fatalf("reset did not clear memstore")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MemoryStore_write(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
m.Open()
|
||||||
|
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "/a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 91
|
||||||
|
key := inboundKeyFromMID(pm.MessageID)
|
||||||
|
m.Put(key, pm)
|
||||||
|
|
||||||
|
if len(m.messages) != 1 {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MemoryStore_Get(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
m.Open()
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "/a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 120
|
||||||
|
|
||||||
|
key := outboundKeyFromMID(pm.MessageID)
|
||||||
|
m.Put(key, pm)
|
||||||
|
|
||||||
|
if len(m.messages) != 1 {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
exp := []byte{
|
||||||
|
/* msg type */
|
||||||
|
0x32, // qos 1
|
||||||
|
|
||||||
|
/* remlen */
|
||||||
|
0x0d,
|
||||||
|
|
||||||
|
/* topic, msg id in varheader */
|
||||||
|
0x00, // length of topic
|
||||||
|
0x06,
|
||||||
|
0x2F, // /
|
||||||
|
0x61, // a
|
||||||
|
0x2F, // /
|
||||||
|
0x62, // b
|
||||||
|
0x2F, // /
|
||||||
|
0x63, // c
|
||||||
|
|
||||||
|
/* msg id (is always 2 bytes) */
|
||||||
|
0x00,
|
||||||
|
0x78,
|
||||||
|
|
||||||
|
/*payload */
|
||||||
|
0xBE,
|
||||||
|
0xEF,
|
||||||
|
0xED,
|
||||||
|
}
|
||||||
|
|
||||||
|
msg := m.Get(key)
|
||||||
|
|
||||||
|
if msg == nil {
|
||||||
|
t.Fatalf("message not retreived from store")
|
||||||
|
}
|
||||||
|
|
||||||
|
var buf bytes.Buffer
|
||||||
|
msg.Write(&buf)
|
||||||
|
if !bytes.Equal(exp, buf.Bytes()) {
|
||||||
|
t.Fatalf("message from store not same as what went in")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MemoryStore_Del(t *testing.T) {
|
||||||
|
m := NewMemoryStore()
|
||||||
|
m.Open()
|
||||||
|
|
||||||
|
pm := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pm.Qos = 1
|
||||||
|
pm.TopicName = "/a/b/c"
|
||||||
|
pm.Payload = []byte{0xBE, 0xEF, 0xED}
|
||||||
|
pm.MessageID = 17
|
||||||
|
|
||||||
|
key := outboundKeyFromMID(pm.MessageID)
|
||||||
|
|
||||||
|
m.Put(key, pm)
|
||||||
|
|
||||||
|
if len(m.messages) != 1 {
|
||||||
|
t.Fatalf("message not in store")
|
||||||
|
}
|
||||||
|
|
||||||
|
m.Del(key)
|
||||||
|
|
||||||
|
if len(m.messages) != 1 {
|
||||||
|
t.Fatalf("message still exists after deletion")
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import "os"
|
||||||
|
|
||||||
|
// Use setup_IMA.sh for IBM's MessageSight
|
||||||
|
// Use fvt/rsmb.cfg for IBM's Really Small Message Broker
|
||||||
|
// Use fvt/mosquitto.cfg for the open source Mosquitto project
|
||||||
|
|
||||||
|
var (
|
||||||
|
FVTAddr string
|
||||||
|
FVTTCP string
|
||||||
|
FVTSSL string
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
FVTAddr := os.Getenv("TEST_FVT_ADDR")
|
||||||
|
if FVTAddr == "" {
|
||||||
|
FVTAddr = "iot.eclipse.org"
|
||||||
|
}
|
||||||
|
FVTTCP = "tcp://" + FVTAddr + ":1883"
|
||||||
|
FVTSSL = "ssl://" + FVTAddr + ":8883"
|
||||||
|
}
|
|
@ -0,0 +1,138 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MemoryStore implements the store interface to provide a "persistence"
|
||||||
|
// mechanism wholly stored in memory. This is only useful for
|
||||||
|
// as long as the client instance exists.
|
||||||
|
type MemoryStore struct {
|
||||||
|
sync.RWMutex
|
||||||
|
messages map[string]packets.ControlPacket
|
||||||
|
opened bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewMemoryStore returns a pointer to a new instance of
|
||||||
|
// MemoryStore, the instance is not initialized and ready to
|
||||||
|
// use until Open() has been called on it.
|
||||||
|
func NewMemoryStore() *MemoryStore {
|
||||||
|
store := &MemoryStore{
|
||||||
|
messages: make(map[string]packets.ControlPacket),
|
||||||
|
opened: false,
|
||||||
|
}
|
||||||
|
return store
|
||||||
|
}
|
||||||
|
|
||||||
|
// Open initializes a MemoryStore instance.
|
||||||
|
func (store *MemoryStore) Open() {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
store.opened = true
|
||||||
|
DEBUG.Println(STR, "memorystore initialized")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Put takes a key and a pointer to a Message and stores the
|
||||||
|
// message.
|
||||||
|
func (store *MemoryStore) Put(key string, message packets.ControlPacket) {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use memory store, but not open")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
store.messages[key] = message
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get takes a key and looks in the store for a matching Message
|
||||||
|
// returning either the Message pointer or nil.
|
||||||
|
func (store *MemoryStore) Get(key string) packets.ControlPacket {
|
||||||
|
store.RLock()
|
||||||
|
defer store.RUnlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use memory store, but not open")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
mid := mIDFromKey(key)
|
||||||
|
m := store.messages[key]
|
||||||
|
if m == nil {
|
||||||
|
CRITICAL.Println(STR, "memorystore get: message", mid, "not found")
|
||||||
|
} else {
|
||||||
|
DEBUG.Println(STR, "memorystore get: message", mid, "found")
|
||||||
|
}
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
|
// All returns a slice of strings containing all the keys currently
|
||||||
|
// in the MemoryStore.
|
||||||
|
func (store *MemoryStore) All() []string {
|
||||||
|
store.RLock()
|
||||||
|
defer store.RUnlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use memory store, but not open")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
keys := []string{}
|
||||||
|
for k := range store.messages {
|
||||||
|
keys = append(keys, k)
|
||||||
|
}
|
||||||
|
return keys
|
||||||
|
}
|
||||||
|
|
||||||
|
// Del takes a key, searches the MemoryStore and if the key is found
|
||||||
|
// deletes the Message pointer associated with it.
|
||||||
|
func (store *MemoryStore) Del(key string) {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to use memory store, but not open")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
mid := mIDFromKey(key)
|
||||||
|
m := store.messages[key]
|
||||||
|
if m == nil {
|
||||||
|
WARN.Println(STR, "memorystore del: message", mid, "not found")
|
||||||
|
} else {
|
||||||
|
store.messages[key] = nil
|
||||||
|
DEBUG.Println(STR, "memorystore del: message", mid, "was deleted")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close will disallow modifications to the state of the store.
|
||||||
|
func (store *MemoryStore) Close() {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to close memory store, but not open")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
store.opened = false
|
||||||
|
DEBUG.Println(STR, "memorystore closed")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset eliminates all persisted message data in the store.
|
||||||
|
func (store *MemoryStore) Reset() {
|
||||||
|
store.Lock()
|
||||||
|
defer store.Unlock()
|
||||||
|
if !store.opened {
|
||||||
|
ERROR.Println(STR, "Trying to reset memory store, but not open")
|
||||||
|
}
|
||||||
|
store.messages = make(map[string]packets.ControlPacket)
|
||||||
|
WARN.Println(STR, "memorystore wiped")
|
||||||
|
}
|
|
@ -0,0 +1,104 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Message defines the externals that a message implementation must support
|
||||||
|
// these are received messages that are passed to the callbacks, not internal
|
||||||
|
// messages
|
||||||
|
type Message interface {
|
||||||
|
Duplicate() bool
|
||||||
|
Qos() byte
|
||||||
|
Retained() bool
|
||||||
|
Topic() string
|
||||||
|
MessageID() uint16
|
||||||
|
Payload() []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type message struct {
|
||||||
|
duplicate bool
|
||||||
|
qos byte
|
||||||
|
retained bool
|
||||||
|
topic string
|
||||||
|
messageID uint16
|
||||||
|
payload []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *message) Duplicate() bool {
|
||||||
|
return m.duplicate
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *message) Qos() byte {
|
||||||
|
return m.qos
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *message) Retained() bool {
|
||||||
|
return m.retained
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *message) Topic() string {
|
||||||
|
return m.topic
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *message) MessageID() uint16 {
|
||||||
|
return m.messageID
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *message) Payload() []byte {
|
||||||
|
return m.payload
|
||||||
|
}
|
||||||
|
|
||||||
|
func messageFromPublish(p *packets.PublishPacket) Message {
|
||||||
|
return &message{
|
||||||
|
duplicate: p.Dup,
|
||||||
|
qos: p.Qos,
|
||||||
|
retained: p.Retain,
|
||||||
|
topic: p.TopicName,
|
||||||
|
messageID: p.MessageID,
|
||||||
|
payload: p.Payload,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func newConnectMsgFromOptions(options *ClientOptions) *packets.ConnectPacket {
|
||||||
|
m := packets.NewControlPacket(packets.Connect).(*packets.ConnectPacket)
|
||||||
|
|
||||||
|
m.CleanSession = options.CleanSession
|
||||||
|
m.WillFlag = options.WillEnabled
|
||||||
|
m.WillRetain = options.WillRetained
|
||||||
|
m.ClientIdentifier = options.ClientID
|
||||||
|
|
||||||
|
if options.WillEnabled {
|
||||||
|
m.WillQos = options.WillQos
|
||||||
|
m.WillTopic = options.WillTopic
|
||||||
|
m.WillMessage = options.WillPayload
|
||||||
|
}
|
||||||
|
|
||||||
|
if options.Username != "" {
|
||||||
|
m.UsernameFlag = true
|
||||||
|
m.Username = options.Username
|
||||||
|
//mustn't have password without user as well
|
||||||
|
if options.Password != "" {
|
||||||
|
m.PasswordFlag = true
|
||||||
|
m.Password = []byte(options.Password)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
m.Keepalive = uint16(options.KeepAlive.Seconds())
|
||||||
|
|
||||||
|
return m
|
||||||
|
}
|
|
@ -0,0 +1,61 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MId is 16 bit message id as specified by the MQTT spec.
|
||||||
|
// In general, these values should not be depended upon by
|
||||||
|
// the client application.
|
||||||
|
type MId uint16
|
||||||
|
|
||||||
|
type messageIds struct {
|
||||||
|
sync.RWMutex
|
||||||
|
index map[uint16]Token
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
midMin uint16 = 1
|
||||||
|
midMax uint16 = 65535
|
||||||
|
)
|
||||||
|
|
||||||
|
func (mids *messageIds) freeID(id uint16) {
|
||||||
|
mids.Lock()
|
||||||
|
defer mids.Unlock()
|
||||||
|
delete(mids.index, id)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mids *messageIds) getID(t Token) uint16 {
|
||||||
|
mids.Lock()
|
||||||
|
defer mids.Unlock()
|
||||||
|
for i := midMin; i < midMax; i++ {
|
||||||
|
if _, ok := mids.index[i]; !ok {
|
||||||
|
mids.index[i] = t
|
||||||
|
return i
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mids *messageIds) getToken(id uint16) Token {
|
||||||
|
mids.RLock()
|
||||||
|
defer mids.RUnlock()
|
||||||
|
if token, ok := mids.index[id]; ok {
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -0,0 +1,266 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"errors"
|
||||||
|
"net"
|
||||||
|
"net/url"
|
||||||
|
"reflect"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
"golang.org/x/net/websocket"
|
||||||
|
)
|
||||||
|
|
||||||
|
func signalError(c chan<- error, err error) {
|
||||||
|
select {
|
||||||
|
case c <- err:
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func openConnection(uri *url.URL, tlsc *tls.Config, timeout time.Duration) (net.Conn, error) {
|
||||||
|
switch uri.Scheme {
|
||||||
|
case "ws":
|
||||||
|
conn, err := websocket.Dial(uri.String(), "mqtt", "ws://localhost")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
conn.PayloadType = websocket.BinaryFrame
|
||||||
|
return conn, err
|
||||||
|
case "wss":
|
||||||
|
config, _ := websocket.NewConfig(uri.String(), "ws://localhost")
|
||||||
|
config.Protocol = []string{"mqtt"}
|
||||||
|
config.TlsConfig = tlsc
|
||||||
|
conn, err := websocket.DialConfig(config)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
conn.PayloadType = websocket.BinaryFrame
|
||||||
|
return conn, err
|
||||||
|
case "tcp":
|
||||||
|
conn, err := net.DialTimeout("tcp", uri.Host, timeout)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return conn, nil
|
||||||
|
case "ssl":
|
||||||
|
fallthrough
|
||||||
|
case "tls":
|
||||||
|
fallthrough
|
||||||
|
case "tcps":
|
||||||
|
conn, err := tls.DialWithDialer(&net.Dialer{Timeout: timeout}, "tcp", uri.Host, tlsc)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return conn, nil
|
||||||
|
}
|
||||||
|
return nil, errors.New("Unknown protocol")
|
||||||
|
}
|
||||||
|
|
||||||
|
// actually read incoming messages off the wire
|
||||||
|
// send Message object into ibound channel
|
||||||
|
func incoming(c *client) {
|
||||||
|
var err error
|
||||||
|
var cp packets.ControlPacket
|
||||||
|
|
||||||
|
defer c.workers.Done()
|
||||||
|
|
||||||
|
DEBUG.Println(NET, "incoming started")
|
||||||
|
|
||||||
|
for {
|
||||||
|
if cp, err = packets.ReadPacket(c.conn); err != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
DEBUG.Println(NET, "Received Message")
|
||||||
|
c.ibound <- cp
|
||||||
|
}
|
||||||
|
// We received an error on read.
|
||||||
|
// If disconnect is in progress, swallow error and return
|
||||||
|
select {
|
||||||
|
case <-c.stop:
|
||||||
|
DEBUG.Println(NET, "incoming stopped")
|
||||||
|
return
|
||||||
|
// Not trying to disconnect, send the error to the errors channel
|
||||||
|
default:
|
||||||
|
ERROR.Println(NET, "incoming stopped with error", err)
|
||||||
|
signalError(c.errors, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// receive a Message object on obound, and then
|
||||||
|
// actually send outgoing message to the wire
|
||||||
|
func outgoing(c *client) {
|
||||||
|
defer c.workers.Done()
|
||||||
|
DEBUG.Println(NET, "outgoing started")
|
||||||
|
|
||||||
|
for {
|
||||||
|
DEBUG.Println(NET, "outgoing waiting for an outbound message")
|
||||||
|
select {
|
||||||
|
case <-c.stop:
|
||||||
|
DEBUG.Println(NET, "outgoing stopped")
|
||||||
|
return
|
||||||
|
case pub := <-c.obound:
|
||||||
|
msg := pub.p.(*packets.PublishPacket)
|
||||||
|
|
||||||
|
if c.options.WriteTimeout > 0 {
|
||||||
|
c.conn.SetWriteDeadline(time.Now().Add(c.options.WriteTimeout))
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := msg.Write(c.conn); err != nil {
|
||||||
|
ERROR.Println(NET, "outgoing stopped with error", err)
|
||||||
|
signalError(c.errors, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.WriteTimeout > 0 {
|
||||||
|
// If we successfully wrote, we don't want the timeout to happen during an idle period
|
||||||
|
// so we reset it to infinite.
|
||||||
|
c.conn.SetWriteDeadline(time.Time{})
|
||||||
|
}
|
||||||
|
|
||||||
|
if msg.Qos == 0 {
|
||||||
|
pub.t.flowComplete()
|
||||||
|
}
|
||||||
|
DEBUG.Println(NET, "obound wrote msg, id:", msg.MessageID)
|
||||||
|
case msg := <-c.oboundP:
|
||||||
|
switch msg.p.(type) {
|
||||||
|
case *packets.SubscribePacket:
|
||||||
|
msg.p.(*packets.SubscribePacket).MessageID = c.getID(msg.t)
|
||||||
|
case *packets.UnsubscribePacket:
|
||||||
|
msg.p.(*packets.UnsubscribePacket).MessageID = c.getID(msg.t)
|
||||||
|
}
|
||||||
|
DEBUG.Println(NET, "obound priority msg to write, type", reflect.TypeOf(msg.p))
|
||||||
|
if err := msg.p.Write(c.conn); err != nil {
|
||||||
|
ERROR.Println(NET, "outgoing stopped with error", err)
|
||||||
|
signalError(c.errors, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
switch msg.p.(type) {
|
||||||
|
case *packets.DisconnectPacket:
|
||||||
|
msg.t.(*DisconnectToken).flowComplete()
|
||||||
|
DEBUG.Println(NET, "outbound wrote disconnect, stopping")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Reset ping timer after sending control packet.
|
||||||
|
c.pingResp <- struct{}{}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// receive Message objects on ibound
|
||||||
|
// store messages if necessary
|
||||||
|
// send replies on obound
|
||||||
|
// delete messages from store if necessary
|
||||||
|
func alllogic(c *client) {
|
||||||
|
|
||||||
|
DEBUG.Println(NET, "logic started")
|
||||||
|
|
||||||
|
for {
|
||||||
|
DEBUG.Println(NET, "logic waiting for msg on ibound")
|
||||||
|
|
||||||
|
select {
|
||||||
|
case msg := <-c.ibound:
|
||||||
|
DEBUG.Println(NET, "logic got msg on ibound")
|
||||||
|
persistInbound(c.persist, msg)
|
||||||
|
switch msg.(type) {
|
||||||
|
case *packets.PingrespPacket:
|
||||||
|
DEBUG.Println(NET, "received pingresp")
|
||||||
|
c.pingResp <- struct{}{}
|
||||||
|
case *packets.SubackPacket:
|
||||||
|
sa := msg.(*packets.SubackPacket)
|
||||||
|
DEBUG.Println(NET, "received suback, id:", sa.MessageID)
|
||||||
|
token := c.getToken(sa.MessageID).(*SubscribeToken)
|
||||||
|
DEBUG.Println(NET, "granted qoss", sa.ReturnCodes)
|
||||||
|
for i, qos := range sa.ReturnCodes {
|
||||||
|
token.subResult[token.subs[i]] = qos
|
||||||
|
}
|
||||||
|
token.flowComplete()
|
||||||
|
go c.freeID(sa.MessageID)
|
||||||
|
case *packets.UnsubackPacket:
|
||||||
|
ua := msg.(*packets.UnsubackPacket)
|
||||||
|
DEBUG.Println(NET, "received unsuback, id:", ua.MessageID)
|
||||||
|
token := c.getToken(ua.MessageID).(*UnsubscribeToken)
|
||||||
|
token.flowComplete()
|
||||||
|
go c.freeID(ua.MessageID)
|
||||||
|
case *packets.PublishPacket:
|
||||||
|
pp := msg.(*packets.PublishPacket)
|
||||||
|
DEBUG.Println(NET, "received publish, msgId:", pp.MessageID)
|
||||||
|
DEBUG.Println(NET, "putting msg on onPubChan")
|
||||||
|
switch pp.Qos {
|
||||||
|
case 2:
|
||||||
|
c.incomingPubChan <- pp
|
||||||
|
DEBUG.Println(NET, "done putting msg on incomingPubChan")
|
||||||
|
pr := packets.NewControlPacket(packets.Pubrec).(*packets.PubrecPacket)
|
||||||
|
pr.MessageID = pp.MessageID
|
||||||
|
DEBUG.Println(NET, "putting pubrec msg on obound")
|
||||||
|
c.oboundP <- &PacketAndToken{p: pr, t: nil}
|
||||||
|
DEBUG.Println(NET, "done putting pubrec msg on obound")
|
||||||
|
case 1:
|
||||||
|
c.incomingPubChan <- pp
|
||||||
|
DEBUG.Println(NET, "done putting msg on incomingPubChan")
|
||||||
|
pa := packets.NewControlPacket(packets.Puback).(*packets.PubackPacket)
|
||||||
|
pa.MessageID = pp.MessageID
|
||||||
|
DEBUG.Println(NET, "putting puback msg on obound")
|
||||||
|
c.oboundP <- &PacketAndToken{p: pa, t: nil}
|
||||||
|
DEBUG.Println(NET, "done putting puback msg on obound")
|
||||||
|
case 0:
|
||||||
|
c.incomingPubChan <- pp
|
||||||
|
DEBUG.Println(NET, "done putting msg on incomingPubChan")
|
||||||
|
}
|
||||||
|
case *packets.PubackPacket:
|
||||||
|
pa := msg.(*packets.PubackPacket)
|
||||||
|
DEBUG.Println(NET, "received puback, id:", pa.MessageID)
|
||||||
|
// c.receipts.get(msg.MsgId()) <- Receipt{}
|
||||||
|
// c.receipts.end(msg.MsgId())
|
||||||
|
c.getToken(pa.MessageID).flowComplete()
|
||||||
|
c.freeID(pa.MessageID)
|
||||||
|
case *packets.PubrecPacket:
|
||||||
|
prec := msg.(*packets.PubrecPacket)
|
||||||
|
DEBUG.Println(NET, "received pubrec, id:", prec.MessageID)
|
||||||
|
prel := packets.NewControlPacket(packets.Pubrel).(*packets.PubrelPacket)
|
||||||
|
prel.MessageID = prec.MessageID
|
||||||
|
select {
|
||||||
|
case c.oboundP <- &PacketAndToken{p: prel, t: nil}:
|
||||||
|
case <-time.After(time.Second):
|
||||||
|
}
|
||||||
|
case *packets.PubrelPacket:
|
||||||
|
pr := msg.(*packets.PubrelPacket)
|
||||||
|
DEBUG.Println(NET, "received pubrel, id:", pr.MessageID)
|
||||||
|
pc := packets.NewControlPacket(packets.Pubcomp).(*packets.PubcompPacket)
|
||||||
|
pc.MessageID = pr.MessageID
|
||||||
|
select {
|
||||||
|
case c.oboundP <- &PacketAndToken{p: pc, t: nil}:
|
||||||
|
case <-time.After(time.Second):
|
||||||
|
}
|
||||||
|
case *packets.PubcompPacket:
|
||||||
|
pc := msg.(*packets.PubcompPacket)
|
||||||
|
DEBUG.Println(NET, "received pubcomp, id:", pc.MessageID)
|
||||||
|
c.getToken(pc.MessageID).flowComplete()
|
||||||
|
c.freeID(pc.MessageID)
|
||||||
|
}
|
||||||
|
case <-c.stop:
|
||||||
|
WARN.Println(NET, "logic stopped")
|
||||||
|
return
|
||||||
|
case err := <-c.errors:
|
||||||
|
ERROR.Println(NET, "logic received from error channel, other components have errored, stopping")
|
||||||
|
c.internalConnLost(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,108 @@
|
||||||
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
|
||||||
|
<title>Eclipse Foundation Software User Agreement</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body lang="EN-US">
|
||||||
|
<h2>Eclipse Foundation Software User Agreement</h2>
|
||||||
|
<p>February 1, 2011</p>
|
||||||
|
|
||||||
|
<h3>Usage Of Content</h3>
|
||||||
|
|
||||||
|
<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
|
||||||
|
(COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
|
||||||
|
CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
|
||||||
|
OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
|
||||||
|
NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
|
||||||
|
CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
|
||||||
|
|
||||||
|
<h3>Applicable Licenses</h3>
|
||||||
|
|
||||||
|
<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
|
||||||
|
("EPL"). A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
|
||||||
|
For purposes of the EPL, "Program" will mean the Content.</p>
|
||||||
|
|
||||||
|
<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
|
||||||
|
repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").</li>
|
||||||
|
<li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".</li>
|
||||||
|
<li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
|
||||||
|
and/or Fragments associated with that Feature.</li>
|
||||||
|
<li>Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
|
||||||
|
Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
|
||||||
|
including, but not limited to the following locations:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>The top-level (root) directory</li>
|
||||||
|
<li>Plug-in and Fragment directories</li>
|
||||||
|
<li>Inside Plug-ins and Fragments packaged as JARs</li>
|
||||||
|
<li>Sub-directories of the directory named "src" of certain Plug-ins</li>
|
||||||
|
<li>Feature directories</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
|
||||||
|
installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
|
||||||
|
inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
|
||||||
|
Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
|
||||||
|
that directory.</p>
|
||||||
|
|
||||||
|
<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
|
||||||
|
OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
|
||||||
|
<li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
|
||||||
|
<li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
|
||||||
|
<li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
|
||||||
|
<li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
|
||||||
|
<li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
|
||||||
|
contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Use of Provisioning Technology</h3>
|
||||||
|
|
||||||
|
<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
|
||||||
|
Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
|
||||||
|
other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
|
||||||
|
install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
|
||||||
|
href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
|
||||||
|
("Specification").</p>
|
||||||
|
|
||||||
|
<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
|
||||||
|
applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
|
||||||
|
in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
|
||||||
|
Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li>A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
|
||||||
|
on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
|
||||||
|
product.</li>
|
||||||
|
<li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
|
||||||
|
accessed and copied to the Target Machine.</li>
|
||||||
|
<li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
|
||||||
|
Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
|
||||||
|
Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
|
||||||
|
the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
|
||||||
|
indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<h3>Cryptography</h3>
|
||||||
|
|
||||||
|
<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
|
||||||
|
another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
|
||||||
|
possession, or use, and re-export of encryption software, to see if this is permitted.</p>
|
||||||
|
|
||||||
|
<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
func chkerr(e error) {
|
||||||
|
if e != nil {
|
||||||
|
panic(e)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,293 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"net/url"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MessageHandler is a callback type which can be set to be
|
||||||
|
// executed upon the arrival of messages published to topics
|
||||||
|
// to which the client is subscribed.
|
||||||
|
type MessageHandler func(Client, Message)
|
||||||
|
|
||||||
|
// ConnectionLostHandler is a callback type which can be set to be
|
||||||
|
// executed upon an unintended disconnection from the MQTT broker.
|
||||||
|
// Disconnects caused by calling Disconnect or ForceDisconnect will
|
||||||
|
// not cause an OnConnectionLost callback to execute.
|
||||||
|
type ConnectionLostHandler func(Client, error)
|
||||||
|
|
||||||
|
// OnConnectHandler is a callback that is called when the client
|
||||||
|
// state changes from unconnected/disconnected to connected. Both
|
||||||
|
// at initial connection and on reconnection
|
||||||
|
type OnConnectHandler func(Client)
|
||||||
|
|
||||||
|
// ClientOptions contains configurable options for an Client.
|
||||||
|
type ClientOptions struct {
|
||||||
|
Servers []*url.URL
|
||||||
|
ClientID string
|
||||||
|
Username string
|
||||||
|
Password string
|
||||||
|
CleanSession bool
|
||||||
|
Order bool
|
||||||
|
WillEnabled bool
|
||||||
|
WillTopic string
|
||||||
|
WillPayload []byte
|
||||||
|
WillQos byte
|
||||||
|
WillRetained bool
|
||||||
|
ProtocolVersion uint
|
||||||
|
protocolVersionExplicit bool
|
||||||
|
TLSConfig tls.Config
|
||||||
|
KeepAlive time.Duration
|
||||||
|
PingTimeout time.Duration
|
||||||
|
ConnectTimeout time.Duration
|
||||||
|
MaxReconnectInterval time.Duration
|
||||||
|
AutoReconnect bool
|
||||||
|
Store Store
|
||||||
|
DefaultPublishHander MessageHandler
|
||||||
|
OnConnect OnConnectHandler
|
||||||
|
OnConnectionLost ConnectionLostHandler
|
||||||
|
WriteTimeout time.Duration
|
||||||
|
MessageChannelDepth uint
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewClientOptions will create a new ClientClientOptions type with some
|
||||||
|
// default values.
|
||||||
|
// Port: 1883
|
||||||
|
// CleanSession: True
|
||||||
|
// Order: True
|
||||||
|
// KeepAlive: 30 (seconds)
|
||||||
|
// ConnectTimeout: 30 (seconds)
|
||||||
|
// MaxReconnectInterval 10 (minutes)
|
||||||
|
// AutoReconnect: True
|
||||||
|
func NewClientOptions() *ClientOptions {
|
||||||
|
o := &ClientOptions{
|
||||||
|
Servers: nil,
|
||||||
|
ClientID: "",
|
||||||
|
Username: "",
|
||||||
|
Password: "",
|
||||||
|
CleanSession: true,
|
||||||
|
Order: true,
|
||||||
|
WillEnabled: false,
|
||||||
|
WillTopic: "",
|
||||||
|
WillPayload: nil,
|
||||||
|
WillQos: 0,
|
||||||
|
WillRetained: false,
|
||||||
|
ProtocolVersion: 0,
|
||||||
|
protocolVersionExplicit: false,
|
||||||
|
TLSConfig: tls.Config{},
|
||||||
|
KeepAlive: 30 * time.Second,
|
||||||
|
PingTimeout: 10 * time.Second,
|
||||||
|
ConnectTimeout: 30 * time.Second,
|
||||||
|
MaxReconnectInterval: 10 * time.Minute,
|
||||||
|
AutoReconnect: true,
|
||||||
|
Store: nil,
|
||||||
|
OnConnect: nil,
|
||||||
|
OnConnectionLost: DefaultConnectionLostHandler,
|
||||||
|
WriteTimeout: 0, // 0 represents timeout disabled
|
||||||
|
MessageChannelDepth: 100,
|
||||||
|
}
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddBroker adds a broker URI to the list of brokers to be used. The format should be
|
||||||
|
// scheme://host:port
|
||||||
|
// Where "scheme" is one of "tcp", "ssl", or "ws", "host" is the ip-address (or hostname)
|
||||||
|
// and "port" is the port on which the broker is accepting connections.
|
||||||
|
func (o *ClientOptions) AddBroker(server string) *ClientOptions {
|
||||||
|
brokerURI, err := url.Parse(server)
|
||||||
|
if err == nil {
|
||||||
|
o.Servers = append(o.Servers, brokerURI)
|
||||||
|
}
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetClientID will set the client id to be used by this client when
|
||||||
|
// connecting to the MQTT broker. According to the MQTT v3.1 specification,
|
||||||
|
// a client id mus be no longer than 23 characters.
|
||||||
|
func (o *ClientOptions) SetClientID(id string) *ClientOptions {
|
||||||
|
o.ClientID = id
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetUsername will set the username to be used by this client when connecting
|
||||||
|
// to the MQTT broker. Note: without the use of SSL/TLS, this information will
|
||||||
|
// be sent in plaintext accross the wire.
|
||||||
|
func (o *ClientOptions) SetUsername(u string) *ClientOptions {
|
||||||
|
o.Username = u
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetPassword will set the password to be used by this client when connecting
|
||||||
|
// to the MQTT broker. Note: without the use of SSL/TLS, this information will
|
||||||
|
// be sent in plaintext accross the wire.
|
||||||
|
func (o *ClientOptions) SetPassword(p string) *ClientOptions {
|
||||||
|
o.Password = p
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetCleanSession will set the "clean session" flag in the connect message
|
||||||
|
// when this client connects to an MQTT broker. By setting this flag, you are
|
||||||
|
// indicating that no messages saved by the broker for this client should be
|
||||||
|
// delivered. Any messages that were going to be sent by this client before
|
||||||
|
// diconnecting previously but didn't will not be sent upon connecting to the
|
||||||
|
// broker.
|
||||||
|
func (o *ClientOptions) SetCleanSession(clean bool) *ClientOptions {
|
||||||
|
o.CleanSession = clean
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetOrderMatters will set the message routing to guarantee order within
|
||||||
|
// each QoS level. By default, this value is true. If set to false,
|
||||||
|
// this flag indicates that messages can be delivered asynchronously
|
||||||
|
// from the client to the application and possibly arrive out of order.
|
||||||
|
func (o *ClientOptions) SetOrderMatters(order bool) *ClientOptions {
|
||||||
|
o.Order = order
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetTLSConfig will set an SSL/TLS configuration to be used when connecting
|
||||||
|
// to an MQTT broker. Please read the official Go documentation for more
|
||||||
|
// information.
|
||||||
|
func (o *ClientOptions) SetTLSConfig(t *tls.Config) *ClientOptions {
|
||||||
|
o.TLSConfig = *t
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetStore will set the implementation of the Store interface
|
||||||
|
// used to provide message persistence in cases where QoS levels
|
||||||
|
// QoS_ONE or QoS_TWO are used. If no store is provided, then the
|
||||||
|
// client will use MemoryStore by default.
|
||||||
|
func (o *ClientOptions) SetStore(s Store) *ClientOptions {
|
||||||
|
o.Store = s
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetKeepAlive will set the amount of time (in seconds) that the client
|
||||||
|
// should wait before sending a PING request to the broker. This will
|
||||||
|
// allow the client to know that a connection has not been lost with the
|
||||||
|
// server.
|
||||||
|
func (o *ClientOptions) SetKeepAlive(k time.Duration) *ClientOptions {
|
||||||
|
o.KeepAlive = k
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetPingTimeout will set the amount of time (in seconds) that the client
|
||||||
|
// will wait after sending a PING request to the broker, before deciding
|
||||||
|
// that the connection has been lost. Default is 10 seconds.
|
||||||
|
func (o *ClientOptions) SetPingTimeout(k time.Duration) *ClientOptions {
|
||||||
|
o.PingTimeout = k
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetProtocolVersion sets the MQTT version to be used to connect to the
|
||||||
|
// broker. Legitimate values are currently 3 - MQTT 3.1 or 4 - MQTT 3.1.1
|
||||||
|
func (o *ClientOptions) SetProtocolVersion(pv uint) *ClientOptions {
|
||||||
|
if pv >= 3 && pv <= 4 {
|
||||||
|
o.ProtocolVersion = pv
|
||||||
|
o.protocolVersionExplicit = true
|
||||||
|
}
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnsetWill will cause any set will message to be disregarded.
|
||||||
|
func (o *ClientOptions) UnsetWill() *ClientOptions {
|
||||||
|
o.WillEnabled = false
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetWill accepts a string will message to be set. When the client connects,
|
||||||
|
// it will give this will message to the broker, which will then publish the
|
||||||
|
// provided payload (the will) to any clients that are subscribed to the provided
|
||||||
|
// topic.
|
||||||
|
func (o *ClientOptions) SetWill(topic string, payload string, qos byte, retained bool) *ClientOptions {
|
||||||
|
o.SetBinaryWill(topic, []byte(payload), qos, retained)
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetBinaryWill accepts a []byte will message to be set. When the client connects,
|
||||||
|
// it will give this will message to the broker, which will then publish the
|
||||||
|
// provided payload (the will) to any clients that are subscribed to the provided
|
||||||
|
// topic.
|
||||||
|
func (o *ClientOptions) SetBinaryWill(topic string, payload []byte, qos byte, retained bool) *ClientOptions {
|
||||||
|
o.WillEnabled = true
|
||||||
|
o.WillTopic = topic
|
||||||
|
o.WillPayload = payload
|
||||||
|
o.WillQos = qos
|
||||||
|
o.WillRetained = retained
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetDefaultPublishHandler sets the MessageHandler that will be called when a message
|
||||||
|
// is received that does not match any known subscriptions.
|
||||||
|
func (o *ClientOptions) SetDefaultPublishHandler(defaultHandler MessageHandler) *ClientOptions {
|
||||||
|
o.DefaultPublishHander = defaultHandler
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetOnConnectHandler sets the function to be called when the client is connected. Both
|
||||||
|
// at initial connection time and upon automatic reconnect.
|
||||||
|
func (o *ClientOptions) SetOnConnectHandler(onConn OnConnectHandler) *ClientOptions {
|
||||||
|
o.OnConnect = onConn
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetConnectionLostHandler will set the OnConnectionLost callback to be executed
|
||||||
|
// in the case where the client unexpectedly loses connection with the MQTT broker.
|
||||||
|
func (o *ClientOptions) SetConnectionLostHandler(onLost ConnectionLostHandler) *ClientOptions {
|
||||||
|
o.OnConnectionLost = onLost
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetWriteTimeout puts a limit on how long a mqtt publish should block until it unblocks with a
|
||||||
|
// timeout error. A duration of 0 never times out. Default 30 seconds
|
||||||
|
func (o *ClientOptions) SetWriteTimeout(t time.Duration) *ClientOptions {
|
||||||
|
o.WriteTimeout = t
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetConnectTimeout limits how long the client will wait when trying to open a connection
|
||||||
|
// to an MQTT server before timeing out and erroring the attempt. A duration of 0 never times out.
|
||||||
|
// Default 30 seconds. Currently only operational on TCP/TLS connections.
|
||||||
|
func (o *ClientOptions) SetConnectTimeout(t time.Duration) *ClientOptions {
|
||||||
|
o.ConnectTimeout = t
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetMaxReconnectInterval sets the maximum time that will be waited between reconnection attempts
|
||||||
|
// when connection is lost
|
||||||
|
func (o *ClientOptions) SetMaxReconnectInterval(t time.Duration) *ClientOptions {
|
||||||
|
o.MaxReconnectInterval = t
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetAutoReconnect sets whether the automatic reconnection logic should be used
|
||||||
|
// when the connection is lost, even if disabled the ConnectionLostHandler is still
|
||||||
|
// called
|
||||||
|
func (o *ClientOptions) SetAutoReconnect(a bool) *ClientOptions {
|
||||||
|
o.AutoReconnect = a
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetMessageChannelDepth sets the size of the internal queue that holds messages while the
|
||||||
|
// client is temporairily offline, allowing the application to publish when the client is
|
||||||
|
// reconnecting. This setting is only valid if AutoReconnect is set to true, it is otherwise
|
||||||
|
// ignored.
|
||||||
|
func (o *ClientOptions) SetMessageChannelDepth(s uint) *ClientOptions {
|
||||||
|
o.MessageChannelDepth = s
|
||||||
|
return o
|
||||||
|
}
|
|
@ -0,0 +1,50 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//ConnackPacket is an internal representation of the fields of the
|
||||||
|
//Connack MQTT packet
|
||||||
|
type ConnackPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
SessionPresent bool
|
||||||
|
ReturnCode byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ca *ConnackPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", ca.FixedHeader)
|
||||||
|
str += fmt.Sprintf("sessionpresent: %t returncode: %d", ca.SessionPresent, ca.ReturnCode)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ca *ConnackPacket) Write(w io.Writer) error {
|
||||||
|
var body bytes.Buffer
|
||||||
|
var err error
|
||||||
|
|
||||||
|
body.WriteByte(boolToByte(ca.SessionPresent))
|
||||||
|
body.WriteByte(ca.ReturnCode)
|
||||||
|
ca.FixedHeader.RemainingLength = 2
|
||||||
|
packet := ca.FixedHeader.pack()
|
||||||
|
packet.Write(body.Bytes())
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (ca *ConnackPacket) Unpack(b io.Reader) error {
|
||||||
|
ca.SessionPresent = 1&decodeByte(b) > 0
|
||||||
|
ca.ReturnCode = decodeByte(b)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (ca *ConnackPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: 0}
|
||||||
|
}
|
|
@ -0,0 +1,121 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//ConnectPacket is an internal representation of the fields of the
|
||||||
|
//Connect MQTT packet
|
||||||
|
type ConnectPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
ProtocolName string
|
||||||
|
ProtocolVersion byte
|
||||||
|
CleanSession bool
|
||||||
|
WillFlag bool
|
||||||
|
WillQos byte
|
||||||
|
WillRetain bool
|
||||||
|
UsernameFlag bool
|
||||||
|
PasswordFlag bool
|
||||||
|
ReservedBit byte
|
||||||
|
Keepalive uint16
|
||||||
|
|
||||||
|
ClientIdentifier string
|
||||||
|
WillTopic string
|
||||||
|
WillMessage []byte
|
||||||
|
Username string
|
||||||
|
Password []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ConnectPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", c.FixedHeader)
|
||||||
|
str += fmt.Sprintf("protocolversion: %d protocolname: %s cleansession: %t willflag: %t WillQos: %d WillRetain: %t Usernameflag: %t Passwordflag: %t keepalive: %d\nclientId: %s\nwilltopic: %s\nwillmessage: %s\nUsername: %s\nPassword: %s\n", c.ProtocolVersion, c.ProtocolName, c.CleanSession, c.WillFlag, c.WillQos, c.WillRetain, c.UsernameFlag, c.PasswordFlag, c.Keepalive, c.ClientIdentifier, c.WillTopic, c.WillMessage, c.Username, c.Password)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ConnectPacket) Write(w io.Writer) error {
|
||||||
|
var body bytes.Buffer
|
||||||
|
var err error
|
||||||
|
|
||||||
|
body.Write(encodeString(c.ProtocolName))
|
||||||
|
body.WriteByte(c.ProtocolVersion)
|
||||||
|
body.WriteByte(boolToByte(c.CleanSession)<<1 | boolToByte(c.WillFlag)<<2 | c.WillQos<<3 | boolToByte(c.WillRetain)<<5 | boolToByte(c.PasswordFlag)<<6 | boolToByte(c.UsernameFlag)<<7)
|
||||||
|
body.Write(encodeUint16(c.Keepalive))
|
||||||
|
body.Write(encodeString(c.ClientIdentifier))
|
||||||
|
if c.WillFlag {
|
||||||
|
body.Write(encodeString(c.WillTopic))
|
||||||
|
body.Write(encodeBytes(c.WillMessage))
|
||||||
|
}
|
||||||
|
if c.UsernameFlag {
|
||||||
|
body.Write(encodeString(c.Username))
|
||||||
|
}
|
||||||
|
if c.PasswordFlag {
|
||||||
|
body.Write(encodeBytes(c.Password))
|
||||||
|
}
|
||||||
|
c.FixedHeader.RemainingLength = body.Len()
|
||||||
|
packet := c.FixedHeader.pack()
|
||||||
|
packet.Write(body.Bytes())
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (c *ConnectPacket) Unpack(b io.Reader) error {
|
||||||
|
c.ProtocolName = decodeString(b)
|
||||||
|
c.ProtocolVersion = decodeByte(b)
|
||||||
|
options := decodeByte(b)
|
||||||
|
c.ReservedBit = 1 & options
|
||||||
|
c.CleanSession = 1&(options>>1) > 0
|
||||||
|
c.WillFlag = 1&(options>>2) > 0
|
||||||
|
c.WillQos = 3 & (options >> 3)
|
||||||
|
c.WillRetain = 1&(options>>5) > 0
|
||||||
|
c.PasswordFlag = 1&(options>>6) > 0
|
||||||
|
c.UsernameFlag = 1&(options>>7) > 0
|
||||||
|
c.Keepalive = decodeUint16(b)
|
||||||
|
c.ClientIdentifier = decodeString(b)
|
||||||
|
if c.WillFlag {
|
||||||
|
c.WillTopic = decodeString(b)
|
||||||
|
c.WillMessage = decodeBytes(b)
|
||||||
|
}
|
||||||
|
if c.UsernameFlag {
|
||||||
|
c.Username = decodeString(b)
|
||||||
|
}
|
||||||
|
if c.PasswordFlag {
|
||||||
|
c.Password = decodeBytes(b)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Validate performs validation of the fields of a Connect packet
|
||||||
|
func (c *ConnectPacket) Validate() byte {
|
||||||
|
if c.PasswordFlag && !c.UsernameFlag {
|
||||||
|
return ErrRefusedBadUsernameOrPassword
|
||||||
|
}
|
||||||
|
if c.ReservedBit != 0 {
|
||||||
|
//Bad reserved bit
|
||||||
|
return ErrProtocolViolation
|
||||||
|
}
|
||||||
|
if (c.ProtocolName == "MQIsdp" && c.ProtocolVersion != 3) || (c.ProtocolName == "MQTT" && c.ProtocolVersion != 4) {
|
||||||
|
//Mismatched or unsupported protocol version
|
||||||
|
return ErrRefusedBadProtocolVersion
|
||||||
|
}
|
||||||
|
if c.ProtocolName != "MQIsdp" && c.ProtocolName != "MQTT" {
|
||||||
|
//Bad protocol name
|
||||||
|
return ErrProtocolViolation
|
||||||
|
}
|
||||||
|
if len(c.ClientIdentifier) > 65535 || len(c.Username) > 65535 || len(c.Password) > 65535 {
|
||||||
|
//Bad size field
|
||||||
|
return ErrProtocolViolation
|
||||||
|
}
|
||||||
|
return Accepted
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (c *ConnectPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: 0}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//DisconnectPacket is an internal representation of the fields of the
|
||||||
|
//Disconnect MQTT packet
|
||||||
|
type DisconnectPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DisconnectPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", d.FixedHeader)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DisconnectPacket) Write(w io.Writer) error {
|
||||||
|
packet := d.FixedHeader.pack()
|
||||||
|
_, err := packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (d *DisconnectPacket) Unpack(b io.Reader) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (d *DisconnectPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: 0}
|
||||||
|
}
|
|
@ -0,0 +1,322 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"encoding/binary"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//ControlPacket defines the interface for structs intended to hold
|
||||||
|
//decoded MQTT packets, either from being read or before being
|
||||||
|
//written
|
||||||
|
type ControlPacket interface {
|
||||||
|
Write(io.Writer) error
|
||||||
|
Unpack(io.Reader) error
|
||||||
|
String() string
|
||||||
|
Details() Details
|
||||||
|
}
|
||||||
|
|
||||||
|
//PacketNames maps the constants for each of the MQTT packet types
|
||||||
|
//to a string representation of their name.
|
||||||
|
var PacketNames = map[uint8]string{
|
||||||
|
1: "CONNECT",
|
||||||
|
2: "CONNACK",
|
||||||
|
3: "PUBLISH",
|
||||||
|
4: "PUBACK",
|
||||||
|
5: "PUBREC",
|
||||||
|
6: "PUBREL",
|
||||||
|
7: "PUBCOMP",
|
||||||
|
8: "SUBSCRIBE",
|
||||||
|
9: "SUBACK",
|
||||||
|
10: "UNSUBSCRIBE",
|
||||||
|
11: "UNSUBACK",
|
||||||
|
12: "PINGREQ",
|
||||||
|
13: "PINGRESP",
|
||||||
|
14: "DISCONNECT",
|
||||||
|
}
|
||||||
|
|
||||||
|
//Below are the constants assigned to each of the MQTT packet types
|
||||||
|
const (
|
||||||
|
Connect = 1
|
||||||
|
Connack = 2
|
||||||
|
Publish = 3
|
||||||
|
Puback = 4
|
||||||
|
Pubrec = 5
|
||||||
|
Pubrel = 6
|
||||||
|
Pubcomp = 7
|
||||||
|
Subscribe = 8
|
||||||
|
Suback = 9
|
||||||
|
Unsubscribe = 10
|
||||||
|
Unsuback = 11
|
||||||
|
Pingreq = 12
|
||||||
|
Pingresp = 13
|
||||||
|
Disconnect = 14
|
||||||
|
)
|
||||||
|
|
||||||
|
//Below are the const definitions for error codes returned by
|
||||||
|
//Connect()
|
||||||
|
const (
|
||||||
|
Accepted = 0x00
|
||||||
|
ErrRefusedBadProtocolVersion = 0x01
|
||||||
|
ErrRefusedIDRejected = 0x02
|
||||||
|
ErrRefusedServerUnavailable = 0x03
|
||||||
|
ErrRefusedBadUsernameOrPassword = 0x04
|
||||||
|
ErrRefusedNotAuthorised = 0x05
|
||||||
|
ErrNetworkError = 0xFE
|
||||||
|
ErrProtocolViolation = 0xFF
|
||||||
|
)
|
||||||
|
|
||||||
|
//ConnackReturnCodes is a map of the error codes constants for Connect()
|
||||||
|
//to a string representation of the error
|
||||||
|
var ConnackReturnCodes = map[uint8]string{
|
||||||
|
0: "Connection Accepted",
|
||||||
|
1: "Connection Refused: Bad Protocol Version",
|
||||||
|
2: "Connection Refused: Client Identifier Rejected",
|
||||||
|
3: "Connection Refused: Server Unavailable",
|
||||||
|
4: "Connection Refused: Username or Password in unknown format",
|
||||||
|
5: "Connection Refused: Not Authorised",
|
||||||
|
254: "Connection Error",
|
||||||
|
255: "Connection Refused: Protocol Violation",
|
||||||
|
}
|
||||||
|
|
||||||
|
//ConnErrors is a map of the errors codes constants for Connect()
|
||||||
|
//to a Go error
|
||||||
|
var ConnErrors = map[byte]error{
|
||||||
|
Accepted: nil,
|
||||||
|
ErrRefusedBadProtocolVersion: errors.New("Unnacceptable protocol version"),
|
||||||
|
ErrRefusedIDRejected: errors.New("Identifier rejected"),
|
||||||
|
ErrRefusedServerUnavailable: errors.New("Server Unavailable"),
|
||||||
|
ErrRefusedBadUsernameOrPassword: errors.New("Bad user name or password"),
|
||||||
|
ErrRefusedNotAuthorised: errors.New("Not Authorized"),
|
||||||
|
ErrNetworkError: errors.New("Network Error"),
|
||||||
|
ErrProtocolViolation: errors.New("Protocol Violation"),
|
||||||
|
}
|
||||||
|
|
||||||
|
//ReadPacket takes an instance of an io.Reader (such as net.Conn) and attempts
|
||||||
|
//to read an MQTT packet from the stream. It returns a ControlPacket
|
||||||
|
//representing the decoded MQTT packet and an error. One of these returns will
|
||||||
|
//always be nil, a nil ControlPacket indicating an error occurred.
|
||||||
|
func ReadPacket(r io.Reader) (cp ControlPacket, err error) {
|
||||||
|
var fh FixedHeader
|
||||||
|
b := make([]byte, 1)
|
||||||
|
|
||||||
|
_, err = io.ReadFull(r, b)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
fh.unpack(b[0], r)
|
||||||
|
cp = NewControlPacketWithHeader(fh)
|
||||||
|
if cp == nil {
|
||||||
|
return nil, errors.New("Bad data from client")
|
||||||
|
}
|
||||||
|
packetBytes := make([]byte, fh.RemainingLength)
|
||||||
|
_, err = io.ReadFull(r, packetBytes)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
err = cp.Unpack(bytes.NewBuffer(packetBytes))
|
||||||
|
return cp, err
|
||||||
|
}
|
||||||
|
|
||||||
|
//NewControlPacket is used to create a new ControlPacket of the type specified
|
||||||
|
//by packetType, this is usually done by reference to the packet type constants
|
||||||
|
//defined in packets.go. The newly created ControlPacket is empty and a pointer
|
||||||
|
//is returned.
|
||||||
|
func NewControlPacket(packetType byte) (cp ControlPacket) {
|
||||||
|
switch packetType {
|
||||||
|
case Connect:
|
||||||
|
cp = &ConnectPacket{FixedHeader: FixedHeader{MessageType: Connect}}
|
||||||
|
case Connack:
|
||||||
|
cp = &ConnackPacket{FixedHeader: FixedHeader{MessageType: Connack}}
|
||||||
|
case Disconnect:
|
||||||
|
cp = &DisconnectPacket{FixedHeader: FixedHeader{MessageType: Disconnect}}
|
||||||
|
case Publish:
|
||||||
|
cp = &PublishPacket{FixedHeader: FixedHeader{MessageType: Publish}}
|
||||||
|
case Puback:
|
||||||
|
cp = &PubackPacket{FixedHeader: FixedHeader{MessageType: Puback}}
|
||||||
|
case Pubrec:
|
||||||
|
cp = &PubrecPacket{FixedHeader: FixedHeader{MessageType: Pubrec}}
|
||||||
|
case Pubrel:
|
||||||
|
cp = &PubrelPacket{FixedHeader: FixedHeader{MessageType: Pubrel, Qos: 1}}
|
||||||
|
case Pubcomp:
|
||||||
|
cp = &PubcompPacket{FixedHeader: FixedHeader{MessageType: Pubcomp}}
|
||||||
|
case Subscribe:
|
||||||
|
cp = &SubscribePacket{FixedHeader: FixedHeader{MessageType: Subscribe, Qos: 1}}
|
||||||
|
case Suback:
|
||||||
|
cp = &SubackPacket{FixedHeader: FixedHeader{MessageType: Suback}}
|
||||||
|
case Unsubscribe:
|
||||||
|
cp = &UnsubscribePacket{FixedHeader: FixedHeader{MessageType: Unsubscribe, Qos: 1}}
|
||||||
|
case Unsuback:
|
||||||
|
cp = &UnsubackPacket{FixedHeader: FixedHeader{MessageType: Unsuback}}
|
||||||
|
case Pingreq:
|
||||||
|
cp = &PingreqPacket{FixedHeader: FixedHeader{MessageType: Pingreq}}
|
||||||
|
case Pingresp:
|
||||||
|
cp = &PingrespPacket{FixedHeader: FixedHeader{MessageType: Pingresp}}
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return cp
|
||||||
|
}
|
||||||
|
|
||||||
|
//NewControlPacketWithHeader is used to create a new ControlPacket of the type
|
||||||
|
//specified within the FixedHeader that is passed to the function.
|
||||||
|
//The newly created ControlPacket is empty and a pointer is returned.
|
||||||
|
func NewControlPacketWithHeader(fh FixedHeader) (cp ControlPacket) {
|
||||||
|
switch fh.MessageType {
|
||||||
|
case Connect:
|
||||||
|
cp = &ConnectPacket{FixedHeader: fh}
|
||||||
|
case Connack:
|
||||||
|
cp = &ConnackPacket{FixedHeader: fh}
|
||||||
|
case Disconnect:
|
||||||
|
cp = &DisconnectPacket{FixedHeader: fh}
|
||||||
|
case Publish:
|
||||||
|
cp = &PublishPacket{FixedHeader: fh}
|
||||||
|
case Puback:
|
||||||
|
cp = &PubackPacket{FixedHeader: fh}
|
||||||
|
case Pubrec:
|
||||||
|
cp = &PubrecPacket{FixedHeader: fh}
|
||||||
|
case Pubrel:
|
||||||
|
cp = &PubrelPacket{FixedHeader: fh}
|
||||||
|
case Pubcomp:
|
||||||
|
cp = &PubcompPacket{FixedHeader: fh}
|
||||||
|
case Subscribe:
|
||||||
|
cp = &SubscribePacket{FixedHeader: fh}
|
||||||
|
case Suback:
|
||||||
|
cp = &SubackPacket{FixedHeader: fh}
|
||||||
|
case Unsubscribe:
|
||||||
|
cp = &UnsubscribePacket{FixedHeader: fh}
|
||||||
|
case Unsuback:
|
||||||
|
cp = &UnsubackPacket{FixedHeader: fh}
|
||||||
|
case Pingreq:
|
||||||
|
cp = &PingreqPacket{FixedHeader: fh}
|
||||||
|
case Pingresp:
|
||||||
|
cp = &PingrespPacket{FixedHeader: fh}
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return cp
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details struct returned by the Details() function called on
|
||||||
|
//ControlPackets to present details of the Qos and MessageID
|
||||||
|
//of the ControlPacket
|
||||||
|
type Details struct {
|
||||||
|
Qos byte
|
||||||
|
MessageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
//FixedHeader is a struct to hold the decoded information from
|
||||||
|
//the fixed header of an MQTT ControlPacket
|
||||||
|
type FixedHeader struct {
|
||||||
|
MessageType byte
|
||||||
|
Dup bool
|
||||||
|
Qos byte
|
||||||
|
Retain bool
|
||||||
|
RemainingLength int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fh FixedHeader) String() string {
|
||||||
|
return fmt.Sprintf("%s: dup: %t qos: %d retain: %t rLength: %d", PacketNames[fh.MessageType], fh.Dup, fh.Qos, fh.Retain, fh.RemainingLength)
|
||||||
|
}
|
||||||
|
|
||||||
|
func boolToByte(b bool) byte {
|
||||||
|
switch b {
|
||||||
|
case true:
|
||||||
|
return 1
|
||||||
|
default:
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fh *FixedHeader) pack() bytes.Buffer {
|
||||||
|
var header bytes.Buffer
|
||||||
|
header.WriteByte(fh.MessageType<<4 | boolToByte(fh.Dup)<<3 | fh.Qos<<1 | boolToByte(fh.Retain))
|
||||||
|
header.Write(encodeLength(fh.RemainingLength))
|
||||||
|
return header
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fh *FixedHeader) unpack(typeAndFlags byte, r io.Reader) {
|
||||||
|
fh.MessageType = typeAndFlags >> 4
|
||||||
|
fh.Dup = (typeAndFlags>>3)&0x01 > 0
|
||||||
|
fh.Qos = (typeAndFlags >> 1) & 0x03
|
||||||
|
fh.Retain = typeAndFlags&0x01 > 0
|
||||||
|
fh.RemainingLength = decodeLength(r)
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeByte(b io.Reader) byte {
|
||||||
|
num := make([]byte, 1)
|
||||||
|
b.Read(num)
|
||||||
|
return num[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeUint16(b io.Reader) uint16 {
|
||||||
|
num := make([]byte, 2)
|
||||||
|
b.Read(num)
|
||||||
|
return binary.BigEndian.Uint16(num)
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeUint16(num uint16) []byte {
|
||||||
|
bytes := make([]byte, 2)
|
||||||
|
binary.BigEndian.PutUint16(bytes, num)
|
||||||
|
return bytes
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeString(field string) []byte {
|
||||||
|
fieldLength := make([]byte, 2)
|
||||||
|
binary.BigEndian.PutUint16(fieldLength, uint16(len(field)))
|
||||||
|
return append(fieldLength, []byte(field)...)
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeString(b io.Reader) string {
|
||||||
|
fieldLength := decodeUint16(b)
|
||||||
|
field := make([]byte, fieldLength)
|
||||||
|
b.Read(field)
|
||||||
|
return string(field)
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeBytes(b io.Reader) []byte {
|
||||||
|
fieldLength := decodeUint16(b)
|
||||||
|
field := make([]byte, fieldLength)
|
||||||
|
b.Read(field)
|
||||||
|
return field
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeBytes(field []byte) []byte {
|
||||||
|
fieldLength := make([]byte, 2)
|
||||||
|
binary.BigEndian.PutUint16(fieldLength, uint16(len(field)))
|
||||||
|
return append(fieldLength, field...)
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeLength(length int) []byte {
|
||||||
|
var encLength []byte
|
||||||
|
for {
|
||||||
|
digit := byte(length % 128)
|
||||||
|
length /= 128
|
||||||
|
if length > 0 {
|
||||||
|
digit |= 0x80
|
||||||
|
}
|
||||||
|
encLength = append(encLength, digit)
|
||||||
|
if length == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return encLength
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeLength(r io.Reader) int {
|
||||||
|
var rLength uint32
|
||||||
|
var multiplier uint32
|
||||||
|
b := make([]byte, 1)
|
||||||
|
for {
|
||||||
|
io.ReadFull(r, b)
|
||||||
|
digit := b[0]
|
||||||
|
rLength |= uint32(digit&127) << multiplier
|
||||||
|
if (digit & 128) == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
multiplier += 7
|
||||||
|
}
|
||||||
|
return int(rLength)
|
||||||
|
}
|
159
vendor/github.com/eclipse/paho.mqtt.golang/packets/packets_test.go
generated
vendored
Normal file
159
vendor/github.com/eclipse/paho.mqtt.golang/packets/packets_test.go
generated
vendored
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestPacketNames(t *testing.T) {
|
||||||
|
if PacketNames[1] != "CONNECT" {
|
||||||
|
t.Errorf("PacketNames[1] is %s, should be %s", PacketNames[1], "CONNECT")
|
||||||
|
}
|
||||||
|
if PacketNames[2] != "CONNACK" {
|
||||||
|
t.Errorf("PacketNames[2] is %s, should be %s", PacketNames[2], "CONNACK")
|
||||||
|
}
|
||||||
|
if PacketNames[3] != "PUBLISH" {
|
||||||
|
t.Errorf("PacketNames[3] is %s, should be %s", PacketNames[3], "PUBLISH")
|
||||||
|
}
|
||||||
|
if PacketNames[4] != "PUBACK" {
|
||||||
|
t.Errorf("PacketNames[4] is %s, should be %s", PacketNames[4], "PUBACK")
|
||||||
|
}
|
||||||
|
if PacketNames[5] != "PUBREC" {
|
||||||
|
t.Errorf("PacketNames[5] is %s, should be %s", PacketNames[5], "PUBREC")
|
||||||
|
}
|
||||||
|
if PacketNames[6] != "PUBREL" {
|
||||||
|
t.Errorf("PacketNames[6] is %s, should be %s", PacketNames[6], "PUBREL")
|
||||||
|
}
|
||||||
|
if PacketNames[7] != "PUBCOMP" {
|
||||||
|
t.Errorf("PacketNames[7] is %s, should be %s", PacketNames[7], "PUBCOMP")
|
||||||
|
}
|
||||||
|
if PacketNames[8] != "SUBSCRIBE" {
|
||||||
|
t.Errorf("PacketNames[8] is %s, should be %s", PacketNames[8], "SUBSCRIBE")
|
||||||
|
}
|
||||||
|
if PacketNames[9] != "SUBACK" {
|
||||||
|
t.Errorf("PacketNames[9] is %s, should be %s", PacketNames[9], "SUBACK")
|
||||||
|
}
|
||||||
|
if PacketNames[10] != "UNSUBSCRIBE" {
|
||||||
|
t.Errorf("PacketNames[10] is %s, should be %s", PacketNames[10], "UNSUBSCRIBE")
|
||||||
|
}
|
||||||
|
if PacketNames[11] != "UNSUBACK" {
|
||||||
|
t.Errorf("PacketNames[11] is %s, should be %s", PacketNames[11], "UNSUBACK")
|
||||||
|
}
|
||||||
|
if PacketNames[12] != "PINGREQ" {
|
||||||
|
t.Errorf("PacketNames[12] is %s, should be %s", PacketNames[12], "PINGREQ")
|
||||||
|
}
|
||||||
|
if PacketNames[13] != "PINGRESP" {
|
||||||
|
t.Errorf("PacketNames[13] is %s, should be %s", PacketNames[13], "PINGRESP")
|
||||||
|
}
|
||||||
|
if PacketNames[14] != "DISCONNECT" {
|
||||||
|
t.Errorf("PacketNames[14] is %s, should be %s", PacketNames[14], "DISCONNECT")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPacketConsts(t *testing.T) {
|
||||||
|
if Connect != 1 {
|
||||||
|
t.Errorf("Const for Connect is %d, should be %d", Connect, 1)
|
||||||
|
}
|
||||||
|
if Connack != 2 {
|
||||||
|
t.Errorf("Const for Connack is %d, should be %d", Connack, 2)
|
||||||
|
}
|
||||||
|
if Publish != 3 {
|
||||||
|
t.Errorf("Const for Publish is %d, should be %d", Publish, 3)
|
||||||
|
}
|
||||||
|
if Puback != 4 {
|
||||||
|
t.Errorf("Const for Puback is %d, should be %d", Puback, 4)
|
||||||
|
}
|
||||||
|
if Pubrec != 5 {
|
||||||
|
t.Errorf("Const for Pubrec is %d, should be %d", Pubrec, 5)
|
||||||
|
}
|
||||||
|
if Pubrel != 6 {
|
||||||
|
t.Errorf("Const for Pubrel is %d, should be %d", Pubrel, 6)
|
||||||
|
}
|
||||||
|
if Pubcomp != 7 {
|
||||||
|
t.Errorf("Const for Pubcomp is %d, should be %d", Pubcomp, 7)
|
||||||
|
}
|
||||||
|
if Subscribe != 8 {
|
||||||
|
t.Errorf("Const for Subscribe is %d, should be %d", Subscribe, 8)
|
||||||
|
}
|
||||||
|
if Suback != 9 {
|
||||||
|
t.Errorf("Const for Suback is %d, should be %d", Suback, 9)
|
||||||
|
}
|
||||||
|
if Unsubscribe != 10 {
|
||||||
|
t.Errorf("Const for Unsubscribe is %d, should be %d", Unsubscribe, 10)
|
||||||
|
}
|
||||||
|
if Unsuback != 11 {
|
||||||
|
t.Errorf("Const for Unsuback is %d, should be %d", Unsuback, 11)
|
||||||
|
}
|
||||||
|
if Pingreq != 12 {
|
||||||
|
t.Errorf("Const for Pingreq is %d, should be %d", Pingreq, 12)
|
||||||
|
}
|
||||||
|
if Pingresp != 13 {
|
||||||
|
t.Errorf("Const for Pingresp is %d, should be %d", Pingresp, 13)
|
||||||
|
}
|
||||||
|
if Disconnect != 14 {
|
||||||
|
t.Errorf("Const for Disconnect is %d, should be %d", Disconnect, 14)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestConnackConsts(t *testing.T) {
|
||||||
|
if Accepted != 0x00 {
|
||||||
|
t.Errorf("Const for Accepted is %d, should be %d", Accepted, 0)
|
||||||
|
}
|
||||||
|
if ErrRefusedBadProtocolVersion != 0x01 {
|
||||||
|
t.Errorf("Const for RefusedBadProtocolVersion is %d, should be %d", ErrRefusedBadProtocolVersion, 1)
|
||||||
|
}
|
||||||
|
if ErrRefusedIDRejected != 0x02 {
|
||||||
|
t.Errorf("Const for RefusedIDRejected is %d, should be %d", ErrRefusedIDRejected, 2)
|
||||||
|
}
|
||||||
|
if ErrRefusedServerUnavailable != 0x03 {
|
||||||
|
t.Errorf("Const for RefusedServerUnavailable is %d, should be %d", ErrRefusedServerUnavailable, 3)
|
||||||
|
}
|
||||||
|
if ErrRefusedBadUsernameOrPassword != 0x04 {
|
||||||
|
t.Errorf("Const for RefusedBadUsernameOrPassword is %d, should be %d", ErrRefusedBadUsernameOrPassword, 4)
|
||||||
|
}
|
||||||
|
if ErrRefusedNotAuthorised != 0x05 {
|
||||||
|
t.Errorf("Const for RefusedNotAuthorised is %d, should be %d", ErrRefusedNotAuthorised, 5)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestConnectPacket(t *testing.T) {
|
||||||
|
connectPacketBytes := bytes.NewBuffer([]byte{16, 52, 0, 4, 77, 81, 84, 84, 4, 204, 0, 0, 0, 0, 0, 4, 116, 101, 115, 116, 0, 12, 84, 101, 115, 116, 32, 80, 97, 121, 108, 111, 97, 100, 0, 8, 116, 101, 115, 116, 117, 115, 101, 114, 0, 8, 116, 101, 115, 116, 112, 97, 115, 115})
|
||||||
|
packet, err := ReadPacket(connectPacketBytes)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Error reading packet: %s", err.Error())
|
||||||
|
}
|
||||||
|
cp := packet.(*ConnectPacket)
|
||||||
|
if cp.ProtocolName != "MQTT" {
|
||||||
|
t.Errorf("Connect Packet ProtocolName is %s, should be %s", cp.ProtocolName, "MQTT")
|
||||||
|
}
|
||||||
|
if cp.ProtocolVersion != 4 {
|
||||||
|
t.Errorf("Connect Packet ProtocolVersion is %d, should be %d", cp.ProtocolVersion, 4)
|
||||||
|
}
|
||||||
|
if cp.UsernameFlag != true {
|
||||||
|
t.Errorf("Connect Packet UsernameFlag is %t, should be %t", cp.UsernameFlag, true)
|
||||||
|
}
|
||||||
|
if cp.Username != "testuser" {
|
||||||
|
t.Errorf("Connect Packet Username is %s, should be %s", cp.Username, "testuser")
|
||||||
|
}
|
||||||
|
if cp.PasswordFlag != true {
|
||||||
|
t.Errorf("Connect Packet PasswordFlag is %t, should be %t", cp.PasswordFlag, true)
|
||||||
|
}
|
||||||
|
if string(cp.Password) != "testpass" {
|
||||||
|
t.Errorf("Connect Packet Password is %s, should be %s", string(cp.Password), "testpass")
|
||||||
|
}
|
||||||
|
if cp.WillFlag != true {
|
||||||
|
t.Errorf("Connect Packet WillFlag is %t, should be %t", cp.WillFlag, true)
|
||||||
|
}
|
||||||
|
if cp.WillTopic != "test" {
|
||||||
|
t.Errorf("Connect Packet WillTopic is %s, should be %s", cp.WillTopic, "test")
|
||||||
|
}
|
||||||
|
if cp.WillQos != 1 {
|
||||||
|
t.Errorf("Connect Packet WillQos is %d, should be %d", cp.WillQos, 1)
|
||||||
|
}
|
||||||
|
if cp.WillRetain != false {
|
||||||
|
t.Errorf("Connect Packet WillRetain is %t, should be %t", cp.WillRetain, false)
|
||||||
|
}
|
||||||
|
if string(cp.WillMessage) != "Test Payload" {
|
||||||
|
t.Errorf("Connect Packet WillMessage is %s, should be %s", string(cp.WillMessage), "Test Payload")
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PingreqPacket is an internal representation of the fields of the
|
||||||
|
//Pingreq MQTT packet
|
||||||
|
type PingreqPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PingreqPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s", pr.FixedHeader)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PingreqPacket) Write(w io.Writer) error {
|
||||||
|
packet := pr.FixedHeader.pack()
|
||||||
|
_, err := packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (pr *PingreqPacket) Unpack(b io.Reader) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (pr *PingreqPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: 0}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PingrespPacket is an internal representation of the fields of the
|
||||||
|
//Pingresp MQTT packet
|
||||||
|
type PingrespPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PingrespPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s", pr.FixedHeader)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PingrespPacket) Write(w io.Writer) error {
|
||||||
|
packet := pr.FixedHeader.pack()
|
||||||
|
_, err := packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (pr *PingrespPacket) Unpack(b io.Reader) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (pr *PingrespPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: 0}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PubackPacket is an internal representation of the fields of the
|
||||||
|
//Puback MQTT packet
|
||||||
|
type PubackPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pa *PubackPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", pa.FixedHeader)
|
||||||
|
str += fmt.Sprintf("messageID: %d", pa.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pa *PubackPacket) Write(w io.Writer) error {
|
||||||
|
var err error
|
||||||
|
pa.FixedHeader.RemainingLength = 2
|
||||||
|
packet := pa.FixedHeader.pack()
|
||||||
|
packet.Write(encodeUint16(pa.MessageID))
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (pa *PubackPacket) Unpack(b io.Reader) error {
|
||||||
|
pa.MessageID = decodeUint16(b)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (pa *PubackPacket) Details() Details {
|
||||||
|
return Details{Qos: pa.Qos, MessageID: pa.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PubcompPacket is an internal representation of the fields of the
|
||||||
|
//Pubcomp MQTT packet
|
||||||
|
type PubcompPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pc *PubcompPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", pc.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d", pc.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pc *PubcompPacket) Write(w io.Writer) error {
|
||||||
|
var err error
|
||||||
|
pc.FixedHeader.RemainingLength = 2
|
||||||
|
packet := pc.FixedHeader.pack()
|
||||||
|
packet.Write(encodeUint16(pc.MessageID))
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (pc *PubcompPacket) Unpack(b io.Reader) error {
|
||||||
|
pc.MessageID = decodeUint16(b)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (pc *PubcompPacket) Details() Details {
|
||||||
|
return Details{Qos: pc.Qos, MessageID: pc.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,78 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PublishPacket is an internal representation of the fields of the
|
||||||
|
//Publish MQTT packet
|
||||||
|
type PublishPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
TopicName string
|
||||||
|
MessageID uint16
|
||||||
|
Payload []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *PublishPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", p.FixedHeader)
|
||||||
|
str += fmt.Sprintf("topicName: %s MessageID: %d\n", p.TopicName, p.MessageID)
|
||||||
|
str += fmt.Sprintf("payload: %s\n", string(p.Payload))
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *PublishPacket) Write(w io.Writer) error {
|
||||||
|
var body bytes.Buffer
|
||||||
|
var err error
|
||||||
|
|
||||||
|
body.Write(encodeString(p.TopicName))
|
||||||
|
if p.Qos > 0 {
|
||||||
|
body.Write(encodeUint16(p.MessageID))
|
||||||
|
}
|
||||||
|
p.FixedHeader.RemainingLength = body.Len() + len(p.Payload)
|
||||||
|
packet := p.FixedHeader.pack()
|
||||||
|
packet.Write(body.Bytes())
|
||||||
|
packet.Write(p.Payload)
|
||||||
|
_, err = w.Write(packet.Bytes())
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (p *PublishPacket) Unpack(b io.Reader) error {
|
||||||
|
var payloadLength = p.FixedHeader.RemainingLength
|
||||||
|
p.TopicName = decodeString(b)
|
||||||
|
if p.Qos > 0 {
|
||||||
|
p.MessageID = decodeUint16(b)
|
||||||
|
payloadLength -= len(p.TopicName) + 4
|
||||||
|
} else {
|
||||||
|
payloadLength -= len(p.TopicName) + 2
|
||||||
|
}
|
||||||
|
if payloadLength < 0 {
|
||||||
|
return fmt.Errorf("Error upacking publish, payload length < 0")
|
||||||
|
}
|
||||||
|
p.Payload = make([]byte, payloadLength)
|
||||||
|
_, err := b.Read(p.Payload)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Copy creates a new PublishPacket with the same topic and payload
|
||||||
|
//but an empty fixed header, useful for when you want to deliver
|
||||||
|
//a message with different properties such as Qos but the same
|
||||||
|
//content
|
||||||
|
func (p *PublishPacket) Copy() *PublishPacket {
|
||||||
|
newP := NewControlPacket(Publish).(*PublishPacket)
|
||||||
|
newP.TopicName = p.TopicName
|
||||||
|
newP.Payload = p.Payload
|
||||||
|
|
||||||
|
return newP
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (p *PublishPacket) Details() Details {
|
||||||
|
return Details{Qos: p.Qos, MessageID: p.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PubrecPacket is an internal representation of the fields of the
|
||||||
|
//Pubrec MQTT packet
|
||||||
|
type PubrecPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PubrecPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", pr.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d", pr.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PubrecPacket) Write(w io.Writer) error {
|
||||||
|
var err error
|
||||||
|
pr.FixedHeader.RemainingLength = 2
|
||||||
|
packet := pr.FixedHeader.pack()
|
||||||
|
packet.Write(encodeUint16(pr.MessageID))
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (pr *PubrecPacket) Unpack(b io.Reader) error {
|
||||||
|
pr.MessageID = decodeUint16(b)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (pr *PubrecPacket) Details() Details {
|
||||||
|
return Details{Qos: pr.Qos, MessageID: pr.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PubrelPacket is an internal representation of the fields of the
|
||||||
|
//Pubrel MQTT packet
|
||||||
|
type PubrelPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PubrelPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", pr.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d", pr.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pr *PubrelPacket) Write(w io.Writer) error {
|
||||||
|
var err error
|
||||||
|
pr.FixedHeader.RemainingLength = 2
|
||||||
|
packet := pr.FixedHeader.pack()
|
||||||
|
packet.Write(encodeUint16(pr.MessageID))
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (pr *PubrelPacket) Unpack(b io.Reader) error {
|
||||||
|
pr.MessageID = decodeUint16(b)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (pr *PubrelPacket) Details() Details {
|
||||||
|
return Details{Qos: pr.Qos, MessageID: pr.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//SubackPacket is an internal representation of the fields of the
|
||||||
|
//Suback MQTT packet
|
||||||
|
type SubackPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
ReturnCodes []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *SubackPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", sa.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d", sa.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *SubackPacket) Write(w io.Writer) error {
|
||||||
|
var body bytes.Buffer
|
||||||
|
var err error
|
||||||
|
body.Write(encodeUint16(sa.MessageID))
|
||||||
|
body.Write(sa.ReturnCodes)
|
||||||
|
sa.FixedHeader.RemainingLength = body.Len()
|
||||||
|
packet := sa.FixedHeader.pack()
|
||||||
|
packet.Write(body.Bytes())
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (sa *SubackPacket) Unpack(b io.Reader) error {
|
||||||
|
var qosBuffer bytes.Buffer
|
||||||
|
sa.MessageID = decodeUint16(b)
|
||||||
|
qosBuffer.ReadFrom(b)
|
||||||
|
sa.ReturnCodes = qosBuffer.Bytes()
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (sa *SubackPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: sa.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,61 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//SubscribePacket is an internal representation of the fields of the
|
||||||
|
//Subscribe MQTT packet
|
||||||
|
type SubscribePacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
Topics []string
|
||||||
|
Qoss []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SubscribePacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s", s.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d topics: %s", s.MessageID, s.Topics)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SubscribePacket) Write(w io.Writer) error {
|
||||||
|
var body bytes.Buffer
|
||||||
|
var err error
|
||||||
|
|
||||||
|
body.Write(encodeUint16(s.MessageID))
|
||||||
|
for i, topic := range s.Topics {
|
||||||
|
body.Write(encodeString(topic))
|
||||||
|
body.WriteByte(s.Qoss[i])
|
||||||
|
}
|
||||||
|
s.FixedHeader.RemainingLength = body.Len()
|
||||||
|
packet := s.FixedHeader.pack()
|
||||||
|
packet.Write(body.Bytes())
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (s *SubscribePacket) Unpack(b io.Reader) error {
|
||||||
|
s.MessageID = decodeUint16(b)
|
||||||
|
payloadLength := s.FixedHeader.RemainingLength - 2
|
||||||
|
for payloadLength > 0 {
|
||||||
|
topic := decodeString(b)
|
||||||
|
s.Topics = append(s.Topics, topic)
|
||||||
|
qos := decodeByte(b)
|
||||||
|
s.Qoss = append(s.Qoss, qos)
|
||||||
|
payloadLength -= 2 + len(topic) + 1 //2 bytes of string length, plus string, plus 1 byte for Qos
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (s *SubscribePacket) Details() Details {
|
||||||
|
return Details{Qos: 1, MessageID: s.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//UnsubackPacket is an internal representation of the fields of the
|
||||||
|
//Unsuback MQTT packet
|
||||||
|
type UnsubackPacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ua *UnsubackPacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", ua.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d", ua.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ua *UnsubackPacket) Write(w io.Writer) error {
|
||||||
|
var err error
|
||||||
|
ua.FixedHeader.RemainingLength = 2
|
||||||
|
packet := ua.FixedHeader.pack()
|
||||||
|
packet.Write(encodeUint16(ua.MessageID))
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (ua *UnsubackPacket) Unpack(b io.Reader) error {
|
||||||
|
ua.MessageID = decodeUint16(b)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (ua *UnsubackPacket) Details() Details {
|
||||||
|
return Details{Qos: 0, MessageID: ua.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
package packets
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
//UnsubscribePacket is an internal representation of the fields of the
|
||||||
|
//Unsubscribe MQTT packet
|
||||||
|
type UnsubscribePacket struct {
|
||||||
|
FixedHeader
|
||||||
|
MessageID uint16
|
||||||
|
Topics []string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *UnsubscribePacket) String() string {
|
||||||
|
str := fmt.Sprintf("%s\n", u.FixedHeader)
|
||||||
|
str += fmt.Sprintf("MessageID: %d", u.MessageID)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *UnsubscribePacket) Write(w io.Writer) error {
|
||||||
|
var body bytes.Buffer
|
||||||
|
var err error
|
||||||
|
body.Write(encodeUint16(u.MessageID))
|
||||||
|
for _, topic := range u.Topics {
|
||||||
|
body.Write(encodeString(topic))
|
||||||
|
}
|
||||||
|
u.FixedHeader.RemainingLength = body.Len()
|
||||||
|
packet := u.FixedHeader.pack()
|
||||||
|
packet.Write(body.Bytes())
|
||||||
|
_, err = packet.WriteTo(w)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unpack decodes the details of a ControlPacket after the fixed
|
||||||
|
//header has been read
|
||||||
|
func (u *UnsubscribePacket) Unpack(b io.Reader) error {
|
||||||
|
u.MessageID = decodeUint16(b)
|
||||||
|
var topic string
|
||||||
|
for topic = decodeString(b); topic != ""; topic = decodeString(b) {
|
||||||
|
u.Topics = append(u.Topics, topic)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//Details returns a Details struct containing the Qos and
|
||||||
|
//MessageID of this ControlPacket
|
||||||
|
func (u *UnsubscribePacket) Details() Details {
|
||||||
|
return Details{Qos: 1, MessageID: u.MessageID}
|
||||||
|
}
|
|
@ -0,0 +1,85 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
func keepalive(c *client) {
|
||||||
|
DEBUG.Println(PNG, "keepalive starting")
|
||||||
|
|
||||||
|
pingTimer := timer{Timer: time.NewTimer(c.options.KeepAlive)}
|
||||||
|
pingRespTimer := timer{Timer: time.NewTimer(c.options.PingTimeout)}
|
||||||
|
|
||||||
|
pingRespTimer.Stop()
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-c.stop:
|
||||||
|
DEBUG.Println(PNG, "keepalive stopped")
|
||||||
|
c.workers.Done()
|
||||||
|
return
|
||||||
|
case <-pingTimer.C:
|
||||||
|
pingTimer.SetRead(true)
|
||||||
|
DEBUG.Println(PNG, "keepalive sending ping")
|
||||||
|
ping := packets.NewControlPacket(packets.Pingreq).(*packets.PingreqPacket)
|
||||||
|
//We don't want to wait behind large messages being sent, the Write call
|
||||||
|
//will block until it it able to send the packet.
|
||||||
|
ping.Write(c.conn)
|
||||||
|
|
||||||
|
pingRespTimer.Reset(c.options.PingTimeout)
|
||||||
|
case <-c.pingResp:
|
||||||
|
DEBUG.Println(NET, "resetting ping timers")
|
||||||
|
pingRespTimer.Stop()
|
||||||
|
pingTimer.Reset(c.options.KeepAlive)
|
||||||
|
case <-pingRespTimer.C:
|
||||||
|
pingRespTimer.SetRead(true)
|
||||||
|
CRITICAL.Println(PNG, "pingresp not received, disconnecting")
|
||||||
|
c.workers.Done()
|
||||||
|
c.internalConnLost(errors.New("pingresp not received, disconnecting"))
|
||||||
|
pingTimer.Stop()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type timer struct {
|
||||||
|
*time.Timer
|
||||||
|
readFrom bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *timer) SetRead(v bool) {
|
||||||
|
t.readFrom = v
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *timer) Stop() bool {
|
||||||
|
defer t.SetRead(true)
|
||||||
|
|
||||||
|
if !t.Timer.Stop() && !t.readFrom {
|
||||||
|
<-t.C
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *timer) Reset(d time.Duration) bool {
|
||||||
|
defer t.SetRead(false)
|
||||||
|
t.Stop()
|
||||||
|
return t.Timer.Reset(d)
|
||||||
|
}
|
|
@ -0,0 +1,163 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"container/list"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
// route is a type which associates MQTT Topic strings with a
|
||||||
|
// callback to be executed upon the arrival of a message associated
|
||||||
|
// with a subscription to that topic.
|
||||||
|
type route struct {
|
||||||
|
topic string
|
||||||
|
callback MessageHandler
|
||||||
|
}
|
||||||
|
|
||||||
|
// match takes a slice of strings which represent the route being tested having been split on '/'
|
||||||
|
// separators, and a slice of strings representing the topic string in the published message, similarly
|
||||||
|
// split.
|
||||||
|
// The function determines if the topic string matches the route according to the MQTT topic rules
|
||||||
|
// and returns a boolean of the outcome
|
||||||
|
func match(route []string, topic []string) bool {
|
||||||
|
if len(route) == 0 {
|
||||||
|
if len(topic) == 0 {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(topic) == 0 {
|
||||||
|
if route[0] == "#" {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
if route[0] == "#" {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (route[0] == "+") || (route[0] == topic[0]) {
|
||||||
|
return match(route[1:], topic[1:])
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func routeIncludesTopic(route, topic string) bool {
|
||||||
|
return match(strings.Split(route, "/"), strings.Split(topic, "/"))
|
||||||
|
}
|
||||||
|
|
||||||
|
// match takes the topic string of the published message and does a basic compare to the
|
||||||
|
// string of the current Route, if they match it returns true
|
||||||
|
func (r *route) match(topic string) bool {
|
||||||
|
return r.topic == topic || routeIncludesTopic(r.topic, topic)
|
||||||
|
}
|
||||||
|
|
||||||
|
type router struct {
|
||||||
|
sync.RWMutex
|
||||||
|
routes *list.List
|
||||||
|
defaultHandler MessageHandler
|
||||||
|
messages chan *packets.PublishPacket
|
||||||
|
stop chan bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// newRouter returns a new instance of a Router and channel which can be used to tell the Router
|
||||||
|
// to stop
|
||||||
|
func newRouter() (*router, chan bool) {
|
||||||
|
router := &router{routes: list.New(), messages: make(chan *packets.PublishPacket), stop: make(chan bool)}
|
||||||
|
stop := router.stop
|
||||||
|
return router, stop
|
||||||
|
}
|
||||||
|
|
||||||
|
// addRoute takes a topic string and MessageHandler callback. It looks in the current list of
|
||||||
|
// routes to see if there is already a matching Route. If there is it replaces the current
|
||||||
|
// callback with the new one. If not it add a new entry to the list of Routes.
|
||||||
|
func (r *router) addRoute(topic string, callback MessageHandler) {
|
||||||
|
r.Lock()
|
||||||
|
defer r.Unlock()
|
||||||
|
for e := r.routes.Front(); e != nil; e = e.Next() {
|
||||||
|
if e.Value.(*route).match(topic) {
|
||||||
|
r := e.Value.(*route)
|
||||||
|
r.callback = callback
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
r.routes.PushBack(&route{topic: topic, callback: callback})
|
||||||
|
}
|
||||||
|
|
||||||
|
// deleteRoute takes a route string, looks for a matching Route in the list of Routes. If
|
||||||
|
// found it removes the Route from the list.
|
||||||
|
func (r *router) deleteRoute(topic string) {
|
||||||
|
r.Lock()
|
||||||
|
defer r.Unlock()
|
||||||
|
for e := r.routes.Front(); e != nil; e = e.Next() {
|
||||||
|
if e.Value.(*route).match(topic) {
|
||||||
|
r.routes.Remove(e)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// setDefaultHandler assigns a default callback that will be called if no matching Route
|
||||||
|
// is found for an incoming Publish.
|
||||||
|
func (r *router) setDefaultHandler(handler MessageHandler) {
|
||||||
|
r.defaultHandler = handler
|
||||||
|
}
|
||||||
|
|
||||||
|
// matchAndDispatch takes a channel of Message pointers as input and starts a go routine that
|
||||||
|
// takes messages off the channel, matches them against the internal route list and calls the
|
||||||
|
// associated callback (or the defaultHandler, if one exists and no other route matched). If
|
||||||
|
// anything is sent down the stop channel the function will end.
|
||||||
|
func (r *router) matchAndDispatch(messages <-chan *packets.PublishPacket, order bool, client *client) {
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case message := <-messages:
|
||||||
|
sent := false
|
||||||
|
r.RLock()
|
||||||
|
for e := r.routes.Front(); e != nil; e = e.Next() {
|
||||||
|
if e.Value.(*route).match(message.TopicName) {
|
||||||
|
if order {
|
||||||
|
r.RUnlock()
|
||||||
|
e.Value.(*route).callback(client, messageFromPublish(message))
|
||||||
|
r.RLock()
|
||||||
|
} else {
|
||||||
|
go e.Value.(*route).callback(client, messageFromPublish(message))
|
||||||
|
}
|
||||||
|
sent = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
r.RUnlock()
|
||||||
|
if !sent && r.defaultHandler != nil {
|
||||||
|
if order {
|
||||||
|
r.RLock()
|
||||||
|
r.defaultHandler(client, messageFromPublish(message))
|
||||||
|
r.RUnlock()
|
||||||
|
} else {
|
||||||
|
go r.defaultHandler(client, messageFromPublish(message))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case <-r.stop:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
|
@ -0,0 +1,126 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
inboundPrefix = "i."
|
||||||
|
outboundPrefix = "o."
|
||||||
|
)
|
||||||
|
|
||||||
|
// Store is an interface which can be used to provide implementations
|
||||||
|
// for message persistence.
|
||||||
|
// Because we may have to store distinct messages with the same
|
||||||
|
// message ID, we need a unique key for each message. This is
|
||||||
|
// possible by prepending "i." or "o." to each message id
|
||||||
|
type Store interface {
|
||||||
|
Open()
|
||||||
|
Put(key string, message packets.ControlPacket)
|
||||||
|
Get(key string) packets.ControlPacket
|
||||||
|
All() []string
|
||||||
|
Del(key string)
|
||||||
|
Close()
|
||||||
|
Reset()
|
||||||
|
}
|
||||||
|
|
||||||
|
// A key MUST have the form "X.[messageid]"
|
||||||
|
// where X is 'i' or 'o'
|
||||||
|
func mIDFromKey(key string) uint16 {
|
||||||
|
s := key[2:]
|
||||||
|
i, err := strconv.Atoi(s)
|
||||||
|
chkerr(err)
|
||||||
|
return uint16(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return a string of the form "i.[id]"
|
||||||
|
func inboundKeyFromMID(id uint16) string {
|
||||||
|
return fmt.Sprintf("%s%d", inboundPrefix, id)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return a string of the form "o.[id]"
|
||||||
|
func outboundKeyFromMID(id uint16) string {
|
||||||
|
return fmt.Sprintf("%s%d", outboundPrefix, id)
|
||||||
|
}
|
||||||
|
|
||||||
|
// govern which outgoing messages are persisted
|
||||||
|
func persistOutbound(s Store, m packets.ControlPacket) {
|
||||||
|
switch m.Details().Qos {
|
||||||
|
case 0:
|
||||||
|
switch m.(type) {
|
||||||
|
case *packets.PubackPacket, *packets.PubcompPacket:
|
||||||
|
// Sending puback. delete matching publish
|
||||||
|
// from ibound
|
||||||
|
s.Del(inboundKeyFromMID(m.Details().MessageID))
|
||||||
|
}
|
||||||
|
case 1:
|
||||||
|
switch m.(type) {
|
||||||
|
case *packets.PublishPacket, *packets.PubrelPacket, *packets.SubscribePacket, *packets.UnsubscribePacket:
|
||||||
|
// Sending publish. store in obound
|
||||||
|
// until puback received
|
||||||
|
s.Put(outboundKeyFromMID(m.Details().MessageID), m)
|
||||||
|
default:
|
||||||
|
ERROR.Println(STR, "Asked to persist an invalid message type")
|
||||||
|
}
|
||||||
|
case 2:
|
||||||
|
switch m.(type) {
|
||||||
|
case *packets.PublishPacket:
|
||||||
|
// Sending publish. store in obound
|
||||||
|
// until pubrel received
|
||||||
|
s.Put(outboundKeyFromMID(m.Details().MessageID), m)
|
||||||
|
default:
|
||||||
|
ERROR.Println(STR, "Asked to persist an invalid message type")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// govern which incoming messages are persisted
|
||||||
|
func persistInbound(s Store, m packets.ControlPacket) {
|
||||||
|
switch m.Details().Qos {
|
||||||
|
case 0:
|
||||||
|
switch m.(type) {
|
||||||
|
case *packets.PubackPacket, *packets.SubackPacket, *packets.UnsubackPacket, *packets.PubcompPacket:
|
||||||
|
// Received a puback. delete matching publish
|
||||||
|
// from obound
|
||||||
|
s.Del(outboundKeyFromMID(m.Details().MessageID))
|
||||||
|
case *packets.PublishPacket, *packets.PubrecPacket, *packets.PingrespPacket, *packets.ConnackPacket:
|
||||||
|
default:
|
||||||
|
ERROR.Println(STR, "Asked to persist an invalid messages type")
|
||||||
|
}
|
||||||
|
case 1:
|
||||||
|
switch m.(type) {
|
||||||
|
case *packets.PublishPacket, *packets.PubrelPacket:
|
||||||
|
// Received a publish. store it in ibound
|
||||||
|
// until puback sent
|
||||||
|
s.Put(inboundKeyFromMID(m.Details().MessageID), m)
|
||||||
|
default:
|
||||||
|
ERROR.Println(STR, "Asked to persist an invalid messages type")
|
||||||
|
}
|
||||||
|
case 2:
|
||||||
|
switch m.(type) {
|
||||||
|
case *packets.PublishPacket:
|
||||||
|
// Received a publish. store it in ibound
|
||||||
|
// until pubrel received
|
||||||
|
s.Put(inboundKeyFromMID(m.Details().MessageID), m)
|
||||||
|
default:
|
||||||
|
ERROR.Println(STR, "Asked to persist an invalid messages type")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,157 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2014 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
//PacketAndToken is a struct that contains both a ControlPacket and a
|
||||||
|
//Token. This struct is passed via channels between the client interface
|
||||||
|
//code and the underlying code responsible for sending and receiving
|
||||||
|
//MQTT messages.
|
||||||
|
type PacketAndToken struct {
|
||||||
|
p packets.ControlPacket
|
||||||
|
t Token
|
||||||
|
}
|
||||||
|
|
||||||
|
//Token defines the interface for the tokens used to indicate when
|
||||||
|
//actions have completed.
|
||||||
|
type Token interface {
|
||||||
|
Wait() bool
|
||||||
|
WaitTimeout(time.Duration) bool
|
||||||
|
flowComplete()
|
||||||
|
Error() error
|
||||||
|
}
|
||||||
|
|
||||||
|
type baseToken struct {
|
||||||
|
m sync.RWMutex
|
||||||
|
complete chan struct{}
|
||||||
|
ready bool
|
||||||
|
err error
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait will wait indefinitely for the Token to complete, ie the Publish
|
||||||
|
// to be sent and confirmed receipt from the broker
|
||||||
|
func (b *baseToken) Wait() bool {
|
||||||
|
b.m.Lock()
|
||||||
|
defer b.m.Unlock()
|
||||||
|
if !b.ready {
|
||||||
|
<-b.complete
|
||||||
|
b.ready = true
|
||||||
|
}
|
||||||
|
return b.ready
|
||||||
|
}
|
||||||
|
|
||||||
|
// WaitTimeout takes a time in ms to wait for the flow associated with the
|
||||||
|
// Token to complete, returns true if it returned before the timeout or
|
||||||
|
// returns false if the timeout occurred. In the case of a timeout the Token
|
||||||
|
// does not have an error set in case the caller wishes to wait again
|
||||||
|
func (b *baseToken) WaitTimeout(d time.Duration) bool {
|
||||||
|
b.m.Lock()
|
||||||
|
defer b.m.Unlock()
|
||||||
|
if !b.ready {
|
||||||
|
select {
|
||||||
|
case <-b.complete:
|
||||||
|
b.ready = true
|
||||||
|
case <-time.After(d):
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return b.ready
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *baseToken) flowComplete() {
|
||||||
|
close(b.complete)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *baseToken) Error() error {
|
||||||
|
b.m.RLock()
|
||||||
|
defer b.m.RUnlock()
|
||||||
|
return b.err
|
||||||
|
}
|
||||||
|
|
||||||
|
func newToken(tType byte) Token {
|
||||||
|
switch tType {
|
||||||
|
case packets.Connect:
|
||||||
|
return &ConnectToken{baseToken: baseToken{complete: make(chan struct{})}}
|
||||||
|
case packets.Subscribe:
|
||||||
|
return &SubscribeToken{baseToken: baseToken{complete: make(chan struct{})}, subResult: make(map[string]byte)}
|
||||||
|
case packets.Publish:
|
||||||
|
return &PublishToken{baseToken: baseToken{complete: make(chan struct{})}}
|
||||||
|
case packets.Unsubscribe:
|
||||||
|
return &UnsubscribeToken{baseToken: baseToken{complete: make(chan struct{})}}
|
||||||
|
case packets.Disconnect:
|
||||||
|
return &DisconnectToken{baseToken: baseToken{complete: make(chan struct{})}}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
//ConnectToken is an extension of Token containing the extra fields
|
||||||
|
//required to provide information about calls to Connect()
|
||||||
|
type ConnectToken struct {
|
||||||
|
baseToken
|
||||||
|
returnCode byte
|
||||||
|
}
|
||||||
|
|
||||||
|
//ReturnCode returns the acknowlegement code in the connack sent
|
||||||
|
//in response to a Connect()
|
||||||
|
func (c *ConnectToken) ReturnCode() byte {
|
||||||
|
c.m.RLock()
|
||||||
|
defer c.m.RUnlock()
|
||||||
|
return c.returnCode
|
||||||
|
}
|
||||||
|
|
||||||
|
//PublishToken is an extension of Token containing the extra fields
|
||||||
|
//required to provide information about calls to Publish()
|
||||||
|
type PublishToken struct {
|
||||||
|
baseToken
|
||||||
|
messageID uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
//MessageID returns the MQTT message ID that was assigned to the
|
||||||
|
//Publish packet when it was sent to the broker
|
||||||
|
func (p *PublishToken) MessageID() uint16 {
|
||||||
|
return p.messageID
|
||||||
|
}
|
||||||
|
|
||||||
|
//SubscribeToken is an extension of Token containing the extra fields
|
||||||
|
//required to provide information about calls to Subscribe()
|
||||||
|
type SubscribeToken struct {
|
||||||
|
baseToken
|
||||||
|
subs []string
|
||||||
|
subResult map[string]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
//Result returns a map of topics that were subscribed to along with
|
||||||
|
//the matching return code from the broker. This is either the Qos
|
||||||
|
//value of the subscription or an error code.
|
||||||
|
func (s *SubscribeToken) Result() map[string]byte {
|
||||||
|
s.m.RLock()
|
||||||
|
defer s.m.RUnlock()
|
||||||
|
return s.subResult
|
||||||
|
}
|
||||||
|
|
||||||
|
//UnsubscribeToken is an extension of Token containing the extra fields
|
||||||
|
//required to provide information about calls to Unsubscribe()
|
||||||
|
type UnsubscribeToken struct {
|
||||||
|
baseToken
|
||||||
|
}
|
||||||
|
|
||||||
|
//DisconnectToken is an extension of Token containing the extra fields
|
||||||
|
//required to provide information about calls to Disconnect()
|
||||||
|
type DisconnectToken struct {
|
||||||
|
baseToken
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2014 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
//InvalidQos is the error returned when an packet is to be sent
|
||||||
|
//with an invalid Qos value
|
||||||
|
var ErrInvalidQos = errors.New("Invalid QoS")
|
||||||
|
|
||||||
|
//InvalidTopicEmptyString is the error returned when a topic string
|
||||||
|
//is passed in that is 0 length
|
||||||
|
var ErrInvalidTopicEmptyString = errors.New("Invalid Topic; empty string")
|
||||||
|
|
||||||
|
//InvalidTopicMultilevel is the error returned when a topic string
|
||||||
|
//is passed in that has the multi level wildcard in any position but
|
||||||
|
//the last
|
||||||
|
var ErrInvalidTopicMultilevel = errors.New("Invalid Topic; multi-level wildcard must be last level")
|
||||||
|
|
||||||
|
// Topic Names and Topic Filters
|
||||||
|
// The MQTT v3.1.1 spec clarifies a number of ambiguities with regard
|
||||||
|
// to the validity of Topic strings.
|
||||||
|
// - A Topic must be between 1 and 65535 bytes.
|
||||||
|
// - A Topic is case sensitive.
|
||||||
|
// - A Topic may contain whitespace.
|
||||||
|
// - A Topic containing a leading forward slash is different than a Topic without.
|
||||||
|
// - A Topic may be "/" (two levels, both empty string).
|
||||||
|
// - A Topic must be UTF-8 encoded.
|
||||||
|
// - A Topic may contain any number of levels.
|
||||||
|
// - A Topic may contain an empty level (two forward slashes in a row).
|
||||||
|
// - A TopicName may not contain a wildcard.
|
||||||
|
// - A TopicFilter may only have a # (multi-level) wildcard as the last level.
|
||||||
|
// - A TopicFilter may contain any number of + (single-level) wildcards.
|
||||||
|
// - A TopicFilter with a # will match the absense of a level
|
||||||
|
// Example: a subscription to "foo/#" will match messages published to "foo".
|
||||||
|
|
||||||
|
func validateSubscribeMap(subs map[string]byte) ([]string, []byte, error) {
|
||||||
|
var topics []string
|
||||||
|
var qoss []byte
|
||||||
|
for topic, qos := range subs {
|
||||||
|
if err := validateTopicAndQos(topic, qos); err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
topics = append(topics, topic)
|
||||||
|
qoss = append(qoss, qos)
|
||||||
|
}
|
||||||
|
|
||||||
|
return topics, qoss, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func validateTopicAndQos(topic string, qos byte) error {
|
||||||
|
if len(topic) == 0 {
|
||||||
|
return ErrInvalidTopicEmptyString
|
||||||
|
}
|
||||||
|
|
||||||
|
levels := strings.Split(topic, "/")
|
||||||
|
for i, level := range levels {
|
||||||
|
if level == "#" && i != len(levels)-1 {
|
||||||
|
return ErrInvalidTopicMultilevel
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if qos < 0 || qos > 2 {
|
||||||
|
return ErrInvalidQos
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Internal levels of library output that are initialised to not print
|
||||||
|
// anything but can be overridden by programmer
|
||||||
|
var (
|
||||||
|
ERROR *log.Logger
|
||||||
|
CRITICAL *log.Logger
|
||||||
|
WARN *log.Logger
|
||||||
|
DEBUG *log.Logger
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
ERROR = log.New(ioutil.Discard, "", 0)
|
||||||
|
CRITICAL = log.New(ioutil.Discard, "", 0)
|
||||||
|
WARN = log.New(ioutil.Discard, "", 0)
|
||||||
|
DEBUG = log.New(ioutil.Discard, "", 0)
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
_ "net/http/pprof"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
DEBUG = log.New(os.Stderr, "DEBUG ", log.Ltime)
|
||||||
|
WARN = log.New(os.Stderr, "WARNING ", log.Ltime)
|
||||||
|
CRITICAL = log.New(os.Stderr, "CRITICAL ", log.Ltime)
|
||||||
|
ERROR = log.New(os.Stderr, "ERROR ", log.Ltime)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
log.Println(http.ListenAndServe("localhost:6060", nil))
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_NewClient_simple(t *testing.T) {
|
||||||
|
ops := NewClientOptions().SetClientID("foo").AddBroker("tcp://10.10.0.1:1883")
|
||||||
|
c := NewClient(ops).(*client)
|
||||||
|
|
||||||
|
if c == nil {
|
||||||
|
t.Fatalf("ops is nil")
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.ClientID != "foo" {
|
||||||
|
t.Fatalf("bad client id")
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.Servers[0].Scheme != "tcp" {
|
||||||
|
t.Fatalf("bad server scheme")
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.Servers[0].Host != "10.10.0.1:1883" {
|
||||||
|
t.Fatalf("bad server host")
|
||||||
|
}
|
||||||
|
}
|
111
vendor/github.com/eclipse/paho.mqtt.golang/unit_messageids_test.go
generated
vendored
Normal file
111
vendor/github.com/eclipse/paho.mqtt.golang/unit_messageids_test.go
generated
vendored
Normal file
|
@ -0,0 +1,111 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type DummyToken struct{}
|
||||||
|
|
||||||
|
func (d *DummyToken) Wait() bool {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DummyToken) WaitTimeout(t time.Duration) bool {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DummyToken) flowComplete() {}
|
||||||
|
|
||||||
|
func (d *DummyToken) Error() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_getID(t *testing.T) {
|
||||||
|
mids := &messageIds{index: make(map[uint16]Token)}
|
||||||
|
|
||||||
|
i1 := mids.getID(&DummyToken{})
|
||||||
|
|
||||||
|
if i1 != 1 {
|
||||||
|
t.Fatalf("i1 was wrong: %v", i1)
|
||||||
|
}
|
||||||
|
|
||||||
|
i2 := mids.getID(&DummyToken{})
|
||||||
|
|
||||||
|
if i2 != 2 {
|
||||||
|
t.Fatalf("i2 was wrong: %v", i2)
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := uint16(3); i < 100; i++ {
|
||||||
|
id := mids.getID(&DummyToken{})
|
||||||
|
if id != i {
|
||||||
|
t.Fatalf("id was wrong expected %v got %v", i, id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_freeID(t *testing.T) {
|
||||||
|
mids := &messageIds{index: make(map[uint16]Token)}
|
||||||
|
|
||||||
|
i1 := mids.getID(&DummyToken{})
|
||||||
|
mids.freeID(i1)
|
||||||
|
|
||||||
|
if i1 != 1 {
|
||||||
|
t.Fatalf("i1 was wrong: %v", i1)
|
||||||
|
}
|
||||||
|
|
||||||
|
i2 := mids.getID(&DummyToken{})
|
||||||
|
fmt.Printf("i2: %v\n", i2)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_messageids_mix(t *testing.T) {
|
||||||
|
mids := &messageIds{index: make(map[uint16]Token)}
|
||||||
|
|
||||||
|
done := make(chan bool)
|
||||||
|
a := make(chan uint16, 3)
|
||||||
|
b := make(chan uint16, 20)
|
||||||
|
c := make(chan uint16, 100)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for i := 0; i < 10000; i++ {
|
||||||
|
a <- mids.getID(&DummyToken{})
|
||||||
|
mids.freeID(<-b)
|
||||||
|
}
|
||||||
|
done <- true
|
||||||
|
}()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for i := 0; i < 10000; i++ {
|
||||||
|
b <- mids.getID(&DummyToken{})
|
||||||
|
mids.freeID(<-c)
|
||||||
|
}
|
||||||
|
done <- true
|
||||||
|
}()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for i := 0; i < 10000; i++ {
|
||||||
|
c <- mids.getID(&DummyToken{})
|
||||||
|
mids.freeID(<-a)
|
||||||
|
}
|
||||||
|
done <- true
|
||||||
|
}()
|
||||||
|
|
||||||
|
<-done
|
||||||
|
<-done
|
||||||
|
<-done
|
||||||
|
}
|
|
@ -0,0 +1,126 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"crypto/x509"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_NewClientOptions_default(t *testing.T) {
|
||||||
|
o := NewClientOptions()
|
||||||
|
|
||||||
|
if o.ClientID != "" {
|
||||||
|
t.Fatalf("bad default client id")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.Username != "" {
|
||||||
|
t.Fatalf("bad default username")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.Password != "" {
|
||||||
|
t.Fatalf("bad default password")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.KeepAlive != 30*time.Second {
|
||||||
|
t.Fatalf("bad default timeout")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_NewClientOptions_mix(t *testing.T) {
|
||||||
|
o := NewClientOptions()
|
||||||
|
o.AddBroker("tcp://192.168.1.2:9999")
|
||||||
|
o.SetClientID("myclientid")
|
||||||
|
o.SetUsername("myuser")
|
||||||
|
o.SetPassword("mypassword")
|
||||||
|
o.SetKeepAlive(88 * time.Second)
|
||||||
|
|
||||||
|
if o.Servers[0].Scheme != "tcp" {
|
||||||
|
t.Fatalf("bad scheme")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.Servers[0].Host != "192.168.1.2:9999" {
|
||||||
|
t.Fatalf("bad host")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.ClientID != "myclientid" {
|
||||||
|
t.Fatalf("bad set clientid")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.Username != "myuser" {
|
||||||
|
t.Fatalf("bad set username")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.Password != "mypassword" {
|
||||||
|
t.Fatalf("bad set password")
|
||||||
|
}
|
||||||
|
|
||||||
|
if o.KeepAlive != 88000000000 {
|
||||||
|
t.Fatalf("bad set timeout: %d", o.KeepAlive)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_ModifyOptions(t *testing.T) {
|
||||||
|
o := NewClientOptions()
|
||||||
|
o.AddBroker("tcp://3.3.3.3:12345")
|
||||||
|
c := NewClient(o).(*client)
|
||||||
|
o.AddBroker("ws://2.2.2.2:9999")
|
||||||
|
o.SetOrderMatters(false)
|
||||||
|
|
||||||
|
if c.options.Servers[0].Scheme != "tcp" {
|
||||||
|
t.Fatalf("client options.server.Scheme was modified")
|
||||||
|
}
|
||||||
|
|
||||||
|
// if c.options.server.Host != "2.2.2.2:9999" {
|
||||||
|
// t.Fatalf("client options.server.Host was modified")
|
||||||
|
// }
|
||||||
|
|
||||||
|
if o.Order != false {
|
||||||
|
t.Fatalf("options.order was not modified")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_TLSConfig(t *testing.T) {
|
||||||
|
o := NewClientOptions().SetTLSConfig(&tls.Config{
|
||||||
|
RootCAs: x509.NewCertPool(),
|
||||||
|
ClientAuth: tls.NoClientCert,
|
||||||
|
ClientCAs: x509.NewCertPool(),
|
||||||
|
InsecureSkipVerify: true})
|
||||||
|
|
||||||
|
c := NewClient(o).(*client)
|
||||||
|
|
||||||
|
if c.options.TLSConfig.ClientAuth != tls.NoClientCert {
|
||||||
|
t.Fatalf("client options.tlsConfig ClientAuth incorrect")
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.options.TLSConfig.InsecureSkipVerify != true {
|
||||||
|
t.Fatalf("client options.tlsConfig InsecureSkipVerify incorrect")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_OnConnectionLost(t *testing.T) {
|
||||||
|
onconnlost := func(client Client, err error) {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
o := NewClientOptions().SetConnectionLostHandler(onconnlost)
|
||||||
|
|
||||||
|
c := NewClient(o).(*client)
|
||||||
|
|
||||||
|
if c.options.OnConnectionLost == nil {
|
||||||
|
t.Fatalf("client options.onconnlost was nil")
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,63 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_NewPingReqMessage(t *testing.T) {
|
||||||
|
pr := packets.NewControlPacket(packets.Pingreq).(*packets.PingreqPacket)
|
||||||
|
if pr.MessageType != packets.Pingreq {
|
||||||
|
t.Errorf("NewPingReqMessage bad msg type: %v", pr.MessageType)
|
||||||
|
}
|
||||||
|
if pr.RemainingLength != 0 {
|
||||||
|
t.Errorf("NewPingReqMessage bad remlen, expected 0, got %d", pr.RemainingLength)
|
||||||
|
}
|
||||||
|
|
||||||
|
exp := []byte{
|
||||||
|
0xC0,
|
||||||
|
0x00,
|
||||||
|
}
|
||||||
|
|
||||||
|
var buf bytes.Buffer
|
||||||
|
pr.Write(&buf)
|
||||||
|
bs := buf.Bytes()
|
||||||
|
|
||||||
|
if len(bs) != 2 {
|
||||||
|
t.Errorf("NewPingReqMessage.Bytes() wrong length: %d", len(bs))
|
||||||
|
}
|
||||||
|
|
||||||
|
if exp[0] != bs[0] || exp[1] != bs[1] {
|
||||||
|
t.Errorf("NewPingMessage.Bytes() wrong")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_DecodeMessage_pingresp(t *testing.T) {
|
||||||
|
bs := bytes.NewBuffer([]byte{
|
||||||
|
0xD0,
|
||||||
|
0x00,
|
||||||
|
})
|
||||||
|
presp, _ := packets.ReadPacket(bs)
|
||||||
|
if presp.(*packets.PingrespPacket).MessageType != packets.Pingresp {
|
||||||
|
t.Errorf("DecodeMessage ping response wrong msg type: %v", presp.(*packets.PingrespPacket).MessageType)
|
||||||
|
}
|
||||||
|
if presp.(*packets.PingrespPacket).RemainingLength != 0 {
|
||||||
|
t.Errorf("DecodeMessage ping response wrong rem len: %d", presp.(*packets.PingrespPacket).RemainingLength)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,288 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_newRouter(t *testing.T) {
|
||||||
|
router, stop := newRouter()
|
||||||
|
if router == nil {
|
||||||
|
t.Fatalf("router is nil")
|
||||||
|
}
|
||||||
|
if stop == nil {
|
||||||
|
t.Fatalf("stop is nil")
|
||||||
|
}
|
||||||
|
if router.routes.Len() != 0 {
|
||||||
|
t.Fatalf("router.routes was not empty")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_AddRoute(t *testing.T) {
|
||||||
|
router, _ := newRouter()
|
||||||
|
calledback := false
|
||||||
|
cb := func(client Client, msg Message) {
|
||||||
|
calledback = true
|
||||||
|
}
|
||||||
|
router.addRoute("/alpha", cb)
|
||||||
|
|
||||||
|
if router.routes.Len() != 1 {
|
||||||
|
t.Fatalf("router.routes was wrong")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_Match(t *testing.T) {
|
||||||
|
router, _ := newRouter()
|
||||||
|
router.addRoute("/alpha", nil)
|
||||||
|
|
||||||
|
if !router.routes.Front().Value.(*route).match("/alpha") {
|
||||||
|
t.Fatalf("match function is bad")
|
||||||
|
}
|
||||||
|
|
||||||
|
if router.routes.Front().Value.(*route).match("alpha") {
|
||||||
|
t.Fatalf("match function is bad")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_match(t *testing.T) {
|
||||||
|
|
||||||
|
check := func(route, topic string, exp bool) {
|
||||||
|
result := routeIncludesTopic(route, topic)
|
||||||
|
if exp != result {
|
||||||
|
t.Errorf("match was bad R: %v, T: %v, EXP: %v", route, topic, exp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ** Basic **
|
||||||
|
R := ""
|
||||||
|
T := ""
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "x"
|
||||||
|
T = ""
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = ""
|
||||||
|
T = "x"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "x"
|
||||||
|
T = "x"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "x"
|
||||||
|
T = "X"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "alpha"
|
||||||
|
T = "alpha"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "alpha"
|
||||||
|
T = "beta"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
// ** / **
|
||||||
|
R = "/"
|
||||||
|
T = "/"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/one"
|
||||||
|
T = "/one"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/"
|
||||||
|
T = "/two"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/two"
|
||||||
|
T = "/"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/two"
|
||||||
|
T = "two"
|
||||||
|
check(R, T, false) // a leading "/" creates a different topic
|
||||||
|
|
||||||
|
R = "/a/"
|
||||||
|
T = "/a"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/a/"
|
||||||
|
T = "/a/b"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/a/b"
|
||||||
|
T = "/a/b"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/b/"
|
||||||
|
T = "/a/b"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/a/b"
|
||||||
|
T = "/R/b"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
// ** + **
|
||||||
|
R = "/a/+/c"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/+/b/c"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/b/+"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/+/+"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/+/+/+"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/+/+/c"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/b/c/+" // different number of levels
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "+"
|
||||||
|
T = "a"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/+"
|
||||||
|
T = "a"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "+/+"
|
||||||
|
T = "/a"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "+/+"
|
||||||
|
T = "a"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
// ** # **
|
||||||
|
R = "#"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/#"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
// R = "/#/" // not valid
|
||||||
|
// T = "/a/b/c"
|
||||||
|
// check(R, T, true)
|
||||||
|
|
||||||
|
R = "/#"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/#"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/#"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/a/b/#"
|
||||||
|
T = "/a/b/c"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
// ** unicode **
|
||||||
|
R = "☃"
|
||||||
|
T = "☃"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "✈"
|
||||||
|
T = "☃"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/☃/✈"
|
||||||
|
T = "/☃/ッ"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "#"
|
||||||
|
T = "/☃/ッ"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/☃/+"
|
||||||
|
T = "/☃/ッ/♫/ø/☹☹☹"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/☃/#"
|
||||||
|
T = "/☃/ッ/♫/ø/☹☹☹"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/☃/ッ/♫/ø/+"
|
||||||
|
T = "/☃/ッ/♫/ø/☹☹☹"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/☃/ッ/+/ø/☹☹☹"
|
||||||
|
T = "/☃/ッ/♫/ø/☹☹☹"
|
||||||
|
check(R, T, true)
|
||||||
|
|
||||||
|
R = "/+/a/ッ/+/ø/☹☹☹"
|
||||||
|
T = "/b/♫/ッ/♫/ø/☹☹☹"
|
||||||
|
check(R, T, false)
|
||||||
|
|
||||||
|
R = "/+/♫/ッ/+/ø/☹☹☹"
|
||||||
|
T = "/b/♫/ッ/♫/ø/☹☹☹"
|
||||||
|
check(R, T, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_MatchAndDispatch(t *testing.T) {
|
||||||
|
calledback := make(chan bool)
|
||||||
|
|
||||||
|
cb := func(c Client, m Message) {
|
||||||
|
calledback <- true
|
||||||
|
}
|
||||||
|
|
||||||
|
pub := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pub.Qos = 2
|
||||||
|
pub.TopicName = "a"
|
||||||
|
pub.Payload = []byte("foo")
|
||||||
|
|
||||||
|
msgs := make(chan *packets.PublishPacket)
|
||||||
|
|
||||||
|
router, stopper := newRouter()
|
||||||
|
router.addRoute("a", cb)
|
||||||
|
|
||||||
|
router.matchAndDispatch(msgs, true, nil)
|
||||||
|
|
||||||
|
msgs <- pub
|
||||||
|
|
||||||
|
<-calledback
|
||||||
|
|
||||||
|
stopper <- true
|
||||||
|
|
||||||
|
select {
|
||||||
|
case msgs <- pub:
|
||||||
|
t.Errorf("msgs should not have a listener")
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,579 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_fullpath(t *testing.T) {
|
||||||
|
p := fullpath("/tmp/store", "o.44324")
|
||||||
|
e := "/tmp/store/o.44324.msg"
|
||||||
|
if p != e {
|
||||||
|
t.Fatalf("full path expected %s, got %s", e, p)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_exists(t *testing.T) {
|
||||||
|
b := exists("/")
|
||||||
|
if !b {
|
||||||
|
t.Errorf("/proc/cpuinfo was not found")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_exists_no(t *testing.T) {
|
||||||
|
b := exists("/this/path/is/not/real/i/hope")
|
||||||
|
if b {
|
||||||
|
t.Errorf("you have some strange files")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func isemptydir(dir string) bool {
|
||||||
|
if !exists(dir) {
|
||||||
|
panic(fmt.Errorf("Directory %s does not exist", dir))
|
||||||
|
}
|
||||||
|
files, err := ioutil.ReadDir(dir)
|
||||||
|
chkerr(err)
|
||||||
|
return len(files) == 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_mIDFromKey(t *testing.T) {
|
||||||
|
key := "i.123"
|
||||||
|
exp := uint16(123)
|
||||||
|
res := mIDFromKey(key)
|
||||||
|
if exp != res {
|
||||||
|
t.Fatalf("mIDFromKey failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_inboundKeyFromMID(t *testing.T) {
|
||||||
|
id := uint16(9876)
|
||||||
|
exp := "i.9876"
|
||||||
|
res := inboundKeyFromMID(id)
|
||||||
|
if exp != res {
|
||||||
|
t.Fatalf("inboundKeyFromMID failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_outboundKeyFromMID(t *testing.T) {
|
||||||
|
id := uint16(7654)
|
||||||
|
exp := "o.7654"
|
||||||
|
res := outboundKeyFromMID(id)
|
||||||
|
if exp != res {
|
||||||
|
t.Fatalf("outboundKeyFromMID failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/************************
|
||||||
|
**** persistOutbound ****
|
||||||
|
************************/
|
||||||
|
|
||||||
|
func Test_persistOutbound_connect(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Connect).(*packets.ConnectPacket)
|
||||||
|
m.Qos = 0
|
||||||
|
m.Username = "user"
|
||||||
|
m.Password = []byte("pass")
|
||||||
|
m.ClientIdentifier = "cid"
|
||||||
|
//m := newConnectMsg(false, false, QOS_ZERO, false, "", nil, "cid", "user", "pass", 10)
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_publish_0(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
m.Qos = 0
|
||||||
|
m.TopicName = "/popub0"
|
||||||
|
m.Payload = []byte{0xBB, 0x00}
|
||||||
|
m.MessageID = 40
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_publish_1(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
m.Qos = 1
|
||||||
|
m.TopicName = "/popub1"
|
||||||
|
m.Payload = []byte{0xBB, 0x00}
|
||||||
|
m.MessageID = 41
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 41 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_publish_2(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
m.Qos = 2
|
||||||
|
m.TopicName = "/popub2"
|
||||||
|
m.Payload = []byte{0xBB, 0x00}
|
||||||
|
m.MessageID = 42
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 42 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_puback(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Puback).(*packets.PubackPacket)
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 1 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_pubrec(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Pubrec).(*packets.PubrecPacket)
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_pubrel(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Pubrel).(*packets.PubrelPacket)
|
||||||
|
m.MessageID = 43
|
||||||
|
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 43 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_pubcomp(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Pubcomp).(*packets.PubcompPacket)
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 1 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_subscribe(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Subscribe).(*packets.SubscribePacket)
|
||||||
|
m.Topics = []string{"/posub"}
|
||||||
|
m.Qoss = []byte{1}
|
||||||
|
m.MessageID = 44
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 44 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_unsubscribe(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Unsubscribe).(*packets.UnsubscribePacket)
|
||||||
|
m.Topics = []string{"/posub"}
|
||||||
|
m.MessageID = 45
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 45 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_pingreq(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Pingreq)
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistOutbound_disconnect(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Disconnect)
|
||||||
|
persistOutbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistOutbound put message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistOutbound get message it should not have")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistOutbound del message it should not have")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/************************
|
||||||
|
**** persistInbound ****
|
||||||
|
************************/
|
||||||
|
|
||||||
|
func Test_persistInbound_connack(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Connack)
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_publish_0(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
m.Qos = 0
|
||||||
|
m.TopicName = "/pipub0"
|
||||||
|
m.Payload = []byte{0xCC, 0x01}
|
||||||
|
m.MessageID = 50
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_publish_1(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
m.Qos = 1
|
||||||
|
m.TopicName = "/pipub1"
|
||||||
|
m.Payload = []byte{0xCC, 0x02}
|
||||||
|
m.MessageID = 51
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 51 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_publish_2(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
m.Qos = 2
|
||||||
|
m.TopicName = "/pipub2"
|
||||||
|
m.Payload = []byte{0xCC, 0x03}
|
||||||
|
m.MessageID = 52
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 52 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_puback(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
pub := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pub.Qos = 1
|
||||||
|
pub.TopicName = "/pub1"
|
||||||
|
pub.Payload = []byte{0xCC, 0x04}
|
||||||
|
pub.MessageID = 53
|
||||||
|
publishKey := inboundKeyFromMID(pub.MessageID)
|
||||||
|
ts.Put(publishKey, pub)
|
||||||
|
|
||||||
|
m := packets.NewControlPacket(packets.Puback).(*packets.PubackPacket)
|
||||||
|
m.MessageID = 53
|
||||||
|
|
||||||
|
persistInbound(ts, m) // "deletes" packets.Publish from store
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 { // not actually deleted in TestStore
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 1 || ts.mdel[0] != 53 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_pubrec(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
pub := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pub.Qos = 2
|
||||||
|
pub.TopicName = "/pub2"
|
||||||
|
pub.Payload = []byte{0xCC, 0x05}
|
||||||
|
pub.MessageID = 54
|
||||||
|
publishKey := inboundKeyFromMID(pub.MessageID)
|
||||||
|
ts.Put(publishKey, pub)
|
||||||
|
|
||||||
|
m := packets.NewControlPacket(packets.Pubrec).(*packets.PubrecPacket)
|
||||||
|
m.MessageID = 54
|
||||||
|
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 1 || ts.mput[0] != 54 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_pubrel(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
pub := packets.NewControlPacket(packets.Publish).(*packets.PublishPacket)
|
||||||
|
pub.Qos = 2
|
||||||
|
pub.TopicName = "/pub2"
|
||||||
|
pub.Payload = []byte{0xCC, 0x06}
|
||||||
|
pub.MessageID = 55
|
||||||
|
publishKey := inboundKeyFromMID(pub.MessageID)
|
||||||
|
ts.Put(publishKey, pub)
|
||||||
|
|
||||||
|
m := packets.NewControlPacket(packets.Pubrel).(*packets.PubrelPacket)
|
||||||
|
m.MessageID = 55
|
||||||
|
|
||||||
|
persistInbound(ts, m) // will overwrite publish
|
||||||
|
|
||||||
|
if len(ts.mput) != 2 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_pubcomp(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
|
||||||
|
m := packets.NewControlPacket(packets.Pubcomp).(*packets.PubcompPacket)
|
||||||
|
m.MessageID = 56
|
||||||
|
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 1 || ts.mdel[0] != 56 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_suback(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
|
||||||
|
m := packets.NewControlPacket(packets.Suback).(*packets.SubackPacket)
|
||||||
|
m.MessageID = 57
|
||||||
|
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 1 || ts.mdel[0] != 57 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_unsuback(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
|
||||||
|
m := packets.NewControlPacket(packets.Unsuback).(*packets.UnsubackPacket)
|
||||||
|
m.MessageID = 58
|
||||||
|
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 1 || ts.mdel[0] != 58 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_persistInbound_pingresp(t *testing.T) {
|
||||||
|
ts := &TestStore{}
|
||||||
|
m := packets.NewControlPacket(packets.Pingresp)
|
||||||
|
|
||||||
|
persistInbound(ts, m)
|
||||||
|
|
||||||
|
if len(ts.mput) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mget) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ts.mdel) != 0 {
|
||||||
|
t.Fatalf("persistInbound in bad state")
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013 IBM Corp.
|
||||||
|
*
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Seth Hoenig
|
||||||
|
* Allan Stockdill-Mander
|
||||||
|
* Mike Robertson
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mqtt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_ValidateTopicAndQos_qos3(t *testing.T) {
|
||||||
|
e := validateTopicAndQos("a", 3)
|
||||||
|
if e != ErrInvalidQos {
|
||||||
|
t.Fatalf("invalid error for invalid qos")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_ValidateTopicAndQos_ES(t *testing.T) {
|
||||||
|
e := validateTopicAndQos("", 0)
|
||||||
|
if e != ErrInvalidTopicEmptyString {
|
||||||
|
t.Fatalf("invalid error for empty topic name")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_ValidateTopicAndQos_a_0(t *testing.T) {
|
||||||
|
e := validateTopicAndQos("a", 0)
|
||||||
|
if e != nil {
|
||||||
|
t.Fatalf("error from valid NewTopicFilter")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_ValidateTopicAndQos_H(t *testing.T) {
|
||||||
|
e := validateTopicAndQos("a/#/c", 0)
|
||||||
|
if e != ErrInvalidTopicMultilevel {
|
||||||
|
t.Fatalf("invalid error for bad multilevel topic filter")
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,106 @@
|
||||||
|
// Copyright 2009 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
)
|
||||||
|
|
||||||
|
// DialError is an error that occurs while dialling a websocket server.
|
||||||
|
type DialError struct {
|
||||||
|
*Config
|
||||||
|
Err error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *DialError) Error() string {
|
||||||
|
return "websocket.Dial " + e.Config.Location.String() + ": " + e.Err.Error()
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewConfig creates a new WebSocket config for client connection.
|
||||||
|
func NewConfig(server, origin string) (config *Config, err error) {
|
||||||
|
config = new(Config)
|
||||||
|
config.Version = ProtocolVersionHybi13
|
||||||
|
config.Location, err = url.ParseRequestURI(server)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
config.Origin, err = url.ParseRequestURI(origin)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
config.Header = http.Header(make(map[string][]string))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewClient creates a new WebSocket client connection over rwc.
|
||||||
|
func NewClient(config *Config, rwc io.ReadWriteCloser) (ws *Conn, err error) {
|
||||||
|
br := bufio.NewReader(rwc)
|
||||||
|
bw := bufio.NewWriter(rwc)
|
||||||
|
err = hybiClientHandshake(config, br, bw)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
buf := bufio.NewReadWriter(br, bw)
|
||||||
|
ws = newHybiClientConn(config, buf, rwc)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dial opens a new client connection to a WebSocket.
|
||||||
|
func Dial(url_, protocol, origin string) (ws *Conn, err error) {
|
||||||
|
config, err := NewConfig(url_, origin)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if protocol != "" {
|
||||||
|
config.Protocol = []string{protocol}
|
||||||
|
}
|
||||||
|
return DialConfig(config)
|
||||||
|
}
|
||||||
|
|
||||||
|
var portMap = map[string]string{
|
||||||
|
"ws": "80",
|
||||||
|
"wss": "443",
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseAuthority(location *url.URL) string {
|
||||||
|
if _, ok := portMap[location.Scheme]; ok {
|
||||||
|
if _, _, err := net.SplitHostPort(location.Host); err != nil {
|
||||||
|
return net.JoinHostPort(location.Host, portMap[location.Scheme])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return location.Host
|
||||||
|
}
|
||||||
|
|
||||||
|
// DialConfig opens a new client connection to a WebSocket with a config.
|
||||||
|
func DialConfig(config *Config) (ws *Conn, err error) {
|
||||||
|
var client net.Conn
|
||||||
|
if config.Location == nil {
|
||||||
|
return nil, &DialError{config, ErrBadWebSocketLocation}
|
||||||
|
}
|
||||||
|
if config.Origin == nil {
|
||||||
|
return nil, &DialError{config, ErrBadWebSocketOrigin}
|
||||||
|
}
|
||||||
|
dialer := config.Dialer
|
||||||
|
if dialer == nil {
|
||||||
|
dialer = &net.Dialer{}
|
||||||
|
}
|
||||||
|
client, err = dialWithDialer(dialer, config)
|
||||||
|
if err != nil {
|
||||||
|
goto Error
|
||||||
|
}
|
||||||
|
ws, err = NewClient(config, client)
|
||||||
|
if err != nil {
|
||||||
|
client.Close()
|
||||||
|
goto Error
|
||||||
|
}
|
||||||
|
return
|
||||||
|
|
||||||
|
Error:
|
||||||
|
return nil, &DialError{config, err}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Copyright 2015 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"net"
|
||||||
|
)
|
||||||
|
|
||||||
|
func dialWithDialer(dialer *net.Dialer, config *Config) (conn net.Conn, err error) {
|
||||||
|
switch config.Location.Scheme {
|
||||||
|
case "ws":
|
||||||
|
conn, err = dialer.Dial("tcp", parseAuthority(config.Location))
|
||||||
|
|
||||||
|
case "wss":
|
||||||
|
conn, err = tls.DialWithDialer(dialer, "tcp", parseAuthority(config.Location), config.TlsConfig)
|
||||||
|
|
||||||
|
default:
|
||||||
|
err = ErrBadScheme
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
// Copyright 2015 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"net"
|
||||||
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// This test depend on Go 1.3+ because in earlier versions the Dialer won't be
|
||||||
|
// used in TLS connections and a timeout won't be triggered.
|
||||||
|
func TestDialConfigTLSWithDialer(t *testing.T) {
|
||||||
|
tlsServer := httptest.NewTLSServer(nil)
|
||||||
|
tlsServerAddr := tlsServer.Listener.Addr().String()
|
||||||
|
log.Print("Test TLS WebSocket server listening on ", tlsServerAddr)
|
||||||
|
defer tlsServer.Close()
|
||||||
|
config, _ := NewConfig(fmt.Sprintf("wss://%s/echo", tlsServerAddr), "http://localhost")
|
||||||
|
config.Dialer = &net.Dialer{
|
||||||
|
Deadline: time.Now().Add(-time.Minute),
|
||||||
|
}
|
||||||
|
config.TlsConfig = &tls.Config{
|
||||||
|
InsecureSkipVerify: true,
|
||||||
|
}
|
||||||
|
_, err := DialConfig(config)
|
||||||
|
dialerr, ok := err.(*DialError)
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("DialError expected, got %#v", err)
|
||||||
|
}
|
||||||
|
neterr, ok := dialerr.Err.(*net.OpError)
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("net.OpError error expected, got %#v", dialerr.Err)
|
||||||
|
}
|
||||||
|
if !neterr.Timeout() {
|
||||||
|
t.Fatalf("expected timeout error, got %#v", neterr)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
// Copyright 2012 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"golang.org/x/net/websocket"
|
||||||
|
)
|
||||||
|
|
||||||
|
// This example demonstrates a trivial client.
|
||||||
|
func ExampleDial() {
|
||||||
|
origin := "http://localhost/"
|
||||||
|
url := "ws://localhost:12345/ws"
|
||||||
|
ws, err := websocket.Dial(url, "", origin)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
if _, err := ws.Write([]byte("hello, world!\n")); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
var msg = make([]byte, 512)
|
||||||
|
var n int
|
||||||
|
if n, err = ws.Read(msg); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
fmt.Printf("Received: %s.\n", msg[:n])
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Copyright 2012 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"golang.org/x/net/websocket"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Echo the data received on the WebSocket.
|
||||||
|
func EchoServer(ws *websocket.Conn) {
|
||||||
|
io.Copy(ws, ws)
|
||||||
|
}
|
||||||
|
|
||||||
|
// This example demonstrates a trivial echo server.
|
||||||
|
func ExampleHandler() {
|
||||||
|
http.Handle("/echo", websocket.Handler(EchoServer))
|
||||||
|
err := http.ListenAndServe(":12345", nil)
|
||||||
|
if err != nil {
|
||||||
|
panic("ListenAndServe: " + err.Error())
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,583 @@
|
||||||
|
// Copyright 2011 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
// This file implements a protocol of hybi draft.
|
||||||
|
// http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-17
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"bytes"
|
||||||
|
"crypto/rand"
|
||||||
|
"crypto/sha1"
|
||||||
|
"encoding/base64"
|
||||||
|
"encoding/binary"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
websocketGUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
|
||||||
|
|
||||||
|
closeStatusNormal = 1000
|
||||||
|
closeStatusGoingAway = 1001
|
||||||
|
closeStatusProtocolError = 1002
|
||||||
|
closeStatusUnsupportedData = 1003
|
||||||
|
closeStatusFrameTooLarge = 1004
|
||||||
|
closeStatusNoStatusRcvd = 1005
|
||||||
|
closeStatusAbnormalClosure = 1006
|
||||||
|
closeStatusBadMessageData = 1007
|
||||||
|
closeStatusPolicyViolation = 1008
|
||||||
|
closeStatusTooBigData = 1009
|
||||||
|
closeStatusExtensionMismatch = 1010
|
||||||
|
|
||||||
|
maxControlFramePayloadLength = 125
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
ErrBadMaskingKey = &ProtocolError{"bad masking key"}
|
||||||
|
ErrBadPongMessage = &ProtocolError{"bad pong message"}
|
||||||
|
ErrBadClosingStatus = &ProtocolError{"bad closing status"}
|
||||||
|
ErrUnsupportedExtensions = &ProtocolError{"unsupported extensions"}
|
||||||
|
ErrNotImplemented = &ProtocolError{"not implemented"}
|
||||||
|
|
||||||
|
handshakeHeader = map[string]bool{
|
||||||
|
"Host": true,
|
||||||
|
"Upgrade": true,
|
||||||
|
"Connection": true,
|
||||||
|
"Sec-Websocket-Key": true,
|
||||||
|
"Sec-Websocket-Origin": true,
|
||||||
|
"Sec-Websocket-Version": true,
|
||||||
|
"Sec-Websocket-Protocol": true,
|
||||||
|
"Sec-Websocket-Accept": true,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// A hybiFrameHeader is a frame header as defined in hybi draft.
|
||||||
|
type hybiFrameHeader struct {
|
||||||
|
Fin bool
|
||||||
|
Rsv [3]bool
|
||||||
|
OpCode byte
|
||||||
|
Length int64
|
||||||
|
MaskingKey []byte
|
||||||
|
|
||||||
|
data *bytes.Buffer
|
||||||
|
}
|
||||||
|
|
||||||
|
// A hybiFrameReader is a reader for hybi frame.
|
||||||
|
type hybiFrameReader struct {
|
||||||
|
reader io.Reader
|
||||||
|
|
||||||
|
header hybiFrameHeader
|
||||||
|
pos int64
|
||||||
|
length int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (frame *hybiFrameReader) Read(msg []byte) (n int, err error) {
|
||||||
|
n, err = frame.reader.Read(msg)
|
||||||
|
if frame.header.MaskingKey != nil {
|
||||||
|
for i := 0; i < n; i++ {
|
||||||
|
msg[i] = msg[i] ^ frame.header.MaskingKey[frame.pos%4]
|
||||||
|
frame.pos++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (frame *hybiFrameReader) PayloadType() byte { return frame.header.OpCode }
|
||||||
|
|
||||||
|
func (frame *hybiFrameReader) HeaderReader() io.Reader {
|
||||||
|
if frame.header.data == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if frame.header.data.Len() == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return frame.header.data
|
||||||
|
}
|
||||||
|
|
||||||
|
func (frame *hybiFrameReader) TrailerReader() io.Reader { return nil }
|
||||||
|
|
||||||
|
func (frame *hybiFrameReader) Len() (n int) { return frame.length }
|
||||||
|
|
||||||
|
// A hybiFrameReaderFactory creates new frame reader based on its frame type.
|
||||||
|
type hybiFrameReaderFactory struct {
|
||||||
|
*bufio.Reader
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewFrameReader reads a frame header from the connection, and creates new reader for the frame.
|
||||||
|
// See Section 5.2 Base Framing protocol for detail.
|
||||||
|
// http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-17#section-5.2
|
||||||
|
func (buf hybiFrameReaderFactory) NewFrameReader() (frame frameReader, err error) {
|
||||||
|
hybiFrame := new(hybiFrameReader)
|
||||||
|
frame = hybiFrame
|
||||||
|
var header []byte
|
||||||
|
var b byte
|
||||||
|
// First byte. FIN/RSV1/RSV2/RSV3/OpCode(4bits)
|
||||||
|
b, err = buf.ReadByte()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
header = append(header, b)
|
||||||
|
hybiFrame.header.Fin = ((header[0] >> 7) & 1) != 0
|
||||||
|
for i := 0; i < 3; i++ {
|
||||||
|
j := uint(6 - i)
|
||||||
|
hybiFrame.header.Rsv[i] = ((header[0] >> j) & 1) != 0
|
||||||
|
}
|
||||||
|
hybiFrame.header.OpCode = header[0] & 0x0f
|
||||||
|
|
||||||
|
// Second byte. Mask/Payload len(7bits)
|
||||||
|
b, err = buf.ReadByte()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
header = append(header, b)
|
||||||
|
mask := (b & 0x80) != 0
|
||||||
|
b &= 0x7f
|
||||||
|
lengthFields := 0
|
||||||
|
switch {
|
||||||
|
case b <= 125: // Payload length 7bits.
|
||||||
|
hybiFrame.header.Length = int64(b)
|
||||||
|
case b == 126: // Payload length 7+16bits
|
||||||
|
lengthFields = 2
|
||||||
|
case b == 127: // Payload length 7+64bits
|
||||||
|
lengthFields = 8
|
||||||
|
}
|
||||||
|
for i := 0; i < lengthFields; i++ {
|
||||||
|
b, err = buf.ReadByte()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if lengthFields == 8 && i == 0 { // MSB must be zero when 7+64 bits
|
||||||
|
b &= 0x7f
|
||||||
|
}
|
||||||
|
header = append(header, b)
|
||||||
|
hybiFrame.header.Length = hybiFrame.header.Length*256 + int64(b)
|
||||||
|
}
|
||||||
|
if mask {
|
||||||
|
// Masking key. 4 bytes.
|
||||||
|
for i := 0; i < 4; i++ {
|
||||||
|
b, err = buf.ReadByte()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
header = append(header, b)
|
||||||
|
hybiFrame.header.MaskingKey = append(hybiFrame.header.MaskingKey, b)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
hybiFrame.reader = io.LimitReader(buf.Reader, hybiFrame.header.Length)
|
||||||
|
hybiFrame.header.data = bytes.NewBuffer(header)
|
||||||
|
hybiFrame.length = len(header) + int(hybiFrame.header.Length)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// A HybiFrameWriter is a writer for hybi frame.
|
||||||
|
type hybiFrameWriter struct {
|
||||||
|
writer *bufio.Writer
|
||||||
|
|
||||||
|
header *hybiFrameHeader
|
||||||
|
}
|
||||||
|
|
||||||
|
func (frame *hybiFrameWriter) Write(msg []byte) (n int, err error) {
|
||||||
|
var header []byte
|
||||||
|
var b byte
|
||||||
|
if frame.header.Fin {
|
||||||
|
b |= 0x80
|
||||||
|
}
|
||||||
|
for i := 0; i < 3; i++ {
|
||||||
|
if frame.header.Rsv[i] {
|
||||||
|
j := uint(6 - i)
|
||||||
|
b |= 1 << j
|
||||||
|
}
|
||||||
|
}
|
||||||
|
b |= frame.header.OpCode
|
||||||
|
header = append(header, b)
|
||||||
|
if frame.header.MaskingKey != nil {
|
||||||
|
b = 0x80
|
||||||
|
} else {
|
||||||
|
b = 0
|
||||||
|
}
|
||||||
|
lengthFields := 0
|
||||||
|
length := len(msg)
|
||||||
|
switch {
|
||||||
|
case length <= 125:
|
||||||
|
b |= byte(length)
|
||||||
|
case length < 65536:
|
||||||
|
b |= 126
|
||||||
|
lengthFields = 2
|
||||||
|
default:
|
||||||
|
b |= 127
|
||||||
|
lengthFields = 8
|
||||||
|
}
|
||||||
|
header = append(header, b)
|
||||||
|
for i := 0; i < lengthFields; i++ {
|
||||||
|
j := uint((lengthFields - i - 1) * 8)
|
||||||
|
b = byte((length >> j) & 0xff)
|
||||||
|
header = append(header, b)
|
||||||
|
}
|
||||||
|
if frame.header.MaskingKey != nil {
|
||||||
|
if len(frame.header.MaskingKey) != 4 {
|
||||||
|
return 0, ErrBadMaskingKey
|
||||||
|
}
|
||||||
|
header = append(header, frame.header.MaskingKey...)
|
||||||
|
frame.writer.Write(header)
|
||||||
|
data := make([]byte, length)
|
||||||
|
for i := range data {
|
||||||
|
data[i] = msg[i] ^ frame.header.MaskingKey[i%4]
|
||||||
|
}
|
||||||
|
frame.writer.Write(data)
|
||||||
|
err = frame.writer.Flush()
|
||||||
|
return length, err
|
||||||
|
}
|
||||||
|
frame.writer.Write(header)
|
||||||
|
frame.writer.Write(msg)
|
||||||
|
err = frame.writer.Flush()
|
||||||
|
return length, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (frame *hybiFrameWriter) Close() error { return nil }
|
||||||
|
|
||||||
|
type hybiFrameWriterFactory struct {
|
||||||
|
*bufio.Writer
|
||||||
|
needMaskingKey bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (buf hybiFrameWriterFactory) NewFrameWriter(payloadType byte) (frame frameWriter, err error) {
|
||||||
|
frameHeader := &hybiFrameHeader{Fin: true, OpCode: payloadType}
|
||||||
|
if buf.needMaskingKey {
|
||||||
|
frameHeader.MaskingKey, err = generateMaskingKey()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &hybiFrameWriter{writer: buf.Writer, header: frameHeader}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type hybiFrameHandler struct {
|
||||||
|
conn *Conn
|
||||||
|
payloadType byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (handler *hybiFrameHandler) HandleFrame(frame frameReader) (frameReader, error) {
|
||||||
|
if handler.conn.IsServerConn() {
|
||||||
|
// The client MUST mask all frames sent to the server.
|
||||||
|
if frame.(*hybiFrameReader).header.MaskingKey == nil {
|
||||||
|
handler.WriteClose(closeStatusProtocolError)
|
||||||
|
return nil, io.EOF
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// The server MUST NOT mask all frames.
|
||||||
|
if frame.(*hybiFrameReader).header.MaskingKey != nil {
|
||||||
|
handler.WriteClose(closeStatusProtocolError)
|
||||||
|
return nil, io.EOF
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if header := frame.HeaderReader(); header != nil {
|
||||||
|
io.Copy(ioutil.Discard, header)
|
||||||
|
}
|
||||||
|
switch frame.PayloadType() {
|
||||||
|
case ContinuationFrame:
|
||||||
|
frame.(*hybiFrameReader).header.OpCode = handler.payloadType
|
||||||
|
case TextFrame, BinaryFrame:
|
||||||
|
handler.payloadType = frame.PayloadType()
|
||||||
|
case CloseFrame:
|
||||||
|
return nil, io.EOF
|
||||||
|
case PingFrame, PongFrame:
|
||||||
|
b := make([]byte, maxControlFramePayloadLength)
|
||||||
|
n, err := io.ReadFull(frame, b)
|
||||||
|
if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
io.Copy(ioutil.Discard, frame)
|
||||||
|
if frame.PayloadType() == PingFrame {
|
||||||
|
if _, err := handler.WritePong(b[:n]); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return frame, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (handler *hybiFrameHandler) WriteClose(status int) (err error) {
|
||||||
|
handler.conn.wio.Lock()
|
||||||
|
defer handler.conn.wio.Unlock()
|
||||||
|
w, err := handler.conn.frameWriterFactory.NewFrameWriter(CloseFrame)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
msg := make([]byte, 2)
|
||||||
|
binary.BigEndian.PutUint16(msg, uint16(status))
|
||||||
|
_, err = w.Write(msg)
|
||||||
|
w.Close()
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (handler *hybiFrameHandler) WritePong(msg []byte) (n int, err error) {
|
||||||
|
handler.conn.wio.Lock()
|
||||||
|
defer handler.conn.wio.Unlock()
|
||||||
|
w, err := handler.conn.frameWriterFactory.NewFrameWriter(PongFrame)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
n, err = w.Write(msg)
|
||||||
|
w.Close()
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// newHybiConn creates a new WebSocket connection speaking hybi draft protocol.
|
||||||
|
func newHybiConn(config *Config, buf *bufio.ReadWriter, rwc io.ReadWriteCloser, request *http.Request) *Conn {
|
||||||
|
if buf == nil {
|
||||||
|
br := bufio.NewReader(rwc)
|
||||||
|
bw := bufio.NewWriter(rwc)
|
||||||
|
buf = bufio.NewReadWriter(br, bw)
|
||||||
|
}
|
||||||
|
ws := &Conn{config: config, request: request, buf: buf, rwc: rwc,
|
||||||
|
frameReaderFactory: hybiFrameReaderFactory{buf.Reader},
|
||||||
|
frameWriterFactory: hybiFrameWriterFactory{
|
||||||
|
buf.Writer, request == nil},
|
||||||
|
PayloadType: TextFrame,
|
||||||
|
defaultCloseStatus: closeStatusNormal}
|
||||||
|
ws.frameHandler = &hybiFrameHandler{conn: ws}
|
||||||
|
return ws
|
||||||
|
}
|
||||||
|
|
||||||
|
// generateMaskingKey generates a masking key for a frame.
|
||||||
|
func generateMaskingKey() (maskingKey []byte, err error) {
|
||||||
|
maskingKey = make([]byte, 4)
|
||||||
|
if _, err = io.ReadFull(rand.Reader, maskingKey); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// generateNonce generates a nonce consisting of a randomly selected 16-byte
|
||||||
|
// value that has been base64-encoded.
|
||||||
|
func generateNonce() (nonce []byte) {
|
||||||
|
key := make([]byte, 16)
|
||||||
|
if _, err := io.ReadFull(rand.Reader, key); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
nonce = make([]byte, 24)
|
||||||
|
base64.StdEncoding.Encode(nonce, key)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// removeZone removes IPv6 zone identifer from host.
|
||||||
|
// E.g., "[fe80::1%en0]:8080" to "[fe80::1]:8080"
|
||||||
|
func removeZone(host string) string {
|
||||||
|
if !strings.HasPrefix(host, "[") {
|
||||||
|
return host
|
||||||
|
}
|
||||||
|
i := strings.LastIndex(host, "]")
|
||||||
|
if i < 0 {
|
||||||
|
return host
|
||||||
|
}
|
||||||
|
j := strings.LastIndex(host[:i], "%")
|
||||||
|
if j < 0 {
|
||||||
|
return host
|
||||||
|
}
|
||||||
|
return host[:j] + host[i:]
|
||||||
|
}
|
||||||
|
|
||||||
|
// getNonceAccept computes the base64-encoded SHA-1 of the concatenation of
|
||||||
|
// the nonce ("Sec-WebSocket-Key" value) with the websocket GUID string.
|
||||||
|
func getNonceAccept(nonce []byte) (expected []byte, err error) {
|
||||||
|
h := sha1.New()
|
||||||
|
if _, err = h.Write(nonce); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if _, err = h.Write([]byte(websocketGUID)); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
expected = make([]byte, 28)
|
||||||
|
base64.StdEncoding.Encode(expected, h.Sum(nil))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Client handshake described in draft-ietf-hybi-thewebsocket-protocol-17
|
||||||
|
func hybiClientHandshake(config *Config, br *bufio.Reader, bw *bufio.Writer) (err error) {
|
||||||
|
bw.WriteString("GET " + config.Location.RequestURI() + " HTTP/1.1\r\n")
|
||||||
|
|
||||||
|
// According to RFC 6874, an HTTP client, proxy, or other
|
||||||
|
// intermediary must remove any IPv6 zone identifier attached
|
||||||
|
// to an outgoing URI.
|
||||||
|
bw.WriteString("Host: " + removeZone(config.Location.Host) + "\r\n")
|
||||||
|
bw.WriteString("Upgrade: websocket\r\n")
|
||||||
|
bw.WriteString("Connection: Upgrade\r\n")
|
||||||
|
nonce := generateNonce()
|
||||||
|
if config.handshakeData != nil {
|
||||||
|
nonce = []byte(config.handshakeData["key"])
|
||||||
|
}
|
||||||
|
bw.WriteString("Sec-WebSocket-Key: " + string(nonce) + "\r\n")
|
||||||
|
bw.WriteString("Origin: " + strings.ToLower(config.Origin.String()) + "\r\n")
|
||||||
|
|
||||||
|
if config.Version != ProtocolVersionHybi13 {
|
||||||
|
return ErrBadProtocolVersion
|
||||||
|
}
|
||||||
|
|
||||||
|
bw.WriteString("Sec-WebSocket-Version: " + fmt.Sprintf("%d", config.Version) + "\r\n")
|
||||||
|
if len(config.Protocol) > 0 {
|
||||||
|
bw.WriteString("Sec-WebSocket-Protocol: " + strings.Join(config.Protocol, ", ") + "\r\n")
|
||||||
|
}
|
||||||
|
// TODO(ukai): send Sec-WebSocket-Extensions.
|
||||||
|
err = config.Header.WriteSubset(bw, handshakeHeader)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
bw.WriteString("\r\n")
|
||||||
|
if err = bw.Flush(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := http.ReadResponse(br, &http.Request{Method: "GET"})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if resp.StatusCode != 101 {
|
||||||
|
return ErrBadStatus
|
||||||
|
}
|
||||||
|
if strings.ToLower(resp.Header.Get("Upgrade")) != "websocket" ||
|
||||||
|
strings.ToLower(resp.Header.Get("Connection")) != "upgrade" {
|
||||||
|
return ErrBadUpgrade
|
||||||
|
}
|
||||||
|
expectedAccept, err := getNonceAccept(nonce)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if resp.Header.Get("Sec-WebSocket-Accept") != string(expectedAccept) {
|
||||||
|
return ErrChallengeResponse
|
||||||
|
}
|
||||||
|
if resp.Header.Get("Sec-WebSocket-Extensions") != "" {
|
||||||
|
return ErrUnsupportedExtensions
|
||||||
|
}
|
||||||
|
offeredProtocol := resp.Header.Get("Sec-WebSocket-Protocol")
|
||||||
|
if offeredProtocol != "" {
|
||||||
|
protocolMatched := false
|
||||||
|
for i := 0; i < len(config.Protocol); i++ {
|
||||||
|
if config.Protocol[i] == offeredProtocol {
|
||||||
|
protocolMatched = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !protocolMatched {
|
||||||
|
return ErrBadWebSocketProtocol
|
||||||
|
}
|
||||||
|
config.Protocol = []string{offeredProtocol}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// newHybiClientConn creates a client WebSocket connection after handshake.
|
||||||
|
func newHybiClientConn(config *Config, buf *bufio.ReadWriter, rwc io.ReadWriteCloser) *Conn {
|
||||||
|
return newHybiConn(config, buf, rwc, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
// A HybiServerHandshaker performs a server handshake using hybi draft protocol.
|
||||||
|
type hybiServerHandshaker struct {
|
||||||
|
*Config
|
||||||
|
accept []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *hybiServerHandshaker) ReadHandshake(buf *bufio.Reader, req *http.Request) (code int, err error) {
|
||||||
|
c.Version = ProtocolVersionHybi13
|
||||||
|
if req.Method != "GET" {
|
||||||
|
return http.StatusMethodNotAllowed, ErrBadRequestMethod
|
||||||
|
}
|
||||||
|
// HTTP version can be safely ignored.
|
||||||
|
|
||||||
|
if strings.ToLower(req.Header.Get("Upgrade")) != "websocket" ||
|
||||||
|
!strings.Contains(strings.ToLower(req.Header.Get("Connection")), "upgrade") {
|
||||||
|
return http.StatusBadRequest, ErrNotWebSocket
|
||||||
|
}
|
||||||
|
|
||||||
|
key := req.Header.Get("Sec-Websocket-Key")
|
||||||
|
if key == "" {
|
||||||
|
return http.StatusBadRequest, ErrChallengeResponse
|
||||||
|
}
|
||||||
|
version := req.Header.Get("Sec-Websocket-Version")
|
||||||
|
switch version {
|
||||||
|
case "13":
|
||||||
|
c.Version = ProtocolVersionHybi13
|
||||||
|
default:
|
||||||
|
return http.StatusBadRequest, ErrBadWebSocketVersion
|
||||||
|
}
|
||||||
|
var scheme string
|
||||||
|
if req.TLS != nil {
|
||||||
|
scheme = "wss"
|
||||||
|
} else {
|
||||||
|
scheme = "ws"
|
||||||
|
}
|
||||||
|
c.Location, err = url.ParseRequestURI(scheme + "://" + req.Host + req.URL.RequestURI())
|
||||||
|
if err != nil {
|
||||||
|
return http.StatusBadRequest, err
|
||||||
|
}
|
||||||
|
protocol := strings.TrimSpace(req.Header.Get("Sec-Websocket-Protocol"))
|
||||||
|
if protocol != "" {
|
||||||
|
protocols := strings.Split(protocol, ",")
|
||||||
|
for i := 0; i < len(protocols); i++ {
|
||||||
|
c.Protocol = append(c.Protocol, strings.TrimSpace(protocols[i]))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
c.accept, err = getNonceAccept([]byte(key))
|
||||||
|
if err != nil {
|
||||||
|
return http.StatusInternalServerError, err
|
||||||
|
}
|
||||||
|
return http.StatusSwitchingProtocols, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Origin parses the Origin header in req.
|
||||||
|
// If the Origin header is not set, it returns nil and nil.
|
||||||
|
func Origin(config *Config, req *http.Request) (*url.URL, error) {
|
||||||
|
var origin string
|
||||||
|
switch config.Version {
|
||||||
|
case ProtocolVersionHybi13:
|
||||||
|
origin = req.Header.Get("Origin")
|
||||||
|
}
|
||||||
|
if origin == "" {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return url.ParseRequestURI(origin)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *hybiServerHandshaker) AcceptHandshake(buf *bufio.Writer) (err error) {
|
||||||
|
if len(c.Protocol) > 0 {
|
||||||
|
if len(c.Protocol) != 1 {
|
||||||
|
// You need choose a Protocol in Handshake func in Server.
|
||||||
|
return ErrBadWebSocketProtocol
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buf.WriteString("HTTP/1.1 101 Switching Protocols\r\n")
|
||||||
|
buf.WriteString("Upgrade: websocket\r\n")
|
||||||
|
buf.WriteString("Connection: Upgrade\r\n")
|
||||||
|
buf.WriteString("Sec-WebSocket-Accept: " + string(c.accept) + "\r\n")
|
||||||
|
if len(c.Protocol) > 0 {
|
||||||
|
buf.WriteString("Sec-WebSocket-Protocol: " + c.Protocol[0] + "\r\n")
|
||||||
|
}
|
||||||
|
// TODO(ukai): send Sec-WebSocket-Extensions.
|
||||||
|
if c.Header != nil {
|
||||||
|
err := c.Header.WriteSubset(buf, handshakeHeader)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buf.WriteString("\r\n")
|
||||||
|
return buf.Flush()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *hybiServerHandshaker) NewServerConn(buf *bufio.ReadWriter, rwc io.ReadWriteCloser, request *http.Request) *Conn {
|
||||||
|
return newHybiServerConn(c.Config, buf, rwc, request)
|
||||||
|
}
|
||||||
|
|
||||||
|
// newHybiServerConn returns a new WebSocket connection speaking hybi draft protocol.
|
||||||
|
func newHybiServerConn(config *Config, buf *bufio.ReadWriter, rwc io.ReadWriteCloser, request *http.Request) *Conn {
|
||||||
|
return newHybiConn(config, buf, rwc, request)
|
||||||
|
}
|
|
@ -0,0 +1,608 @@
|
||||||
|
// Copyright 2011 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Test the getNonceAccept function with values in
|
||||||
|
// http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-17
|
||||||
|
func TestSecWebSocketAccept(t *testing.T) {
|
||||||
|
nonce := []byte("dGhlIHNhbXBsZSBub25jZQ==")
|
||||||
|
expected := []byte("s3pPLMBiTxaQ9kYGzzhZRbK+xOo=")
|
||||||
|
accept, err := getNonceAccept(nonce)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("getNonceAccept: returned error %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !bytes.Equal(expected, accept) {
|
||||||
|
t.Errorf("getNonceAccept: expected %q got %q", expected, accept)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiClientHandshake(t *testing.T) {
|
||||||
|
type test struct {
|
||||||
|
url, host string
|
||||||
|
}
|
||||||
|
tests := []test{
|
||||||
|
{"ws://server.example.com/chat", "server.example.com"},
|
||||||
|
{"ws://127.0.0.1/chat", "127.0.0.1"},
|
||||||
|
}
|
||||||
|
if _, err := url.ParseRequestURI("http://[fe80::1%25lo0]"); err == nil {
|
||||||
|
tests = append(tests, test{"ws://[fe80::1%25lo0]/chat", "[fe80::1]"})
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
var b bytes.Buffer
|
||||||
|
bw := bufio.NewWriter(&b)
|
||||||
|
br := bufio.NewReader(strings.NewReader(`HTTP/1.1 101 Switching Protocols
|
||||||
|
Upgrade: websocket
|
||||||
|
Connection: Upgrade
|
||||||
|
Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
|
||||||
|
Sec-WebSocket-Protocol: chat
|
||||||
|
|
||||||
|
`))
|
||||||
|
var err error
|
||||||
|
var config Config
|
||||||
|
config.Location, err = url.ParseRequestURI(tt.url)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("location url", err)
|
||||||
|
}
|
||||||
|
config.Origin, err = url.ParseRequestURI("http://example.com")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("origin url", err)
|
||||||
|
}
|
||||||
|
config.Protocol = append(config.Protocol, "chat")
|
||||||
|
config.Protocol = append(config.Protocol, "superchat")
|
||||||
|
config.Version = ProtocolVersionHybi13
|
||||||
|
config.handshakeData = map[string]string{
|
||||||
|
"key": "dGhlIHNhbXBsZSBub25jZQ==",
|
||||||
|
}
|
||||||
|
if err := hybiClientHandshake(&config, br, bw); err != nil {
|
||||||
|
t.Fatal("handshake", err)
|
||||||
|
}
|
||||||
|
req, err := http.ReadRequest(bufio.NewReader(&b))
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("read request", err)
|
||||||
|
}
|
||||||
|
if req.Method != "GET" {
|
||||||
|
t.Errorf("request method expected GET, but got %s", req.Method)
|
||||||
|
}
|
||||||
|
if req.URL.Path != "/chat" {
|
||||||
|
t.Errorf("request path expected /chat, but got %s", req.URL.Path)
|
||||||
|
}
|
||||||
|
if req.Proto != "HTTP/1.1" {
|
||||||
|
t.Errorf("request proto expected HTTP/1.1, but got %s", req.Proto)
|
||||||
|
}
|
||||||
|
if req.Host != tt.host {
|
||||||
|
t.Errorf("request host expected %s, but got %s", tt.host, req.Host)
|
||||||
|
}
|
||||||
|
var expectedHeader = map[string]string{
|
||||||
|
"Connection": "Upgrade",
|
||||||
|
"Upgrade": "websocket",
|
||||||
|
"Sec-Websocket-Key": config.handshakeData["key"],
|
||||||
|
"Origin": config.Origin.String(),
|
||||||
|
"Sec-Websocket-Protocol": "chat, superchat",
|
||||||
|
"Sec-Websocket-Version": fmt.Sprintf("%d", ProtocolVersionHybi13),
|
||||||
|
}
|
||||||
|
for k, v := range expectedHeader {
|
||||||
|
if req.Header.Get(k) != v {
|
||||||
|
t.Errorf("%s expected %s, but got %v", k, v, req.Header.Get(k))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiClientHandshakeWithHeader(t *testing.T) {
|
||||||
|
b := bytes.NewBuffer([]byte{})
|
||||||
|
bw := bufio.NewWriter(b)
|
||||||
|
br := bufio.NewReader(strings.NewReader(`HTTP/1.1 101 Switching Protocols
|
||||||
|
Upgrade: websocket
|
||||||
|
Connection: Upgrade
|
||||||
|
Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
|
||||||
|
Sec-WebSocket-Protocol: chat
|
||||||
|
|
||||||
|
`))
|
||||||
|
var err error
|
||||||
|
config := new(Config)
|
||||||
|
config.Location, err = url.ParseRequestURI("ws://server.example.com/chat")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("location url", err)
|
||||||
|
}
|
||||||
|
config.Origin, err = url.ParseRequestURI("http://example.com")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("origin url", err)
|
||||||
|
}
|
||||||
|
config.Protocol = append(config.Protocol, "chat")
|
||||||
|
config.Protocol = append(config.Protocol, "superchat")
|
||||||
|
config.Version = ProtocolVersionHybi13
|
||||||
|
config.Header = http.Header(make(map[string][]string))
|
||||||
|
config.Header.Add("User-Agent", "test")
|
||||||
|
|
||||||
|
config.handshakeData = map[string]string{
|
||||||
|
"key": "dGhlIHNhbXBsZSBub25jZQ==",
|
||||||
|
}
|
||||||
|
err = hybiClientHandshake(config, br, bw)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake failed: %v", err)
|
||||||
|
}
|
||||||
|
req, err := http.ReadRequest(bufio.NewReader(b))
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("read request: %v", err)
|
||||||
|
}
|
||||||
|
if req.Method != "GET" {
|
||||||
|
t.Errorf("request method expected GET, but got %q", req.Method)
|
||||||
|
}
|
||||||
|
if req.URL.Path != "/chat" {
|
||||||
|
t.Errorf("request path expected /chat, but got %q", req.URL.Path)
|
||||||
|
}
|
||||||
|
if req.Proto != "HTTP/1.1" {
|
||||||
|
t.Errorf("request proto expected HTTP/1.1, but got %q", req.Proto)
|
||||||
|
}
|
||||||
|
if req.Host != "server.example.com" {
|
||||||
|
t.Errorf("request Host expected server.example.com, but got %v", req.Host)
|
||||||
|
}
|
||||||
|
var expectedHeader = map[string]string{
|
||||||
|
"Connection": "Upgrade",
|
||||||
|
"Upgrade": "websocket",
|
||||||
|
"Sec-Websocket-Key": config.handshakeData["key"],
|
||||||
|
"Origin": config.Origin.String(),
|
||||||
|
"Sec-Websocket-Protocol": "chat, superchat",
|
||||||
|
"Sec-Websocket-Version": fmt.Sprintf("%d", ProtocolVersionHybi13),
|
||||||
|
"User-Agent": "test",
|
||||||
|
}
|
||||||
|
for k, v := range expectedHeader {
|
||||||
|
if req.Header.Get(k) != v {
|
||||||
|
t.Errorf(fmt.Sprintf("%s expected %q but got %q", k, v, req.Header.Get(k)))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiServerHandshake(t *testing.T) {
|
||||||
|
config := new(Config)
|
||||||
|
handshaker := &hybiServerHandshaker{Config: config}
|
||||||
|
br := bufio.NewReader(strings.NewReader(`GET /chat HTTP/1.1
|
||||||
|
Host: server.example.com
|
||||||
|
Upgrade: websocket
|
||||||
|
Connection: Upgrade
|
||||||
|
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
|
||||||
|
Origin: http://example.com
|
||||||
|
Sec-WebSocket-Protocol: chat, superchat
|
||||||
|
Sec-WebSocket-Version: 13
|
||||||
|
|
||||||
|
`))
|
||||||
|
req, err := http.ReadRequest(br)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("request", err)
|
||||||
|
}
|
||||||
|
code, err := handshaker.ReadHandshake(br, req)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake failed: %v", err)
|
||||||
|
}
|
||||||
|
if code != http.StatusSwitchingProtocols {
|
||||||
|
t.Errorf("status expected %q but got %q", http.StatusSwitchingProtocols, code)
|
||||||
|
}
|
||||||
|
expectedProtocols := []string{"chat", "superchat"}
|
||||||
|
if fmt.Sprintf("%v", config.Protocol) != fmt.Sprintf("%v", expectedProtocols) {
|
||||||
|
t.Errorf("protocol expected %q but got %q", expectedProtocols, config.Protocol)
|
||||||
|
}
|
||||||
|
b := bytes.NewBuffer([]byte{})
|
||||||
|
bw := bufio.NewWriter(b)
|
||||||
|
|
||||||
|
config.Protocol = config.Protocol[:1]
|
||||||
|
|
||||||
|
err = handshaker.AcceptHandshake(bw)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake response failed: %v", err)
|
||||||
|
}
|
||||||
|
expectedResponse := strings.Join([]string{
|
||||||
|
"HTTP/1.1 101 Switching Protocols",
|
||||||
|
"Upgrade: websocket",
|
||||||
|
"Connection: Upgrade",
|
||||||
|
"Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=",
|
||||||
|
"Sec-WebSocket-Protocol: chat",
|
||||||
|
"", ""}, "\r\n")
|
||||||
|
|
||||||
|
if b.String() != expectedResponse {
|
||||||
|
t.Errorf("handshake expected %q but got %q", expectedResponse, b.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiServerHandshakeNoSubProtocol(t *testing.T) {
|
||||||
|
config := new(Config)
|
||||||
|
handshaker := &hybiServerHandshaker{Config: config}
|
||||||
|
br := bufio.NewReader(strings.NewReader(`GET /chat HTTP/1.1
|
||||||
|
Host: server.example.com
|
||||||
|
Upgrade: websocket
|
||||||
|
Connection: Upgrade
|
||||||
|
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
|
||||||
|
Origin: http://example.com
|
||||||
|
Sec-WebSocket-Version: 13
|
||||||
|
|
||||||
|
`))
|
||||||
|
req, err := http.ReadRequest(br)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("request", err)
|
||||||
|
}
|
||||||
|
code, err := handshaker.ReadHandshake(br, req)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake failed: %v", err)
|
||||||
|
}
|
||||||
|
if code != http.StatusSwitchingProtocols {
|
||||||
|
t.Errorf("status expected %q but got %q", http.StatusSwitchingProtocols, code)
|
||||||
|
}
|
||||||
|
if len(config.Protocol) != 0 {
|
||||||
|
t.Errorf("len(config.Protocol) expected 0, but got %q", len(config.Protocol))
|
||||||
|
}
|
||||||
|
b := bytes.NewBuffer([]byte{})
|
||||||
|
bw := bufio.NewWriter(b)
|
||||||
|
|
||||||
|
err = handshaker.AcceptHandshake(bw)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake response failed: %v", err)
|
||||||
|
}
|
||||||
|
expectedResponse := strings.Join([]string{
|
||||||
|
"HTTP/1.1 101 Switching Protocols",
|
||||||
|
"Upgrade: websocket",
|
||||||
|
"Connection: Upgrade",
|
||||||
|
"Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=",
|
||||||
|
"", ""}, "\r\n")
|
||||||
|
|
||||||
|
if b.String() != expectedResponse {
|
||||||
|
t.Errorf("handshake expected %q but got %q", expectedResponse, b.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiServerHandshakeHybiBadVersion(t *testing.T) {
|
||||||
|
config := new(Config)
|
||||||
|
handshaker := &hybiServerHandshaker{Config: config}
|
||||||
|
br := bufio.NewReader(strings.NewReader(`GET /chat HTTP/1.1
|
||||||
|
Host: server.example.com
|
||||||
|
Upgrade: websocket
|
||||||
|
Connection: Upgrade
|
||||||
|
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
|
||||||
|
Sec-WebSocket-Origin: http://example.com
|
||||||
|
Sec-WebSocket-Protocol: chat, superchat
|
||||||
|
Sec-WebSocket-Version: 9
|
||||||
|
|
||||||
|
`))
|
||||||
|
req, err := http.ReadRequest(br)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("request", err)
|
||||||
|
}
|
||||||
|
code, err := handshaker.ReadHandshake(br, req)
|
||||||
|
if err != ErrBadWebSocketVersion {
|
||||||
|
t.Errorf("handshake expected err %q but got %q", ErrBadWebSocketVersion, err)
|
||||||
|
}
|
||||||
|
if code != http.StatusBadRequest {
|
||||||
|
t.Errorf("status expected %q but got %q", http.StatusBadRequest, code)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func testHybiFrame(t *testing.T, testHeader, testPayload, testMaskedPayload []byte, frameHeader *hybiFrameHeader) {
|
||||||
|
b := bytes.NewBuffer([]byte{})
|
||||||
|
frameWriterFactory := &hybiFrameWriterFactory{bufio.NewWriter(b), false}
|
||||||
|
w, _ := frameWriterFactory.NewFrameWriter(TextFrame)
|
||||||
|
w.(*hybiFrameWriter).header = frameHeader
|
||||||
|
_, err := w.Write(testPayload)
|
||||||
|
w.Close()
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Write error %q", err)
|
||||||
|
}
|
||||||
|
var expectedFrame []byte
|
||||||
|
expectedFrame = append(expectedFrame, testHeader...)
|
||||||
|
expectedFrame = append(expectedFrame, testMaskedPayload...)
|
||||||
|
if !bytes.Equal(expectedFrame, b.Bytes()) {
|
||||||
|
t.Errorf("frame expected %q got %q", expectedFrame, b.Bytes())
|
||||||
|
}
|
||||||
|
frameReaderFactory := &hybiFrameReaderFactory{bufio.NewReader(b)}
|
||||||
|
r, err := frameReaderFactory.NewFrameReader()
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Read error %q", err)
|
||||||
|
}
|
||||||
|
if header := r.HeaderReader(); header == nil {
|
||||||
|
t.Errorf("no header")
|
||||||
|
} else {
|
||||||
|
actualHeader := make([]byte, r.Len())
|
||||||
|
n, err := header.Read(actualHeader)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Read header error %q", err)
|
||||||
|
} else {
|
||||||
|
if n < len(testHeader) {
|
||||||
|
t.Errorf("header too short %q got %q", testHeader, actualHeader[:n])
|
||||||
|
}
|
||||||
|
if !bytes.Equal(testHeader, actualHeader[:n]) {
|
||||||
|
t.Errorf("header expected %q got %q", testHeader, actualHeader[:n])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if trailer := r.TrailerReader(); trailer != nil {
|
||||||
|
t.Errorf("unexpected trailer %q", trailer)
|
||||||
|
}
|
||||||
|
frame := r.(*hybiFrameReader)
|
||||||
|
if frameHeader.Fin != frame.header.Fin ||
|
||||||
|
frameHeader.OpCode != frame.header.OpCode ||
|
||||||
|
len(testPayload) != int(frame.header.Length) {
|
||||||
|
t.Errorf("mismatch %v (%d) vs %v", frameHeader, len(testPayload), frame)
|
||||||
|
}
|
||||||
|
payload := make([]byte, len(testPayload))
|
||||||
|
_, err = r.Read(payload)
|
||||||
|
if err != nil && err != io.EOF {
|
||||||
|
t.Errorf("read %v", err)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(testPayload, payload) {
|
||||||
|
t.Errorf("payload %q vs %q", testPayload, payload)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiShortTextFrame(t *testing.T) {
|
||||||
|
frameHeader := &hybiFrameHeader{Fin: true, OpCode: TextFrame}
|
||||||
|
payload := []byte("hello")
|
||||||
|
testHybiFrame(t, []byte{0x81, 0x05}, payload, payload, frameHeader)
|
||||||
|
|
||||||
|
payload = make([]byte, 125)
|
||||||
|
testHybiFrame(t, []byte{0x81, 125}, payload, payload, frameHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiShortMaskedTextFrame(t *testing.T) {
|
||||||
|
frameHeader := &hybiFrameHeader{Fin: true, OpCode: TextFrame,
|
||||||
|
MaskingKey: []byte{0xcc, 0x55, 0x80, 0x20}}
|
||||||
|
payload := []byte("hello")
|
||||||
|
maskedPayload := []byte{0xa4, 0x30, 0xec, 0x4c, 0xa3}
|
||||||
|
header := []byte{0x81, 0x85}
|
||||||
|
header = append(header, frameHeader.MaskingKey...)
|
||||||
|
testHybiFrame(t, header, payload, maskedPayload, frameHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiShortBinaryFrame(t *testing.T) {
|
||||||
|
frameHeader := &hybiFrameHeader{Fin: true, OpCode: BinaryFrame}
|
||||||
|
payload := []byte("hello")
|
||||||
|
testHybiFrame(t, []byte{0x82, 0x05}, payload, payload, frameHeader)
|
||||||
|
|
||||||
|
payload = make([]byte, 125)
|
||||||
|
testHybiFrame(t, []byte{0x82, 125}, payload, payload, frameHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiControlFrame(t *testing.T) {
|
||||||
|
payload := []byte("hello")
|
||||||
|
|
||||||
|
frameHeader := &hybiFrameHeader{Fin: true, OpCode: PingFrame}
|
||||||
|
testHybiFrame(t, []byte{0x89, 0x05}, payload, payload, frameHeader)
|
||||||
|
|
||||||
|
frameHeader = &hybiFrameHeader{Fin: true, OpCode: PingFrame}
|
||||||
|
testHybiFrame(t, []byte{0x89, 0x00}, nil, nil, frameHeader)
|
||||||
|
|
||||||
|
frameHeader = &hybiFrameHeader{Fin: true, OpCode: PongFrame}
|
||||||
|
testHybiFrame(t, []byte{0x8A, 0x05}, payload, payload, frameHeader)
|
||||||
|
|
||||||
|
frameHeader = &hybiFrameHeader{Fin: true, OpCode: PongFrame}
|
||||||
|
testHybiFrame(t, []byte{0x8A, 0x00}, nil, nil, frameHeader)
|
||||||
|
|
||||||
|
frameHeader = &hybiFrameHeader{Fin: true, OpCode: CloseFrame}
|
||||||
|
payload = []byte{0x03, 0xe8} // 1000
|
||||||
|
testHybiFrame(t, []byte{0x88, 0x02}, payload, payload, frameHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiLongFrame(t *testing.T) {
|
||||||
|
frameHeader := &hybiFrameHeader{Fin: true, OpCode: TextFrame}
|
||||||
|
payload := make([]byte, 126)
|
||||||
|
testHybiFrame(t, []byte{0x81, 126, 0x00, 126}, payload, payload, frameHeader)
|
||||||
|
|
||||||
|
payload = make([]byte, 65535)
|
||||||
|
testHybiFrame(t, []byte{0x81, 126, 0xff, 0xff}, payload, payload, frameHeader)
|
||||||
|
|
||||||
|
payload = make([]byte, 65536)
|
||||||
|
testHybiFrame(t, []byte{0x81, 127, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00}, payload, payload, frameHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiClientRead(t *testing.T) {
|
||||||
|
wireData := []byte{0x81, 0x05, 'h', 'e', 'l', 'l', 'o',
|
||||||
|
0x89, 0x05, 'h', 'e', 'l', 'l', 'o', // ping
|
||||||
|
0x81, 0x05, 'w', 'o', 'r', 'l', 'd'}
|
||||||
|
br := bufio.NewReader(bytes.NewBuffer(wireData))
|
||||||
|
bw := bufio.NewWriter(bytes.NewBuffer([]byte{}))
|
||||||
|
conn := newHybiConn(newConfig(t, "/"), bufio.NewReadWriter(br, bw), nil, nil)
|
||||||
|
|
||||||
|
msg := make([]byte, 512)
|
||||||
|
n, err := conn.Read(msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("read 1st frame, error %q", err)
|
||||||
|
}
|
||||||
|
if n != 5 {
|
||||||
|
t.Errorf("read 1st frame, expect 5, got %d", n)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(wireData[2:7], msg[:n]) {
|
||||||
|
t.Errorf("read 1st frame %v, got %v", wireData[2:7], msg[:n])
|
||||||
|
}
|
||||||
|
n, err = conn.Read(msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("read 2nd frame, error %q", err)
|
||||||
|
}
|
||||||
|
if n != 5 {
|
||||||
|
t.Errorf("read 2nd frame, expect 5, got %d", n)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(wireData[16:21], msg[:n]) {
|
||||||
|
t.Errorf("read 2nd frame %v, got %v", wireData[16:21], msg[:n])
|
||||||
|
}
|
||||||
|
n, err = conn.Read(msg)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("read not EOF")
|
||||||
|
}
|
||||||
|
if n != 0 {
|
||||||
|
t.Errorf("expect read 0, got %d", n)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiShortRead(t *testing.T) {
|
||||||
|
wireData := []byte{0x81, 0x05, 'h', 'e', 'l', 'l', 'o',
|
||||||
|
0x89, 0x05, 'h', 'e', 'l', 'l', 'o', // ping
|
||||||
|
0x81, 0x05, 'w', 'o', 'r', 'l', 'd'}
|
||||||
|
br := bufio.NewReader(bytes.NewBuffer(wireData))
|
||||||
|
bw := bufio.NewWriter(bytes.NewBuffer([]byte{}))
|
||||||
|
conn := newHybiConn(newConfig(t, "/"), bufio.NewReadWriter(br, bw), nil, nil)
|
||||||
|
|
||||||
|
step := 0
|
||||||
|
pos := 0
|
||||||
|
expectedPos := []int{2, 5, 16, 19}
|
||||||
|
expectedLen := []int{3, 2, 3, 2}
|
||||||
|
for {
|
||||||
|
msg := make([]byte, 3)
|
||||||
|
n, err := conn.Read(msg)
|
||||||
|
if step >= len(expectedPos) {
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("read not EOF")
|
||||||
|
}
|
||||||
|
if n != 0 {
|
||||||
|
t.Errorf("expect read 0, got %d", n)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
pos = expectedPos[step]
|
||||||
|
endPos := pos + expectedLen[step]
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("read from %d, got error %q", pos, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if n != endPos-pos {
|
||||||
|
t.Errorf("read from %d, expect %d, got %d", pos, endPos-pos, n)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(wireData[pos:endPos], msg[:n]) {
|
||||||
|
t.Errorf("read from %d, frame %v, got %v", pos, wireData[pos:endPos], msg[:n])
|
||||||
|
}
|
||||||
|
step++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiServerRead(t *testing.T) {
|
||||||
|
wireData := []byte{0x81, 0x85, 0xcc, 0x55, 0x80, 0x20,
|
||||||
|
0xa4, 0x30, 0xec, 0x4c, 0xa3, // hello
|
||||||
|
0x89, 0x85, 0xcc, 0x55, 0x80, 0x20,
|
||||||
|
0xa4, 0x30, 0xec, 0x4c, 0xa3, // ping: hello
|
||||||
|
0x81, 0x85, 0xed, 0x83, 0xb4, 0x24,
|
||||||
|
0x9a, 0xec, 0xc6, 0x48, 0x89, // world
|
||||||
|
}
|
||||||
|
br := bufio.NewReader(bytes.NewBuffer(wireData))
|
||||||
|
bw := bufio.NewWriter(bytes.NewBuffer([]byte{}))
|
||||||
|
conn := newHybiConn(newConfig(t, "/"), bufio.NewReadWriter(br, bw), nil, new(http.Request))
|
||||||
|
|
||||||
|
expected := [][]byte{[]byte("hello"), []byte("world")}
|
||||||
|
|
||||||
|
msg := make([]byte, 512)
|
||||||
|
n, err := conn.Read(msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("read 1st frame, error %q", err)
|
||||||
|
}
|
||||||
|
if n != 5 {
|
||||||
|
t.Errorf("read 1st frame, expect 5, got %d", n)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(expected[0], msg[:n]) {
|
||||||
|
t.Errorf("read 1st frame %q, got %q", expected[0], msg[:n])
|
||||||
|
}
|
||||||
|
|
||||||
|
n, err = conn.Read(msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("read 2nd frame, error %q", err)
|
||||||
|
}
|
||||||
|
if n != 5 {
|
||||||
|
t.Errorf("read 2nd frame, expect 5, got %d", n)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(expected[1], msg[:n]) {
|
||||||
|
t.Errorf("read 2nd frame %q, got %q", expected[1], msg[:n])
|
||||||
|
}
|
||||||
|
|
||||||
|
n, err = conn.Read(msg)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("read not EOF")
|
||||||
|
}
|
||||||
|
if n != 0 {
|
||||||
|
t.Errorf("expect read 0, got %d", n)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiServerReadWithoutMasking(t *testing.T) {
|
||||||
|
wireData := []byte{0x81, 0x05, 'h', 'e', 'l', 'l', 'o'}
|
||||||
|
br := bufio.NewReader(bytes.NewBuffer(wireData))
|
||||||
|
bw := bufio.NewWriter(bytes.NewBuffer([]byte{}))
|
||||||
|
conn := newHybiConn(newConfig(t, "/"), bufio.NewReadWriter(br, bw), nil, new(http.Request))
|
||||||
|
// server MUST close the connection upon receiving a non-masked frame.
|
||||||
|
msg := make([]byte, 512)
|
||||||
|
_, err := conn.Read(msg)
|
||||||
|
if err != io.EOF {
|
||||||
|
t.Errorf("read 1st frame, expect %q, but got %q", io.EOF, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHybiClientReadWithMasking(t *testing.T) {
|
||||||
|
wireData := []byte{0x81, 0x85, 0xcc, 0x55, 0x80, 0x20,
|
||||||
|
0xa4, 0x30, 0xec, 0x4c, 0xa3, // hello
|
||||||
|
}
|
||||||
|
br := bufio.NewReader(bytes.NewBuffer(wireData))
|
||||||
|
bw := bufio.NewWriter(bytes.NewBuffer([]byte{}))
|
||||||
|
conn := newHybiConn(newConfig(t, "/"), bufio.NewReadWriter(br, bw), nil, nil)
|
||||||
|
|
||||||
|
// client MUST close the connection upon receiving a masked frame.
|
||||||
|
msg := make([]byte, 512)
|
||||||
|
_, err := conn.Read(msg)
|
||||||
|
if err != io.EOF {
|
||||||
|
t.Errorf("read 1st frame, expect %q, but got %q", io.EOF, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test the hybiServerHandshaker supports firefox implementation and
|
||||||
|
// checks Connection request header include (but it's not necessary
|
||||||
|
// equal to) "upgrade"
|
||||||
|
func TestHybiServerFirefoxHandshake(t *testing.T) {
|
||||||
|
config := new(Config)
|
||||||
|
handshaker := &hybiServerHandshaker{Config: config}
|
||||||
|
br := bufio.NewReader(strings.NewReader(`GET /chat HTTP/1.1
|
||||||
|
Host: server.example.com
|
||||||
|
Upgrade: websocket
|
||||||
|
Connection: keep-alive, upgrade
|
||||||
|
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
|
||||||
|
Origin: http://example.com
|
||||||
|
Sec-WebSocket-Protocol: chat, superchat
|
||||||
|
Sec-WebSocket-Version: 13
|
||||||
|
|
||||||
|
`))
|
||||||
|
req, err := http.ReadRequest(br)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("request", err)
|
||||||
|
}
|
||||||
|
code, err := handshaker.ReadHandshake(br, req)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake failed: %v", err)
|
||||||
|
}
|
||||||
|
if code != http.StatusSwitchingProtocols {
|
||||||
|
t.Errorf("status expected %q but got %q", http.StatusSwitchingProtocols, code)
|
||||||
|
}
|
||||||
|
b := bytes.NewBuffer([]byte{})
|
||||||
|
bw := bufio.NewWriter(b)
|
||||||
|
|
||||||
|
config.Protocol = []string{"chat"}
|
||||||
|
|
||||||
|
err = handshaker.AcceptHandshake(bw)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("handshake response failed: %v", err)
|
||||||
|
}
|
||||||
|
expectedResponse := strings.Join([]string{
|
||||||
|
"HTTP/1.1 101 Switching Protocols",
|
||||||
|
"Upgrade: websocket",
|
||||||
|
"Connection: Upgrade",
|
||||||
|
"Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=",
|
||||||
|
"Sec-WebSocket-Protocol: chat",
|
||||||
|
"", ""}, "\r\n")
|
||||||
|
|
||||||
|
if b.String() != expectedResponse {
|
||||||
|
t.Errorf("handshake expected %q but got %q", expectedResponse, b.String())
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,113 @@
|
||||||
|
// Copyright 2009 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
func newServerConn(rwc io.ReadWriteCloser, buf *bufio.ReadWriter, req *http.Request, config *Config, handshake func(*Config, *http.Request) error) (conn *Conn, err error) {
|
||||||
|
var hs serverHandshaker = &hybiServerHandshaker{Config: config}
|
||||||
|
code, err := hs.ReadHandshake(buf.Reader, req)
|
||||||
|
if err == ErrBadWebSocketVersion {
|
||||||
|
fmt.Fprintf(buf, "HTTP/1.1 %03d %s\r\n", code, http.StatusText(code))
|
||||||
|
fmt.Fprintf(buf, "Sec-WebSocket-Version: %s\r\n", SupportedProtocolVersion)
|
||||||
|
buf.WriteString("\r\n")
|
||||||
|
buf.WriteString(err.Error())
|
||||||
|
buf.Flush()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(buf, "HTTP/1.1 %03d %s\r\n", code, http.StatusText(code))
|
||||||
|
buf.WriteString("\r\n")
|
||||||
|
buf.WriteString(err.Error())
|
||||||
|
buf.Flush()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if handshake != nil {
|
||||||
|
err = handshake(config, req)
|
||||||
|
if err != nil {
|
||||||
|
code = http.StatusForbidden
|
||||||
|
fmt.Fprintf(buf, "HTTP/1.1 %03d %s\r\n", code, http.StatusText(code))
|
||||||
|
buf.WriteString("\r\n")
|
||||||
|
buf.Flush()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
err = hs.AcceptHandshake(buf.Writer)
|
||||||
|
if err != nil {
|
||||||
|
code = http.StatusBadRequest
|
||||||
|
fmt.Fprintf(buf, "HTTP/1.1 %03d %s\r\n", code, http.StatusText(code))
|
||||||
|
buf.WriteString("\r\n")
|
||||||
|
buf.Flush()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
conn = hs.NewServerConn(buf, rwc, req)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Server represents a server of a WebSocket.
|
||||||
|
type Server struct {
|
||||||
|
// Config is a WebSocket configuration for new WebSocket connection.
|
||||||
|
Config
|
||||||
|
|
||||||
|
// Handshake is an optional function in WebSocket handshake.
|
||||||
|
// For example, you can check, or don't check Origin header.
|
||||||
|
// Another example, you can select config.Protocol.
|
||||||
|
Handshake func(*Config, *http.Request) error
|
||||||
|
|
||||||
|
// Handler handles a WebSocket connection.
|
||||||
|
Handler
|
||||||
|
}
|
||||||
|
|
||||||
|
// ServeHTTP implements the http.Handler interface for a WebSocket
|
||||||
|
func (s Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
|
s.serveWebSocket(w, req)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Server) serveWebSocket(w http.ResponseWriter, req *http.Request) {
|
||||||
|
rwc, buf, err := w.(http.Hijacker).Hijack()
|
||||||
|
if err != nil {
|
||||||
|
panic("Hijack failed: " + err.Error())
|
||||||
|
}
|
||||||
|
// The server should abort the WebSocket connection if it finds
|
||||||
|
// the client did not send a handshake that matches with protocol
|
||||||
|
// specification.
|
||||||
|
defer rwc.Close()
|
||||||
|
conn, err := newServerConn(rwc, buf, req, &s.Config, s.Handshake)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if conn == nil {
|
||||||
|
panic("unexpected nil conn")
|
||||||
|
}
|
||||||
|
s.Handler(conn)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handler is a simple interface to a WebSocket browser client.
|
||||||
|
// It checks if Origin header is valid URL by default.
|
||||||
|
// You might want to verify websocket.Conn.Config().Origin in the func.
|
||||||
|
// If you use Server instead of Handler, you could call websocket.Origin and
|
||||||
|
// check the origin in your Handshake func. So, if you want to accept
|
||||||
|
// non-browser clients, which do not send an Origin header, set a
|
||||||
|
// Server.Handshake that does not check the origin.
|
||||||
|
type Handler func(*Conn)
|
||||||
|
|
||||||
|
func checkOrigin(config *Config, req *http.Request) (err error) {
|
||||||
|
config.Origin, err = Origin(config, req)
|
||||||
|
if err == nil && config.Origin == nil {
|
||||||
|
return fmt.Errorf("null origin")
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// ServeHTTP implements the http.Handler interface for a WebSocket
|
||||||
|
func (h Handler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
|
s := Server{Handler: h, Handshake: checkOrigin}
|
||||||
|
s.serveWebSocket(w, req)
|
||||||
|
}
|
|
@ -0,0 +1,448 @@
|
||||||
|
// Copyright 2009 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
// Package websocket implements a client and server for the WebSocket protocol
|
||||||
|
// as specified in RFC 6455.
|
||||||
|
//
|
||||||
|
// This package currently lacks some features found in an alternative
|
||||||
|
// and more actively maintained WebSocket package:
|
||||||
|
//
|
||||||
|
// https://godoc.org/github.com/gorilla/websocket
|
||||||
|
//
|
||||||
|
package websocket // import "golang.org/x/net/websocket"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"crypto/tls"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
ProtocolVersionHybi13 = 13
|
||||||
|
ProtocolVersionHybi = ProtocolVersionHybi13
|
||||||
|
SupportedProtocolVersion = "13"
|
||||||
|
|
||||||
|
ContinuationFrame = 0
|
||||||
|
TextFrame = 1
|
||||||
|
BinaryFrame = 2
|
||||||
|
CloseFrame = 8
|
||||||
|
PingFrame = 9
|
||||||
|
PongFrame = 10
|
||||||
|
UnknownFrame = 255
|
||||||
|
|
||||||
|
DefaultMaxPayloadBytes = 32 << 20 // 32MB
|
||||||
|
)
|
||||||
|
|
||||||
|
// ProtocolError represents WebSocket protocol errors.
|
||||||
|
type ProtocolError struct {
|
||||||
|
ErrorString string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (err *ProtocolError) Error() string { return err.ErrorString }
|
||||||
|
|
||||||
|
var (
|
||||||
|
ErrBadProtocolVersion = &ProtocolError{"bad protocol version"}
|
||||||
|
ErrBadScheme = &ProtocolError{"bad scheme"}
|
||||||
|
ErrBadStatus = &ProtocolError{"bad status"}
|
||||||
|
ErrBadUpgrade = &ProtocolError{"missing or bad upgrade"}
|
||||||
|
ErrBadWebSocketOrigin = &ProtocolError{"missing or bad WebSocket-Origin"}
|
||||||
|
ErrBadWebSocketLocation = &ProtocolError{"missing or bad WebSocket-Location"}
|
||||||
|
ErrBadWebSocketProtocol = &ProtocolError{"missing or bad WebSocket-Protocol"}
|
||||||
|
ErrBadWebSocketVersion = &ProtocolError{"missing or bad WebSocket Version"}
|
||||||
|
ErrChallengeResponse = &ProtocolError{"mismatch challenge/response"}
|
||||||
|
ErrBadFrame = &ProtocolError{"bad frame"}
|
||||||
|
ErrBadFrameBoundary = &ProtocolError{"not on frame boundary"}
|
||||||
|
ErrNotWebSocket = &ProtocolError{"not websocket protocol"}
|
||||||
|
ErrBadRequestMethod = &ProtocolError{"bad method"}
|
||||||
|
ErrNotSupported = &ProtocolError{"not supported"}
|
||||||
|
)
|
||||||
|
|
||||||
|
// ErrFrameTooLarge is returned by Codec's Receive method if payload size
|
||||||
|
// exceeds limit set by Conn.MaxPayloadBytes
|
||||||
|
var ErrFrameTooLarge = errors.New("websocket: frame payload size exceeds limit")
|
||||||
|
|
||||||
|
// Addr is an implementation of net.Addr for WebSocket.
|
||||||
|
type Addr struct {
|
||||||
|
*url.URL
|
||||||
|
}
|
||||||
|
|
||||||
|
// Network returns the network type for a WebSocket, "websocket".
|
||||||
|
func (addr *Addr) Network() string { return "websocket" }
|
||||||
|
|
||||||
|
// Config is a WebSocket configuration
|
||||||
|
type Config struct {
|
||||||
|
// A WebSocket server address.
|
||||||
|
Location *url.URL
|
||||||
|
|
||||||
|
// A Websocket client origin.
|
||||||
|
Origin *url.URL
|
||||||
|
|
||||||
|
// WebSocket subprotocols.
|
||||||
|
Protocol []string
|
||||||
|
|
||||||
|
// WebSocket protocol version.
|
||||||
|
Version int
|
||||||
|
|
||||||
|
// TLS config for secure WebSocket (wss).
|
||||||
|
TlsConfig *tls.Config
|
||||||
|
|
||||||
|
// Additional header fields to be sent in WebSocket opening handshake.
|
||||||
|
Header http.Header
|
||||||
|
|
||||||
|
// Dialer used when opening websocket connections.
|
||||||
|
Dialer *net.Dialer
|
||||||
|
|
||||||
|
handshakeData map[string]string
|
||||||
|
}
|
||||||
|
|
||||||
|
// serverHandshaker is an interface to handle WebSocket server side handshake.
|
||||||
|
type serverHandshaker interface {
|
||||||
|
// ReadHandshake reads handshake request message from client.
|
||||||
|
// Returns http response code and error if any.
|
||||||
|
ReadHandshake(buf *bufio.Reader, req *http.Request) (code int, err error)
|
||||||
|
|
||||||
|
// AcceptHandshake accepts the client handshake request and sends
|
||||||
|
// handshake response back to client.
|
||||||
|
AcceptHandshake(buf *bufio.Writer) (err error)
|
||||||
|
|
||||||
|
// NewServerConn creates a new WebSocket connection.
|
||||||
|
NewServerConn(buf *bufio.ReadWriter, rwc io.ReadWriteCloser, request *http.Request) (conn *Conn)
|
||||||
|
}
|
||||||
|
|
||||||
|
// frameReader is an interface to read a WebSocket frame.
|
||||||
|
type frameReader interface {
|
||||||
|
// Reader is to read payload of the frame.
|
||||||
|
io.Reader
|
||||||
|
|
||||||
|
// PayloadType returns payload type.
|
||||||
|
PayloadType() byte
|
||||||
|
|
||||||
|
// HeaderReader returns a reader to read header of the frame.
|
||||||
|
HeaderReader() io.Reader
|
||||||
|
|
||||||
|
// TrailerReader returns a reader to read trailer of the frame.
|
||||||
|
// If it returns nil, there is no trailer in the frame.
|
||||||
|
TrailerReader() io.Reader
|
||||||
|
|
||||||
|
// Len returns total length of the frame, including header and trailer.
|
||||||
|
Len() int
|
||||||
|
}
|
||||||
|
|
||||||
|
// frameReaderFactory is an interface to creates new frame reader.
|
||||||
|
type frameReaderFactory interface {
|
||||||
|
NewFrameReader() (r frameReader, err error)
|
||||||
|
}
|
||||||
|
|
||||||
|
// frameWriter is an interface to write a WebSocket frame.
|
||||||
|
type frameWriter interface {
|
||||||
|
// Writer is to write payload of the frame.
|
||||||
|
io.WriteCloser
|
||||||
|
}
|
||||||
|
|
||||||
|
// frameWriterFactory is an interface to create new frame writer.
|
||||||
|
type frameWriterFactory interface {
|
||||||
|
NewFrameWriter(payloadType byte) (w frameWriter, err error)
|
||||||
|
}
|
||||||
|
|
||||||
|
type frameHandler interface {
|
||||||
|
HandleFrame(frame frameReader) (r frameReader, err error)
|
||||||
|
WriteClose(status int) (err error)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Conn represents a WebSocket connection.
|
||||||
|
//
|
||||||
|
// Multiple goroutines may invoke methods on a Conn simultaneously.
|
||||||
|
type Conn struct {
|
||||||
|
config *Config
|
||||||
|
request *http.Request
|
||||||
|
|
||||||
|
buf *bufio.ReadWriter
|
||||||
|
rwc io.ReadWriteCloser
|
||||||
|
|
||||||
|
rio sync.Mutex
|
||||||
|
frameReaderFactory
|
||||||
|
frameReader
|
||||||
|
|
||||||
|
wio sync.Mutex
|
||||||
|
frameWriterFactory
|
||||||
|
|
||||||
|
frameHandler
|
||||||
|
PayloadType byte
|
||||||
|
defaultCloseStatus int
|
||||||
|
|
||||||
|
// MaxPayloadBytes limits the size of frame payload received over Conn
|
||||||
|
// by Codec's Receive method. If zero, DefaultMaxPayloadBytes is used.
|
||||||
|
MaxPayloadBytes int
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read implements the io.Reader interface:
|
||||||
|
// it reads data of a frame from the WebSocket connection.
|
||||||
|
// if msg is not large enough for the frame data, it fills the msg and next Read
|
||||||
|
// will read the rest of the frame data.
|
||||||
|
// it reads Text frame or Binary frame.
|
||||||
|
func (ws *Conn) Read(msg []byte) (n int, err error) {
|
||||||
|
ws.rio.Lock()
|
||||||
|
defer ws.rio.Unlock()
|
||||||
|
again:
|
||||||
|
if ws.frameReader == nil {
|
||||||
|
frame, err := ws.frameReaderFactory.NewFrameReader()
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
ws.frameReader, err = ws.frameHandler.HandleFrame(frame)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
if ws.frameReader == nil {
|
||||||
|
goto again
|
||||||
|
}
|
||||||
|
}
|
||||||
|
n, err = ws.frameReader.Read(msg)
|
||||||
|
if err == io.EOF {
|
||||||
|
if trailer := ws.frameReader.TrailerReader(); trailer != nil {
|
||||||
|
io.Copy(ioutil.Discard, trailer)
|
||||||
|
}
|
||||||
|
ws.frameReader = nil
|
||||||
|
goto again
|
||||||
|
}
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write implements the io.Writer interface:
|
||||||
|
// it writes data as a frame to the WebSocket connection.
|
||||||
|
func (ws *Conn) Write(msg []byte) (n int, err error) {
|
||||||
|
ws.wio.Lock()
|
||||||
|
defer ws.wio.Unlock()
|
||||||
|
w, err := ws.frameWriterFactory.NewFrameWriter(ws.PayloadType)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
n, err = w.Write(msg)
|
||||||
|
w.Close()
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close implements the io.Closer interface.
|
||||||
|
func (ws *Conn) Close() error {
|
||||||
|
err := ws.frameHandler.WriteClose(ws.defaultCloseStatus)
|
||||||
|
err1 := ws.rwc.Close()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return err1
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ws *Conn) IsClientConn() bool { return ws.request == nil }
|
||||||
|
func (ws *Conn) IsServerConn() bool { return ws.request != nil }
|
||||||
|
|
||||||
|
// LocalAddr returns the WebSocket Origin for the connection for client, or
|
||||||
|
// the WebSocket location for server.
|
||||||
|
func (ws *Conn) LocalAddr() net.Addr {
|
||||||
|
if ws.IsClientConn() {
|
||||||
|
return &Addr{ws.config.Origin}
|
||||||
|
}
|
||||||
|
return &Addr{ws.config.Location}
|
||||||
|
}
|
||||||
|
|
||||||
|
// RemoteAddr returns the WebSocket location for the connection for client, or
|
||||||
|
// the Websocket Origin for server.
|
||||||
|
func (ws *Conn) RemoteAddr() net.Addr {
|
||||||
|
if ws.IsClientConn() {
|
||||||
|
return &Addr{ws.config.Location}
|
||||||
|
}
|
||||||
|
return &Addr{ws.config.Origin}
|
||||||
|
}
|
||||||
|
|
||||||
|
var errSetDeadline = errors.New("websocket: cannot set deadline: not using a net.Conn")
|
||||||
|
|
||||||
|
// SetDeadline sets the connection's network read & write deadlines.
|
||||||
|
func (ws *Conn) SetDeadline(t time.Time) error {
|
||||||
|
if conn, ok := ws.rwc.(net.Conn); ok {
|
||||||
|
return conn.SetDeadline(t)
|
||||||
|
}
|
||||||
|
return errSetDeadline
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetReadDeadline sets the connection's network read deadline.
|
||||||
|
func (ws *Conn) SetReadDeadline(t time.Time) error {
|
||||||
|
if conn, ok := ws.rwc.(net.Conn); ok {
|
||||||
|
return conn.SetReadDeadline(t)
|
||||||
|
}
|
||||||
|
return errSetDeadline
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetWriteDeadline sets the connection's network write deadline.
|
||||||
|
func (ws *Conn) SetWriteDeadline(t time.Time) error {
|
||||||
|
if conn, ok := ws.rwc.(net.Conn); ok {
|
||||||
|
return conn.SetWriteDeadline(t)
|
||||||
|
}
|
||||||
|
return errSetDeadline
|
||||||
|
}
|
||||||
|
|
||||||
|
// Config returns the WebSocket config.
|
||||||
|
func (ws *Conn) Config() *Config { return ws.config }
|
||||||
|
|
||||||
|
// Request returns the http request upgraded to the WebSocket.
|
||||||
|
// It is nil for client side.
|
||||||
|
func (ws *Conn) Request() *http.Request { return ws.request }
|
||||||
|
|
||||||
|
// Codec represents a symmetric pair of functions that implement a codec.
|
||||||
|
type Codec struct {
|
||||||
|
Marshal func(v interface{}) (data []byte, payloadType byte, err error)
|
||||||
|
Unmarshal func(data []byte, payloadType byte, v interface{}) (err error)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send sends v marshaled by cd.Marshal as single frame to ws.
|
||||||
|
func (cd Codec) Send(ws *Conn, v interface{}) (err error) {
|
||||||
|
data, payloadType, err := cd.Marshal(v)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
ws.wio.Lock()
|
||||||
|
defer ws.wio.Unlock()
|
||||||
|
w, err := ws.frameWriterFactory.NewFrameWriter(payloadType)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err = w.Write(data)
|
||||||
|
w.Close()
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Receive receives single frame from ws, unmarshaled by cd.Unmarshal and stores
|
||||||
|
// in v. The whole frame payload is read to an in-memory buffer; max size of
|
||||||
|
// payload is defined by ws.MaxPayloadBytes. If frame payload size exceeds
|
||||||
|
// limit, ErrFrameTooLarge is returned; in this case frame is not read off wire
|
||||||
|
// completely. The next call to Receive would read and discard leftover data of
|
||||||
|
// previous oversized frame before processing next frame.
|
||||||
|
func (cd Codec) Receive(ws *Conn, v interface{}) (err error) {
|
||||||
|
ws.rio.Lock()
|
||||||
|
defer ws.rio.Unlock()
|
||||||
|
if ws.frameReader != nil {
|
||||||
|
_, err = io.Copy(ioutil.Discard, ws.frameReader)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
ws.frameReader = nil
|
||||||
|
}
|
||||||
|
again:
|
||||||
|
frame, err := ws.frameReaderFactory.NewFrameReader()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
frame, err = ws.frameHandler.HandleFrame(frame)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if frame == nil {
|
||||||
|
goto again
|
||||||
|
}
|
||||||
|
maxPayloadBytes := ws.MaxPayloadBytes
|
||||||
|
if maxPayloadBytes == 0 {
|
||||||
|
maxPayloadBytes = DefaultMaxPayloadBytes
|
||||||
|
}
|
||||||
|
if hf, ok := frame.(*hybiFrameReader); ok && hf.header.Length > int64(maxPayloadBytes) {
|
||||||
|
// payload size exceeds limit, no need to call Unmarshal
|
||||||
|
//
|
||||||
|
// set frameReader to current oversized frame so that
|
||||||
|
// the next call to this function can drain leftover
|
||||||
|
// data before processing the next frame
|
||||||
|
ws.frameReader = frame
|
||||||
|
return ErrFrameTooLarge
|
||||||
|
}
|
||||||
|
payloadType := frame.PayloadType()
|
||||||
|
data, err := ioutil.ReadAll(frame)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return cd.Unmarshal(data, payloadType, v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func marshal(v interface{}) (msg []byte, payloadType byte, err error) {
|
||||||
|
switch data := v.(type) {
|
||||||
|
case string:
|
||||||
|
return []byte(data), TextFrame, nil
|
||||||
|
case []byte:
|
||||||
|
return data, BinaryFrame, nil
|
||||||
|
}
|
||||||
|
return nil, UnknownFrame, ErrNotSupported
|
||||||
|
}
|
||||||
|
|
||||||
|
func unmarshal(msg []byte, payloadType byte, v interface{}) (err error) {
|
||||||
|
switch data := v.(type) {
|
||||||
|
case *string:
|
||||||
|
*data = string(msg)
|
||||||
|
return nil
|
||||||
|
case *[]byte:
|
||||||
|
*data = msg
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return ErrNotSupported
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Message is a codec to send/receive text/binary data in a frame on WebSocket connection.
|
||||||
|
To send/receive text frame, use string type.
|
||||||
|
To send/receive binary frame, use []byte type.
|
||||||
|
|
||||||
|
Trivial usage:
|
||||||
|
|
||||||
|
import "websocket"
|
||||||
|
|
||||||
|
// receive text frame
|
||||||
|
var message string
|
||||||
|
websocket.Message.Receive(ws, &message)
|
||||||
|
|
||||||
|
// send text frame
|
||||||
|
message = "hello"
|
||||||
|
websocket.Message.Send(ws, message)
|
||||||
|
|
||||||
|
// receive binary frame
|
||||||
|
var data []byte
|
||||||
|
websocket.Message.Receive(ws, &data)
|
||||||
|
|
||||||
|
// send binary frame
|
||||||
|
data = []byte{0, 1, 2}
|
||||||
|
websocket.Message.Send(ws, data)
|
||||||
|
|
||||||
|
*/
|
||||||
|
var Message = Codec{marshal, unmarshal}
|
||||||
|
|
||||||
|
func jsonMarshal(v interface{}) (msg []byte, payloadType byte, err error) {
|
||||||
|
msg, err = json.Marshal(v)
|
||||||
|
return msg, TextFrame, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func jsonUnmarshal(msg []byte, payloadType byte, v interface{}) (err error) {
|
||||||
|
return json.Unmarshal(msg, v)
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
JSON is a codec to send/receive JSON data in a frame from a WebSocket connection.
|
||||||
|
|
||||||
|
Trivial usage:
|
||||||
|
|
||||||
|
import "websocket"
|
||||||
|
|
||||||
|
type T struct {
|
||||||
|
Msg string
|
||||||
|
Count int
|
||||||
|
}
|
||||||
|
|
||||||
|
// receive JSON type T
|
||||||
|
var data T
|
||||||
|
websocket.JSON.Receive(ws, &data)
|
||||||
|
|
||||||
|
// send JSON type T
|
||||||
|
websocket.JSON.Send(ws, data)
|
||||||
|
*/
|
||||||
|
var JSON = Codec{jsonMarshal, jsonUnmarshal}
|
|
@ -0,0 +1,665 @@
|
||||||
|
// Copyright 2009 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package websocket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"crypto/rand"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"net/url"
|
||||||
|
"reflect"
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
var serverAddr string
|
||||||
|
var once sync.Once
|
||||||
|
|
||||||
|
func echoServer(ws *Conn) {
|
||||||
|
defer ws.Close()
|
||||||
|
io.Copy(ws, ws)
|
||||||
|
}
|
||||||
|
|
||||||
|
type Count struct {
|
||||||
|
S string
|
||||||
|
N int
|
||||||
|
}
|
||||||
|
|
||||||
|
func countServer(ws *Conn) {
|
||||||
|
defer ws.Close()
|
||||||
|
for {
|
||||||
|
var count Count
|
||||||
|
err := JSON.Receive(ws, &count)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
count.N++
|
||||||
|
count.S = strings.Repeat(count.S, count.N)
|
||||||
|
err = JSON.Send(ws, count)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type testCtrlAndDataHandler struct {
|
||||||
|
hybiFrameHandler
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *testCtrlAndDataHandler) WritePing(b []byte) (int, error) {
|
||||||
|
h.hybiFrameHandler.conn.wio.Lock()
|
||||||
|
defer h.hybiFrameHandler.conn.wio.Unlock()
|
||||||
|
w, err := h.hybiFrameHandler.conn.frameWriterFactory.NewFrameWriter(PingFrame)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
n, err := w.Write(b)
|
||||||
|
w.Close()
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func ctrlAndDataServer(ws *Conn) {
|
||||||
|
defer ws.Close()
|
||||||
|
h := &testCtrlAndDataHandler{hybiFrameHandler: hybiFrameHandler{conn: ws}}
|
||||||
|
ws.frameHandler = h
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for i := 0; ; i++ {
|
||||||
|
var b []byte
|
||||||
|
if i%2 != 0 { // with or without payload
|
||||||
|
b = []byte(fmt.Sprintf("#%d-CONTROL-FRAME-FROM-SERVER", i))
|
||||||
|
}
|
||||||
|
if _, err := h.WritePing(b); err != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if _, err := h.WritePong(b); err != nil { // unsolicited pong
|
||||||
|
break
|
||||||
|
}
|
||||||
|
time.Sleep(10 * time.Millisecond)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
b := make([]byte, 128)
|
||||||
|
for {
|
||||||
|
n, err := ws.Read(b)
|
||||||
|
if err != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if _, err := ws.Write(b[:n]); err != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func subProtocolHandshake(config *Config, req *http.Request) error {
|
||||||
|
for _, proto := range config.Protocol {
|
||||||
|
if proto == "chat" {
|
||||||
|
config.Protocol = []string{proto}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ErrBadWebSocketProtocol
|
||||||
|
}
|
||||||
|
|
||||||
|
func subProtoServer(ws *Conn) {
|
||||||
|
for _, proto := range ws.Config().Protocol {
|
||||||
|
io.WriteString(ws, proto)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func startServer() {
|
||||||
|
http.Handle("/echo", Handler(echoServer))
|
||||||
|
http.Handle("/count", Handler(countServer))
|
||||||
|
http.Handle("/ctrldata", Handler(ctrlAndDataServer))
|
||||||
|
subproto := Server{
|
||||||
|
Handshake: subProtocolHandshake,
|
||||||
|
Handler: Handler(subProtoServer),
|
||||||
|
}
|
||||||
|
http.Handle("/subproto", subproto)
|
||||||
|
server := httptest.NewServer(nil)
|
||||||
|
serverAddr = server.Listener.Addr().String()
|
||||||
|
log.Print("Test WebSocket server listening on ", serverAddr)
|
||||||
|
}
|
||||||
|
|
||||||
|
func newConfig(t *testing.T, path string) *Config {
|
||||||
|
config, _ := NewConfig(fmt.Sprintf("ws://%s%s", serverAddr, path), "http://localhost")
|
||||||
|
return config
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEcho(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
// websocket.Dial()
|
||||||
|
client, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
conn, err := NewClient(newConfig(t, "/echo"), client)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("WebSocket handshake error: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
msg := []byte("hello, world\n")
|
||||||
|
if _, err := conn.Write(msg); err != nil {
|
||||||
|
t.Errorf("Write: %v", err)
|
||||||
|
}
|
||||||
|
var actual_msg = make([]byte, 512)
|
||||||
|
n, err := conn.Read(actual_msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Read: %v", err)
|
||||||
|
}
|
||||||
|
actual_msg = actual_msg[0:n]
|
||||||
|
if !bytes.Equal(msg, actual_msg) {
|
||||||
|
t.Errorf("Echo: expected %q got %q", msg, actual_msg)
|
||||||
|
}
|
||||||
|
conn.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestAddr(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
// websocket.Dial()
|
||||||
|
client, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
conn, err := NewClient(newConfig(t, "/echo"), client)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("WebSocket handshake error: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ra := conn.RemoteAddr().String()
|
||||||
|
if !strings.HasPrefix(ra, "ws://") || !strings.HasSuffix(ra, "/echo") {
|
||||||
|
t.Errorf("Bad remote addr: %v", ra)
|
||||||
|
}
|
||||||
|
la := conn.LocalAddr().String()
|
||||||
|
if !strings.HasPrefix(la, "http://") {
|
||||||
|
t.Errorf("Bad local addr: %v", la)
|
||||||
|
}
|
||||||
|
conn.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCount(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
// websocket.Dial()
|
||||||
|
client, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
conn, err := NewClient(newConfig(t, "/count"), client)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("WebSocket handshake error: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var count Count
|
||||||
|
count.S = "hello"
|
||||||
|
if err := JSON.Send(conn, count); err != nil {
|
||||||
|
t.Errorf("Write: %v", err)
|
||||||
|
}
|
||||||
|
if err := JSON.Receive(conn, &count); err != nil {
|
||||||
|
t.Errorf("Read: %v", err)
|
||||||
|
}
|
||||||
|
if count.N != 1 {
|
||||||
|
t.Errorf("count: expected %d got %d", 1, count.N)
|
||||||
|
}
|
||||||
|
if count.S != "hello" {
|
||||||
|
t.Errorf("count: expected %q got %q", "hello", count.S)
|
||||||
|
}
|
||||||
|
if err := JSON.Send(conn, count); err != nil {
|
||||||
|
t.Errorf("Write: %v", err)
|
||||||
|
}
|
||||||
|
if err := JSON.Receive(conn, &count); err != nil {
|
||||||
|
t.Errorf("Read: %v", err)
|
||||||
|
}
|
||||||
|
if count.N != 2 {
|
||||||
|
t.Errorf("count: expected %d got %d", 2, count.N)
|
||||||
|
}
|
||||||
|
if count.S != "hellohello" {
|
||||||
|
t.Errorf("count: expected %q got %q", "hellohello", count.S)
|
||||||
|
}
|
||||||
|
conn.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWithQuery(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
client, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
config := newConfig(t, "/echo")
|
||||||
|
config.Location, err = url.ParseRequestURI(fmt.Sprintf("ws://%s/echo?q=v", serverAddr))
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("location url", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
ws, err := NewClient(config, client)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("WebSocket handshake: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ws.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func testWithProtocol(t *testing.T, subproto []string) (string, error) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
client, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
config := newConfig(t, "/subproto")
|
||||||
|
config.Protocol = subproto
|
||||||
|
|
||||||
|
ws, err := NewClient(config, client)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
msg := make([]byte, 16)
|
||||||
|
n, err := ws.Read(msg)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
ws.Close()
|
||||||
|
return string(msg[:n]), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWithProtocol(t *testing.T) {
|
||||||
|
proto, err := testWithProtocol(t, []string{"chat"})
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("SubProto: unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if proto != "chat" {
|
||||||
|
t.Errorf("SubProto: expected %q, got %q", "chat", proto)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWithTwoProtocol(t *testing.T) {
|
||||||
|
proto, err := testWithProtocol(t, []string{"test", "chat"})
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("SubProto: unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if proto != "chat" {
|
||||||
|
t.Errorf("SubProto: expected %q, got %q", "chat", proto)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWithBadProtocol(t *testing.T) {
|
||||||
|
_, err := testWithProtocol(t, []string{"test"})
|
||||||
|
if err != ErrBadStatus {
|
||||||
|
t.Errorf("SubProto: expected %v, got %v", ErrBadStatus, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHTTP(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
// If the client did not send a handshake that matches the protocol
|
||||||
|
// specification, the server MUST return an HTTP response with an
|
||||||
|
// appropriate error code (such as 400 Bad Request)
|
||||||
|
resp, err := http.Get(fmt.Sprintf("http://%s/echo", serverAddr))
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Get: error %#v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if resp == nil {
|
||||||
|
t.Error("Get: resp is null")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if resp.StatusCode != http.StatusBadRequest {
|
||||||
|
t.Errorf("Get: expected %q got %q", http.StatusBadRequest, resp.StatusCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrailingSpaces(t *testing.T) {
|
||||||
|
// http://code.google.com/p/go/issues/detail?id=955
|
||||||
|
// The last runs of this create keys with trailing spaces that should not be
|
||||||
|
// generated by the client.
|
||||||
|
once.Do(startServer)
|
||||||
|
config := newConfig(t, "/echo")
|
||||||
|
for i := 0; i < 30; i++ {
|
||||||
|
// body
|
||||||
|
ws, err := DialConfig(config)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Dial #%d failed: %v", i, err)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
ws.Close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDialConfigBadVersion(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
config := newConfig(t, "/echo")
|
||||||
|
config.Version = 1234
|
||||||
|
|
||||||
|
_, err := DialConfig(config)
|
||||||
|
|
||||||
|
if dialerr, ok := err.(*DialError); ok {
|
||||||
|
if dialerr.Err != ErrBadProtocolVersion {
|
||||||
|
t.Errorf("dial expected err %q but got %q", ErrBadProtocolVersion, dialerr.Err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDialConfigWithDialer(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
config := newConfig(t, "/echo")
|
||||||
|
config.Dialer = &net.Dialer{
|
||||||
|
Deadline: time.Now().Add(-time.Minute),
|
||||||
|
}
|
||||||
|
_, err := DialConfig(config)
|
||||||
|
dialerr, ok := err.(*DialError)
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("DialError expected, got %#v", err)
|
||||||
|
}
|
||||||
|
neterr, ok := dialerr.Err.(*net.OpError)
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("net.OpError error expected, got %#v", dialerr.Err)
|
||||||
|
}
|
||||||
|
if !neterr.Timeout() {
|
||||||
|
t.Fatalf("expected timeout error, got %#v", neterr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSmallBuffer(t *testing.T) {
|
||||||
|
// http://code.google.com/p/go/issues/detail?id=1145
|
||||||
|
// Read should be able to handle reading a fragment of a frame.
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
// websocket.Dial()
|
||||||
|
client, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
conn, err := NewClient(newConfig(t, "/echo"), client)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("WebSocket handshake error: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
msg := []byte("hello, world\n")
|
||||||
|
if _, err := conn.Write(msg); err != nil {
|
||||||
|
t.Errorf("Write: %v", err)
|
||||||
|
}
|
||||||
|
var small_msg = make([]byte, 8)
|
||||||
|
n, err := conn.Read(small_msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Read: %v", err)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(msg[:len(small_msg)], small_msg) {
|
||||||
|
t.Errorf("Echo: expected %q got %q", msg[:len(small_msg)], small_msg)
|
||||||
|
}
|
||||||
|
var second_msg = make([]byte, len(msg))
|
||||||
|
n, err = conn.Read(second_msg)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Read: %v", err)
|
||||||
|
}
|
||||||
|
second_msg = second_msg[0:n]
|
||||||
|
if !bytes.Equal(msg[len(small_msg):], second_msg) {
|
||||||
|
t.Errorf("Echo: expected %q got %q", msg[len(small_msg):], second_msg)
|
||||||
|
}
|
||||||
|
conn.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
var parseAuthorityTests = []struct {
|
||||||
|
in *url.URL
|
||||||
|
out string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "ws",
|
||||||
|
Host: "www.google.com",
|
||||||
|
},
|
||||||
|
"www.google.com:80",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "wss",
|
||||||
|
Host: "www.google.com",
|
||||||
|
},
|
||||||
|
"www.google.com:443",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "ws",
|
||||||
|
Host: "www.google.com:80",
|
||||||
|
},
|
||||||
|
"www.google.com:80",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "wss",
|
||||||
|
Host: "www.google.com:443",
|
||||||
|
},
|
||||||
|
"www.google.com:443",
|
||||||
|
},
|
||||||
|
// some invalid ones for parseAuthority. parseAuthority doesn't
|
||||||
|
// concern itself with the scheme unless it actually knows about it
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "http",
|
||||||
|
Host: "www.google.com",
|
||||||
|
},
|
||||||
|
"www.google.com",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "http",
|
||||||
|
Host: "www.google.com:80",
|
||||||
|
},
|
||||||
|
"www.google.com:80",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "asdf",
|
||||||
|
Host: "127.0.0.1",
|
||||||
|
},
|
||||||
|
"127.0.0.1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
&url.URL{
|
||||||
|
Scheme: "asdf",
|
||||||
|
Host: "www.google.com",
|
||||||
|
},
|
||||||
|
"www.google.com",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestParseAuthority(t *testing.T) {
|
||||||
|
for _, tt := range parseAuthorityTests {
|
||||||
|
out := parseAuthority(tt.in)
|
||||||
|
if out != tt.out {
|
||||||
|
t.Errorf("got %v; want %v", out, tt.out)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type closerConn struct {
|
||||||
|
net.Conn
|
||||||
|
closed int // count of the number of times Close was called
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *closerConn) Close() error {
|
||||||
|
c.closed++
|
||||||
|
return c.Conn.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestClose(t *testing.T) {
|
||||||
|
if runtime.GOOS == "plan9" {
|
||||||
|
t.Skip("see golang.org/issue/11454")
|
||||||
|
}
|
||||||
|
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
conn, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("dialing", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cc := closerConn{Conn: conn}
|
||||||
|
|
||||||
|
client, err := NewClient(newConfig(t, "/echo"), &cc)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("WebSocket handshake: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// set the deadline to ten minutes ago, which will have expired by the time
|
||||||
|
// client.Close sends the close status frame.
|
||||||
|
conn.SetDeadline(time.Now().Add(-10 * time.Minute))
|
||||||
|
|
||||||
|
if err := client.Close(); err == nil {
|
||||||
|
t.Errorf("ws.Close(): expected error, got %v", err)
|
||||||
|
}
|
||||||
|
if cc.closed < 1 {
|
||||||
|
t.Fatalf("ws.Close(): expected underlying ws.rwc.Close to be called > 0 times, got: %v", cc.closed)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var originTests = []struct {
|
||||||
|
req *http.Request
|
||||||
|
origin *url.URL
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
req: &http.Request{
|
||||||
|
Header: http.Header{
|
||||||
|
"Origin": []string{"http://www.example.com"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
origin: &url.URL{
|
||||||
|
Scheme: "http",
|
||||||
|
Host: "www.example.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
req: &http.Request{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestOrigin(t *testing.T) {
|
||||||
|
conf := newConfig(t, "/echo")
|
||||||
|
conf.Version = ProtocolVersionHybi13
|
||||||
|
for i, tt := range originTests {
|
||||||
|
origin, err := Origin(conf, tt.req)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(origin, tt.origin) {
|
||||||
|
t.Errorf("#%d: got origin %v; want %v", i, origin, tt.origin)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCtrlAndData(t *testing.T) {
|
||||||
|
once.Do(startServer)
|
||||||
|
|
||||||
|
c, err := net.Dial("tcp", serverAddr)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
ws, err := NewClient(newConfig(t, "/ctrldata"), c)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer ws.Close()
|
||||||
|
|
||||||
|
h := &testCtrlAndDataHandler{hybiFrameHandler: hybiFrameHandler{conn: ws}}
|
||||||
|
ws.frameHandler = h
|
||||||
|
|
||||||
|
b := make([]byte, 128)
|
||||||
|
for i := 0; i < 2; i++ {
|
||||||
|
data := []byte(fmt.Sprintf("#%d-DATA-FRAME-FROM-CLIENT", i))
|
||||||
|
if _, err := ws.Write(data); err != nil {
|
||||||
|
t.Fatalf("#%d: %v", i, err)
|
||||||
|
}
|
||||||
|
var ctrl []byte
|
||||||
|
if i%2 != 0 { // with or without payload
|
||||||
|
ctrl = []byte(fmt.Sprintf("#%d-CONTROL-FRAME-FROM-CLIENT", i))
|
||||||
|
}
|
||||||
|
if _, err := h.WritePing(ctrl); err != nil {
|
||||||
|
t.Fatalf("#%d: %v", i, err)
|
||||||
|
}
|
||||||
|
n, err := ws.Read(b)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("#%d: %v", i, err)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(b[:n], data) {
|
||||||
|
t.Fatalf("#%d: got %v; want %v", i, b[:n], data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCodec_ReceiveLimited(t *testing.T) {
|
||||||
|
const limit = 2048
|
||||||
|
var payloads [][]byte
|
||||||
|
for _, size := range []int{
|
||||||
|
1024,
|
||||||
|
2048,
|
||||||
|
4096, // receive of this message would be interrupted due to limit
|
||||||
|
2048, // this one is to make sure next receive recovers discarding leftovers
|
||||||
|
} {
|
||||||
|
b := make([]byte, size)
|
||||||
|
rand.Read(b)
|
||||||
|
payloads = append(payloads, b)
|
||||||
|
}
|
||||||
|
handlerDone := make(chan struct{})
|
||||||
|
limitedHandler := func(ws *Conn) {
|
||||||
|
defer close(handlerDone)
|
||||||
|
ws.MaxPayloadBytes = limit
|
||||||
|
defer ws.Close()
|
||||||
|
for i, p := range payloads {
|
||||||
|
t.Logf("payload #%d (size %d, exceeds limit: %v)", i, len(p), len(p) > limit)
|
||||||
|
var recv []byte
|
||||||
|
err := Message.Receive(ws, &recv)
|
||||||
|
switch err {
|
||||||
|
case nil:
|
||||||
|
case ErrFrameTooLarge:
|
||||||
|
if len(p) <= limit {
|
||||||
|
t.Fatalf("unexpected frame size limit: expected %d bytes of payload having limit at %d", len(p), limit)
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
default:
|
||||||
|
t.Fatalf("unexpected error: %v (want either nil or ErrFrameTooLarge)", err)
|
||||||
|
}
|
||||||
|
if len(recv) > limit {
|
||||||
|
t.Fatalf("received %d bytes of payload having limit at %d", len(recv), limit)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(p, recv) {
|
||||||
|
t.Fatalf("received payload differs:\ngot:\t%v\nwant:\t%v", recv, p)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
server := httptest.NewServer(Handler(limitedHandler))
|
||||||
|
defer server.CloseClientConnections()
|
||||||
|
defer server.Close()
|
||||||
|
addr := server.Listener.Addr().String()
|
||||||
|
ws, err := Dial("ws://"+addr+"/", "", "http://localhost/")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer ws.Close()
|
||||||
|
for i, p := range payloads {
|
||||||
|
if err := Message.Send(ws, p); err != nil {
|
||||||
|
t.Fatalf("payload #%d (size %d): %v", i, len(p), err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<-handlerDone
|
||||||
|
}
|
Loading…
Reference in New Issue