62 lines
981 B
Go
62 lines
981 B
Go
package gobot
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"runtime"
|
|
)
|
|
|
|
type Master struct {
|
|
Robots []Robot
|
|
NumCPU int
|
|
}
|
|
|
|
func GobotMaster() *Master {
|
|
m := new(Master)
|
|
m.NumCPU = runtime.NumCPU()
|
|
return m
|
|
}
|
|
|
|
func (m *Master) Start() {
|
|
runtime.GOMAXPROCS(m.NumCPU)
|
|
|
|
for s := range m.Robots {
|
|
m.Robots[s].startRobot()
|
|
}
|
|
|
|
c := make(chan os.Signal)
|
|
signal.Notify(c, os.Interrupt)
|
|
|
|
for _ = range c {
|
|
for r := range m.Robots {
|
|
m.Robots[r].finalizeConnections()
|
|
}
|
|
break
|
|
}
|
|
}
|
|
|
|
func (m *Master) FindRobot(name string) *Robot {
|
|
for _, robot := range m.Robots {
|
|
if robot.Name == name {
|
|
return &robot
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Master) FindRobotDevice(name string, device string) *device {
|
|
robot := m.FindRobot(name)
|
|
if robot != nil {
|
|
return robot.GetDevice(device)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Master) FindRobotConnection(name string, connection string) *connection {
|
|
robot := m.FindRobot(name)
|
|
if robot != nil {
|
|
return robot.GetConnection(connection)
|
|
}
|
|
return nil
|
|
}
|