blob: b143b84a68583b91299d4c6354dbc243ea05d22f [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001package gateway
2
3import (
4 "fmt"
5
6 "veyron/runtimes/google/lib/bluetooth"
7 "veyron2/services/proximity"
8 "veyron2/vlog"
9)
10
11var gatewayCmd = [][]string{
12 {"route"},
13 // TODO(spetrovic): Use Go's string libraries to reduce
14 // dependence on these tools.
15 {"grep", "UG[ \t]"},
16 {"grep", "^default"},
17 {"head", "-1"},
18 {"awk", `{printf "%s", $NF}`},
19}
20
21// New creates a new instance of the gateway service given the name of the
22// local proximity service. Since the gateway server operates in two modes
23// (i.e., server and client) depending on whether it provides or obtains
24// internet connectivity, the provided boolean option lets us force a client
25// mode, which can be useful for testing.
26func New(proximityService string, forceClient bool) (*Service, error) {
27 // See if we have bluetooth on this device.
28 d, err := bluetooth.OpenFirstAvailableDevice()
29 if err != nil {
30 return nil, fmt.Errorf("no bluetooth devices found: %v", err)
31 }
32
33 // Find the default gateway interface.
34 gateway, err := runPipedCmd(gatewayCmd)
35 if err != nil {
36 gateway = ""
37 }
38
39 p, err := proximity.BindProximity(proximityService)
40 if err != nil {
41 return nil, fmt.Errorf("error connecting to proximity service %q: %v", proximityService, err)
42 }
43
44 // If gateway is present, start the server; otherwise, start the client.
45 s := new(Service)
46 if gateway == "" || forceClient {
47 vlog.Info("No IP interfaces detected: starting the gateway client.")
48 var err error
49 if s.client, err = newClient(p); err != nil {
50 return nil, fmt.Errorf("couldn't start gateway client: %v", err)
51 }
52 } else {
53 vlog.Infof("IP interface %q detected: starting the gateway server.", gateway)
54 if s.server, err = newServer(p, gateway, d.Name); err != nil {
55 return nil, fmt.Errorf("couldn't start gateway server: %v", err)
56 }
57 }
58 return s, nil
59}
60
61type Service struct {
62 client *client
63 server *server
64}
65
66// Stop stops the gateway service.
67func (s *Service) Stop() {
68 if s.client != nil {
69 s.client.Stop()
70 }
71 if s.server != nil {
72 s.server.Stop()
73 }
74}