plantstar-shared 2.0.3.0.2.9__tar.gz → 2.0.3.0.2.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/PKG-INFO +1 -1
  2. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/api_types.py +0 -7
  3. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/convert_bytes_to_object.py +1 -1
  4. plantstar-shared-2.0.3.0.2.11/plantstar_shared/tcp_socket_utils.py +116 -0
  5. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared.egg-info/PKG-INFO +1 -1
  6. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared.egg-info/SOURCES.txt +0 -1
  7. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/setup.py +1 -1
  8. plantstar-shared-2.0.3.0.2.9/plantstar_shared/HmiKeyConstants.py +0 -9
  9. plantstar-shared-2.0.3.0.2.9/plantstar_shared/tcp_socket_utils.py +0 -68
  10. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/README.md +0 -0
  11. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/DataCollectionModuleProcessNames.py +0 -0
  12. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/HuskyInterfacePacketTypes.py +0 -0
  13. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/MockRawDataProcessor.py +0 -0
  14. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/RawDataProcessorInterfaceActions.py +0 -0
  15. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/SysconType.py +0 -0
  16. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/__init__.py +0 -0
  17. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/add_size_onto_string_and_return.py +0 -0
  18. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/convert_object_to_bytes.py +0 -0
  19. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/errors.py +0 -0
  20. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/global_definitions.py +0 -0
  21. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/is_valid_signed_string.py +0 -0
  22. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/obtain_raw_data_processor_function_for_action_name.py +0 -0
  23. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/syscon_image_field.py +0 -0
  24. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared/syscon_json.py +0 -0
  25. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared.egg-info/dependency_links.txt +0 -0
  26. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared.egg-info/requires.txt +0 -0
  27. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/plantstar_shared.egg-info/top_level.txt +0 -0
  28. {plantstar-shared-2.0.3.0.2.9 → plantstar-shared-2.0.3.0.2.11}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plantstar-shared
3
- Version: 2.0.3.0.2.9
3
+ Version: 2.0.3.0.2.11
4
4
  Summary: Shared code used in plantstar_apu and plantstar_dcm
5
5
  Home-page: https://github.com/SYSCON-International/plantstar_shared
6
6
  Author: SYSCON International
@@ -101,10 +101,3 @@ class ApuApiTypes(SysconType):
101
101
 
102
102
  class CosmosApiTypes(SysconType):
103
103
  SEND_DATA_DICTIONARY = ("send_data_dictionary", "send_data_dictionary", True)
104
-
105
-
106
- class HmiApiTypes(SysconType):
107
- GET_HMI_SYSTEM_INFORMATION = ("get_hmi_system_information", "get_hmi_system_information", True)
108
- SET_HMI_SYSTEM_INFORMATION = ("set_hmi_system_information", "set_hmi_system_information", True)
109
- REBOOT_HMI = ("reboot_hmi", "reboot_hmi", True)
110
-
@@ -2,9 +2,9 @@ import msgpack
2
2
 
3
3
  from plantstar_shared.errors import SocketConnectionError
4
4
 
5
+
5
6
  # Converts bytes into an object using msgpack, with a parameter for strict_map_key
6
7
  def convert_bytes_to_object(object_as_bytes, strict_map_key=False):
7
-
8
8
  if not object_as_bytes:
9
9
  raise SocketConnectionError
10
10
 
