hybridgroup.gobot/device.go

110 lines
2.3 KiB
Go
Raw Normal View History

2014-04-30 23:10:44 +08:00
package gobot
2014-04-30 04:20:32 +08:00
import (
"errors"
"log"
"reflect"
2014-05-03 18:31:11 +08:00
"time"
2014-04-30 04:20:32 +08:00
)
type Device interface {
Start() bool
Halt() bool
2014-06-07 05:44:16 +08:00
setInterval(time.Duration)
getInterval() time.Duration
setName(string)
getName() string
2014-04-30 04:20:32 +08:00
}
2014-05-16 02:50:45 +08:00
type JsonDevice struct {
Name string `json:"name"`
Driver string `json:"driver"`
Connection *JsonConnection `json:"connection"`
Commands []string `json:"commands"`
}
2014-04-30 04:20:32 +08:00
type device struct {
2014-05-16 02:50:45 +08:00
Name string `json:"-"`
Type string `json:"-"`
2014-05-03 18:31:11 +08:00
Interval time.Duration `json:"-"`
2014-04-30 23:10:44 +08:00
Robot *Robot `json:"-"`
Driver DriverInterface `json:"-"`
2014-04-30 04:20:32 +08:00
}
type devices []*device
// Start() starts all the devices.
func (d devices) Start() error {
var err error
log.Println("Starting devices...")
for _, device := range d {
log.Println("Starting device " + device.Name + "...")
if device.Start() == false {
2014-04-30 23:10:44 +08:00
err = errors.New("Could not start device")
2014-04-30 04:20:32 +08:00
break
}
}
return err
}
// Halt() stop all the devices.
func (d devices) Halt() {
for _, device := range d {
device.Halt()
}
}
2014-04-30 23:10:44 +08:00
func NewDevice(driver DriverInterface, r *Robot) *device {
2014-04-30 04:20:32 +08:00
d := new(device)
s := reflect.ValueOf(driver).Type().String()
d.Type = s[1:len(s)]
2014-06-07 05:44:16 +08:00
d.Name = driver.getName()
2014-04-30 04:20:32 +08:00
d.Robot = r
2014-06-07 05:44:16 +08:00
if driver.getInterval() == 0 {
driver.setInterval(10 * time.Millisecond)
2014-04-30 04:20:32 +08:00
}
d.Driver = driver
return d
}
2014-06-07 05:44:16 +08:00
func (d *device) setInterval(t time.Duration) {
d.Interval = t
}
func (d *device) getInterval() time.Duration {
return d.Interval
}
func (d *device) setName(s string) {
d.Name = s
}
func (d *device) getName() string {
return d.Name
}
2014-04-30 04:20:32 +08:00
func (d *device) Start() bool {
log.Println("Device " + d.Name + " started")
return d.Driver.Start()
}
func (d *device) Halt() bool {
log.Println("Device " + d.Name + " halted")
return d.Driver.Halt()
}
func (d *device) Commands() interface{} {
2014-04-30 23:10:44 +08:00
return FieldByNamePtr(d.Driver, "Commands").Interface()
2014-04-30 04:20:32 +08:00
}
2014-05-16 02:50:45 +08:00
func (d *device) ToJson() *JsonDevice {
jsonDevice := new(JsonDevice)
jsonDevice.Name = d.Name
jsonDevice.Driver = d.Type
jsonDevice.Connection = d.Robot.Connection(FieldByNamePtr(FieldByNamePtr(d.Driver, "Adaptor").
Interface().(AdaptorInterface), "Name").
Interface().(string)).ToJson()
jsonDevice.Commands = FieldByNamePtr(d.Driver, "Commands").Interface().([]string)
return jsonDevice
}