Sched.jl

Sched.jl

A Julia event scheduler inspired by Python sched.

Sched.SchedModule.

A generally useful event scheduler class. Each instance of this class manages its own queue. No multi-threading is implied; you are supposed to hack that yourself, or use a single instance per application. Each instance is parametrized with two functions, one that is supposed to return the current time, one that is supposed to implement a delay. You can implement real-time scheduling by substituting time and sleep from built-in module time, or you can implement simulated time by writing your own functions. This can also be used to integrate scheduling with STDWIN events; the delay function is allowed to modify the queue. Time can be expressed as integers or floating point numbers, as long as it is consistent. Events are specified by tuples (time, priority, action, argument, kwargs). As in UNIX, lower priority numbers mean higher priority; in this way the queue can be maintained as a priority queue. Execution of the event means calling the action function, passing it the argument sequence in "argument" (remember that in Python, multiple function arguments are be packed in a sequence) and keyword parameters in "kwargs". The action function may be an instance method so it has another way to reference private data (besides global variables).

source

Install

Sched is a registered package. To add it to your Julia packages, simply do the following in REPL:

Pkg.add("Sched")

Usage

using Sched

sched = Scheduler()

# Time as Float64
# global _time = time

# Time as DateTime
global _time = UTCDateTimeFunc

function print_time_noparam()
    println("From print_time_noparam $(_time())")
end

function print_time_args(x)
    println("From print_time_args $(_time()) $x")
end

function print_time_kwargs(; a="default")
    println("From print_time_kwargs $(_time()) $a")
end

function print_some_times()
    println(_time())
    enter(sched, Dates.Second(10), 1, print_time_noparam)
    enter(sched, Dates.Second(5), 2, print_time_args, ("positional, argument"))
    enter(sched, Dates.Second(5), 1, print_time_kwargs; Dict(:a=>"keyword")...)
    run(sched)
    println(_time())
end

print_some_times()

Download example

Contents

Syntax

Sched.SchedulerType.
Scheduler(; timefunc=_time, delayfunc=sleep)

Initialize a new Scheduler instance, passing optionaly the time and delay functions

The scheduler struct defines a generic interface to scheduling events. It needs two functions to actually deal with the “outside world”

  • The timefunc should be callable without arguments, and return a number (the “time”, in any units whatsoever). timefunc default is UTCDateTimeFunc.

  • The delayfunc function should be callable with one argument, compatible with the output of timefunc, and should delay that many time units. delayfunc will also be called with the argument 0 after each event is run to allow other threads an opportunity to run in multi-threaded applications.

source
Sched.enterabsFunction.
enterabs(sched, time_, priority, action, args...; kwargs...)

Enter a new event in the queue at an absolute time. Returns an ID for the event which can be used to remove it, if necessary.

source
Sched.enterFunction.
enter(sched, delay, priority, action, args...; kwargs...)

Enter a new event in the queue at a relative time. A variant of enterabs that specifies the time as a relative time. This is actually the more commonly used interface.

source
Sched.cancelFunction.
cancel(sched, event)

Remove an event from the queue. This must be presented the ID as returned by enter(). If the event is not in the queue, this raises ValueError.

source
Base.isemptyFunction.
isempty(collection) -> Bool

Determine whether a collection is empty (has no elements).

Examples

julia> isempty([])
true

julia> isempty([1 2 3])
false
source
isempty(cb)

Test whether the buffer is empty.

isempty(sched) -> Bool

Check whether the queue is empty.

source
Base.runFunction.
run(command, args...; wait::Bool = true)

Run a command object, constructed with backticks. Throws an error if anything goes wrong, including the process exiting with a non-zero status (when wait is true).

If wait is false, the process runs asynchronously. You can later wait for it and check its exit status by calling success on the returned process object.

When wait is false, the process' I/O streams are directed to devnull. When wait is true, I/O streams are shared with the parent process. Use pipeline to control I/O redirection.

source
run(sched; blocking=true)

Execute events until the queue is empty. If blocking is False executes the scheduled events due to expire soonest (if any) and then return the deadline of the next scheduled call in the scheduler. When there is a positive delay until the first event, the delay function is called and the event is left in the queue; otherwise, the event is removed from the queue and executed (its action function is called, passing it the argument). If the delay function returns prematurely, it is simply restarted. It is legal for both the delay function and the action function to modify the queue or to raise an exception; exceptions are not caught but the scheduler's state remains well-defined so run() may be called again. A questionable hack is added to allow other threads to run: just after an event is executed, a delay of 0 is executed, to avoid monopolizing the CPU when other threads are also runnable.

source
Sched.queueFunction.
queue(sched)

Return an ordered list of upcoming events.

source

Package Internals

Sched.EventType.
Event(time_, priority, action, args...; kwargs...)

Event structure

  • time_: Numeric type compatible with the return value of the timefunc function passed to the constructor.'
  • priority: Events scheduled for the same time will be executed in the order of their priority.
  • action: Executing the event means executing action(args...; kwargs...)
  • args: args is a sequence holding the positional arguments for the action.
  • kwargs: kwargs is a dictionary holding the keyword arguments for the action.
source
Sched.PriorityType.
Priority(time_, priority)

Priority of events

source
Sched.TimeFuncType.

Abstract type for struct that returns real-time or simulated time when called (functor)

source
UTCDateTimeFuncStruct()

Functor that return real-time as DateTime (UTC) when called

source
FloatTimeFuncStruct()

Functor that return real-time as Float when called

source

See also