All notable changes to the sdc11073 module will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
RuntimeError: dictionary changed size during iteration
forremote_services
in the discovery #335
- fixed a bug where sending and receiving socket are used after they have been closed already #328
- fixed a bug where
getsockname()
is called before the socket is binded - fixed cyclic import #333
- fixed a bug where comparing
ExtensionLocalValue
would fail when using the!=
operator #305 - fixed wrong typing info in LocalizedText
- added a safety sleep in consumer when starting http server
- fixed possible caching errors in AlarmProvider and AudioPauseProvider
- new interface for transactions: split transaction into different kinds, e.g. descriptor_transaction, metric_state_transaction, etc.
SdcConsumer
provides a dictionary with the current connection status of each subscription it is subscribed to #271- added
force_ssl_connect
parameter to constructor of consumer.
- added a way to process operations directly (directly send 'Fin' instead of Wait, Started,...)
- added handling of SystemErrorReports.
- basic_logging_setup only handles sdc logger, no more side effect due to calling logging.basicConfig.
- fix possible invalid prefix if QName is a node text.
- fixed wrong response for SetContextState message. #287
- fixed connection problem when provider closes socket after first request. #289
- change default in ContainerBase.mk_copy to not copy node due to performance problems. #294
- waveform provider too slow
- create MetricValue for DistributionSampleArrayMetricState
- dropping of Bye-messages when stopping wsdiscovery
- change python classes of
addressing_types.py
to match ws-addressing standard of 2006 instead of 2004 - The final OperationInvokedReport has OperationTargetRef parameter set. This required refactoring of Operations handling.
- moved waveform generator from mdib to roles.waveformprovider
- alert provider performs self check one second before SelfCheckInterval elapses
network
module to handle network adapter stuff of the host computermypy
static code analysis
- possible choosing wrong ipaddress/network interface #187
- added missing SerialNumber to ThisDeviceType
- no creation of operation target states, they should already exist or are not needed if multi state.
- transaction id is unique for provider instead only of sco.
- fixed problem that on operations without handler the transaction id always was 0.
- consumer: renew could be sent after unsubscribe
- possible deadlock when stopping provider
- fixed a bug where the
SdcConsumer
failed to determine the host network adapter if the ip contained in thedevice_location
is on a different subnet - comparison of extensions would fail #238
- ExtensionLocalValue.value must be a list instead of a dictionary in order to allow multiple elements with same name.
- fixed a bug where namespaces of xml are lost when coping lxml elements
- when creating a
SdcClient
with adevice_location
orWsDiscovery
containing an ip where no suitable host network adapter could be determined from, anNetworkAdapterNotFoundError
is raised - removed
netconn
module - renamed Device with Provider in order to be more compliant with sdc11073 names: sdc11073.sdcdevice.SdcDevice becomes sdc11073.provider.SdcProvider, sdc11073.mdib.devicemdib.DeviceMdibContainer becomes sdc11073.mdib.providermdib.ProviderMdib, etc.
- renamed Client with Consumer: sdc11073.sdcclient.SdcClient becomes sdc11073.consumer.SdcConsumer, sdc11073.mdib.clientmdib.ClientMdibContainer becomes sdc11073.mdib.consumermdib.ConsumerMdib, etc.
- reduced max_subscription_duration of provider to 15 seconds
- renew can be performed in fixed intervals (as before) or depending on Expires time of subscription.
- SdcLocation class reworked; use 'bldng' instead of 'bld', which better matches the standard.
- Some classes renamed in pmtypes.py
- soap client does not try implicit reconnects
- replaced some of the ssl_context parameters with an ssl_context_container parameter, that can hold two ssl context objects, to be able to get rid of the deprecation warning occurring when using the same ssl context for both client and server side
- replaced AbstractDescriptorContainer.retrievability property with methods get_retrievability() and set_retrievability()
- improved error handling when reading attribute values from xml element
- fixed possible exception in calculation of waveform age
- fixed some places where default_py_value should be implied_py_value
- fixed incomplete modeling of ClinicalInfo class
- added switch to allow disabling strict checking for AppSequence.
- reworked wsdiscovery. Wsdiscovery can now only bind to a single ip address. The only available classes are "WsDiscovery" and "WsDiscoverySingleAdapter".
- fixed bug that roundtrip statistics raises an exception when no data is available.
- fixed possible exception that "_short_filter_names" does not exist
- fixed missing namespace for IsReferenceParameter attribute
- SdcClient.start_all has optional parameter "check_get_service"
- moved port type name declaration from components.py to implementation classes #176
- fixed bug in handling of soap faults (faultcodeEnum must be QNames, not strings)
- fixed bug that mk_scopes only created a scope if a location was associated.
- fixed broken fault message generation in subscriptionsmanager_base. A previously removed method of namespace helper was still used.
- fixed bug in constructor of dpws_types.ThisDeviceType. This could cause an invalid xml:lang attribute.
- fixed bug that ContainerBase.node was not set in update_from_node
- Code follows PEP8 style (mostly)
- Using dependency injection, classes are defined in sdcdevice/components.py and sdcclients/components.py. This allows users to replace components withs own ones and modify the behavior of client and device.
- All QNames of BICEPS participant model, message model and extension are predefined in pm_qnames.py, msg_qnames.py and ext_qnames.py. Users no longer need helper functions like domTag, msgTag, etc that were needed in version 1.
- A lot of internal functionality was refactoring or rewritten.
- The API for role providers changed.
- The transactions API is simplified.
- code in repo is located under a src parent folder.
- A lot of small changes and fixes, too many to list them all.
- Multiple SdcClient instances can use a shared HTTP Server.
- strict type checking for participant model data. When assigning a value, the data is checked and an exception is thrown if type is not as expected.
- Having multiple MDS in a single mdib is supported.