Last active
August 29, 2015 14:00
-
-
Save Zepheus/11226757 to your computer and use it in GitHub Desktop.
SMTP pool draft
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Net.Mail; | |
using System.Threading; | |
namespace ConcurrentSMTP | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Example usage | |
SMTPPool pool = new SMTPPool(() => new SmtpClient("yourhost.com")); | |
} | |
} | |
class SMTPPool | |
{ | |
private const byte MaxClients = 4; | |
private int currentClients; | |
private Func<SmtpClient> factory; | |
private ConcurrentQueue<MailMessage> pendingMessages; | |
public SMTPPool(Func<SmtpClient> factory) | |
{ | |
this.factory = factory; | |
this.pendingMessages = new ConcurrentQueue<MailMessage>(); | |
this.currentClients = 0; | |
} | |
private void CheckSpawns() | |
{ | |
for (int i = MaxClients - 1; i >= 0; --i) | |
{ | |
int value = Interlocked.CompareExchange(ref currentClients, i + 1, i); | |
if(value == MaxClients){ | |
return; | |
} else if(value == i + 1){ | |
SpawnProcess(); | |
return; | |
} | |
} | |
} | |
public void AddMessage(MailMessage message) | |
{ | |
pendingMessages.Enqueue(message); | |
CheckSpawns(); | |
} | |
public void AddMessages(List<MailMessage> messages) | |
{ | |
messages.ForEach(AddMessage); | |
} | |
private async void SpawnProcess() | |
{ | |
using (var client = factory()) { | |
MailMessage message; | |
while(pendingMessages.TryDequeue(out message)){ | |
await client.SendMailAsync(message); | |
} | |
} | |
Interlocked.Decrement(ref currentClients); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment