trestle.core.models.actions
trestle.core.models.actions ¤
Action wrapper of a command.
Attributes¤
logger = logging.getLogger(__name__) module-attribute ¤
Classes¤
Action ¤
Bases: ABC
flowchart TD
trestle.core.models.actions.Action[Action]
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Action wrapper of a command.
Source code in trestle/core/models/actions.py
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 | |
Methods:¤
__eq__(other) ¤
Check that two actions are equal.
Source code in trestle/core/models/actions.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
__init__(action_type, has_rollback) ¤
Initialize an base action.
Source code in trestle/core/models/actions.py
60 61 62 63 64 65 66 | |
execute() abstractmethod ¤
Execute the action.
Source code in trestle/core/models/actions.py
112 113 114 | |
get_type() ¤
Return the action type.
Source code in trestle/core/models/actions.py
72 73 74 | |
has_executed() ¤
Return if the action has been executed.
Source code in trestle/core/models/actions.py
80 81 82 | |
has_rollback() ¤
Return if rollback of the action is possible.
Source code in trestle/core/models/actions.py
88 89 90 | |
rollback() abstractmethod ¤
Rollback the action.
Source code in trestle/core/models/actions.py
116 117 118 | |
to_string() ¤
Return a string representation.
Source code in trestle/core/models/actions.py
68 69 70 | |
ActionType ¤
Bases: Enum
flowchart TD
trestle.core.models.actions.ActionType[ActionType]
click trestle.core.models.actions.ActionType href "" "trestle.core.models.actions.ActionType"
Action type enum for different action type.
File system related actions have code like 1 Model processing related actions have code like 2
Source code in trestle/core/models/actions.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
CreatePathAction ¤
Bases: Action
flowchart TD
trestle.core.models.actions.CreatePathAction[CreatePathAction]
trestle.core.models.actions.Action[Action]
trestle.core.models.actions.Action --> trestle.core.models.actions.CreatePathAction
click trestle.core.models.actions.CreatePathAction href "" "trestle.core.models.actions.CreatePathAction"
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Create a file or directory path.
Source code in trestle/core/models/actions.py
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 | |
Methods:¤
__init__(sub_path, clear_content=False) ¤
Initialize a create path action.
It creates all the missing directories in the path. If it is a file, then it also creates an empty file with the name provided
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sub_path | Path | this is the desired file or directory path that needs to be created under the project root | required |
Source code in trestle/core/models/actions.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | |
__str__() ¤
Return string representation.
Source code in trestle/core/models/actions.py
334 335 336 | |
execute() ¤
Execute the action.
Source code in trestle/core/models/actions.py
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 | |
get_created_paths() ¤
Get the list of paths that were created after being executed.
Source code in trestle/core/models/actions.py
264 265 266 | |
get_trestle_project_root() ¤
Return the trestle workspace root path.
Source code in trestle/core/models/actions.py
260 261 262 | |
rollback() ¤
Rollback the action.
Source code in trestle/core/models/actions.py
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | |
RemoveAction ¤
Bases: Action
flowchart TD
trestle.core.models.actions.RemoveAction[RemoveAction]
trestle.core.models.actions.Action[Action]
trestle.core.models.actions.Action --> trestle.core.models.actions.RemoveAction
click trestle.core.models.actions.RemoveAction href "" "trestle.core.models.actions.RemoveAction"
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Remove sub element at the element path in the source element.
Source code in trestle/core/models/actions.py
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 | |
Methods:¤
__init__(src_element, sub_element_path) ¤
Initialize a remove element action.
Source code in trestle/core/models/actions.py
436 437 438 439 440 441 442 | |
__str__() ¤
Return string representation.
Source code in trestle/core/models/actions.py
456 457 458 | |
execute() ¤
Execute the action.
Source code in trestle/core/models/actions.py
444 445 446 447 448 | |
rollback() ¤
Rollback the action.
Source code in trestle/core/models/actions.py
450 451 452 453 454 | |
RemovePathAction ¤
Bases: Action
flowchart TD
trestle.core.models.actions.RemovePathAction[RemovePathAction]
trestle.core.models.actions.Action[Action]
trestle.core.models.actions.Action --> trestle.core.models.actions.RemovePathAction
click trestle.core.models.actions.RemovePathAction href "" "trestle.core.models.actions.RemovePathAction"
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Remove a file or directory path.
Source code in trestle/core/models/actions.py
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 | |
Methods:¤
__init__(sub_path) ¤
Initialize a remove path action.
It removes the file or directory recursively into trash.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sub_path | Path | this is the desired file or directory path that needs to be removed under the project root | required |
Source code in trestle/core/models/actions.py
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
__str__() ¤
Return string representation.
Source code in trestle/core/models/actions.py
390 391 392 | |
execute() ¤
Execute the action.
Source code in trestle/core/models/actions.py
365 366 367 368 369 370 371 372 373 374 375 376 377 | |
get_trestle_project_root() ¤
Return the trestle workspace root path.
Source code in trestle/core/models/actions.py
361 362 363 | |
rollback() ¤
Rollback the action.
Source code in trestle/core/models/actions.py
379 380 381 382 383 384 385 386 387 388 | |
UpdateAction ¤
Bases: Action
flowchart TD
trestle.core.models.actions.UpdateAction[UpdateAction]
trestle.core.models.actions.Action[Action]
trestle.core.models.actions.Action --> trestle.core.models.actions.UpdateAction
click trestle.core.models.actions.UpdateAction href "" "trestle.core.models.actions.UpdateAction"
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Update element at the element path in the destination element with the source element.
Source code in trestle/core/models/actions.py
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | |
Methods:¤
__init__(sub_element, dest_element, sub_element_path) ¤
Initialize an add element action.
Sub element can be OscalBaseModel, Element, list or None
Source code in trestle/core/models/actions.py
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | |
__str__() ¤
Return string representation.
Source code in trestle/core/models/actions.py
428 429 430 | |
execute() ¤
Execute the action.
Source code in trestle/core/models/actions.py
416 417 418 419 420 | |
rollback() ¤
Rollback the action.
Source code in trestle/core/models/actions.py
422 423 424 425 426 | |
WriteAction ¤
Bases: Action
flowchart TD
trestle.core.models.actions.WriteAction[WriteAction]
trestle.core.models.actions.Action[Action]
trestle.core.models.actions.Action --> trestle.core.models.actions.WriteAction
click trestle.core.models.actions.WriteAction href "" "trestle.core.models.actions.WriteAction"
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Write the element to a destination stream.
Source code in trestle/core/models/actions.py
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 | |
Methods:¤
__init__(writer, element, content_type) ¤
Initialize an write file action.
Source code in trestle/core/models/actions.py
124 125 126 127 128 129 130 131 132 133 134 135 136 | |
__str__() ¤
Return string representation.
Source code in trestle/core/models/actions.py
179 180 181 | |
execute() ¤
Execute the action.
Source code in trestle/core/models/actions.py
153 154 155 156 157 158 159 160 161 162 163 | |
rollback() ¤
Rollback the action.
Source code in trestle/core/models/actions.py
165 166 167 168 169 170 171 172 173 174 175 176 177 | |
WriteFileAction ¤
Bases: WriteAction
flowchart TD
trestle.core.models.actions.WriteFileAction[WriteFileAction]
trestle.core.models.actions.WriteAction[WriteAction]
trestle.core.models.actions.Action[Action]
trestle.core.models.actions.WriteAction --> trestle.core.models.actions.WriteFileAction
trestle.core.models.actions.Action --> trestle.core.models.actions.WriteAction
click trestle.core.models.actions.WriteFileAction href "" "trestle.core.models.actions.WriteFileAction"
click trestle.core.models.actions.WriteAction href "" "trestle.core.models.actions.WriteAction"
click trestle.core.models.actions.Action href "" "trestle.core.models.actions.Action"
Write the element to a destination file.
Source code in trestle/core/models/actions.py
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 | |
Methods:¤
__init__(file_path, element, content_type) ¤
Initialize a write file action.
It opens the file in append mode. Therefore the file needs to exist even if it is a new file.
Source code in trestle/core/models/actions.py
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | |
__str__() ¤
Return string representation.
Source code in trestle/core/models/actions.py
228 229 230 | |
execute() ¤
Execute the action.
Source code in trestle/core/models/actions.py
205 206 207 208 209 210 211 212 213 214 215 216 217 | |
rollback() ¤
Execute the rollback action.
Source code in trestle/core/models/actions.py
219 220 221 222 223 224 225 226 | |
handler: python