मेरे पास एक विंडोज़ सेवा है जो एक सरल प्रारूप में पाठ फ़ाइल में अपना लॉग लिखती है।
अब, मैं सेवा के लॉग को पढ़ने के लिए एक छोटा एप्लिकेशन बनाने जा रहा हूं और मौजूदा लॉग और जोड़े गए दोनों को लाइव दृश्य के रूप में दिखाता है।
समस्या यह है कि सेवा नई लाइनों को जोड़ने के लिए पाठ फ़ाइल को लॉक कर देती है और उसी समय दर्शक एप्लिकेशन को पढ़ने के लिए फ़ाइल को लॉक कर देता है।
सेवा कोड:
void WriteInLog(string logFilePath, data)
{
File.AppendAllText(logFilePath,
string.Format("{0} : {1}\r\n", DateTime.Now, data));
}
दर्शक कोड:
int index = 0;
private void Form1_Load(object sender, EventArgs e)
{
try
{
using (StreamReader sr = new StreamReader(logFilePath))
{
while (sr.Peek() >= 0) // reading the old data
{
AddLineToGrid(sr.ReadLine());
index++;
}
sr.Close();
}
timer1.Start();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void timer1_Tick(object sender, EventArgs e)
{
using (StreamReader sr = new StreamReader(logFilePath))
{
// skipping the old data, it has read in the Form1_Load event handler
for (int i = 0; i < index ; i++)
sr.ReadLine();
while (sr.Peek() >= 0) // reading the live data if exists
{
string str = sr.ReadLine();
if (str != null)
{
AddLineToGrid(str);
index++;
}
}
sr.Close();
}
}
क्या पढ़ने और लिखने के तरीके में मेरे कोड में कोई समस्या है?
इस समस्या को कैसे सुलझाया जाए?