Add Tiled structure clients for common AFL features #67
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces new functionality and improvements to the
AFL/automation/APIServer/data/TiledClients
module. The most important changes include adding new methods for sample and task management, defining a new class for driver tasks, and updating thesetup.py
file to include the new class.Enhancements to Sample and Task Management:
list_samples
,list_drivers
,list_tasks
,task_uuid
,task
,al_campaign_name
, anddataset_for_task
to theCatalogOfAFLEvents
class to facilitate better querying and data handling. (AFL/automation/APIServer/data/TiledClients/CatalogOfAFLEvents.py
) [1] [2]New Driver Task Class:
DriverTask
class, a subclass oftiled.ArrayClient
, which includes properties forstart_time
,end_time
,queued_time
,exit_state
,return_val
,task_name
, andtask
to provide detailed metadata about driver tasks. (AFL/automation/APIServer/data/TiledClients/DriverTask.py
)Setup Configuration:
setup.py
file to register the newDriverTask
class with the entry pointafl.driver_task
. (setup.py
)