PowerShell命名管道:没有连接?

时间:2014-06-07 12:04:59

标签: powershell named-pipes

我需要一个命名管道来读写。

在程序中,我使用 kernel32.dll

创建管道服务器
string PipeName = "\\\\.\\pipe\\myMT4"; 
int PipeMode = PIPE_TYPE_MESSAGE|PIPE_READMODE_MESSAGE|PIPE_WAIT; # tried too: PIPE_NOWAIT
int hPipe = CreateNamedPipeW(
            PipeName,
            PIPE_ACCESS_DUPLEX,
            PipeMode,
            PIPE_UNLIMITED_INSTANCES,1024,1024,
            NMPWAIT_USE_DEFAULT_WAIT,NULL);

句柄hPipe是有效的 - 这里的每件事似乎都可以!

但在PowerShell脚本中,我想打开一个客户端,连接并打开编写器 -
并且无法连接=>超时了

function connect{
    Param ([PSObject] $h)
    ...
    $h.Pipe = New-Object -TypeName System.IO.Pipes.NamedPipeClientStream "\\.\pipe\PipeTest"
    $h.Pipe.Connect( 5000 )
    $h.Writer = New-Object -TypeName System.IO.StreamWriter $h.Pipe, $h.Encode 

我真的更喜欢这种方式在阅读和写作时有类似的访问权限 从/到管道和插座,例如:

function write{
    Param ([PSObject] $h, [string] $line )
  try {
        $h.Writer.Write($line) 
    }       

有什么问题? 提前致谢, Gooly。

PS: 似乎该程序无法处理管道服务器 - 我必须打开一个管道客户端,这可以工作,但这会导致其他问题:

我为PowerShell-pipe-server定义:

 $pipeName = "testpipe"
 $pipeDir  = [System.IO.Pipes.PipeDirection]::InOut
 $pipeMsg  = [System.IO.Pipes.PipeTransmissionMode]::Message
 $pipeOpti = [System.IO.Pipes.PipeOptions]::Asynchronous
 $pipe = New-Object system.IO.Pipes.NamedPipeServerStream( 
                  $pipeName, $pipeDir, 1, $pipeMsg, $pipeOpti )
 $pipe.WaitForConnection() # 
 $sw = new-object System.IO.StreamWriter $pipe
 $sw.AutoFlush = $true
 $sw.WriteLine("Server pid is $pid")
 $sw.Dispose()
 $pipe.Dispose()

1)我的第一个问题是现在powerShell-pipe-server被

阻止了
 $pipe.WaitForConnection()

直到客户端连接,但它必须独立处理2个不同的套接字并且

2)如果客户端关闭连接,我无法告诉客户端再次打开同一个管道,客户端收到Windows错误:ERROR_PIPE_BUSY 231

使用kernel32.dll函数构建我连接到服务器的程序:

 int CallNamedPipeW(string PipeName, 
           string outBuffer, int outBufferSz, 
           uint& inBuffer[], int inBufferSz, 
           int& bytesRead[], int timeOut
 );

有什么想法吗?

1 个答案:

答案 0 :(得分:6)

嗯,我可以让命名管道在两个不同的PowerShell会话之间工作,所以我不认为这是一个固有的PowerShell限制:

这是服务器脚本:

$pipe = new-object System.IO.Pipes.NamedPipeServerStream 'testpipe','Out'
$pipe.WaitForConnection()
$sw = new-object System.IO.StreamWriter $pipe
$sw.AutoFlush = $true
$sw.WriteLine("Server pid is $pid")
$sw.Dispose()
$pipe.Dispose()

这是客户端脚本:

$pipe = new-object System.IO.Pipes.NamedPipeClientStream '.','testpipe','In'
$pipe.Connect()
$sr = new-object System.IO.StreamReader $pipe
while (($data = $sr.ReadLine()) -ne $null) { "Received: $data" }
$sr.Dispose()
$pipe.Dispose()

客户输出:

Received: Server pid is 22836