web-dev-qa-db-ja.com

NamedPipeServer#WaitForConnectionでブロックされたスレッドをシャットダウンする良い方法は何ですか?

多数のスレッドを生成するアプリケーションを起動します。各スレッドはNamedPipeServer(.net 3.5で名前付きパイプIPC用に追加されたマネージタイプ)を作成し、クライアントが接続するのを待ちます(ブロック)。コードは意図したとおりに機能します。

private void StartNamedPipeServer()
  {
    using (NamedPipeServerStream pipeStream =
                    new NamedPipeServerStream(m_sPipeName, PipeDirection.InOut, m_iMaxInstancesToCreate, PipeTransmissionMode.Message, PipeOptions.None))
    {
      m_pipeServers.Add(pipeStream);
      while (!m_bShutdownRequested)
      {
        pipeStream.WaitForConnection();
        Console.WriteLine("Client connection received by {0}", Thread.CurrentThread.Name);
        ....  

ここで、このプロセスをクリーンに停止するためのシャットダウンメソッドも必要です。通常のブールフラグisShutdownRequestedトリックを試しました。ただし、パイプストリームはWaitForConnection()呼び出しでブロックされたままであり、スレッドは停止しません。

public void Stop()
{
   m_bShutdownRequested = true;
   for (int i = 0; i < m_iMaxInstancesToCreate; i++)
   {
     Thread t = m_serverThreads[i];
     NamedPipeServerStream pipeStream = m_pipeServers[i];
     if (pipeStream != null)
     {
       if (pipeStream.IsConnected)
          pipeStream.Disconnect();
       pipeStream.Close();
       pipeStream.Dispose();
     }

     Console.Write("Shutting down {0} ...", t.Name);
     t.Join();
     Console.WriteLine(" done!");
   }
} 

参加は二度と戻りません。

私が試していなかったが、おそらく機能するオプションは、Thread.Abortを呼び出して、例外を使い果たすことです。しかし、それは正しく感じられません。

2009年12月22日更新
これを先に投稿しなかったことをお詫びします。これは私がキムハミルトン(BCLチーム)からの返答として受け取ったものです。

割り込み可能なWaitForConnectionを実行する「正しい」方法は、BeginWaitForConnectionを呼び出し、コールバックで新しい接続を処理し、パイプストリームを閉じて接続の待機を停止することです。パイプが閉じている場合、EndWaitForConnectionはObjectDisposedExceptionをスローします。これは、コールバックスレッドがキャッチし、ルーズエンドをクリーンアップして、正常に終了します。

これはよくある質問であるに違いないので、私のチームの誰かがすぐにこれについてブログを書くことを計画しています。

38
Gishu

非同期バージョンに切り替えます:BeginWaitForConnection

完了した場合は、フラグが必要です。これにより、完了ハンドラーはEndWaitForConnectionを呼び出して例外を吸収し、終了できます(End ...を呼び出して、リソースをクリーンアップできるようにします)。

15
Richard

これは安っぽいですが、私が仕事に取り掛かった唯一の方法です。 「偽の」クライアントを作成し、名前付きパイプに接続して、WaitForConnectionを通過します。毎回動作します。

また、Thread.Abort()でさえ、この問題を修正しませんでした。


_pipeserver.Dispose();
_pipeserver = null;

using (NamedPipeClientStream npcs = new NamedPipeClientStream("pipename")) 
{
    npcs.Connect(100);
}
38
JasonRShaver

次の拡張方法を使用できます。 'ManualResetEvent cancelEvent'が含まれていることに注意してください。別のスレッドからこのイベントを設定して、待機中の接続メソッドが今すぐ中止してパイプを閉じる必要があることを通知できます。 m_bShutdownRequestedを設定するときにcancelEvent.Set()を含めると、シャットダウンは比較的適切に行われる必要があります。

    public static void WaitForConnectionEx(this NamedPipeServerStream stream, ManualResetEvent cancelEvent)
    {
        Exception e = null;
        AutoResetEvent connectEvent = new AutoResetEvent(false);
        stream.BeginWaitForConnection(ar =>
        {
            try
            {
                stream.EndWaitForConnection(ar);
            }
            catch (Exception er)
            {
                e = er;
            }
            connectEvent.Set();
        }, null);
        if (WaitHandle.WaitAny(new WaitHandle[] { connectEvent, cancelEvent }) == 1)
            stream.Close();
        if (e != null)
            throw e; // rethrow exception
    }
6
Deirh

私はこの問題を解決するためにこの拡張メソッドを書きました:

public static void WaitForConnectionEx(this NamedPipeServerStream stream)
{
    var evt = new AutoResetEvent(false);
    Exception e = null;
    stream.BeginWaitForConnection(ar => 
    {
        try
        {
            stream.EndWaitForConnection(ar);
        }
        catch (Exception er)
        {
            e = er;
        }
        evt.Set();
    }, null);
    evt.WaitOne();
    if (e != null)
        throw e; // rethrow exception
}
1
Evgeny Lazin
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Pipes;
using System.Threading;
using System.Windows;
using System.Windows.Controls;

namespace PIPESERVER
{
    public partial class PWIN : UserControl
   {
    public string msg = "", cmd = "", text = "";
    public NamedPipeServerStream pipe;
    public NamedPipeClientStream dummyclient;
    public string PipeName = "PIPE1";
    public static string status = "";
    private static int numThreads = 2;
    int threadId;
    int i;
    string[] Word;
    char[] buffer;
    public StreamString ss;

    public bool ConnectDummyClient()
    {
        new Thread(() =>
        {
            dummyclient = new NamedPipeClientStream(".", "PIPE1");
            try
            {
                dummyclient.Connect(5000); // 5 second timeout
            }
            catch (Exception e)
            {
                Act.m.md.AMsg(e.Message); // Display error msg
                Act.m.console.PipeButton.IsChecked = false;
            }
        }).Start();
        return true;
    }

    public bool RaisePipe()
    {
        TextBlock tb = Act.m.tb;
        try
        {
            pipe = new NamedPipeServerStream("PIPE1", PipeDirection.InOut, numThreads);
            threadId = Thread.CurrentThread.ManagedThreadId;
            pipe.WaitForConnection();
            Act.m.md.Msg("Pipe Raised");
            return true;
        }
        catch (Exception e)
        {
            string err = e.Message;
            tb.Inlines.Add(new Run("Pipe Failed to Init on Server Side"));
            tb.Inlines.Add(new LineBreak());
            return false;
        }
    }

    public void ServerWaitForMessages()
    {
        new Thread(() =>
        {
            cmd = "";
            ss = new StreamString(pipe);
            while (cmd != "CLOSE")
            {
                try
                {
                    buffer = new char[256];
                    text = "";
                    msg = ss.ReadString().ToUpper();
                    Word = msg.Split(' ');
                    cmd = Word[0].ToUpper();
                    for (i = 1; i < Word.Length; i++) text += Word[i] + " ";
                    switch (cmd)
                    {
                        case "AUTHENTICATE": ss.WriteString("I am PIPE1 server"); break;
                        case "SOMEPIPEREQUEST":ss.WriteString(doSomePipeRequestReturningString()):break;
                        case "CLOSE": ss.WriteString("CLOSE");// reply to client
                            Thread.Sleep(1000);// wait for client to pick-up shutdown message
                            pipe.Close();
                            Act.m.md.Msg("Server Shutdown ok"); // Server side message
                            break;
                    }
                }
                catch (IOException iox)
                {
                    string error = iox.Message;
                    Act.m.md.Msg(error);
                    break;
                }
            }
        }).Start();
    }

    public void DummyClientCloseServerRequest()
    {
        StreamString ss = new StreamString(dummyclient);
        ss.WriteString("CLOSE");
        ss.ReadString();
    }

//使用法、ToggleButtonsをStackPanel内に配置し、次のようにコードでバックアップします。

private void PipeButton_Checked(object sender, RoutedEventArgs e)
    {
        Act.m.pwin.ConnectDummyClient();
        Act.m.pwin.RaisePipe();
    }
private void PipeButton_Unchecked(object sender, RoutedEventArgs e)
    {
        Act.m.pwin.DummyClientCloseServerRequest();
        Act.m.console.WaitButton.IsChecked = false;
        Keyboard.Focus(Act.m.md.tb1);
    }
private void WaitButton_Checked(object sender, RoutedEventArgs e)
    {
        Act.m.pwin.Wait();
    }
private void WaitButton_Unchecked(object sender, RoutedEventArgs e)
    {
    }

//私にとって魅力のように働いた。敬具、zzzbc}

0
zzzbc

最も単純で簡単な解決策は、ダミークライアントを作成し、サーバーとの接続を行うことです。

NamedPipeServerStream pServer;
bool exit_flg=false;
    public void PipeServerWaiter()
{

    NamedPipeServerStream  pipeServer = new NamedPipeServerStream("DphPipe", PipeDirection.InOut, NamedPipeServerStream.MaxAllowedServerInstances);
    pServer = pipeServer;
    pipeServer.WaitForConnection();


    if (exit_flg) return;
    thread = new Thread(PipeServerWaiter);
    thread.Start();

}
public void Dispose()
{
    try
    {
        exit_flg = true;
        NamedPipeClientStream clt = new NamedPipeClientStream(".", "DphPipe");
        clt.Connect();
        clt.Close();

        pServer.Close();
        pServer.Dispose();


    }
0
user3256430

動作する可能性のある1つの方法は、WaitForConnectionの直後にm_bShutdownRequestedをチェックすることです。

シャットダウンプロセス中にブール値を設定します。その後、既存のすべてのパイプにダミーメッセージを送信して、接続を開き、ブール値を確認して、正常にシャットダウンします。

0
Sam Saffron