2020-02-07 12:20:53 +01:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-02-12 11:20:15 +01:00
|
|
|
"image"
|
2020-02-07 12:20:53 +01:00
|
|
|
"log"
|
2020-02-11 14:46:58 +01:00
|
|
|
"net"
|
2020-02-07 12:20:53 +01:00
|
|
|
"net/rpc"
|
2020-02-13 23:57:56 +01:00
|
|
|
"os"
|
2020-02-12 11:20:15 +01:00
|
|
|
"time"
|
2020-02-07 12:20:53 +01:00
|
|
|
|
2020-02-12 11:20:15 +01:00
|
|
|
"github.com/SpeckiJ/Hochwasser/pixelflut"
|
|
|
|
)
|
2020-02-11 14:46:58 +01:00
|
|
|
|
2020-02-07 12:20:53 +01:00
|
|
|
func ConnectHevring(ránAddress string) {
|
2020-02-11 14:46:58 +01:00
|
|
|
rpc.Register(new(Hevring))
|
2020-02-07 12:20:53 +01:00
|
|
|
|
2020-02-11 14:46:58 +01:00
|
|
|
fmt.Printf("[hevring] greeting Rán at %s\n", ránAddress)
|
|
|
|
conn, err := net.Dial("tcp", ránAddress)
|
2020-02-07 12:20:53 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2020-02-11 14:46:58 +01:00
|
|
|
go rpc.ServeConn(conn)
|
|
|
|
fmt.Printf("[hevring] awaiting task from Rán\n")
|
|
|
|
}
|
2020-02-07 12:20:53 +01:00
|
|
|
|
2020-02-12 13:55:04 +01:00
|
|
|
type Hevring struct {
|
2020-02-13 22:26:50 +01:00
|
|
|
task FlutTask
|
|
|
|
taskQuit chan bool
|
2020-02-12 13:55:04 +01:00
|
|
|
}
|
2020-02-12 11:20:15 +01:00
|
|
|
|
|
|
|
type FlutTask struct {
|
2020-12-29 18:28:19 +01:00
|
|
|
Address string
|
|
|
|
MaxConns int
|
|
|
|
Img *image.NRGBA
|
|
|
|
Offset image.Point
|
|
|
|
Shuffle bool // TODO: refactor these as RenderOpts bitfield
|
|
|
|
RGBSplit bool
|
|
|
|
RandOffset bool
|
|
|
|
NewConn bool
|
2020-02-12 11:20:15 +01:00
|
|
|
}
|
2020-02-07 12:20:53 +01:00
|
|
|
|
2020-02-11 14:46:58 +01:00
|
|
|
type FlutAck struct{ Ok bool }
|
|
|
|
|
2020-02-14 16:37:19 +01:00
|
|
|
type FlutStatus struct {
|
|
|
|
*pixelflut.Performance
|
|
|
|
Ok bool
|
|
|
|
Fluting bool
|
|
|
|
}
|
|
|
|
|
2020-02-12 11:20:15 +01:00
|
|
|
func (h *Hevring) Flut(task FlutTask, reply *FlutAck) error {
|
2020-02-14 22:29:58 +01:00
|
|
|
// stop old task if new task is received
|
|
|
|
if h.taskQuit != nil {
|
|
|
|
close(h.taskQuit)
|
2020-02-12 13:55:04 +01:00
|
|
|
}
|
|
|
|
|
2020-02-12 11:20:15 +01:00
|
|
|
fmt.Printf("[hevring] Rán gave us /w o r k/! %v\n", task)
|
2020-02-12 13:55:04 +01:00
|
|
|
h.task = task
|
2020-02-13 22:26:50 +01:00
|
|
|
h.taskQuit = make(chan bool)
|
|
|
|
|
2020-12-29 18:28:19 +01:00
|
|
|
go pixelflut.Flut(task.Img, task.Offset, task.Shuffle, task.RGBSplit, task.RandOffset, task.NewConn, task.Address, task.MaxConns, h.taskQuit, nil)
|
2020-02-11 14:46:58 +01:00
|
|
|
reply.Ok = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-14 16:37:19 +01:00
|
|
|
func (h *Hevring) Status(metrics bool, reply *FlutStatus) error {
|
|
|
|
pixelflut.PerformanceReporter.Enabled = metrics
|
|
|
|
reply.Performance = pixelflut.PerformanceReporter
|
2020-02-11 14:46:58 +01:00
|
|
|
reply.Ok = true
|
2020-02-14 16:37:19 +01:00
|
|
|
reply.Fluting = h.taskQuit != nil
|
2020-02-11 14:46:58 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Hevring) Stop(x int, reply *FlutAck) error {
|
2020-02-14 22:29:58 +01:00
|
|
|
if h.taskQuit != nil {
|
2020-02-12 13:55:04 +01:00
|
|
|
fmt.Println("[hevring] stopping task")
|
|
|
|
h.task = FlutTask{}
|
2020-02-13 22:26:50 +01:00
|
|
|
close(h.taskQuit)
|
|
|
|
h.taskQuit = nil
|
2020-02-12 13:55:04 +01:00
|
|
|
reply.Ok = true
|
|
|
|
}
|
2020-02-11 14:46:58 +01:00
|
|
|
return nil
|
2020-02-07 12:20:53 +01:00
|
|
|
}
|
2020-02-12 11:20:15 +01:00
|
|
|
|
|
|
|
func (h *Hevring) Die(x int, reply *FlutAck) error {
|
2020-02-14 22:29:58 +01:00
|
|
|
// @robustness: waiting for reply to be sent via timeout
|
|
|
|
// @incomplete: should try to reconnect for a bit first
|
|
|
|
go func() {
|
2020-02-12 11:20:15 +01:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-02-13 23:57:56 +01:00
|
|
|
fmt.Println("[hevring] Rán disconnected, stopping")
|
|
|
|
os.Exit(0)
|
2020-02-12 11:20:15 +01:00
|
|
|
}()
|
|
|
|
reply.Ok = true
|
|
|
|
return nil
|
|
|
|
}
|