| // 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. |
| |
| // Daemon applicationd implements the v.io/x/ref/services/repository.Application |
| // interface. |
| package main |
| |
| import ( |
| "flag" |
| |
| "v.io/v23" |
| "v.io/x/lib/vlog" |
| |
| "v.io/x/ref/lib/signals" |
| _ "v.io/x/ref/profiles/roaming" |
| ) |
| |
| var ( |
| name = flag.String("name", "", "name to mount the application repository as") |
| store = flag.String("store", "", "local directory to store application envelopes in") |
| ) |
| |
| func main() { |
| ctx, shutdown := v23.Init() |
| defer shutdown() |
| |
| if *store == "" { |
| vlog.Fatalf("Specify a directory for storing application envelopes using --store=<name>") |
| } |
| |
| server, err := v23.NewServer(ctx) |
| if err != nil { |
| vlog.Fatalf("NewServer() failed: %v", err) |
| } |
| defer server.Stop() |
| |
| dispatcher, err := NewDispatcher(*store) |
| if err != nil { |
| vlog.Fatalf("NewDispatcher() failed: %v", err) |
| } |
| |
| ls := v23.GetListenSpec(ctx) |
| endpoints, err := server.Listen(ls) |
| if err != nil { |
| vlog.Fatalf("Listen(%s) failed: %v", ls, err) |
| } |
| if err := server.ServeDispatcher(*name, dispatcher); err != nil { |
| vlog.Fatalf("Serve(%v) failed: %v", *name, err) |
| } |
| epName := endpoints[0].Name() |
| if *name != "" { |
| vlog.Infof("Application repository serving at %q (%q)", *name, epName) |
| } else { |
| vlog.Infof("Application repository serving at %q", epName) |
| } |
| // Wait until shutdown. |
| <-signals.ShutdownOnSignals(ctx) |
| } |