Task model class.
:property input_specs: The specs of the input :type input_specs: dict :property output_specs: The specs of the output :type output_specs: dict :property config_specs: The specs of the config :type config_specs: dict
Attributes
community_agent_version_id: str
config: Config
data: Dict[str, Any]
error_info: ProcessErrorInfo
progress_bar: ProgressBar
scenario: Scenario
source_config_id: str
status: ProcessStatus
style: TypingStyle
Functions
Constructor
Name | Type | Default value | Description |
---|---|---|---|
error_if_finished | bool | True |
Name | Type | Default value | Description |
---|---|---|---|
_coerce | bool | True |
Name | Type | Default value | Description |
---|---|---|---|
search_nullable | bool | False |
Optional[ProcessErrorInfo] |
Return the execution time of the process
float |
return the instance name in the context
str |
Return the instance path
str |
Return the last message of the process
Optional[ProgressBarMessageDTO] |
Return the name of the process
str |
Type[Process] |
Typing |
Return the last message of the process
float |
Return the style of the process
TypingStyle |
Returns the port of the inputs by its name.
Name | Type | Default value | Description |
---|---|---|---|
port_name | str |
InPort |
Return true if the process is automatically run when added to a protocol
bool |
Return true if the process is enable in sub protocol
bool |
return true if the process is of type InputTask
bool |
return true if the process is of type OutputTask
bool |
bool |
bool |
Returns True if the model is saved in db, False otherwise
bool |
Name | Type | Default value | Description |
---|---|---|---|
error_info | ProcessErrorInfo |
Name | Type | Default value | Description |
---|---|---|---|
process_error | ProcessRunException | ||
context | str |
Returns the port of the outputs by its name.
Name | Type | Default value | Description |
---|---|---|---|
port_name | str |
OutPort |
ModelType |
Run the process and save its state in the database.
Override save to save the inputs and outputs
'ProcessModel' |
Function to run overrided by the sub classes
TaskModel |
Method run just before the task run to save the input resource for this task. this will allow to know what resource this task uses as input
Save the resource
Name | Type | Default value | Description |
---|---|---|---|
resource | Resource | ||
port_name | str |
ResourceModel |
Set the config
Name | Type | Default value | Description |
---|---|---|---|
config | Config | [description] paramsdict |
Set a value of the config
Name | Type | Default value | Description |
---|---|---|---|
param_name | str | [description] | |
value | Any | [description] |
Set the config values
Name | Type | Default value | Description |
---|---|---|---|
config_values | Dict | [description] [str, any] |
Name | Type | Default value | Description |
---|---|---|---|
error_info | ProcessErrorInfo |
Set the inputs from a DTO
Name | Type | Default value | Description |
---|---|---|---|
inputs_dto | IODTO | ||
reset | bool | False |
Set the inputs from specs
Name | Type | Default value | Description |
---|---|---|---|
inputs_specs | IOSpecs |
Set the outputs from a DTO
Name | Type | Default value | Description |
---|---|---|---|
outputs_dto | IODTO | ||
reset | bool | False |
Set the outputs from specs
Name | Type | Default value | Description |
---|---|---|---|
outputs_specs | IOSpecs |
Sets the parent protocol of the process
Name | Type | Default value | Description |
---|---|---|---|
parent_protocol | ProtocolModel |
Method used when creating a new task model, it init the input and output from task specs
Name | Type | Default value | Description |
---|---|---|---|
process_type | Type |
Name | Type | Default value | Description |
---|---|---|---|
scenario | Scenario |
Return the config DTO
Name | Type | Default value | Description |
---|---|---|---|
ignore_input_task_config | bool | False | If true, the config values of input task task is ignored, defaults to false , optional |
ProcessConfigDTO |
Return the minium json to recognize this process
ProcessMinimumDTO |
Name | Type | Default value | Description |
---|---|---|---|
fields | Any |
Method call after all the table are inited
Useful when use DeferredForeignKey to create the foreign key manually latter
Method call after the table is created
Usefull to create the full text indexes
Name | Type | Default value | Description |
---|---|---|---|
alias | Any |
Name | Type | Default value | Description |
---|---|---|---|
database | Any | ||
bind_refs | bool | True | |
bind_backrefs | bool | True | |
_exclude | Any |
Name | Type | Default value | Description |
---|---|---|---|
database | Any | ||
bind_refs | bool | True | |
bind_backrefs | bool | True |
Name | Type | Default value | Description |
---|---|---|---|
model_list | Any | ||
batch_size | Any |
Name | Type | Default value | Description |
---|---|---|---|
model_list | Any | ||
fields | Any | ||
batch_size | Any |
Returns the name of the class
Name | Type | Default value | Description |
---|---|---|---|
slugify | bool | False | True to slugify the class name if true, defaults to false , optional |
snakefy | bool | False | True to snakefy the class name if true, defaults to false , optional |
replace_uppercase | bool | False | Replace upper cases by "-" if true, defaults to false , optional |
str |
Returns True if the column exists in the table
Name | Type | Default value | Description |
---|---|---|---|
column_name | str | The column name `` |
bool |
Name | Type | Default value | Description |
---|---|---|---|
query | Any |
Create a foreign key for a Foreign key field only if the foreign key does not exists
Name | Type | Default value | Description |
---|---|---|---|
field | ForeignKeyField | [description] |
Method to create a full text index
Name | Type | Default value | Description |
---|---|---|---|
columns | List | [description] [str] | |
index_name | str |
Create model table
Name | Type | Default value | Description |
---|---|---|---|
decorator_name | Any |
Name | Type | Default value | Description |
---|---|---|---|
pk | Any |
Drop model table
Execute a raw SQL query. Can use the [TABLE_NAME] to replace by the table name
Name | Type | Default value | Description |
---|---|---|---|
query | str | The query to execute `` |
Name | Type | Default value | Description |
---|---|---|---|
dq_nodes | Any | ||
filters | Any |
Name | Type | Default value | Description |
---|---|---|---|
column_name | str |
bool |
Returns the full name of the class
Name | Type | Default value | Description |
---|---|---|---|
slugify | bool | False | Slugify the returned class name if true, defaults to false , optional |
snakefy | bool | False | Snakefy the returned class name if true, defaults to false `` |
str |
Name | Type | Default value | Description |
---|---|---|---|
query | Any | ||
filters | Any |
Name | Type | Default value | Description |
---|---|---|---|
id | str |
Optional |
Get by ID and throw 404 error if object not found
Name | Type | Default value | Description |
---|---|---|---|
id | str | [description] |
ModelType |
Name | Type | Default value | Description |
---|---|---|---|
ids | List |
List |
DatabaseProxy |
Returns the (current) DbManager of this model
Type |
Name | Type | Default value | Description |
---|---|---|---|
query | Any | ||
filters | Any |
Return all the Input task Model of the scenario
Name | Type | Default value | Description |
---|---|---|---|
scenario_ids | List |
ModelSelect |
Returns the table name of this class
str |
Name | Type | Default value | Description |
---|---|---|---|
fields | Any |
Returns True if the index exists in the table
Name | Type | Default value | Description |
---|---|---|---|
index_name | str | The index name `` |
bool |
Get all the classes that inherit this class
List |
Name | Type | Default value | Description |
---|---|---|---|
_Model__data | Any | ||
insert | Any |
Name | Type | Default value | Description |
---|---|---|---|
query | Any | ||
fields | Any |
Name | Type | Default value | Description |
---|---|---|---|
rows | Any | ||
fields | Any |
Returns the list of the methods
List |
Returns the module name of the class
str |
Retrieves the property names
Name | Type | Default value | Description |
---|---|---|---|
instance | type | The s of the properties to retrieve. set `none` to retrieve all. `type` or `union[type]` | |
exclude | type |
List |
Name | Type | Default value | Description |
---|---|---|---|
sql | Any | ||
params | Any |
Name | Type | Default value | Description |
---|---|---|---|
_Model__data | Any | ||
insert | Any |
Name | Type | Default value | Description |
---|---|---|---|
rows | Any | ||
fields | Any |
Performs full-text search on the field. Must be overrided by child class to work
Name | Type | Default value | Description |
---|---|---|---|
phrase | str | The phrase to search `` | |
modifier | str |
ModelSelect |
Name | Type | Default value | Description |
---|---|---|---|
fields | Any |
Name | Type | Default value | Description |
---|---|---|---|
key | Any | ||
value | Any |
Name | Type | Default value | Description |
---|---|---|---|
options | Any |
Name | Type | Default value | Description |
---|---|---|---|
_Model__data | Any | ||
update | Any |
Name | Type | Default value | Description |
---|---|---|---|
method | Any |