blob: 74a247f72019bdb1638254c5df6e63497d7c0ce1 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build mojo
package main
// To build:
// cd $V23_ROOT/experimental/projects/ether
// make build
import (
"log"
"mojo/public/go/application"
"mojo/public/go/bindings"
"mojo/public/go/system"
"mojom/syncbase"
"v.io/syncbase/x/ref/services/syncbase/server"
"v.io/v23"
"v.io/v23/context"
"v.io/v23/rpc"
)
//#include "mojo/public/c/system/types.h"
import "C"
type delegate struct {
ctx *context.T
srv rpc.Server
disp rpc.Dispatcher
stubs []*bindings.Stub
}
func (d *delegate) Initialize(ctx application.Context) {
d.srv, d.disp = Serve(d.ctx)
}
func (d *delegate) Create(req syncbase.Syncbase_Request) {
impl := server.NewMojoImpl(d.ctx, d.srv, d.disp)
stub := syncbase.NewSyncbaseStub(req, impl, bindings.GetAsyncWaiter())
d.stubs = append(d.stubs, stub)
go func() {
for {
if err := stub.ServeRequest(); err != nil {
connErr, ok := err.(*bindings.ConnectionError)
if !ok || !connErr.Closed() {
log.Println(err)
}
break
}
}
}()
}
func (d *delegate) AcceptConnection(conn *application.Connection) {
conn.ProvideServices(&syncbase.Syncbase_ServiceFactory{d})
}
func (d *delegate) Quit() {
for _, stub := range d.stubs {
stub.Close()
}
}
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
ctx, shutdown := v23.Init()
defer shutdown()
application.Run(&delegate{ctx: ctx}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}
// NOTE(nlacasse): Mojo runs Go code by calling MojoMain(). The main() method
// below is still needed because the Go tool won't build without it.
func main() {}