I need some help on how to best design a set of classes for managing a multithread C# app I am developing. I have successfully created a ThreadContainer class that launches a series of Threads. The Threads download financial data from specific websites. For each website passed they will open the same base url but with a different symbols. So there are # results equal to the number of symbols passed for each website. Then depending on the website that was requested the Threads results have to treated in a different way... Here is the simplified ThreadContainer code:
public class ThreadContainer
{
private int ConcurrentThreads;
private string Website;
public string URL;
private Queue SymQueue;
//Constructor
public ThreadContainer(string website, Queue symQueue)
{
Website = website;
SymQueue = symQueue;
}
//Start
public void start(int concurrent)
{
ConcurrentThreads = concurrent;
//Start the Concurrent Threads
for (int ThreadNum = 1; ThreadNum <= ConcurrentThreads; ThreadNum++)
{
//Get a symbol from the queue
Sym = SymQueue.Dequeue().ToString();
//Build the URL
URL = string.Format(Constants.URL(Website), Sym);
//Create a new Asynch thread
AsynchThread j = new AsynchThread(ThreadNum);
//Start the AsyncThread class with the BackgoundWorker
j.Start(Sym, URL);
}
}
//Method called when the Backgroundworker thread has terminated
private void AsynchThread1_JobCompleted(object sender, EventArgs e)
{
// Get the AsynchThread object
AsynchThread j = (AsynchThread)sender;
//Get the symbol name
String Sym = j.Sym;
//Get the result with the Webpage content
RunWorkerCompletedEventArgs re = e as RunWorkerCompletedEventArgs;
String result = re.Result.ToString();
/* HERE EACH THREAD RETURNS THE WEBSITE CONTENT.
* DEPENDING ON THE WEBSITE THAT WAS REQUESTED SEVERAL ACTIONS MAY BE EXECUTED.
*/
switch(website)
{
case "WebsiteA":
// With WebsiteA I would like to :
// 1. extract the symbol data
// 2. return the result for this symbol to the calling class.
case "WebsiteB":
// With WebsiteB I would like to:
// 1. extract the symbol data (Webpage design is different from WebsiteA)
// 2. store each symbol data in a database table
case "WebsiteC":
// With WebsiteB I would like to:
// 1. extract the symbol data (Webpage design is different from WebsiteA and WebsiteB)
// 2. put the results in a queue
case ...
default:
return "";
}
// Reuse the thread that has just completed
//If there are items left in the queue...
if (SymQueue.Count > 0)
//...get the new Sym value...
NewSym = SymQueue.Dequeue().ToString();
//If NewSym is valid ...
if (!String.IsNullOrEmpty(NewSym))
{
//...build the URL...
String NewURL = string.Format(Constants.URL(Website), NewSym);
//...then restart the thread with the new parameters
j.Start(NewSym, NewURL);
}
}
}
I would like to know what is the best way to design the AsynchThread1_JobCompleted method. This method is called when each Thread has terminated and should carry out the following tasks:
- get the webpage content
- extract the data from the webpage
- send the data back to the caller or save the data to a DB or insert the data in a queue.
- check if the queue has still items and relaunch the thread with a new URL so it will open a new Webpage.
How can I design the method so I don't have to modify the code everytime I need to add a new website? Also, should I use the same AsynchThread that downloaded the page for extracting the data, save to the DB, etc... or is it better another thread for that? I would like to have the ThreadContainer class following a kind of single-responsibility principle...
Thanks