Computation with time limit

后端 未结 9 2295
你的背包
你的背包 2021-01-02 12:08

I\'m trying to write a construct which allows me to run computations in a given time window. Something like:

def expensiveComputation(): Double = //... some          


        
相关标签:
9条回答
  • 2021-01-02 12:47

    Only an idea: I am not so familiar with akka futures. But perhaps its possible to stick the future executing thread to the current thread and use akka futures with timeouts?

    0 讨论(0)
  • 2021-01-02 12:48

    For a generic solution (without having to go litter each of your expensiveComputations with checkTimeout() code) perhaps use Javassist. http://www.csg.is.titech.ac.jp/~chiba/javassist/
    You can then insert various checkTimeout() methods dynamically.
    Here is the intro text on their website:

    Javassist (Java Programming Assistant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java; it enables Java programs to define a new class at runtime and to modify a class file when the JVM loads it. Unlike other similar bytecode editors, Javassist provides two levels of API: source level and bytecode level. If the users use the source-level API, they can edit a class file without knowledge of the specifications of the Java bytecode. The whole API is designed with only the vocabulary of the Java language. You can even specify inserted bytecode in the form of source text; Javassist compiles it on the fly. On the other hand, the bytecode-level API allows the users to directly edit a class file as other editors.

    Aspect Oriented Programming: Javassist can be a good tool for adding new methods into a class and for inserting before/after/around advice at the both caller and callee sides.

    Reflection: One of applications of Javassist is runtime reflection; Javassist enables Java programs to use a metaobject that controls method calls on base-level objects. No specialized compiler or virtual machine are needed.

    0 讨论(0)
  • 2021-01-02 12:48

    In the currentThread?? Phhhew... Check after each step in computation Well if your "expensive computation" can be broken up into multiple steps or has iterative logic you could capture the time when you start and then check periodically between your steps. This is by no means a generic solution but will work.

    For a more generic solution you might make use of aspects or annotation processing, that automatically litters your code with these checks. If the "check" tells you that your time is up return None.

    Ill ponder a solution in java quickly below using annotations and an annotation processor...

    public abstract Answer{}
    public class Some extends Answer {public Answer(double answer){answer=answer}Double answer = null;}
    public class None extends Answer {}
    
    
    //This is the method before annotation processing
    @TimeLimit(45)
    public Answer CalculateQuestionToAnswerOf42() {
     double fairydust = Math.Pi * 1.618;
     double moonshadowdrops = (222.21) ^5;
     double thedevil == 222*3;
     return new Answer(fairydust + moonshadowdrops + thedevil);
    }
    
    //After annotation processing
    public Answer calculateQuestionToAnswerOf42() {
     Date start = new Date() // added via annotation processing;
     double fairydust = Math.Pi * 1.618; 
     if(checkTimeout(start, 45)) return None; // added via annotation processing;
     double moonshadowdrops = (222.21) ^5;
     if(checkTimeout(start, 45)) return None; // added via annotation processing;
     double thedevil == 222*3;
     if(checkTimeout(start, 45)) return None; // added via annotation processing;
     return new Answer(fairydust + moonshadowdrops + thedevil);
    }
    
    0 讨论(0)
  • 2021-01-02 12:52

    Runs the given code block or throws an exception on timeout:

    @throws(classOf[java.util.concurrent.TimeoutException])
    def timedRun[F](timeout: Long)(f: => F): F = {
    
      import java.util.concurrent.{Callable, FutureTask, TimeUnit}
    
      val task = new FutureTask(new Callable[F]() {
        def call() = f
      })
    
      new Thread(task).start() 
    
      task.get(timeout, TimeUnit.MILLISECONDS)
    }
    
    0 讨论(0)
  • 2021-01-02 12:54

    If you're very seriously in need of this you could create a compiler plugin that inserts check blocks in loops and conditions. These check blocks can then check Thread.isInterrupted() and throw an Exception to escape.

    You could possibly use an annotation, i.e. @interruptible, to mark the methods to enhance.

    0 讨论(0)
  • 2021-01-02 12:55

    If you want to run the task in the current thread and if there should be no other threads involved, you would have to check whether the time limit is over inside of expensiveComputation. For example, if expensiveComputation is a loop, you could check for the time after each iteration.

    0 讨论(0)
提交回复
热议问题