@@ -0,0 +1,116 @@
1
+ import struct
2
+
3
+ from plantstar_shared.convert_bytes_to_object import convert_bytes_to_object
4
+ from plantstar_shared.convert_object_to_bytes import convert_object_to_bytes
5
+ from plantstar_shared.errors import SocketConnectionError, SysconProgrammingError
6
+
7
+ SIZE_OF_UNSIGNED_INT_FOR_HUSKY = 2 # size of integer value that preceds data coming from Husky OIs
8
+ SIZE_OF_UNSIGNED_INT_STRUCT = 4 # size of integer value that precedes data coming from DCM
9
+
10
+
11
+ def read_size_value_from_socket(*, remote_socket, is_big_endian, number_of_bytes_for_size_prefix):
12
+ size_bytes = remote_socket.recv(number_of_bytes_for_size_prefix)
13
+
14
+ if not size_bytes:
15
+ return None, None
16
+
17
+ if number_of_bytes_for_size_prefix == SIZE_OF_UNSIGNED_INT_FOR_HUSKY:
18
+ size_for_message = int.from_bytes(size_bytes, 'big') if is_big_endian else int.from_bytes(size_bytes, 'little')
19
+ elif number_of_bytes_for_size_prefix == SIZE_OF_UNSIGNED_INT_STRUCT:
20
+ number_format = ">I" if is_big_endian else "<I"
21
+
22
+ try:
23
+ size_for_message = struct.unpack(number_format, size_bytes)[0]
24
+ except struct.error as error:
25
+ raise SocketConnectionError
26
+ else:
27
+ raise SysconProgrammingError("A size prefix was set to something other than 2 or 4")
28
+
29
+ return size_for_message, size_bytes
30
+
31
+
32
+ def get_bytes_from_socket(*, remote_socket, number_of_bytes_to_read=None, is_big_endian=True, number_of_bytes_for_size_prefix=0):
33
+ """Obtains a number of bytes from a provided socket, with options for different configurations and situations.
34
+ Returns byte sequence, and the size value that was obtained from the prefix bytes.
35
+
36
+ Keywords / Example Configurations:
37
+ remote_socket -- the connection that bytes will be read from
38
+
39
+ number_of_bytes_to_read -- the number of bytes to read on the socket, if this is known, this is the only optional parameter needed (default: 0)
40
+
41
+ is_big_endian -- bool that determines what format string should be used for unpacking the size value (default: True)
42
+
43
+ number_of_bytes_for_size_prefix -- the number of bytes to read to determine the total size of the message to pass (default: 0)
44
+
45
+ should_remove_prefix_size_from_read -- bool that determines if the size should be removed from the calculated number of bytes to read (default: False)
46
+
47
+ -----
48
+
49
+ get_bytes_from_socket(remote_socket=conn, number_of_bytes_to_read=100) - likely would not be called directly, in most cases
50
+
51
+ get_bytes_from_socket(remote_socket=conn, is_big_endian=True, number_of_bytes_for_size_prefix=4) - reads 4 bytes to get the size, then reads that amount (DCM socket, etc)
52
+
53
+ get_bytes_from_socket(remote_socket=conn, is_big_endian=False, number_of_bytes_for_size_prefix=2, should_remove_prefix_size_from_read=True) - reads 2 bytes to get the size,
54
+ then reads that calculated amount minus 2 (Husky socket, etc)
55
+
56
+ """
57
+
58
+ if not number_of_bytes_to_read:
59
+ if number_of_bytes_for_size_prefix:
60
+ number_of_bytes_to_read, size_bytes = read_size_value_from_socket(
61
+ remote_socket=remote_socket, is_big_endian=is_big_endian, number_of_bytes_for_size_prefix=number_of_bytes_for_size_prefix
62
+ )
63
+
64
+ if not number_of_bytes_to_read:
65
+ return None, None
66
+ else:
67
+ raise SysconProgrammingError("get_bytes_from_socket was called with no parameters for number_of_bytes_to_read or number_of_bytes_for_size_prefix")
68
+
69
+ packets = []
70
+ bytes_received = 0
71
+
72
+ # While loop that will stream in data if the full request is not available yet
73
+ while bytes_received < number_of_bytes_to_read:
74
+ buffer_size = number_of_bytes_to_read - bytes_received
75
+ packet = remote_socket.recv(buffer_size)
76
+
77
+ if not packet:
78
+ return None, number_of_bytes_to_read
79
+
80
+ packets.append(packet)
81
+ bytes_received = bytes_received + len(packet)
82
+
83
+ data = b''.join(packets)
84
+ return data, number_of_bytes_to_read
85
+
86
+
87
+ def send_message_on_socket(*, remote_socket, dumpsable_object):
88
+ message_encoded_as_bytes = convert_object_to_bytes(dumpsable_object)
89
+ send_encoded_message_on_socket(remote_socket=remote_socket, encoded_message=message_encoded_as_bytes)
90
+
91
+
92
+ def send_encoded_message_on_socket(*, remote_socket, encoded_message):
93
+ size_of_string = len(encoded_message)
94
+ encoded_message_with_size = struct.pack('>I', size_of_string) + encoded_message
95
+
96
+ bytes_sent = remote_socket.send(encoded_message_with_size)
97
+
98
+ while bytes_sent < size_of_string + SIZE_OF_UNSIGNED_INT_STRUCT:
99
+ remaining_encoded_message_to_send = encoded_message_with_size[bytes_sent:]
100
+ new_bytes_sent = remote_socket.send(remaining_encoded_message_to_send)
101
+ bytes_sent += new_bytes_sent
102
+
103
+
104
+ def get_object_from_socket(
105
+ *, remote_socket, number_of_bytes_to_read=None, is_big_endian=True, number_of_bytes_for_size_prefix=SIZE_OF_UNSIGNED_INT_STRUCT, should_remove_prefix_size_from_read=False
106
+ ):
107
+ """Function that is used between the APU and DCM to send dictionaries """
108
+ object_from_interface_as_bytes, _ = get_bytes_from_socket(
109
+ remote_socket=remote_socket, number_of_bytes_to_read=number_of_bytes_to_read, is_big_endian=is_big_endian, number_of_bytes_for_size_prefix=number_of_bytes_for_size_prefix
110
+ )
111
+
112
+ if not object_from_interface_as_bytes:
113
+ return None
114
+
115
+ object_from_interface = convert_bytes_to_object(object_from_interface_as_bytes)
116
+ return object_from_interface
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plantstar-shared
3
- Version: 2.0.3.0.2.9
3
+ Version: 2.0.3.0.2.11
4
4
  Summary: Shared code used in plantstar_apu and plantstar_dcm
