I am very new to c# programming, so that in mind:

I have an in-memory data object with data I need to save the information when(if) my application were to crash OR closed. Is there a way to do this deterministically or reliably?

I have been looking at destructors

~MyObjectName(){}

finalizers and Dispose(),

but as far as I understand none of these will do reliably what I want?

Currently I am using the destructor, and it works when I am closing the program, but this doesn't mean it will work on crashing, or always.

Should I be looking at events as well?

link|improve this question

1  
If your application is crashing then you cannot guarantee the object's state you want to save is valid. Wouldn't it be easier to make sure your application doesn't crash? – Ramhound Feb 17 at 12:15
The application is huge. There are only certain state variables/in-memory tables etc. that I would like to save. I inherited the project, so although it would be my choice of action normally, in this situation, it is not possible to debug and ensure it will not crash. – Vort3x Feb 17 at 14:36
feedback

3 Answers

up vote 4 down vote accepted

There is no 100% reliable mechanism that you can use to save data (or do anything else for that matter) when a process (any process, not just a .Net process) terminates - most processes can be terminated at any point using the "End Process" option in the task manager, when this happens the process is immediately killed. As a more extreme example the power cord could be pulled out the back of the machine.

If its not 100% necessary that this data object be up-to-date and saved once the process is killed then the AppDomain.UnhandledException Event may suffice.

If its absolutely 100% necessary that this be the case then you need to be continuously saving this information as the process is running - there is absolutely no guarentee that you will get a chance to do it at a later date. This is how databases operate, no transaction returns until some record of the change has been recorded to disk in some format (e.g. a transaction log). This is what the D stands for in ACID.

link|improve this answer
You make very good and valid points, but UnhandledException Event is more the type of thing I was looking for. When I said closed or crash, I meant a software failure (exceptions) or the user terminating the application. Unfortunately the performance of writing to disk the entire time as in a DB is too slow. What I am actually trying to do is just save as much information as possible, to lessen the load when the application is rebooted. – Vort3x Feb 17 at 14:49
@Vort3x If data integrity isn't at state I would just use the unhandled exception event. – Justin Feb 17 at 14:50
Yes, it seems to me the best solution. Probably the main data I want saved, is a cache of UDP datagrams that have been received that are sequenced. If the program crashes, I have to re-request those messages from the source, which halts processing of packets, but if I can save at least what is currently in the cash, I can cut back on the number of re-requests, meaning shorter halt-time. – Vort3x Feb 17 at 15:07
feedback

I believe you are looking for catching unhandled exceptions? something like this:

static void Main()
{
  Application.EnableVisualStyles();
  Application.SetCompatibleTextRenderingDefault(false);

  Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadException);
  AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

  Application.Run(new Form1());
}

static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
{
  MessageBox.Show(e.Exception.Message, "Unhandled Thread Exception");
  // here you can log the exception ...
}

static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
  MessageBox.Show((e.ExceptionObject as Exception).Message, "Unhandled UI Exception");
  // here you can log the exception ...
}

This example shows how to manage all exceptions that haven't been caught in the try-catch sections (in Windows Forms application).

The UnhandledException event handles uncaught exceptions thrown from the main UI thread. The ThreadException event handles uncaught exceptions thrown from non-UI threads.

link|improve this answer
Yes, something like this. – Vort3x Feb 17 at 14:51
feedback

You can achieve this with windbg.

  1. Keep a breakpoint in zwterminateprocess method in windbg. This method will be called when your application exits.
  2. when the breakpoint is reached , use !dumpheap -type MyObjectName to get the address of your object
  3. Use !dumpobject "address of MyObjectName" to know the values inside the object
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.