2014-04-30 04:20:32 +08:00
|
|
|
package gobot
|
|
|
|
|
|
|
|
import (
|
2014-04-30 23:10:44 +08:00
|
|
|
"log"
|
2015-10-22 15:12:00 +08:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
2014-04-30 04:20:32 +08:00
|
|
|
)
|
|
|
|
|
2016-10-16 17:43:02 +08:00
|
|
|
// JSONMaster is a JSON representation of a Gobot Master.
|
2016-10-16 02:02:54 +08:00
|
|
|
type JSONMaster struct {
|
2014-06-13 11:58:54 +08:00
|
|
|
Robots []*JSONRobot `json:"robots"`
|
|
|
|
Commands []string `json:"commands"`
|
|
|
|
}
|
|
|
|
|
2016-10-16 02:02:54 +08:00
|
|
|
// NewJSONMaster returns a JSONMaster given a Gobot Master.
|
|
|
|
func NewJSONMaster(gobot *Master) *JSONMaster {
|
|
|
|
jsonGobot := &JSONMaster{
|
2014-11-22 03:57:26 +08:00
|
|
|
Robots: []*JSONRobot{},
|
|
|
|
Commands: []string{},
|
|
|
|
}
|
|
|
|
|
|
|
|
for command := range gobot.Commands() {
|
|
|
|
jsonGobot.Commands = append(jsonGobot.Commands, command)
|
|
|
|
}
|
|
|
|
|
|
|
|
gobot.robots.Each(func(r *Robot) {
|
|
|
|
jsonGobot.Robots = append(jsonGobot.Robots, NewJSONRobot(r))
|
|
|
|
})
|
|
|
|
return jsonGobot
|
|
|
|
}
|
|
|
|
|
2016-10-16 02:02:54 +08:00
|
|
|
// Master is the main type of your Gobot application and contains a collection of
|
|
|
|
// Robots, API commands that apply to the Master, and Events that apply to the Master.
|
|
|
|
type Master struct {
|
2015-10-22 15:12:00 +08:00
|
|
|
robots *Robots
|
|
|
|
trap func(chan os.Signal)
|
|
|
|
AutoStop bool
|
2014-11-21 10:00:32 +08:00
|
|
|
Commander
|
|
|
|
Eventer
|
2014-04-30 04:20:32 +08:00
|
|
|
}
|
|
|
|
|
2016-10-16 02:02:54 +08:00
|
|
|
// NewMaster returns a new Gobot Master
|
|
|
|
func NewMaster() *Master {
|
|
|
|
return &Master{
|
2015-10-22 15:12:00 +08:00
|
|
|
robots: &Robots{},
|
|
|
|
trap: func(c chan os.Signal) {
|
|
|
|
signal.Notify(c, os.Interrupt)
|
|
|
|
},
|
|
|
|
AutoStop: true,
|
2014-11-21 10:00:32 +08:00
|
|
|
Commander: NewCommander(),
|
|
|
|
Eventer: NewEventer(),
|
2014-04-30 04:20:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-22 04:20:02 +08:00
|
|
|
// Start calls the Start method on each robot in its collection of robots. On
|
|
|
|
// error, call Stop to ensure that all robots are returned to a sane, stopped
|
|
|
|
// state.
|
2016-10-16 02:02:54 +08:00
|
|
|
func (g *Master) Start() (errs []error) {
|
2014-11-20 15:21:19 +08:00
|
|
|
if rerrs := g.robots.Start(); len(rerrs) > 0 {
|
|
|
|
for _, err := range rerrs {
|
|
|
|
log.Println("Error:", err)
|
|
|
|
errs = append(errs, err)
|
|
|
|
}
|
2014-11-13 03:21:50 +08:00
|
|
|
}
|
2014-04-30 04:20:32 +08:00
|
|
|
|
2015-10-22 15:12:00 +08:00
|
|
|
if g.AutoStop {
|
|
|
|
c := make(chan os.Signal, 1)
|
|
|
|
g.trap(c)
|
|
|
|
if len(errs) > 0 {
|
2016-07-14 00:44:47 +08:00
|
|
|
// there was an error during start, so we immediately pass the interrupt
|
2015-10-22 15:12:00 +08:00
|
|
|
// in order to disconnect the initialized robots, connections and devices
|
|
|
|
c <- os.Interrupt
|
|
|
|
}
|
|
|
|
|
|
|
|
// waiting for interrupt coming on the channel
|
2016-07-13 23:32:22 +08:00
|
|
|
<-c
|
2015-10-22 15:12:00 +08:00
|
|
|
|
|
|
|
// Stop calls the Stop method on each robot in its collection of robots.
|
|
|
|
g.Stop()
|
|
|
|
}
|
|
|
|
|
2015-07-22 04:20:02 +08:00
|
|
|
return errs
|
|
|
|
}
|
2014-04-30 04:20:32 +08:00
|
|
|
|
2015-07-22 04:20:02 +08:00
|
|
|
// Stop calls the Stop method on each robot in its collection of robots.
|
2016-10-16 02:02:54 +08:00
|
|
|
func (g *Master) Stop() (errs []error) {
|
2015-07-22 04:20:02 +08:00
|
|
|
if rerrs := g.robots.Stop(); len(rerrs) > 0 {
|
|
|
|
for _, err := range rerrs {
|
|
|
|
log.Println("Error:", err)
|
|
|
|
errs = append(errs, err)
|
2014-11-20 15:21:19 +08:00
|
|
|
}
|
2015-07-22 04:20:02 +08:00
|
|
|
}
|
|
|
|
|
2014-11-20 15:21:19 +08:00
|
|
|
return errs
|
2014-04-30 04:20:32 +08:00
|
|
|
}
|
|
|
|
|
2016-10-16 02:02:54 +08:00
|
|
|
// Robots returns all robots associated with this Gobot Master.
|
|
|
|
func (g *Master) Robots() *Robots {
|
2014-06-24 11:33:59 +08:00
|
|
|
return g.robots
|
|
|
|
}
|
|
|
|
|
2014-11-14 03:06:57 +08:00
|
|
|
// AddRobot adds a new robot to the internal collection of robots. Returns the
|
|
|
|
// added robot
|
2016-10-16 02:02:54 +08:00
|
|
|
func (g *Master) AddRobot(r *Robot) *Robot {
|
2014-07-10 00:38:43 +08:00
|
|
|
*g.robots = append(*g.robots, r)
|
|
|
|
return r
|
2014-07-08 12:45:36 +08:00
|
|
|
}
|
|
|
|
|
2014-12-31 21:15:52 +08:00
|
|
|
// Robot returns a robot given name. Returns nil if the Robot does not exist.
|
2016-10-16 02:02:54 +08:00
|
|
|
func (g *Master) Robot(name string) *Robot {
|
2014-07-10 00:38:43 +08:00
|
|
|
for _, robot := range *g.Robots() {
|
2014-06-24 11:33:59 +08:00
|
|
|
if robot.Name == name {
|
|
|
|
return robot
|
2014-04-30 04:20:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|