2014-04-30 08:10:44 -07:00
|
|
|
package gobot
|
2014-04-29 13:20:32 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
2014-11-21 11:57:26 -08:00
|
|
|
"reflect"
|
2016-11-07 14:55:21 +01:00
|
|
|
|
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
2014-04-29 13:20:32 -07:00
|
|
|
)
|
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// JSONConnection is a JSON representation of a Connection.
|
2014-06-10 15:16:11 -07:00
|
|
|
type JSONConnection struct {
|
2014-05-15 11:50:45 -07:00
|
|
|
Name string `json:"name"`
|
|
|
|
Adaptor string `json:"adaptor"`
|
|
|
|
}
|
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// NewJSONConnection returns a JSONConnection given a Connection.
|
2014-11-21 11:57:26 -08:00
|
|
|
func NewJSONConnection(connection Connection) *JSONConnection {
|
|
|
|
return &JSONConnection{
|
|
|
|
Name: connection.Name(),
|
|
|
|
Adaptor: reflect.TypeOf(connection).String(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// A Connection is an instance of an Adaptor
|
2014-11-20 18:00:32 -08:00
|
|
|
type Connection Adaptor
|
2014-07-02 17:12:13 -07:00
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// Connections represents a collection of Connection
|
|
|
|
type Connections []Connection
|
2014-06-23 20:33:59 -07:00
|
|
|
|
2014-10-15 12:57:07 -05:00
|
|
|
// Len returns connections length
|
2014-12-31 05:15:52 -08:00
|
|
|
func (c *Connections) Len() int {
|
2014-07-09 09:38:43 -07:00
|
|
|
return len(*c)
|
2014-06-23 20:33:59 -07:00
|
|
|
}
|
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// Each enumerates through the Connections and calls specified callback function.
|
|
|
|
func (c *Connections) Each(f func(Connection)) {
|
2014-07-09 09:38:43 -07:00
|
|
|
for _, connection := range *c {
|
2014-06-23 20:33:59 -07:00
|
|
|
f(connection)
|
|
|
|
}
|
|
|
|
}
|
2014-04-29 13:20:32 -07:00
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// Start calls Connect on each Connection in c
|
2023-11-15 20:51:52 +01:00
|
|
|
func (c *Connections) Start() error {
|
2014-04-29 13:20:32 -07:00
|
|
|
log.Println("Starting connections...")
|
2023-11-15 20:51:52 +01:00
|
|
|
var err error
|
2014-07-09 09:38:43 -07:00
|
|
|
for _, connection := range *c {
|
2014-07-03 19:52:31 -07:00
|
|
|
info := "Starting connection " + connection.Name()
|
2014-11-21 19:35:01 -08:00
|
|
|
|
|
|
|
if porter, ok := connection.(Porter); ok {
|
|
|
|
info = info + " on port " + porter.Port()
|
2014-07-03 19:52:31 -07:00
|
|
|
}
|
2014-11-21 19:35:01 -08:00
|
|
|
|
2014-07-03 19:52:31 -07:00
|
|
|
log.Println(info + "...")
|
2014-11-21 19:35:01 -08:00
|
|
|
|
2016-11-07 14:55:21 +01:00
|
|
|
if cerr := connection.Connect(); cerr != nil {
|
|
|
|
err = multierror.Append(err, cerr)
|
2014-04-29 13:20:32 -07:00
|
|
|
}
|
|
|
|
}
|
2016-11-07 14:55:21 +01:00
|
|
|
return err
|
2014-04-29 13:20:32 -07:00
|
|
|
}
|
|
|
|
|
2014-12-31 05:15:52 -08:00
|
|
|
// Finalize calls Finalize on each Connection in c
|
2023-11-15 20:51:52 +01:00
|
|
|
func (c *Connections) Finalize() error {
|
|
|
|
var err error
|
2014-07-09 09:38:43 -07:00
|
|
|
for _, connection := range *c {
|
2016-11-07 14:55:21 +01:00
|
|
|
if cerr := connection.Finalize(); cerr != nil {
|
|
|
|
err = multierror.Append(err, cerr)
|
2014-11-19 23:21:19 -08:00
|
|
|
}
|
2014-04-29 13:20:32 -07:00
|
|
|
}
|
2016-11-07 14:55:21 +01:00
|
|
|
return err
|
2014-04-29 13:20:32 -07:00
|
|
|
}
|