| "veyron/services/mgmt/node" |
| "veyron/services/mgmt/node/config" |
| // dispatcher holds the state of the node manager dispatcher. |
| // NewDispatcher is the node manager dispatcher factory. |
| func NewDispatcher(auth security.Authorizer, config *config.State) (*dispatcher, error) { |
| if err := config.Validate(); err != nil { |
| return nil, fmt.Errorf("Invalid config %v: %v", config, err) |
| internal: &internalState{ |
| channels: make(map[string]map[string]chan string), |
| // DISPATCHER INTERFACE IMPLEMENTATION |
| func (d *dispatcher) Lookup(suffix string) (ipc.Invoker, security.Authorizer, error) { |
| // TODO(caprita): Split out the logic that operates on the node manager |
| // from the logic that operates on the applications that the node |
| // manager runs. We can have different invoker implementations, |
| // dispatching based on the suffix ("nm" vs. "apps"). |
| return ipc.ReflectInvoker(node.NewServerNode(&invoker{ |