omnata-plugin-runtime 0.5.4a122__tar.gz → 0.5.4a124__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/configuration.py +8 -1
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/omnata_plugin.py +17 -14
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/LICENSE +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/README.md +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.5.4-
|
3
|
+
version = "0.5.4-a124"
|
4
4
|
description = "Classes and common runtime components for building and running Omnata Plugins"
|
5
5
|
authors = ["James Weakley <james.weakley@omnata.com>"]
|
6
6
|
readme = "README.md"
|
@@ -8,7 +8,7 @@ from typing import Any, List, Dict, Literal, Union, Optional
|
|
8
8
|
from enum import Enum
|
9
9
|
|
10
10
|
from abc import ABC
|
11
|
-
from pydantic import BaseModel, Field, PrivateAttr, SerializationInfo, model_serializer, validator # pylint: disable=no-name-in-module
|
11
|
+
from pydantic import BaseModel, Field, PrivateAttr, SerializationInfo, field_validator, model_serializer, validator # pylint: disable=no-name-in-module
|
12
12
|
|
13
13
|
if tuple(sys.version_info[:2]) >= (3, 9):
|
14
14
|
# Python 3.9 and above
|
@@ -449,6 +449,13 @@ class StoredStreamConfiguration(SubscriptableBaseModel):
|
|
449
449
|
stream: StreamConfiguration
|
450
450
|
latest_state: dict = Field(default_factory=dict,description="The latest state of the stream, used for incremental syncs")
|
451
451
|
|
452
|
+
@field_validator('latest_state',mode='before')
|
453
|
+
@classmethod
|
454
|
+
def state_must_not_be_none(cls, v: Optional[dict]) -> dict:
|
455
|
+
if v is None:
|
456
|
+
return {}
|
457
|
+
return v
|
458
|
+
|
452
459
|
|
453
460
|
class StreamConfiguration(SubscriptableBaseModel):
|
454
461
|
"""
|
@@ -1007,20 +1007,23 @@ class InboundSyncRequest(SyncRequest):
|
|
1007
1007
|
"""
|
1008
1008
|
Sends a message to the plugin with the current progress of the sync run, if it has changed since last time.
|
1009
1009
|
"""
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1010
|
+
if self._apply_results is not None:
|
1011
|
+
with self._apply_results_lock:
|
1012
|
+
new_progress_update = PluginMessageStreamProgressUpdate(
|
1013
|
+
stream_total_counts=self._stream_record_counts,
|
1014
|
+
# records could have been marked as completed, but still have results to apply
|
1015
|
+
completed_streams=[s for s in self._completed_streams if s not in self._apply_results[s] or self._apply_results[s] is None],
|
1016
|
+
stream_errors=self._omnata_log_handler.stream_global_errors,
|
1017
|
+
total_records_estimate=self._total_records_estimate
|
1018
|
+
)
|
1019
|
+
if self._last_stream_progress_update is None or new_progress_update != self._last_stream_progress_update:
|
1020
|
+
result = self._plugin_message(
|
1021
|
+
message=new_progress_update,
|
1022
|
+
ignore_errors=ignore_errors
|
1023
|
+
)
|
1024
|
+
if result is None:
|
1025
|
+
return False
|
1026
|
+
self._last_stream_progress_update = new_progress_update
|
1024
1027
|
return True
|
1025
1028
|
|
1026
1029
|
def apply_cancellation(self):
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.5.4a122 → omnata_plugin_runtime-0.5.4a124}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|