5
5
  Home-page: https://github.com/SYSCON-International/plantstar_shared
6
6
  Author: SYSCON International
@@ -1,7 +1,6 @@
1
1
  README.md
2
2
  setup.py
3
3
  plantstar_shared/DataCollectionModuleProcessNames.py
4
- plantstar_shared/HmiKeyConstants.py
5
4
  plantstar_shared/HuskyInterfacePacketTypes.py
6
5
  plantstar_shared/MockRawDataProcessor.py
7
6
  plantstar_shared/RawDataProcessorInterfaceActions.py
@@ -7,7 +7,7 @@ setuptools.setup(
7
7
  name="plantstar-shared",
8
8
  # MAJOR_MILESTONE_VERSION.MINOR_MILESTONE_VERSION.MAJOR_VERSION.MINOR_VERSION.HOTFIX_VERSION.SUBVERSION
9
9
  # The main version should stay as v2.0.3.0.x until we have passed that in the plantstar_apu/plantstar_dcm projects
10
- version="2.0.3.0.2.9",
10
+ version="2.0.3.0.2.11",
11
11
  author="SYSCON International",
12
12
  author_email="dev@syscon-intl.com",
13
13
  description="Shared code used in plantstar_apu and plantstar_dcm",
@@ -1,9 +0,0 @@
1
- class HmiKeyConstants:
2
- APU_IP_ADDRESS = "apu_ip_address"
3
- HMI_HOSTNAME = "hmi_hostname"
4
- HMI_HOMEPAGE = "hmi_homepage"
5
- HMI_IP_ADDRESS_TYPE = "hmi_ip_address_type"
6
- HMI_IP_ADDRESS = "hmi_ip_address"
7
- HMI_NETMASK = "hmi_netmask"
8
- HMI_DEFAULT_GATEWAY = "hmi_default_gateway"
9
- HMI_DNS = "hmi_dns"
@@ -1,68 +0,0 @@
1
- import struct
2
-
3
- from plantstar_shared.convert_bytes_to_object import convert_bytes_to_object
4
- from plantstar_shared.convert_object_to_bytes import convert_object_to_bytes
5
- from plantstar_shared.errors import SocketConnectionError
6
-
7
- SIZE_OF_UNSIGNED_INT_STRUCT = 4
8
-
9
-
10
- def read_size_value_from_socket(*, remote_socket):
11
- size_struct = remote_socket.recv(SIZE_OF_UNSIGNED_INT_STRUCT)
12
-
13
- if not size_struct:
14
- return None
15
-
16
- try:
17
- message_length = struct.unpack('>I', size_struct)[0]
18
- except struct.error as error:
19
- raise SocketConnectionError
20
-
21
- return message_length
22
-
23
-
24
- def get_message_from_socket(*, remote_socket):
25
- message_length = read_size_value_from_socket(remote_socket=remote_socket)
26
-
27
- if not message_length:
28
- return None
29
-
30
- packets = []
31
- bytes_received = 0
32
-
33
- # While loop that will stream in data if the full request is not available yet
34
- while bytes_received < message_length:
35
- buffer_size = message_length - bytes_received
36
- packet = remote_socket.recv(buffer_size)
37
-
38
- if not packet:
39
- return None
40
-
41
- packets.append(packet)
42
- bytes_received = bytes_received + len(packet)
43
-
44
- data = b''.join(packets)
45
- return data
46
-
47
-
48
- def send_message_on_socket(*, remote_socket, dumpsable_object):
49
- message_encoded_as_bytes = convert_object_to_bytes(dumpsable_object)
50
- send_encoded_message_on_socket(remote_socket=remote_socket, encoded_message=message_encoded_as_bytes)
51
-
52
-
53
- def send_encoded_message_on_socket(*, remote_socket, encoded_message):
54
- size_of_string = len(encoded_message)
55
- encoded_message_with_size = struct.pack('>I', size_of_string) + encoded_message
56
-
57
- bytes_sent = remote_socket.send(encoded_message_with_size)
58
-
59
- while bytes_sent < size_of_string + SIZE_OF_UNSIGNED_INT_STRUCT:
60
- remaining_encoded_message_to_send = encoded_message_with_size[bytes_sent:]
61
- new_bytes_sent = remote_socket.send(remaining_encoded_message_to_send)
62
- bytes_sent += new_bytes_sent
63
-
64
-
65
- def get_object_from_socket(*, remote_socket):
66
- object_from_interface_as_bytes = get_message_from_socket(remote_socket=remote_socket)
67
- object_from_interface = convert_bytes_to_object(object_from_interface_as_bytes)
68
- return object_from_interface