在PowerShell管道上输出二进制数据

时间:2014-07-12 01:50:58

标签: powershell binary pipeline

我需要将一些数据传递给程序的标准输入。

  1. 前4个字节是32位无符号整数,表示数据的长度。这4个字节与C在内存中存储unsigned int完全相同。我将其称为二进制数据。
  2. 剩余字节是数据。
  3. 在c中,这是微不足道的:

    WriteFile(h, &cb, 4);  // cb is a 4 byte integer
    WriteFile(h, pData, cb);
    

    fwrite(&cb, sizeof(cb), 1, pFile);
    fwrite(pData, cb, 1, pFile);
    

    或c#你会使用BinaryWriter(我觉得这段代码是对的,我现在没有c#,...)

    Bw.Write((int)Data.Length);
    Bw.Write(Data, 0, Data.Length);
    

    在PowerShell中我确信它是可能的,但这是我能得到的尽可能接近。这显然是将4个字节的大小打印为4个人类可读的数字:

    $file = "c:\test.txt"
    Set-content $file "test data" -encoding ascii
    [int]$size = (Get-ChildItem $file).Length
    $bytes = [System.BitConverter]::GetBytes($size)
    $data = Get-content $file
    $bytes
    $data
    
    11
    0
    0
    0
    test data
    

    我需要在管道上发送的二进制数据看起来像这样(\ xA是不可打印字符的转义表示,我不想在输出中使用'\',我想要BYTE'\ xA '代表输出):

    \xA\x0\x0\0test data
    

    我不知道如何以二进制格式将字节数组写出管道。我也不知道如何摆脱回车。

    修改 我发现我可以这样做:

    $file = "c:\test.txt"
    Set-content $file "test data" -encoding ascii
    "File: ""{0}""" -f (Get-content $file)
    [int]$size = (Get-ChildItem $file).Length
    "Size: " + $size
    $bytes = [System.BitConverter]::GetBytes($size)
    "Bytes: " + $bytes
    $data = Get-content $file
    $file1 = "c:\test1.txt"
    Set-content $file1 $bytes -encoding byte
    Add-Content $file1 $data -encoding ASCII
    "File: ""{0}""" -f (Get-content $file1)
    "Size: " + (Get-ChildItem $file1).Length
    
    File: "test data"
    Size: 11
    Bytes: 11 0 0 0
    File: "   test data"
    Size: 15
    

    但这需要我构建一个临时文件。必须有更好的方法!

    修改 上述解决方案会破坏任何字符代码> 127.管道没有“二进制”编码模式。

    修改 我终于发现了一种迂回的方式来将BinaryWriter连接到app的stdin。看到我的回答。

5 个答案:

答案 0 :(得分:5)

Bill_Stewart是正确的,您无法管道二进制数据。当你使用|运算符,powershell使用$ OutputEncoding指定的编码。我找不到不会破坏数据的编码。

我找到了一些有用的东西,BinaryWriter。

这是我的测试代码,从c:\ foo.exe开始,只输出收到的数据:

#include <windows.h>
#include <stdio.h>

int main(int argc, char* argv[])
{
    HANDLE hInput = GetStdHandle(STD_INPUT_HANDLE); 
    BYTE aBuf[0x100];
    int nRet;
    DWORD cbRead;
    if (!(nRet = ReadFile(hInput, aBuf, 256, &cbRead, NULL)))
        return printf("err: %u %d %d", cbRead, nRet, GetLastError());
    for (int i=0 ; i<256 ; ++i)
        printf("%d ", aBuf[i]);
    return 0;
}

这个ps脚本演示了&#34;腐败&#34;:

$file = "c:\foo.bin"
Set-Content $file ([Byte[]](0..255)) -encoding byte
$data = (Get-content $file -encoding byte)
$prefix = ($data | foreach-object {
  $_ -as [char]
}) -join ""
"{0}" -f $prefix
$OutputEncoding = [System.text.Encoding]::GetEncoding("us-ascii")
$prefix | c:\foo.exe

这是输出。首先你看到$前缀确实有完整的字符集。其次,您看到已转换到foo.exe的数据。

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
 ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 5
0 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 9
7 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 63 63 63 63 63 63 63 
63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 
63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 
63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63 63

使用BinaryWriter:

$file = "c:\foo.bin"
Set-Content $file ([Byte[]](0..255)) -encoding byte
$data = (Get-content $file -encoding byte)

$ProcessInfo = New-Object System.Diagnostics.ProcessStartInfo 
$ProcessInfo.FileName = "c:\foo.exe"
$ProcessInfo.RedirectStandardInput = $true 
$ProcessInfo.RedirectStandardOutput = $true 
$ProcessInfo.UseShellExecute = $false 
$Proc = New-Object System.Diagnostics.Process 
$Proc.StartInfo = $ProcessInfo 
$Proc.Start() | Out-Null 

$Writer = new-object System.IO.BinaryWriter($proc.StandardInput.BaseStream);
$Writer.Write($data, 0, $data.length)
$Writer.flush()
$writer.close()

$Proc.WaitForExit()
$Proc.StandardOutput.ReadToEnd()


0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 5
0 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 9
7 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 1
33 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 16
8 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255

因此,我在编写数据文件之前用二进制文件写入长度的最终脚本看起来像这样:

$file = "c:\foo.bin"
Set-Content $file ([Byte[]](0..255)) -encoding byte
$data = (Get-content $file -encoding byte)

$ProcessInfo = New-Object System.Diagnostics.ProcessStartInfo 
$ProcessInfo.FileName = "c:\foo.exe"
$ProcessInfo.RedirectStandardInput = $true 
$ProcessInfo.RedirectStandardOutput = $true 
$ProcessInfo.UseShellExecute = $false 
$Proc = New-Object System.Diagnostics.Process 
$Proc.StartInfo = $ProcessInfo 
$Proc.Start() | Out-Null 

$Writer = new-object System.IO.BinaryWriter($proc.StandardInput.BaseStream);
$Writer.Write([int]$data.length)
$Writer.Write($data, 0, $data.length)
$Writer.flush()
$writer.close()

$Proc.WaitForExit()
$Proc.StandardOutput.ReadToEnd()

你可以看到前4个字节0 1 0 0是[int]的原始二进制表示,等于256

0 1 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 1
31 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 16
6 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251

答案 1 :(得分:2)

我需要将一些数据传递到程序的标准输入。

此简单任务的许多复杂答案。使用不同的编码时,确实会引起很多问题。这是另一种方法,没有Get- / Set-Content应用任何编码。

实际上,您可以非常容易地使用Start-Process cmdlet将二进制数据通过管道传输到外部程序:

Start-Process my.exe -RedirectStandardInput my.bin

至少从PowerShell 2.0开始有效。

答案 2 :(得分:1)

这对你有用吗?

$fileName = "C:\test.txt"
$data = [IO.File]::ReadAllText($fileName)
$prefix = ([BitConverter]::GetBytes($data.Length) | foreach-object {
  "\x{0:X2}" -f $_
}) -join ""
"{0}{1}" -f $prefix,$data

如果您希望"\x{0:X2}" -f $_包含字节的原始数据表示,则可以将$_ -as [Char]替换为$prefix

答案 3 :(得分:1)

使用 binaryWriter 的简短示例:

$file = 'c:\temp\test.txt'
$test = [byte[]](0..255)
$mode = [System.IO.FileMode]::Create
$stream = [System.IO.File]::Open($file, $mode)
$bw = [System.IO.BinaryWriter]::new($stream)
$bw.Write($test)
$bw.Flush()
$bw.Dispose()
$stream.Dispose()

答案 4 :(得分:0)

[System.Console]::OpenStandardOutput().Write($bytes, 0, $bytes.Length)