Suharsh Sivakumar | 628a8ee | 2015-01-14 11:38:56 -0800 | [diff] [blame] | 1 | package rt |
| 2 | |
| 3 | import ( |
| 4 | "fmt" |
| 5 | "time" |
| 6 | |
| 7 | "v.io/core/veyron2" |
| 8 | "v.io/core/veyron2/context" |
| 9 | "v.io/core/veyron2/ipc" |
| 10 | "v.io/core/veyron2/mgmt" |
| 11 | "v.io/core/veyron2/naming" |
| 12 | "v.io/core/veyron2/options" |
| 13 | |
| 14 | "v.io/core/veyron/lib/exec" |
| 15 | ) |
| 16 | |
| 17 | func initMgmt(ctx *context.T, appCycle veyron2.AppCycle, handle *exec.ChildHandle) error { |
| 18 | // Do not initialize the mgmt runtime if the process has not |
| 19 | // been started through the veyron exec library by a device |
| 20 | // manager. |
| 21 | if handle == nil { |
| 22 | return nil |
| 23 | } |
| 24 | parentName, err := handle.Config.Get(mgmt.ParentNameConfigKey) |
| 25 | if err != nil { |
| 26 | return nil |
| 27 | } |
| 28 | listenSpec, err := getListenSpec(handle) |
| 29 | if err != nil { |
| 30 | return err |
| 31 | } |
| 32 | var serverOpts []ipc.ServerOpt |
| 33 | parentPeerPattern, err := handle.Config.Get(mgmt.ParentBlessingConfigKey) |
| 34 | if err == nil && parentPeerPattern != "" { |
| 35 | // Grab the blessing from our blessing store that the parent |
| 36 | // told us to use so they can talk to us. |
| 37 | serverBlessing := veyron2.GetPrincipal(ctx).BlessingStore().ForPeer(parentPeerPattern) |
| 38 | serverOpts = append(serverOpts, options.ServerBlessings{serverBlessing}) |
| 39 | } |
| 40 | server, err := veyron2.NewServer(ctx, serverOpts...) |
| 41 | if err != nil { |
| 42 | return err |
| 43 | } |
| 44 | eps, err := server.Listen(*listenSpec) |
| 45 | if err != nil { |
| 46 | return err |
| 47 | } |
| 48 | if err := server.Serve("", appCycle.Remote(), nil); err != nil { |
| 49 | server.Stop() |
| 50 | return err |
| 51 | } |
| 52 | err = callbackToParent(ctx, parentName, naming.JoinAddressName(eps[0].String(), "")) |
| 53 | if err != nil { |
| 54 | server.Stop() |
| 55 | return err |
| 56 | } |
| 57 | |
| 58 | if done := ctx.Done(); done != nil { |
| 59 | go func() { |
| 60 | <-done |
| 61 | server.Stop() |
| 62 | }() |
| 63 | } |
| 64 | |
| 65 | return nil |
| 66 | } |
| 67 | |
| 68 | func getListenSpec(handle *exec.ChildHandle) (*ipc.ListenSpec, error) { |
| 69 | protocol, err := handle.Config.Get(mgmt.ProtocolConfigKey) |
| 70 | if err != nil { |
| 71 | return nil, err |
| 72 | } |
| 73 | if protocol == "" { |
| 74 | return nil, fmt.Errorf("%v is not set", mgmt.ProtocolConfigKey) |
| 75 | } |
| 76 | |
| 77 | address, err := handle.Config.Get(mgmt.AddressConfigKey) |
| 78 | if err != nil { |
| 79 | return nil, err |
| 80 | } |
| 81 | if address == "" { |
| 82 | return nil, fmt.Errorf("%v is not set", mgmt.AddressConfigKey) |
| 83 | } |
| 84 | return &ipc.ListenSpec{Addrs: ipc.ListenAddrs{{protocol, address}}}, nil |
| 85 | } |
| 86 | |
| 87 | func callbackToParent(ctx *context.T, parentName, myName string) error { |
| 88 | ctx, _ = context.WithTimeout(ctx, 10*time.Second) |
| 89 | call, err := veyron2.GetClient(ctx).StartCall(ctx, parentName, "Set", []interface{}{mgmt.AppCycleManagerConfigKey, myName}) |
| 90 | if err != nil { |
| 91 | return err |
| 92 | } |
| 93 | if ierr := call.Finish(&err); ierr != nil { |
| 94 | return ierr |
| 95 | } |
| 96 | return err |
| 97 | } |