Commit Graph

17 Commits

Author SHA1 Message Date
ee5312fa1b
Started work on making tasks forcefully quit after a maximum time has expired.
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
2020-06-06 00:11:27 +02:00
20994674a4
Finished tasks are no longer loaded in SuperVisor.
All checks were successful
continuous-integration/drone/push Build is passing
By adding a parameter in TaskStorage, it is now possible to distinguish between finished and unfinished tasks.
Finished tasks are those tasks that have a status of Task::COMPLETED or Task::CANCELLED. Unfinished tasks are all others.

This allows the SuperVisor to not bother with the mountain of tasks that will be saved during large projects.
2020-06-05 16:35:15 +02:00
d42e7f23ef
Implemented proper dependencies.
All checks were successful
continuous-integration/drone/push Build is passing
Dependencies can now pass output to each other using the DependentTaskHandler.
Also fixed some general problems in the Tasks class, for instance the Executor not starting correctly because of problematic parameters.
Also, SuperVisor now sets the output of a Task using the last output of the task, and not the first.
2020-06-05 15:23:21 +02:00
fc83a931ae
Return all output when providing attempt = 0.
When providing $attempt = 0 at readTaskOutput and readPostOutput, all output shall be returned.
This is the default return. Hence, a lot of tests had to be altered slightly.
2020-06-04 21:58:22 +02:00
4f39b0bec3
Changed the way task output and post output is saved.
Redis now saves all output for a task within a hash. This hash contains individual tasks and all its output.
Attempts also start at 1, since that makes most sense for this context. When output is written, the TaskStorage must figure out at which attempt the Task is.
2020-06-04 21:29:37 +02:00
902693dbbe
Implemented Parent Handlers.
All checks were successful
continuous-integration/drone/push Build is passing
Parent Handlers can be stacked to run in succession. Output is transfered as input into the child handler which can continue with it. If the parent Handler fails, all Child handlers also fail.
2020-06-03 17:00:44 +02:00
4555957292
Made Handlers an object instead of a string reference.
All checks were successful
continuous-integration/drone/push Build is passing
Handlers should now be added as objects, adding some flexibility to the developer.
Developers are still cautioned to take great care that Handlers work approriately. Handlers can potentially crash the SuperVisor if not taken good care of.
2020-06-03 11:35:16 +02:00
d9da4cfc95
Try with only Redis.
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-26 17:56:15 +02:00
5f5718cb72
Made many changes. Fixed race-conditions in test code.
Some checks failed
continuous-integration/drone/push Build is failing
2020-05-26 16:16:50 +02:00
db08da8213
Now try while flushing a selected database.
Some checks failed
continuous-integration/drone/push Build is failing
2020-05-26 13:53:10 +02:00
18d702ec26
Try again in the new environment.
Some checks failed
continuous-integration/drone/push Build is failing
2020-05-26 13:35:07 +02:00
1dacc29d86
Maybe Events are the problem?
Some checks failed
continuous-integration/drone/push Build is failing
2020-05-19 22:19:55 +02:00
5f369c784b
Added TaskModifyEvent.
Some checks failed
continuous-integration/drone/push Build is failing
Event gets fired when an Event is modified by sending it to TaskStorage::modifyEvent. This allows components to observe changes and report these to the user. Might also be useful to cancel unwanted changes.
2020-05-19 22:07:44 +02:00
8bcebfc1c3
Made the Docker image Alpine-based. Should work better when running Async in a Cron environment.
Also removed compatibility with PHP 7.2.
2020-05-19 12:01:48 +02:00
72cd7637b5
Implemented many unit tests.
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-16 19:12:22 +02:00
4639660640
Added separate environments for DummyTaskStorage and RedisTaskStorage.
All checks were successful
continuous-integration/drone/push Build is passing
System now uses environment variables imported through Docker. See test/config.tasks.php for all environment options available.
2020-05-15 21:19:35 +02:00
3499eed388
Started implementing Drone 2020-05-15 18:26:30 +02:00