You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
237 lines
7.4 KiB
237 lines
7.4 KiB
15 years ago
|
// Copyright (c) 2004-2008 MySQL AB, 2008-2009 Sun Microsystems, Inc.
|
||
|
//
|
||
|
// This program is free software; you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU General Public License version 2 as published by
|
||
|
// the Free Software Foundation
|
||
|
//
|
||
|
// There are special exceptions to the terms and conditions of the GPL
|
||
|
// as it is applied to this software. View the full text of the
|
||
|
// exception in file EXCEPTIONS in the directory of this software
|
||
|
// distribution.
|
||
|
//
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program; if not, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
|
||
|
using System;
|
||
|
using System.IO;
|
||
|
using MySql.Data.MySqlClient;
|
||
|
using MySql.Data.MySqlClient.Properties;
|
||
|
using Microsoft.Win32.SafeHandles;
|
||
|
using System.Threading;
|
||
|
using System.Diagnostics;
|
||
|
using System.Runtime.InteropServices;
|
||
|
using System.ComponentModel;
|
||
|
|
||
|
|
||
|
|
||
|
namespace MySql.Data.Common
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Summary description for API.
|
||
|
/// </summary>
|
||
|
internal class NamedPipeStream : Stream
|
||
|
{
|
||
|
SafeFileHandle handle;
|
||
|
Stream fileStream;
|
||
|
int readTimeout = Timeout.Infinite;
|
||
|
int writeTimeout = Timeout.Infinite;
|
||
|
const int ERROR_PIPE_BUSY = 231;
|
||
|
const int ERROR_SEM_TIMEOUT = 121;
|
||
|
|
||
|
public NamedPipeStream(string path, FileAccess mode, uint timeout)
|
||
|
{
|
||
|
Open(path, mode, timeout);
|
||
|
}
|
||
|
|
||
|
void CancelIo()
|
||
|
{
|
||
|
bool ok = NativeMethods.CancelIo(handle.DangerousGetHandle());
|
||
|
if (!ok)
|
||
|
throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error());
|
||
|
}
|
||
|
public void Open( string path, FileAccess mode ,uint timeout )
|
||
|
{
|
||
|
IntPtr nativeHandle;
|
||
|
for (; ; )
|
||
|
{
|
||
|
nativeHandle = NativeMethods.CreateFile(path, NativeMethods.GENERIC_READ | NativeMethods.GENERIC_WRITE,
|
||
|
0, null, NativeMethods.OPEN_EXISTING, NativeMethods.FILE_FLAG_OVERLAPPED, 0);
|
||
|
if (nativeHandle != IntPtr.Zero)
|
||
|
break;
|
||
|
|
||
|
if (Marshal.GetLastWin32Error() != ERROR_PIPE_BUSY)
|
||
|
{
|
||
|
throw new Win32Exception(Marshal.GetLastWin32Error(),
|
||
|
"Error opening pipe");
|
||
|
}
|
||
|
LowResolutionStopwatch sw = LowResolutionStopwatch.StartNew();
|
||
|
bool success = NativeMethods.WaitNamedPipe(path, timeout);
|
||
|
sw.Stop();
|
||
|
if (!success)
|
||
|
{
|
||
|
if (timeout < sw.ElapsedMilliseconds ||
|
||
|
Marshal.GetLastWin32Error() == ERROR_SEM_TIMEOUT)
|
||
|
{
|
||
|
throw new TimeoutException("Timeout waiting for named pipe");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
throw new Win32Exception(Marshal.GetLastWin32Error(),
|
||
|
"Error waiting for pipe");
|
||
|
}
|
||
|
}
|
||
|
timeout -= (uint)sw.ElapsedMilliseconds;
|
||
|
}
|
||
|
handle = new SafeFileHandle(nativeHandle, true);
|
||
|
fileStream = new FileStream(handle, mode, 4096, true);
|
||
|
}
|
||
|
|
||
|
public override bool CanRead
|
||
|
{
|
||
|
get { return fileStream.CanRead; }
|
||
|
}
|
||
|
|
||
|
public override bool CanWrite
|
||
|
{
|
||
|
get { return fileStream.CanWrite; }
|
||
|
}
|
||
|
|
||
|
public override bool CanSeek
|
||
|
{
|
||
|
get { throw new NotSupportedException(Resources.NamedPipeNoSeek); }
|
||
|
}
|
||
|
|
||
|
public override long Length
|
||
|
{
|
||
|
get { throw new NotSupportedException(Resources.NamedPipeNoSeek); }
|
||
|
}
|
||
|
|
||
|
public override long Position
|
||
|
{
|
||
|
get { throw new NotSupportedException(Resources.NamedPipeNoSeek); }
|
||
|
set { }
|
||
|
}
|
||
|
|
||
|
public override void Flush()
|
||
|
{
|
||
|
fileStream.Flush();
|
||
|
}
|
||
|
|
||
|
public override int Read(byte[] buffer, int offset, int count)
|
||
|
{
|
||
|
if(readTimeout == Timeout.Infinite)
|
||
|
{
|
||
|
return fileStream.Read(buffer, offset, count);
|
||
|
}
|
||
|
IAsyncResult result = fileStream.BeginRead(buffer, offset, count, null, null);
|
||
|
if (result.CompletedSynchronously)
|
||
|
return fileStream.EndRead(result);
|
||
|
|
||
|
if (!result.AsyncWaitHandle.WaitOne(readTimeout))
|
||
|
{
|
||
|
CancelIo();
|
||
|
throw new TimeoutException("Timeout in named pipe read");
|
||
|
}
|
||
|
return fileStream.EndRead(result);
|
||
|
}
|
||
|
|
||
|
|
||
|
public override void Write(byte[] buffer, int offset, int count)
|
||
|
{
|
||
|
if (writeTimeout == Timeout.Infinite)
|
||
|
{
|
||
|
fileStream.Write(buffer, offset, count);
|
||
|
return;
|
||
|
}
|
||
|
IAsyncResult result = fileStream.BeginWrite(buffer, offset, count, null, null);
|
||
|
if (result.CompletedSynchronously)
|
||
|
{
|
||
|
fileStream.EndWrite(result);
|
||
|
}
|
||
|
|
||
|
if (!result.AsyncWaitHandle.WaitOne(readTimeout))
|
||
|
{
|
||
|
CancelIo();
|
||
|
throw new TimeoutException("Timeout in named pipe write");
|
||
|
}
|
||
|
fileStream.EndWrite(result);
|
||
|
}
|
||
|
|
||
|
public override void Close()
|
||
|
{
|
||
|
if (handle != null && !handle.IsInvalid && !handle.IsClosed)
|
||
|
{
|
||
|
fileStream.Close();
|
||
|
try
|
||
|
{
|
||
|
handle.Close();
|
||
|
}
|
||
|
catch (Exception)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override void SetLength(long length)
|
||
|
{
|
||
|
throw new NotSupportedException(Resources.NamedPipeNoSetLength);
|
||
|
}
|
||
|
|
||
|
|
||
|
public override bool CanTimeout
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override int ReadTimeout
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return readTimeout;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
readTimeout = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override int WriteTimeout
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return writeTimeout;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
writeTimeout = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override long Seek( long offset, SeekOrigin origin )
|
||
|
{
|
||
|
throw new NotSupportedException(Resources.NamedPipeNoSeek);
|
||
|
}
|
||
|
|
||
|
internal static Stream Create(string pipeName, string hostname, uint timeout)
|
||
|
{
|
||
|
string pipePath;
|
||
|
if (0 == String.Compare(hostname, "localhost", true))
|
||
|
pipePath = @"\\.\pipe\" + pipeName;
|
||
|
else
|
||
|
pipePath = String.Format(@"\\{0}\pipe\{1}", hostname, pipeName);
|
||
|
return new NamedPipeStream(pipePath, FileAccess.ReadWrite, timeout);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|