Giter Club home page Giter Club logo

Comments (4)

Rison-Hub avatar Rison-Hub commented on June 9, 2024 1

thank you

from clearscript.

ClearScriptLib avatar ClearScriptLib commented on June 9, 2024

Hi @Rison-Hub,

The only way to achieve that is to have the host and script implement a play/pause/exit protocol of some sort.

For example, the host could expose a property that the script periodically checks to determine whether to continue, await a continuation signal, or exit.

Good luck!

from clearscript.

Rison-Hub avatar Rison-Hub commented on June 9, 2024

Can you provide me with a simple demo for reference?

from clearscript.

ClearScriptLib avatar ClearScriptLib commented on June 9, 2024

Hi @Rison-Hub,

Can you provide me with a simple demo for reference?

Sure. Here's a class that provides basic pause/resume/terminate support:

public class ScriptControl {
    private readonly ManualResetEventSlim _notPaused = new(true);
    private bool _terminationRequested;
    public void Pause() => _notPaused.Reset();
    public void Resume() => _notPaused.Set();
    public void Terminate() => _terminationRequested = true;
    public bool CanContinue() {
        if (_terminationRequested) return false;
        _notPaused.Wait();
        return true;
    }
}

To use it, let's kick off a script execution thread:

var scriptControl = new ScriptControl();
var scriptThread = new Thread(() => {
    using var engine = new V8ScriptEngine();
    engine.AddHostType(typeof(Console));
    engine.Script.canContinue = new Func<bool>(scriptControl.CanContinue);
    engine.Script.sleep = new Action<int>(Thread.Sleep);
    engine.Execute(@"
        while (true) {
            if (!canContinue()) break;
            Console.WriteLine('Script running...');
            sleep(500);
        }
    ");
});
scriptThread.Start();

We can now control script execution as follows:

Thread.Sleep(2000);
scriptControl.Pause();
Console.WriteLine("Script paused for 5 seconds.");
Thread.Sleep(5000);
scriptControl.Resume();
Thread.Sleep(2000);
scriptControl.Terminate();
scriptThread.Join();
Console.WriteLine("Script terminated.");

This is just a simple example, but hopefully it gives you an idea of what's possible.

Cheers!

from clearscript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.