1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
# Scheduling Tasks in Liquidsoap
Liquidsoap includes a lightweight scheduler that lets you run code at specific times or on a recurring basis.
This is useful for automating things like playing a file every hour, announcing the top of the hour, or triggering a command at a specific time.
Scheduling in Liquidsoap works through **threads** — simple tasks that run in the background without interrupting your media streams.
These threads are managed by the scheduler and executed as needed. They’re not operating system threads, just scheduled functions.
There are four main APIs available for scheduling:
- `thread.run` – run a task on a regular interval
- `thread.when` – run a task when a time-based condition becomes true
- `cron.add` / `cron.remove` – schedule tasks using familiar cron syntax
- `thread.run.recurrent` – an advanced interface for custom scheduling
This page walks you through the first three, with examples to get you started.
If you are looking for a more in-depth example of how to use the scheduler, you can refer to our blog post [Precise scheduling of tracks](https://www.liquidsoap.info/blog/2023-03-25-precise-scheduling-of-tracks/)
## `thread.run`: Simple Repeating Tasks
Use `thread.run` when you want to run a task repeatedly every N seconds. This is the most straightforward scheduling method.
### Example: Log a message every 10 minutes
```{.liquidsoap include="scheduling_simple.liq"}
```
This task will run every 600 seconds (10 minutes), logging a message.
You can schedule any function here — such as sending metadata, modifying a source, or queueing a track.
### Example: Play a file every hour
```{.liquidsoap include="scheduling_queue.liq" from="BEGIN" to="END"}
```
In this case, we assume that `request_queue` is a `request.queue` source used elsewhere in your script.
## `thread.when`: Run at a Specific Time
To schedule a task at a specific time, use `thread.when`. It takes a [time predicate](language.html#time-predicates) — a Liquidsoap-specific language construct that returns `true` when the current time matches the given interval or time.
### Example: Run a task at 9:00 AM
```{.liquidsoap include="scheduling_9am.liq"}
```
This function is ran every time the predicates returns `true`, which should be during the 9th hour of the morning (hours are in 24h format).
You can refer to the `thread.when` and `predicate.activates` documentation for more details about the implementation.
### Example: Queue a track at midnight
```{.liquidsoap include="scheduling_queue_midnight.liq" from="BEGIN" to="END"}
```
## `cron.add` and `cron.remove`: Cron-style Scheduling
If you’re used to cron syntax, you can use `cron.add` to schedule tasks using a familiar string format.
```{.liquidsoap include="cron_add.liq"}
```
This example runs the task every day at 12:00 PM.
If needed, the function returns a unique identifier for the task, which you can use to remove it later:
```{.liquidsoap include="cron_id.liq"}
```
### Explicit IDs
You can also pass an explicit ID:
```{.liquidsoap include="cron_id_arg.liq"}
```
If the ID is already registered, Liquidsoap will raise an error. This is useful for keeping track of scheduled tasks in complex scripts using meaningful IDs.
### Removing a Cron Task
To remove a task, use `cron.remove` with its ID:
```{.liquidsoap include="cron_remove.liq"}
```
### Cron Syntax Recap
Cron strings follow the standard format:
```
minute hour day-of-month month day-of-week
```
Examples:
- `"0 0 * * *"` – every day at midnight
- `"*/5 * * * *"` – every 5 minutes
- `"15 14 * * 1-5"` – weekdays at 2:15 PM
The implementation also supports the following shorthands: `@annually`, `@yearly`, `@daily`, `@hourly`, `@monthly` and `@weekly`.
## Advanced: `thread.run.recurrent`
For more complex scheduling needs, advanced users may use `thread.run.recurrent`. It allows full control over how a task is rescheduled after each execution, making it possible to implement dynamic or irregular schedules.
Most users won’t need this API, but it’s available if `thread.run` or `cron.add` don’t fit your needs.
|