55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package gobot
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
type connection struct {
|
|
Name string `json:"name"`
|
|
Adaptor AdaptorInterface `json:"adaptor"`
|
|
Port string `json:"-"`
|
|
Robot *Robot `json:"-"`
|
|
Params map[string]interface{} `json:"-"`
|
|
}
|
|
|
|
type Connection interface {
|
|
Connect() bool
|
|
Disconnect() bool
|
|
Finalize() bool
|
|
Reconnect() bool
|
|
}
|
|
|
|
func NewConnection(adaptor AdaptorInterface, r *Robot) *connection {
|
|
c := new(connection)
|
|
c.Name = FieldByNamePtr(adaptor, "Name").String()
|
|
c.Port = FieldByNamePtr(adaptor, "Port").String()
|
|
c.Params = make(map[string]interface{})
|
|
keys := FieldByNamePtr(adaptor, "Params").MapKeys()
|
|
for k := range keys {
|
|
c.Params[keys[k].String()] = FieldByNamePtr(adaptor, "Params").MapIndex(keys[k])
|
|
}
|
|
c.Robot = r
|
|
c.Adaptor = adaptor
|
|
return c
|
|
}
|
|
|
|
func (c *connection) Connect() bool {
|
|
log.Println("Connecting to " + c.Name + " on port " + c.Port + "...")
|
|
return c.Adaptor.Connect()
|
|
}
|
|
|
|
func (c *connection) Disconnect() bool {
|
|
log.Println("Disconnecting " + c.Name + "...")
|
|
return c.Adaptor.Disconnect()
|
|
}
|
|
|
|
func (c *connection) Finalize() bool {
|
|
log.Println("Finalizing " + c.Name + "...")
|
|
return c.Adaptor.Finalize()
|
|
}
|
|
|
|
func (c *connection) Reconnect() bool {
|
|
log.Println("Reconnecting to " + c.Name + " on port " + c.Port + "...")
|
|
return c.Adaptor.Reconnect()
|
|
}
|