I've got a problem. I'm writing a benchmark and I have a function than is either done in 2 seconds or after ~5 minutes(depending on the input data). And I would like to stop that function if it's executed for more than 3 seconds...

How can I do it?

Thanks a lot!

link|improve this question

possible duplicate stackoverflow.com/questions/5025509/… – Reniuz Sep 14 '11 at 8:52
Yes, it's duplicate, benchmarking ends in the same way as the any other thread stops. – Artur Mustafin Sep 14 '11 at 9:06
feedback

6 Answers

up vote 1 down vote accepted

The best way would be that your function can check its execution time often enough to decide to stop it it takes too long.

If this is not the case, then run the function in a separate thread. In your main thread start a 3 seconds timer. When timer elapses, kill the separate thread using Thread.Abort() (of course unless the function is already over). See sample code and preacuations of usage in the function docs.

link|improve this answer
That's a lot easier indeed. If you really need to kill the thread in an unfriendly manner, using a thread is the only way I know. – gjvdkamp Sep 14 '11 at 14:09
yeah, this seems to be the easiest and the most straightforward method. Thanks – Novellizator Sep 14 '11 at 20:00
feedback

Run this function in thread and kill it after 3 seconds or check elapsed time inside this function(I think it's loop there).

link|improve this answer
1  
This would just turn the function into a check loop, leaving it no other functionality. Killing the thread is also not guaranteed. It won't get killed until it exits the function anyway. – Maxim V. Pavlov Sep 14 '11 at 8:54
feedback

Since C# and .net framework are not real-time environments, you can't guarantee even the 3 seconds count. Even if you were to get close to that, you would still have to call the

if(timeSpan > TimeSpan.FromSeconds(3) then goto endindentifier; before every other call in the method.

All this is just wrong so no, there is just no reliable way to do it from what I know.

Although you can try this solution

http://kossovsky.net/index.php/2009/07/csharp-how-to-limit-method-execution-time/

but I just wouldn't do such things in .net application.

link|improve this answer
Hi, max. Microsoft windows is also not a real-time OS – Artur Mustafin Sep 14 '11 at 9:00
You can use callbacks with hi perfomance counters on windows using Win32 and interop, then – Artur Mustafin Sep 14 '11 at 9:01
@Artur, the reason I said about .net and not windows, is because C# can also be executed on Unix-based OSs via Mono, and I am not sure if all those Mono-supporting OSs are not real time. It may be possible to assemble a real-time system, but Mono most-likely would never be real time, as well as .Net, simply because there is no need for it,currently. – Maxim V. Pavlov Sep 14 '11 at 9:06
We're speaking of making a difference between 3 seconds and 5 minutes. Not quite an RTOS requirement! – Serge - appTranslator Sep 14 '11 at 9:10
@Serge - I kind of let this req. fly by. Then a Limex approach, Mr. Kossovsky shows in his blog is good. – Maxim V. Pavlov Sep 14 '11 at 9:13
feedback

Use an OS callbacks with a hi performance counter, then kill your thread, if exists

link|improve this answer
Is the API way of killing a managed thread ensures instant (on a next processor iteration) thread kill? – Maxim V. Pavlov Sep 14 '11 at 9:06
feedback

You can use the fork/join pattern, in the Task Parallel Library this is implemented with Task.WaitAll()

using System.Threading.Tasks;

void CutoffAfterThreeSeconds() {

    // start function on seperate thread
    CancellationTokenSource cts = new CancellationTokenSource();
    Task loop = Task.Factory.StartNew(() => Loop(cts.Token));

    // wait for max 3 seconds
    if(Task.WaitAll(new Task[]{loop}, 3000)){
       // Loop finished withion 3 seconds
    } else {
       // it did not finish within 3 seconds
       cts.Cancel();           
    }        
}

// this one takes forever
void Loop() {
    while (!ct.IsCancellationRequested) {
        // your loop goes here
    }
    Console.WriteLine("Got Cancelled");
}

This will start the other task on a seperate thread, and then wait for 3000 milliseconds for it to finish. If it did finish within the timeout, it return true, else false so you can use that to decide what to do next.

You can use a CanellationToken to communicate to the other thread that it result is no longer needed so it can stop gracefully.

Regards Gert-Jan

link|improve this answer
ok, it seems easy and usable :) One last question: how can I cancel the running Loop() in some way? – Novellizator Sep 14 '11 at 13:08
Kind of depende what you're doing there... is it some kind of loop (in which you can ceck the cancellation token?) or do you call into some other code that you can't change? This determines the strategy. If the long runnnig operation is your code, then you cehck the CancellationToken. If it's some other code then you might need to less friendly and really kill the thread. This might lead to inconsistent state though. I'll update the example with a cancellation token. – gjvdkamp Sep 14 '11 at 13:24
ok updated example – gjvdkamp Sep 14 '11 at 13:39
Hi, I didn't think it through well neough. If can change the implementation of the code you;re calling, look at stackoverflow.com/questions/7413612/…. If you cannot change the implementation, then this approach will not work either. I'll change the example again. – gjvdkamp Sep 14 '11 at 13:43
There's actually no way in the TPL to forcefully cancel a task. I guess the easiest approach would actuallt be to check inside the mehtod you're calling to see how long you've been busy and cancel in there. Else use the approach above and use a cancellation token. – gjvdkamp Sep 14 '11 at 13:58
feedback

Well..., I had the same question, and after reading all the answers here and the referred blogs, I settled for this,

It Lets me execute any block of code with a time limit, Declare the wrapper method

    public static bool ExecuteWithTimeLimit(TimeSpan timeSpan, Action codeBlock)
    {
        try
        {
            Task task = Task.Factory.StartNew(() => codeBlock());
            task.Wait(timeSpan);
            return task.IsCompleted;
        }
        catch (AggregateException ae)
        {
            throw ae.InnerExceptions[0];
        }   
    }

And use that to wrap and block of code like this

    // code here

    bool Completed = ExecuteWithTimeLimit(TimeSpan.FromMilliseconds(1000), () =>
    {
         //
         // Write your time bounded code here
         // 
    });

    //More code
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.