Bogdan Caprita | 3c31921 | 2015-08-19 18:12:53 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Vanadium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | package discovery |
| 6 | |
| 7 | import ( |
| 8 | "v.io/v23/context" |
| 9 | "v.io/v23/discovery" |
| 10 | "v.io/v23/security/access" |
Jungho Ahn | 2411232 | 2015-09-15 10:10:24 -0700 | [diff] [blame^] | 11 | "v.io/v23/verror" |
| 12 | ) |
| 13 | |
| 14 | var ( |
| 15 | errNoInterfaceName = verror.Register(pkgPath+".errNoInterfaceName", verror.NoRetry, "{1:}{2:} interface name not provided") |
| 16 | errNoAddresses = verror.Register(pkgPath+".errNoAddress", verror.NoRetry, "{1:}{2:} address not provided") |
Bogdan Caprita | 3c31921 | 2015-08-19 18:12:53 -0700 | [diff] [blame] | 17 | ) |
| 18 | |
| 19 | // Advertise implements discovery.Advertiser. |
Jungho Ahn | d587154 | 2015-09-08 18:48:11 -0700 | [diff] [blame] | 20 | // |
| 21 | // TODO(jhahn): Handle ACL. |
Bogdan Caprita | 3c31921 | 2015-08-19 18:12:53 -0700 | [diff] [blame] | 22 | func (ds *ds) Advertise(ctx *context.T, service discovery.Service, perms access.Permissions) error { |
Jungho Ahn | 2411232 | 2015-09-15 10:10:24 -0700 | [diff] [blame^] | 23 | if len(service.InterfaceName) == 0 { |
| 24 | return verror.New(errNoInterfaceName, ctx) |
| 25 | } |
| 26 | if len(service.Addrs) == 0 { |
| 27 | return verror.New(errNoAddresses, ctx) |
| 28 | } |
| 29 | |
Jungho Ahn | d587154 | 2015-09-08 18:48:11 -0700 | [diff] [blame] | 30 | if len(service.InstanceUuid) == 0 { |
| 31 | service.InstanceUuid = NewInstanceUUID() |
| 32 | } |
| 33 | ad := &Advertisement{ |
| 34 | ServiceUuid: NewServiceUUID(service.InterfaceName), |
| 35 | Service: service, |
| 36 | } |
| 37 | ctx, cancel := context.WithCancel(ctx) |
| 38 | for _, plugin := range ds.plugins { |
| 39 | err := plugin.Advertise(ctx, ad) |
| 40 | if err != nil { |
| 41 | cancel() |
| 42 | return err |
| 43 | } |
| 44 | } |
Bogdan Caprita | 3c31921 | 2015-08-19 18:12:53 -0700 | [diff] [blame] | 45 | return nil |
| 46 | } |