Event information model for Toaster
From Yocto Project
Jump to navigationJump to search
This is the information we need for completing the tables of the WebHOB database.
BUILDS
- uuid : DONE : unique task id
- target : N/A : # OneToMany to the targets table
- machine : DONE : # index into all the machines that we support ? # we can ask bitbake for the machine variable
- distro : DONE : # we can ask bitbake for the distro variable
- distro_version : DONE : # we can ask bitbake for the distro version variable
- host_system : N/A
- host_distribution : N/A
- target_system : N/A
- layers : : DONE # index into the layer table ? # we can ask bitbake for the list (BBLAYERS)
- started_on : N/A # Is there a build started event we can use ?
- completed_on N/A # Is there a build success event or should we grab this when events processing has ended ?
- outcome : DONE # We can grab this at the end of all commands by checking the errors number or the return value.
- number_of_errors N/A
- number_of_warnings N/A
- cpu_usage : N/A # it's in the build stats; we don't have a meaning
- disk_io : N/A # it's in the build stats; we don't have a meaning
- log : N/A # main cooker log
- output : N/A # list of generated files; downloads
- build_name : N/A # bitbake generates a name
- bitbake_version : N/A
TASKS
- uuid : DONE -> generated at the beginning of each build.
- task_id :N/A
- order : DONE -> counted on each TaskStarted event
- task_executed : DONE -> set to True for each TaskStarted event
- outcome : DONE? -> retrieved from event.getDisplayName() # is this OK ?
- sstate_checksum : N/A
- path_to_sstate_obj : N/A
- recipe : DONE -> retrieved from event._package
- task_name : DONE -> retrieved from event._task
- index on recipe / task_name
- source_url : N/A
- log_file: N/A
- work_directory : N/A
- script_type : N/A
- file_path : N/A
- line_number : N/A
- py_stack_trace : N/A
- disk_io : N/A
- cpu_usage : N/A
- elapsed_time : DONE -> difference between started and finished time
- errors_no : N/A
- warnings_no : N/A
- error : N/A
- warning : N/A
- sstate_result : N/A
- diffsigs : N/A
TASK DEPENDENCY
- task_id : N/A
- depends_on : N/A # still a task_id
TARGETS
- uuid : N/A # of build that generated the image
- is_image : N/A
- TBC
ARTIFACTS
- uuid : N/A
- target_id : N/A
- file_name : N/A
- file_size : N/A
PACKAGES IN IMAGES
- package_id : N/A
- target_id : N/A
PACKAGES
- package_id : N/A
- recipe : N/A # recipe that generated this package
- name : N/A
- version : N/A
- size : N/A
PACKAGE DEPENDENCIES
- package_id : N/A
- depends_on : N/A
FILELIST
- package_id : N/A # id in the list of packages
- complete file path : N/A
- file size : N/A
RECIPES
- name : N/A
- version : N/A
- layer : N/A # point to a layer index
- summary : N/A
- description : N/A
- section : N/A ?
- license : N/A
- licensing info: N/A ?
- homepage : N/A ?
- bugtracker : N/A ?
- author : N/A ?
- file_path : N/A ?
RECIPE DEPENDENCY
- recipe_id : N/A
- depends_on : N/A # also a recipe id
LAYERS
- name : N/A
- branch : N/A
- commit : N/A
- priority : N/A
- link to oecore layer index: N/A ?
- TBC
VARIABLES
- uuid : N/A
- variable_name : N/A # a list of `bitbake -e`
- variable_value : N/A
- file : N/A # a single file name where the variable is set
- changed : N/A
- human_readable_name : N/A
- description : N/A
MACHINES
- name : N/A
- description : N/A