我尝试在Windows 8中构建IRC客户端作为学习网络编程的方法。但是,我无法找到构建侦听器的最佳方法。
我有一个创建StreamSocket并连接到服务器的类。现在我需要让我的类侦听来自服务器的传入消息,并在消息进入时回调给委托。据我所知,StreamSocket只给了我一种方法来拉出当前在Socket上等待的东西,但是没有对传入的消息进行某种回调。这样做的最佳方式是什么?
答案 0 :(得分:0)
我想你会将它作为Windows服务实现,所以你的代码看起来很像下面的代码。其中很大一部分是让您轻松调试服务的基础架构。我知道它污染了这个例子,但没有太多的工作。
服务实现在库中,而不是直接在服务主机中,因为我经常编写通过WCF发布接口的服务,并且总是将主机与服务分开是不那么麻烦。
using IrcServiceLibrary;
using System.Collections.Generic;
using System.ServiceProcess;
using System.Threading;
using System.Xml;
namespace IrcServiceHost
{
internal static class Program
{
/// <summary>
/// Launches as an application when an argument "app" is supplied.
/// Otherwise launches as a Windows Service.
/// </summary>
private static void Main(string[] arg)
{
var args = new List<string>(arg);
ServiceBase[] ServicesToRun = new ServiceBase[]
{
new IrcServiceLibrary.Irc(
Properties.Settings.Default.IrcTcpPort)
};
if (args.Contains("app"))
{
foreach (IExecutableService es in ServicesToRun)
es.StartService();
Thread.Sleep(Timeout.Infinite);
}
else
{
ServiceBase.Run(ServicesToRun);
}
}
}
}
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net;
using System.Net.Sockets;
using System.ServiceModel;
using System.ServiceProcess;
using System.Threading;
namespace IrcServiceLibrary
{
/// <summary>
/// Listens for TCP connection establishment and creates an
/// IrcSession object to handle the test session.
/// </summary>
[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, InstanceContextMode = InstanceContextMode.Single)]
public partial class Irc : ServiceBase, IExecutableService
{
AutoResetEvent _autoResetEvent = new AutoResetEvent(false);
TcpListener _tcpListener;
List<IrcSession> _sessions = new List<IrcSession>();
/// <summary>
/// Creates Irc and applies configuration supplied by the service host.
/// </summary>
/// <param name="tcpPort">Port on which the session is established.</param>
public Irc(int tcpPort)
{
Trace.TraceInformation("NetReady service created {0}", GetHashCode());
InitializeComponent();
_tcpListener = new TcpListener(IPAddress.Any, tcpPort);
NetReadySession.Sessions = _sessions;
}
void AcceptTcpClient(IAsyncResult asyncResult)
{
var listener = asyncResult.AsyncState as TcpListener;
var tcpClient = listener.EndAcceptTcpClient(asyncResult);
try
{
new NetReadySession(tcpClient);
}
catch (IndexOutOfRangeException)
{
//no free session - NetReadySession ctor already informed client, no action here
}
_tcpListener.BeginAcceptTcpClient(AcceptTcpClient, _tcpListener);
}
/// <summary>
/// <see cref="StartService">ServiceStart</see>
/// </summary>
/// <param name="args">Arguments passed by the service control manager</param>
protected override void OnStart(string[] args)
{
StartService();
}
/// <summary>
/// <see cref="StopService">ServiceStop</see>
/// </summary>
protected override void OnStop()
{
StopService();
}
void Execute(object state)
{
Trace.TraceInformation("IRC service started");
_tcpListener.Start();
_tcpListener.BeginAcceptTcpClient(AcceptTcpClient, _tcpListener);
_autoResetEvent.WaitOne();
_tcpListener.Stop();
}
internal static int UdpPortLow { get; set; }
internal static int UdpPortHigh { get; set; }
/// <summary>
/// Starts the service. OnStart uses this method to implement startup behaviour.
/// This guarantees identical behaviour across application and service modes.
/// </summary>
public void StartService()
{
ThreadPool.QueueUserWorkItem(Execute);
}
/// <summary>
/// Stops the service. OnStop uses this method to implement shutdown behaviour.
/// This guarantees identical behaviour across application and service modes.
/// </summary>
public void StopService()
{
_autoResetEvent.Set();
}
}
}
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace IrcServiceLibrary
{
public class IrcSession
{
/// <summary>
/// Exists to anchor sessions to prevent premature garbage collection
/// </summary>
public static List<IrcSession> Sessions;
TcpClient _tcpClient;
NetworkStream _stream;
byte[] _buf; //remain in scope while awaiting data
/// <summary>
/// Created dynamically to manage an Irc session.
/// </summary>
/// <param name="tcpClient">The local end of the TCP connection established by a test client
/// to request and administer a test session.</param>
public IrcSession(TcpClient tcpClient)
{
Sessions.Add(this);
_tcpClient = tcpClient;
_stream = _tcpClient.GetStream();
_buf = new byte[1];
_stream.BeginRead(_buf, 0, 1, IncomingByteHandler, _buf);
}
void IncomingByteHandler(IAsyncResult ar)
{
byte[] buf = ar.AsyncState as byte[];
try
{
byte[] buf = ar.AsyncState as byte[];
int cbRead = _stream.EndRead(ar);
//do something with the incoming byte which is in buf
//probably feed it to a state machine
}
finally
{
//restart listening AFTER digesting byte to ensure in-order delivery to this code
_stream.BeginRead(buf, 0, 1, IncomingByteHandler, buf);
}
}
}
}