Keep app responsive during long task - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T19:46:36Z http://stackoverflow.com/feeds/question/436524 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task 2 Keep app responsive during long task Ulrich Gerhardt http://stackoverflow.com/users/35162 2009-01-12T18:45:01Z 2009-01-13T21:45:43Z <p>A certain form in our application displays a graphical view of a model. The user can, amongst loads of other stuff, initiate a transformation of the model that can take quite some time. This transformation sometimes proceeds without any user interaction, at other times frequent user input is necessary. While it lasts the UI should be disabled (just showing a progress dialog) unless user input is needed.</p> <p>Possible Approaches:</p> <ol> <li>Ignore the issue, just put the transformation code in a procedure and call that. Bad because the app seems hung in cases where the transformation needs some time but requires no user input.</li> <li>Sprinkle the code with callbacks: This is obtrusive - you’d have to put a <strong>lot</strong> of these calls in the transformation code - as well as unpredictable - you could never be sure that you’d found the right spots.</li> <li>Sprinkle the code with Application.ProcessMessages: Same problems as with callbacks. Additionally you get all the issues with ProcessMessages.</li> <li>Use a thread: This relieves us from the “obtrusive and unpredictable” part of 2. and 3. However it is a lot of work because of the “marshalling” that is needed for the user input - call Synchronize, put any needed parameters in tailor-made records etc. It’s also a nightmare to debug and prone to errors.</li> </ol> <p>//EDIT: Our current solution is a thread. However it's a pain in the a** because of the user input. And there can be a lot of input code in a lot of routines. This gives me a feeling that a thread is <strong>not</strong> the right solution.</p> <p>I'm going to embarass myself and post an outline of the unholy mix of GUI and work code that I've produced:</p> <pre><code>type // Helper type to get the parameters into the Synchronize'd routine: PGetSomeUserInputInfo = ^TGetSomeUserInputInfo; TGetSomeUserInputInfo = record FMyModelForm: TMyModelForm; FModel: TMyModel; // lots of in- and output parameters FResult: Boolean; end; { TMyThread } function TMyThread.GetSomeUserInput(AMyModelForm: TMyModelForm; AModel: TMyModel; (* the same parameters as in TGetSomeUserInputInfo *)): Boolean; var GSUII: TGetSomeUserInputInfo; begin GSUII.FMyModelForm := AMyModelForm; GSUII.FModel := AModel; // Set the input parameters in GSUII FpCallbackParams := @GSUII; // FpCallbackParams is a Pointer field in TMyThread Synchronize(DelegateGetSomeUserInput); // Read the output parameters from GSUII Result := GSUII.FResult; end; procedure TMyThread.DelegateGetSomeUserInput; begin with PGetSomeUserInputInfo(FpCallbackParams)^ do FResult := FMyModelForm.DoGetSomeUserInput(FModel, (* the params go here *)); end; { TMyModelForm } function TMyModelForm.DoGetSomeUserInput(Sender: TMyModel; (* and here *)): Boolean; begin // Show the dialog end; function TMyModelForm.GetSomeUserInput(Sender: TMyModel; (* the params again *)): Boolean; begin // The input can be necessary in different situations - some within a thread, some not. if Assigned(FMyThread) then Result := FMyThread.GetSomeUserInput(Self, Sender, (* the params *)) else Result := DoGetSomeUserInput(Sender, (* the params *)); end; </code></pre> <p>Do you have any comments?</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/436533#436533 1 Answer by duffymo for Keep app responsive during long task duffymo http://stackoverflow.com/users/37213 2009-01-12T18:47:25Z 2009-01-12T18:47:25Z <p>Process asynchronously by sending a message to a queue and have the listener do the processing. The controller sends an ACK message to the user that says "We've received your request for processing. Please check back later for results." Give the user a mailbox or link to check back and see how things are progressing.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/436542#436542 4 Answer by James Burgess for Keep app responsive during long task James Burgess http://stackoverflow.com/users/2951 2009-01-12T18:51:50Z 2009-01-12T19:02:13Z <p>Definitely go for a threaded option (<strong><em>even</em></strong> after your edit, saying you find it complex). <a href="http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task#436533">The solution that duffymo suggests</a> is, in my opinion, very poor UI design (even though it's not explicitly about the appearance, it is about how the user interfaces with your application). Programs that do this are annoying, because you have no idea how long the task will take, when it will complete, etc. The only way this approach could be made better would be by stamping the results with the generation date/time, but even then you require the user to remember when they started the process.</p> <p>Take the time/effort and make the application useful, informative and less frustrating for your end user.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/436545#436545 2 Answer by Bernd Ott for Keep app responsive during long task Bernd Ott http://stackoverflow.com/users/44462 2009-01-12T18:52:53Z 2009-01-12T18:52:53Z <p>TThread is perfect and easy to use.</p> <p>Develope and debug your slow function.</p> <p>if it is ready, put the call into the tthread execute method. Use the onThreadTerminate Event to find out the end of you function.</p> <p>for user feedback use syncronize!</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/436682#436682 2 Answer by mghie for Keep app responsive during long task mghie http://stackoverflow.com/users/30568 2009-01-12T19:31:22Z 2009-01-13T08:22:36Z <p>For an optimal solution you will have to analyse your code anyway, and find all the places to check whether the user wants to cancel the long-running operation. This is true both for a simple procedure and a threaded solution - you want the action to finish after a few tenths of a second to have your program appear responsive to the user.</p> <p>Now what I would do first is to create an interface (or abstract base class) with methods like:</p> <pre><code>IModelTransformationGUIAdapter = interface function isCanceled: boolean; procedure setProgress(AStep: integer; AProgress, AProgressMax: integer); procedure getUserInput1(...); .... end; </code></pre> <p>and change the procedure to have a parameter of this interface or class:</p> <pre><code>procedure MyTransformation(AGuiAdapter: IModelTransformationGUIAdapter); </code></pre> <p>Now you are prepared to implement things in a background thread or directly in the main GUI thread, the transformation code itself will not need to be changed, once you have added code to update the progress and check for a cancel request. You only implement the interface in different ways.</p> <p>I would definitely go without a worker thread, especially if you want to disable the GUI anyway. To make use of multiple processor cores you can always find parts of the transformation process that are relatively separated and process them in their own worker threads. This will give you much better throughput than a single worker thread, and it is easy to accomplish using <a href="http://andy.jgknet.de/blog/?page_id=100" rel="nofollow">AsyncCalls</a>. Just start as many of them in parallel as you have processor cores.</p> <p><strong>Edit:</strong></p> <p>IMO <a href="http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task#436746">this answer</a> by Rob Kennedy is the most insightful yet, as it does not focus on the details of the implementation, but on the best experience for the user. This is surely the thing your program should be optimised for.</p> <p>If there really is no way to either get all information before the transformation is started, or to run it and patch some things up later, then you still have the opportunity to make the computer do more work so that the user has a better experience. I see from your various comments that the transformation process has a lot of points where the execution branches depending on user input. One example that comes to mind is a point where the user has to choose between two alternatives (like horizontal or vertical direction) - you could simply use AsyncCalls to initiate both transformations, and there are chances that the moment the user has chosen his alternative both results are already calculated, so you can simply present the next input dialog. This would better utilise multi-core machines. Maybe an idea to follow up on.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/436746#436746 4 Answer by Rob Kennedy for Keep app responsive during long task Rob Kennedy http://stackoverflow.com/users/33732 2009-01-12T19:46:40Z 2009-01-12T19:46:40Z <p>I think as long as your long-running transformations require user interaction, you're not going to be truly happy with any answer you get. So let's back up for a moment: Why do you need to interrupt the transformation with requests for more information? Are these really questions you couldn't have anticipated before starting the transformation? Surely the users aren't too happy about the interruptions, either, right? They can't just set the transformation going and then go get a cup of coffee; they need to sit and watch the progress bar in case there's an issue. Ugh.</p> <p>Maybe the issues the transformation encounters are things that could be "saved up" until the end. Does the transformation <em>need</em> to know the answers immediately, or could it finish everything else, and then just do some "fix-ups" afterward?</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/437104#437104 1 Answer by skamradt for Keep app responsive during long task skamradt http://stackoverflow.com/users/9217 2009-01-12T21:37:45Z 2009-01-12T21:37:45Z <p>While I don't completely understand what your trying to do, what I can offer is my view on a possible solution. My understanding is that you have a series of n things to do, and along the way decisions on one could cause one or more different things to be added to the "transformation". If this is the case, then I would attempt to separate (as much as possible) the GUI and decisions from the actual work that needs to be done. When the user kicks off the "transformation" I would (not in a thread yet) loop through each of the necessary decisions but not performing any work...just asking the questions required to do the work and then pushing the step along with the parameters into a list.</p> <p>When the last question is done, spawn your thread passing it the list of steps to run along with the parameters. The advantage of this method is you can show a progress bar of 1 of n items to give the user an idea of how long it might take when they come back after getting their coffee.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/437478#437478 0 Answer by Steve for Keep app responsive during long task Steve http://stackoverflow.com/users/22712 2009-01-12T23:34:11Z 2009-01-12T23:34:11Z <p>If you can split your transformation code into little chunks, then you can run that code when the processor is idle. Just create an event handler, hook it up to the Application.OnIdle event. As long as you make sure that each chunk of code is fairly short (the amount of time you want the application to be unresponsive...say 1/2 a second. The important thing is to set the done flag to false at the end of your handler :</p> <pre><code>procedure TMyForm .IdleEventHandler(Sender: TObject; var Done: Boolean); begin {Do a small bit of work here} Done := false; end; </code></pre> <p>So for example if you have a loop, instead of using a for loop, use a while loop, make sure the scope of the loop variable is at the form level. Set it to zero before setting the onIdle event, then for example perform 10 loops per onidle hit until you hit the end of the loop.</p> <pre><code>Count := 0; Application.OnIdle := IdleEventHandler; ... ... procedure TMyForm .IdleEventHandler(Sender: TObject; var Done: Boolean); var LocalCount : Integer; begin LocalCount := 0; while (Count &lt; MaxCount) and (Count &lt; 10) do begin {Do a small bit of work here} Inc(Count); Inc(LocalCount); end; Done := false; end; </code></pre> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/438341#438341 2 Answer by Daniel Paull for Keep app responsive during long task Daniel Paull http://stackoverflow.com/users/43066 2009-01-13T08:40:24Z 2009-01-13T08:40:24Z <p>I think your folly is thinking of the transformation as a single task. If user input is required as part of the calculation and the input asked for depends on the caclulation up to that point, then I would refactor the single task into a number of tasks.</p> <p>You can then run a task, ask for user input, run the next task, ask for more input, run the next task, etc.</p> <p>If you model the process as a workflow, it should become clear what tasks, decisions and user input is required.</p> <p>I would run each task in a background thread to keep the user interface interactive, but without all the marshaling issues.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/438433#438433 1 Answer by mj2008 for Keep app responsive during long task mj2008 http://stackoverflow.com/users/5544 2009-01-13T09:24:46Z 2009-01-13T09:24:46Z <p>I'd certainly go with threads. Working out how a thread will interact with the user is often difficult, but the solution that has worked well for me is to not have the thread interact with the user, but have the user side GUI interact with the thread. This solves the problem of updating the GUI using synchronize, and gives the user more responsive activity. </p> <p>So, to do this, I use various variables in the thread, accessed by Get/Set routines that use critical sections, to contain status information. For starters, I'd have a "Cancelled" property for the GUI to set to ask the thread to stop please. Then a "Status"property that indicates if the thread is waiting, busy or complete. You might have a "human readable" status to indicate what is happening, or a percentage complete. </p> <p>To read all this information, just use a timer on the form and update. I tend to have a "statusChanged" property too, which is set if one of the other items needs refreshing, which stops too much reading going on.</p> <p>This has worked well for me in various apps, including one which displays the status of up to 8 threads in a list box with progress bars.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/438450#438450 0 Answer by Ulrich Gerhardt for Keep app responsive during long task Ulrich Gerhardt http://stackoverflow.com/users/35162 2009-01-13T09:34:51Z 2009-01-13T09:34:51Z <p>Thank you all very much for your answers. You've provided me with a lot of options to think about and new views on facets where I got stuck.</p> http://stackoverflow.com/questions/436524/keep-app-responsive-during-long-task/440925#440925 1 Answer by lkessler for Keep app responsive during long task lkessler http://stackoverflow.com/users/30176 2009-01-13T21:45:43Z 2009-01-13T21:45:43Z <p>If you decide going with Threads, which I also find somewhat complex the way they are implemented in Delphi, I would recommend the <a href="http://otl.17slon.com/" rel="nofollow">OmniThreadLibrary</a> by Primož Gabrijelčič or <a href="http://stackoverflow.com/users/4997/gabr">Gabr</a> as he is known here at Stack Overflow.</p> <p>It is the simplest to use threading library I know of. Gabr writes great stuff.</p>