Skip to content

Commit ff6de6a

Browse files
committed
server: Pass the assigner to the Finish method of a Service
This is a breaking change to the Service interface. It extends the Finish method to receive the assigner that was passed to the server, along with the server exit status. This permits the implementation to clean up per-assigner state when the server exits.
1 parent 3b83ed0 commit ff6de6a

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

server/example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func (Service) Assigner() (jrpc2.Assigner, error) {
4141
})}, nil
4242
}
4343

44-
func (s Service) Finish(stat jrpc2.ServerStatus) {
44+
func (s Service) Finish(_ jrpc2.Assigner, stat jrpc2.ServerStatus) {
4545
fmt.Printf("SERVICE FINISHED err=%v\n", stat.Err)
4646
close(s.done)
4747
}

server/loop.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,19 @@ type Service interface {
1616
Assigner() (jrpc2.Assigner, error)
1717

1818
// This method is called when the server for this service has exited.
19-
Finish(jrpc2.ServerStatus)
19+
// The arguments are the assigner returned by the Assigner method and the
20+
// server exit status.
21+
Finish(jrpc2.Assigner, jrpc2.ServerStatus)
2022
}
2123

2224
// Static wraps a jrpc2.Assigner to trivially implement the Service interface.
2325
func Static(m jrpc2.Assigner) func() Service { return static{methods: m}.New }
2426

2527
type static struct{ methods jrpc2.Assigner }
2628

27-
func (s static) New() Service { return s }
28-
func (s static) Assigner() (jrpc2.Assigner, error) { return s.methods, nil }
29-
func (static) Finish(jrpc2.ServerStatus) {}
29+
func (s static) New() Service { return s }
30+
func (s static) Assigner() (jrpc2.Assigner, error) { return s.methods, nil }
31+
func (static) Finish(jrpc2.Assigner, jrpc2.ServerStatus) {}
3032

3133
// Loop obtains connections from lst and starts a server for each with the
3234
// given service constructor and options, running in a new goroutine. If accept
@@ -66,7 +68,7 @@ func Loop(lst net.Listener, newService func() Service, opts *LoopOptions) error
6668
}
6769
srv := jrpc2.NewServer(assigner, serverOpts).Start(ch)
6870
stat := srv.WaitStatus()
69-
svc.Finish(stat)
71+
svc.Finish(assigner, stat)
7072
if stat.Err != nil {
7173
log("Server exit: %v", stat.Err)
7274
}

server/loop_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ func (t *testSession) Assigner() (jrpc2.Assigner, error) {
4949
}, nil
5050
}
5151

52-
func (t *testSession) Finish(stat jrpc2.ServerStatus) {
52+
func (t *testSession) Finish(assigner jrpc2.Assigner, stat jrpc2.ServerStatus) {
53+
if _, ok := assigner.(handler.Map); !ok {
54+
t.t.Errorf("Finished assigner: got %+v, want handler.Map", assigner)
55+
}
5356
if !t.init {
5457
t.t.Error("Service finished without being initialized")
5558
}

server/run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ func Run(ch channel.Channel, svc Service, opts *jrpc2.ServerOptions) error {
1818
}
1919
srv := jrpc2.NewServer(assigner, opts).Start(ch)
2020
stat := srv.WaitStatus()
21-
svc.Finish(stat)
21+
svc.Finish(assigner, stat)
2222
return stat.Err
2323
}

server/run_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func (t *testService) Assigner() (jrpc2.Assigner, error) {
2121
return t.assigner, nil
2222
}
2323

24-
func (t *testService) Finish(stat jrpc2.ServerStatus) {
24+
func (t *testService) Finish(_ jrpc2.Assigner, stat jrpc2.ServerStatus) {
2525
t.finishCalled = true
2626
t.stat = stat
2727
}

0 commit comments

Comments
 (0)