actions
trestle.core.models.actions
¤
Action wrapper of a command.
Attributes¤
logger = logging.getLogger(__name__)
module-attribute
¤
Classes¤
Action
¤
Bases: ABC
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 |
|
Functions¤
__eq__(other)
¤
Check that two actions are equal.
Source code in trestle/core/models/actions.py
92 93 94 95 96 97 98 99 |
|
__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
101 102 103 |
|
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
105 106 107 |
|
to_string()
¤
Return a string representation.
Source code in trestle/core/models/actions.py
68 69 70 |
|
ActionType
¤
Bases: Enum
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
Create a file or directory path.
Source code in trestle/core/models/actions.py
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 |
|
Functions¤
__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
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|
__str__()
¤
Return string representation.
Source code in trestle/core/models/actions.py
323 324 325 |
|
execute()
¤
Execute the action.
Source code in trestle/core/models/actions.py
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 |
|
get_created_paths()
¤
Get the list of paths that were created after being executed.
Source code in trestle/core/models/actions.py
253 254 255 |
|
get_trestle_project_root()
¤
Return the trestle workspace root path.
Source code in trestle/core/models/actions.py
249 250 251 |
|
rollback()
¤
Rollback the action.
Source code in trestle/core/models/actions.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
|
RemoveAction
¤
Bases: Action
Remove sub element at the element path in the source element.
Source code in trestle/core/models/actions.py
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
|
Functions¤
__init__(src_element, sub_element_path)
¤
Initialize a remove element action.
Source code in trestle/core/models/actions.py
425 426 427 428 429 430 431 |
|
__str__()
¤
Return string representation.
Source code in trestle/core/models/actions.py
445 446 447 |
|
execute()
¤
Execute the action.
Source code in trestle/core/models/actions.py
433 434 435 436 437 |
|
rollback()
¤
Rollback the action.
Source code in trestle/core/models/actions.py
439 440 441 442 443 |
|
RemovePathAction
¤
Bases: Action
Remove a file or directory path.
Source code in trestle/core/models/actions.py
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 |
|
Functions¤
__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
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
|
__str__()
¤
Return string representation.
Source code in trestle/core/models/actions.py
379 380 381 |
|
execute()
¤
Execute the action.
Source code in trestle/core/models/actions.py
354 355 356 357 358 359 360 361 362 363 364 365 366 |
|
get_trestle_project_root()
¤
Return the trestle workspace root path.
Source code in trestle/core/models/actions.py
350 351 352 |
|
rollback()
¤
Rollback the action.
Source code in trestle/core/models/actions.py
368 369 370 371 372 373 374 375 376 377 |
|
UpdateAction
¤
Bases: Action
Update element at the element path in the destination element with the source element.
Source code in trestle/core/models/actions.py
384 385 386 387 388 389 390 391 392 393 394 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 |
|
Functions¤
__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
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 |
|
__str__()
¤
Return string representation.
Source code in trestle/core/models/actions.py
417 418 419 |
|
execute()
¤
Execute the action.
Source code in trestle/core/models/actions.py
405 406 407 408 409 |
|
rollback()
¤
Rollback the action.
Source code in trestle/core/models/actions.py
411 412 413 414 415 |
|
WriteAction
¤
Bases: Action
Write the element to a destination stream.
Source code in trestle/core/models/actions.py
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 |
|
Functions¤
__init__(writer, element, content_type)
¤
Initialize an write file action.
Source code in trestle/core/models/actions.py
113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
__str__()
¤
Return string representation.
Source code in trestle/core/models/actions.py
168 169 170 |
|
execute()
¤
Execute the action.
Source code in trestle/core/models/actions.py
142 143 144 145 146 147 148 149 150 151 152 |
|
rollback()
¤
Rollback the action.
Source code in trestle/core/models/actions.py
154 155 156 157 158 159 160 161 162 163 164 165 166 |
|
WriteFileAction
¤
Bases: WriteAction
Write the element to a destination file.
Source code in trestle/core/models/actions.py
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 |
|
Functions¤
__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
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
|
__str__()
¤
Return string representation.
Source code in trestle/core/models/actions.py
217 218 219 |
|
execute()
¤
Execute the action.
Source code in trestle/core/models/actions.py
194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
rollback()
¤
Execute the rollback action.
Source code in trestle/core/models/actions.py
208 209 210 211 212 213 214 215 |
|
handler: python