Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: client/logdog/butlerlib/streamclient/client_namedPipe_windows.go

Issue 1429993002: LogDog: Add Butler stream server package. (Closed) Base URL: https://github.com/luci/luci-go@logdog-review-butlerproto
Patch Set: Bind POSIX test to POSIX domains. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/logdog/butlerlib/streamclient/client_namedPipe_windows.go
diff --git a/client/logdog/butlerlib/streamclient/client_namedPipe_windows.go b/client/logdog/butlerlib/streamclient/client_namedPipe_windows.go
new file mode 100644
index 0000000000000000000000000000000000000000..75b242b466bc0a472ea570af48b4c0e4c6bddbdd
--- /dev/null
+++ b/client/logdog/butlerlib/streamclient/client_namedPipe_windows.go
@@ -0,0 +1,30 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package streamclient
+
+import (
+ "errors"
+ "fmt"
+ "io"
+
+ npipe "gopkg.in/natefinch/npipe.v2"
+)
+
+// Register POSIX-only protocols.
+func init() {
+ registerProtocol("net.pipe", newNamedPipeClient)
+}
+
+// newNamedPipeClient creates a new Client instance bound to a named pipe stream
+// server.
+func newNamedPipeClient(path string) (Client, error) {
+ if path == "" {
+ return nil, errors.New("streamclient: cannot have empty named pipe path")
+ }
+
+ return &clientImpl{func() (io.WriteCloser, error) {
+ return npipe.Dial(fmt.Sprintf(`\\.\pipe\%s`, path))
+ }}, nil
+}
« no previous file with comments | « client/logdog/butlerlib/streamclient/client_namedPipe_posix.go ('k') | client/logdog/butlerlib/streamclient/client_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698