Skip to content

AndreevNikita/MailboxShell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MailboxShell

Library, that provides Mailbox class. The Mailbox class is a shell for a Socket object for a more simple network packets sending and receiving. So it segments TCP traffic for packets and returns data in this view.

How to use

  1. Get the Socket object
  2. Create Mailbox by Mailbox mailbox = new Mailbox(socket)

Network packets sending and receiving completes by mailbox.tick(); function in the NonBlocking mode. I.E. the best solution is to call this method with some interval (you can create a special thread to call this). mailbox.tick(); returns false when an error occurs or remote host is diconnected

Send a packet

  1. Create Packet object by Packet packet = new Packet([yourdata : byte[]]); (for example Packet packet = new Packet(Encoding.UTF8.GetBytes("Hello!")))
  2. To send packet call mailbox.Send(packet)
  3. Call mailbox.Tick()

Receive a packet

  1. Call mailbox.Tick() in main or other thread with some time intervals
  2. To receive packet on connected host use mailbox.Next() to get a packet if any packet is received (null else) or mailbox.GetAllReceived() to get all received packets at the call time
    !!! Don't forget to call mailbox.Tick() !!!
  3. Received data bytes array is in packet.data field

Constructor args

Mailbox class has constructor: public Mailbox(Socket socket, int maxReceiveFragmentsPerTick = 64, int sendPacketsPerTick = 0, int maxPacketSize = 0)

  • Socket socket - socket that this object will be the facade of
  • int maxReceiveFragmentsPerTick - limit of received fragments per tick
  • int sendPacketsPerTick - limit of packets, that can be sended per tick
  • int maxPacketSize - limit of received packet size

Async API

!!! Do not use asynchronous packets listening with ticks !!!

  • Task StartListenAsync(int receivePacketsPerSecond = 0, CancellationToken cancellationToken = default) - start to receive and send packets asynchronously
  • void StopListen(bool interruptSendingWhenAll = false) - stop receive and send packets asynchronously. If interruptSendingWhenAll is True, the packets sender will send all the packets in the send queue before stopping
  • Task StopListenAsync(bool interruptSendingWhenAll = false) - the same as the StopListen method, but returns a Task, that will be finished when the send and the receive tasks will be finished
  • void StopListenWait(bool interruptSendingWhenAll = false) - the same as the StopListen method, but blocks the call thread until the send and the receive tasks will be finished
  • Task<Packet> GetNextAsync(CancellationToken cancellationToken = default) - get the next packet or wait
  • Task<IEnumerable<Packet>> GetAllReceivedAsync(CancellationToken cancellationToken = default) get all received packets if exist or waits for new packet otherwice

Other properties and methods

  • bool IsConnected - checks if socket is connected (Connected socket property)
  • int SendQueueSize - get the number of currently processed packets
  • int ReceivedCount - get the number of received packets in the queue
  • int SendQueueSize - get send queue size
  • void Close() - close socket
  • bool IsSendQueueEmpty - checks if send queue is empty
  • void ClearReceived() - clears received packet queue
  • void ClearReceivedQueue() - clears send packet queue
  • void ClearAll() - clears both packet queues
  • Packet Packet.CloneDataRef() - returns new ready for sending Packet with some data ref

Mailbox's owner

  • You can set owner object of mailbox by void SetOwner(IMailboxOwner) method and get it by TYPE GetOwner<TYPE>() method.
  • Owner object must implement IMailboxOwner interface and have MailboxSafe object

For example:

public class ClientInfo : IMailboxOwner { 

	public MailboxSafe MailboxSafe { get; } = new MailboxSafe();
	
}
  • Also call mailbox.RemoveOwner() to remove owner object link.
  • Owner link methods are thread-safe, but don't use it too often. The purpose of these methods is to bind mailbox owner object in the start of handling
  • Also you can use GetMailbox, SetMailbox, RemoveMailbox IMailboxOwner's extension methods. They call similar methods in owned mailbox

Example

(You can find the Test project in this repository MailboxShell solution) Lightweight example:

Client

Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
socket.Connect(IPAddress.Parse(SERVER_IP), SERVER_PORT);
Mailbox mailbox = new Mailbox(socket);

while(true) {
	string message = Console.ReadLine();
	mailbox.Send(new Packet(Encoding.UTF8.GetBytes(message)));
	while(true) {
		mailbox.Tick();
		Packet receivedPacket = mailbox.Next(); //Try to get the next packet
		if(receivedPacket != null) {
			Console.WriteLine($"Server response: \"{Encoding.UTF8.GetString(receivedPacket.data)}\"");
			break;			
		}
			
		Thread.sleep(1);
	}
}

Server

Socket serverSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
serverSocket.Bind(new IPEndPoint(IPAddress.Parse(ip), port));
serverSocket.Listen(10);
Mailbox mailbox = new Mailbox(serverSocket.Accept());
while(true) {
	mailbox.Tick(); //Tick to receive
	foreach(Packet packet in mailbox.GetAllReceived()) {
		string message = Encoding.UTF8.GetString(packet.data); //Get message from packet.data
		mailbox.Send(new Packet(Encoding.UTF8.GetBytes("Echo: " + message))); //Send response
	}
	mailbox.Tick(); //Tick to send (but both ticks can be in one in this case)
	Thread.sleep(1);
}

Asynchronous client

private async Task handlePackets(Mailbox mailbox, CancellationToken cancellationToken) { 
    while(!cancellationToken.IsCancellationRequested) {
        Packet packet = await mailbox.GetNextAsync(cancellationToken);
        string responseString = Encoding.UTF8.GetString(packet.data);
        Console.WriteLine($"Server response: \"{responseString}\"");
    }
}

Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
socket.Connect(IPAddress.Parse(SERVER_IP), SERVER_PORT);
Mailbox mailbox = new Mailbox(socket);

CancellationTokenSource cts = new CancellationTokenSource();
Task listenTask = mailbox.StartListenAsync(cts.Token);
Task handlePacketsTask = mailbox.handlePackets(cts.Token);

Console.ReadKey();

cts.Cancel();
Task.WaitAll(listenTask, handlePacketsTask);