本文整理汇总了C#中BufferManager.CreateSafeBuffer方法的典型用法代码示例。如果您正苦于以下问题:C# BufferManager.CreateSafeBuffer方法的具体用法?C# BufferManager.CreateSafeBuffer怎么用?C# BufferManager.CreateSafeBuffer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BufferManager
的用法示例。
在下文中一共展示了BufferManager.CreateSafeBuffer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Compress
public static void Compress(Stream inStream, Stream outStream, BufferManager bufferManager)
{
var info = new ProcessStartInfo(_path);
info.CreateNoWindow = true;
info.UseShellExecute = false;
info.RedirectStandardInput = true;
info.RedirectStandardOutput = true;
info.RedirectStandardError = true;
info.Arguments = "--compress --format=xz -0 --threads=1 --stdout";
using (var inCacheStream = new BufferedStream(inStream, 1024 * 32))
using (var outCacheStream = new BufferedStream(outStream, 1024 * 32))
{
using (Process process = Process.Start(info))
{
process.PriorityClass = ProcessPriorityClass.Idle;
process.ErrorDataReceived += (object sender, DataReceivedEventArgs e) =>
{
Log.Error(e.Data);
};
Exception threadException = null;
var thread = new Thread(() =>
{
try
{
using (var standardOutputStream = process.StandardOutput.BaseStream)
using (var safeBuffer = bufferManager.CreateSafeBuffer(1024 * 32))
{
int length;
while ((length = standardOutputStream.Read(safeBuffer.Value, 0, safeBuffer.Value.Length)) > 0)
{
outCacheStream.Write(safeBuffer.Value, 0, length);
}
}
}
catch (Exception e)
{
threadException = e;
}
});
thread.IsBackground = true;
thread.Start();
try
{
using (var standardInputStream = process.StandardInput.BaseStream)
using (var safeBuffer = bufferManager.CreateSafeBuffer(1024 * 32))
{
int length;
while ((length = inCacheStream.Read(safeBuffer.Value, 0, safeBuffer.Value.Length)) > 0)
{
standardInputStream.Write(safeBuffer.Value, 0, length);
}
}
}
catch (Exception)
{
throw;
}
thread.Join();
if (threadException != null) throw threadException;
process.WaitForExit();
}
}
}