次のようなログ ファイル ローテーション関数があります。
private static void RotateLogs()
{
FileInfo LogFile = new FileInfo(@"C:\temp\dataTransferErrorLog.txt");
if (LogFile.Exists && (LogFile.Length) >= 10 * 1048576)
{
Compress(LogFile);
LogFile.Delete();
File.Create(@"C:\temp\dataTransferErrorLog.txt");
}
}
private static void Compress(FileInfo fi)
{
// Get the stream of the source file.
using (FileStream inFile = fi.OpenRead())
{
// Prevent compressing hidden and
// already compressed files.
if ((File.GetAttributes(fi.FullName)
& FileAttributes.Hidden)
!= FileAttributes.Hidden & fi.Extension != ".gz")
{
string destFileName = fi.FullName.Substring(0, fi.FullName.LastIndexOf('.')) + System.DateTime.Now.ToString("yyyyMMddHHmm") + fi.FullName.Substring(fi.FullName.LastIndexOf('.')) + ".gz";
// Create the compressed file.
using (FileStream outFile =
File.Create(destFileName))
{
using (GZipStream Compress =
new GZipStream(outFile,
CompressionMode.Compress))
{
// Copy the source file into
// the compression stream.
inFile.CopyTo(Compress);
}
}
}
}
}
これにより、ログ ファイルをローテーションしようとするたびに IOException がスローされます。.gz ファイルに書き込もうとすると例外がスローされると思いますが、よくわかりません。これはスタック トレースです。
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.IO.IOException
Stack:
at System.IO.__Error.WinIOError(Int32, System.String)
at System.IO.FileStream.Init(System.String, System.IO.FileMode, System.IO.FileAccess, Int32, Boolean, System.IO.FileShare, Int32, System.IO.FileOptions, SECURITY_ATTRIBUTES, System.String, Boolean, Boolean)
at System.IO.FileStream..ctor(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, Int32, System.IO.FileOptions)
at System.IO.StreamWriter.CreateFile(System.String, Boolean)
at System.IO.StreamWriter..ctor(System.String, Boolean, System.Text.Encoding, Int32)
at System.IO.StreamWriter..ctor(System.String, Boolean)
at System.IO.File.AppendText(System.String)
at XRayDataTransferService.XRayDataTransferService.LogMessage(System.String)
at XRayDataTransferService.XRayDataTransferService.RunAgent()
at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Threading.ThreadHelper.ThreadStart()
圧縮された情報を .gz ファイルに書き込もうとしたときに例外がスローされていることを誰かが確認して、例外をスローする原因となっている状況について教えてもらえますか?
編集
これが LogMessage 関数です。ほとんどの場合、これは機能しますが、例外がスローされるのは、ログがローテーションされるときだけです。
static void LogMessage(string messageText)
{
string ErrorLogFileName = @"C:\temp\dataTransferErrorLog.txt";
using (StreamWriter Log = File.AppendText(ErrorLogFileName))
{
try
{
Log.WriteLine("{0}: {1}", dateStamp, messageText);
}
catch { }
}
}
アップデート:
static void RunAgent()
{
while (!shutdown)
{
LogMessage("Starting data transfer...");
errors = 0;
// Do some data processing
LogMessage("Finished running with " + errors.ToString() + " error(s).");
RotateLogs();
}
shutdownSignal.Set();
}
以下のコメントで述べましたが、明確にするために、実行中のスレッドは 1 つだけです。これはサービスであるため、別のスレッドにする必要がありますが、実行中のスレッドは 1 つだけです。