Progress Service
Bases: Service
Monitors and reports progress of various components through the system pipeline.
Tracks the creation and completion status of multiple object types (lessons, prompts, documents, observations, engrams, indices) in parent-child hierarchies, calculates completion percentages, and notifies the system when objects are fully processed.
Attributes:
Name | Type | Description |
---|---|---|
progress_array |
dict[str, ProgressArray]
|
Maps object IDs to their progress tracking data. |
lookup_array |
dict[str, str]
|
Quick reverse lookup from child-id to parent-id. |
tracking_array |
dict[str, BubbleReturn]
|
Stores progress aggregation data by tracking ID. |
Methods:
Name | Description |
---|---|
on_lesson_created |
Handles lesson creation events. |
on_prompt_created |
Handles prompt creation events. |
on_document_created |
Handles document creation events. |
on_observation_created |
Handles observation creation events. |
on_engrams_created |
Handles engrams creation events. |
on_indices_created |
Handles indices creation events. |
Source code in src/engramic/application/progress/progress_service.py
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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
|
BubbleReturn
dataclass
Stores aggregated progress data during bubble-up operations.
Used to track completion metrics as progress propagates up the object hierarchy.
Attributes:
Name | Type | Description |
---|---|---|
total_indices |
int
|
Total number of indices to be processed. |
completed_indices |
int
|
Number of indices already processed. |
is_complete |
bool
|
Whether the entire processing chain is complete. |
root_node |
str
|
ID of the root node in the processing hierarchy. |
target_id |
str | None
|
ID of the target object. |
Source code in src/engramic/application/progress/progress_service.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
ProgressArray
dataclass
Stores progress tracking data for a single object in the system.
Attributes:
Name | Type | Description |
---|---|---|
item_type |
str
|
Type of the object being tracked (lesson, prompt, document, etc). |
tracking_id |
str | None
|
Identifier used to track a processing chain. |
children_is_complete_array |
dict[str, bool]
|
Maps child IDs to completion status. |
target_id |
str | None
|
ID of the target object (usually a document). |
Source code in src/engramic/application/progress/progress_service.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
__init__(host)
Initializes the ProgressService.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
host
|
Host
|
The host environment providing access to system resources. |
required |
Source code in src/engramic/application/progress/progress_service.py
87 88 89 90 91 92 93 94 95 96 97 98 |
|
on_document_created(msg)
Handles the creation of a new document in the system.
Sets up progress tracking for the document and connects it to its parent if one exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
dict[str, Any]
|
Message containing document creation details. |
required |
Source code in src/engramic/application/progress/progress_service.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|
on_engrams_created(msg)
Handles the creation of new engrams in the system.
Sets up progress tracking for multiple engrams and connects them to their parent.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
dict[str, Any]
|
Message containing engram creation details. |
required |
Source code in src/engramic/application/progress/progress_service.py
245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
|
on_indices_created(msg)
Handles the creation of new indices in the system.
Sets up progress tracking for multiple indices and connects them to their parent. Updates tracking metrics for the processing chain.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
dict[str, Any]
|
Message containing index creation details. |
required |
Source code in src/engramic/application/progress/progress_service.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
|
on_lesson_created(msg)
Handles the creation of a new lesson in the system.
Sets up progress tracking for the lesson and connects it to its parent if one exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
dict[str, Any]
|
Message containing lesson creation details. |
required |
Source code in src/engramic/application/progress/progress_service.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
on_observation_created(msg)
Handles the creation of a new observation in the system.
Sets up progress tracking for the observation and connects it to its parent.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
dict[str, Any]
|
Message containing observation creation details. |
required |
Source code in src/engramic/application/progress/progress_service.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
|
on_prompt_created(msg)
Handles the creation of a new prompt in the system.
Sets up progress tracking for the prompt and connects it to its parent if one exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
dict[str, Any
|
Message containing prompt creation details. |
required |
Source code in src/engramic/application/progress/progress_service.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
start()
Starts the progress service by subscribing to relevant system events.
Subscribes to creation events for lessons, prompts, documents, observations, engrams, and indices to begin tracking their progress through the system.
Source code in src/engramic/application/progress/progress_service.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|