-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsimple connectivity example.py
More file actions
213 lines (188 loc) · 7.1 KB
/
Copy pathsimple connectivity example.py
File metadata and controls
213 lines (188 loc) · 7.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
108
109
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
171
172
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
# -------------------------------------------------------------------------
# Copyright (c) 2020, PTC Inc. and/or all its affiliates. All rights reserved.
# See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
# Simple Connectivity Example - Simple example on how to manage a connection and
# exectute various calls for the conenctivity components of the Kepware
# configuration API
from kepconfig import connection, error
from kepconfig.connectivity import channel, device, tag
import json
import time
# Channel and Device name to be used
ch_name = 'Channel1'
dev_name = 'Device1'
def HTTPErrorHandler(err):
# Generic Handler for exception errors
if err.__class__ is error.KepHTTPError:
print(err.code)
print(err.msg)
print(err.url)
print(err.hdrs)
print(err.payload)
elif err.__class__ is error.KepURLError:
print(err.url)
print(err.reason)
else:
print('Different Exception Received: {}'.format(err))
# This creates a server reference that is used to target all modifications of
# the Kepware configuration
server = connection.server(host = '127.0.0.1', port = 57412, user = 'Administrator', pw = '')
# HTTP server reference examples. Uses the OS/systems trusted CA certificate store for cert validation as it uses the
# "create_default_context()" function as described here:
# https://docs.python.org/3/library/ssl.html#ssl.create_default_context
# https://docs.python.org/3/library/ssl.html#ssl.SSLContext.load_default_certs
# https://docs.python.org/3/library/ssl.html#ssl.SSLContext.set_default_verify_paths
serverHTTPS = connection.server(host = '127.0.0.1', port = 57512, user = 'Administrator', pw = '', https=True)
# Disable Hostname check when validating certificate:
serverHTTPS.SSL_ignore_hostname = True
# Trust all certificates:
# During certificate validation trust any certificate - if True, will "set SSL_ignore_hostname" to true
serverHTTPS.SSL_trust_all_certs = True
# Modify the Kepware project properties
project_prop = {
"uaserverinterface.PROJECT_OPC_UA_ENABLE": True,
"opcdaserver.PROJECT_OPC_DA_1_ENABLED": True,
"opcdaserver.PROJECT_OPC_DA_2_ENABLED": True,
"opcdaserver.PROJECT_OPC_DA_3_ENABLED": True
}
try:
print("{} - {}".format("Modifying Project Properties",server.modify_project_properties(project_prop, force = True)))
except Exception as err:
HTTPErrorHandler(err)
# Add a Channel using the "Simulator Driver"
channel_data = {
"common.ALLTYPES_NAME": ch_name,
"servermain.MULTIPLE_TYPES_DEVICE_DRIVER": "Simulator"
}
try:
print("{} - {}".format("Adding Channel", channel.add_channel(server,channel_data)))
except Exception as err:
HTTPErrorHandler(err)
# Add a Device to the created Channel
device_data = {
"common.ALLTYPES_NAME": dev_name,
"servermain.MULTIPLE_TYPES_DEVICE_DRIVER": "Simulator"
}
try:
print("{} - {}".format("Adding Device", device.add_device(server,ch_name,device_data)))
except Exception as err:
HTTPErrorHandler(err)
# Add a collection of Tags and Tag Group objects.
all_tags_data = {
"tags": [
{
"common.ALLTYPES_NAME": "Temp",
"servermain.TAG_ADDRESS": "R0"
}
],
"tag_groups": [
{
"common.ALLTYPES_NAME": "ALARM",
"tags": [
{
"common.ALLTYPES_NAME": "ALARM_C_READY",
"servermain.TAG_ADDRESS": "R1"
}
],
"tag_groups": [
{
"common.ALLTYPES_NAME": "ALARM2",
"tags": [
{
"common.ALLTYPES_NAME": "ALARM_C_READY2",
"servermain.TAG_ADDRESS": "R2"
}
]
}
]
}
]
}
try:
print("{} - {}".format("Adding Tags and Tag Groups", tag.add_all_tags(server, ch_name + '.' + dev_name, all_tags_data)))
except Exception as err:
HTTPErrorHandler(err)
# Add tag to an existing tag group
tag_info = [
{
"common.ALLTYPES_NAME": "Temp",
"servermain.TAG_ADDRESS": "R0"
},
{
"common.ALLTYPES_NAME": "Temp2",
"servermain.TAG_ADDRESS": "R1"
}
]
tag_path = '{}.{}.{}'.format(ch_name, dev_name, 'ALARM.ALARM2')
try:
print("{} - {}".format("Adding Tags to Existing Tag Group", tag.add_tag(server, tag_path, tag_info)))
except Exception as err:
HTTPErrorHandler(err)
#
# Examples of reading properties for various objects (channels, devices, tags, etc)
#
# Get Channel
try:
print("{} - {}".format("Read Channel Properties", channel.get_channel(server,ch_name)))
except Exception as err:
HTTPErrorHandler(err)
# Get Device
device_path = '{}.{}.{}'.format(ch_name, dev_name, 'ALARM.ALARM2.temp')
try:
print("{} - {}".format("Read Device Properties", device.get_device(server, device_path)))
except Exception as err:
HTTPErrorHandler(err)
# Get Tag
tag_path = '{}.{}.{}'.format(ch_name, dev_name, 'ALARM.ALARM2.temp')
try:
print("{} - {}".format("Read Tag Properties", tag.get_tag(server, tag_path)))
except Exception as err:
HTTPErrorHandler(err)
# Get Tag Group
tag_group_path = '{}.{}.{}'.format(ch_name, dev_name, 'ALARM.ALARM2')
try:
print("{} - {}".format("Read Tag Group Properties", tag.get_tag_group(server, tag_group_path)))
except Exception as err:
HTTPErrorHandler(err)
# Channel Modify - Modify the description of the Channel that was created. "Force" will force the
# update to the Kepware Server, if "FORCE_UPDATE" not provided in the JSON data.
channel_data = {
}
channel_data['common.ALLTYPES_DESCRIPTION'] = 'This is the test channel created'
try:
print("{} - {}".format("Modifying Channel 'Description' Property", channel.modify_channel(server, channel_data, channel=ch_name, force=True)))
except Exception as err:
HTTPErrorHandler(err)
# If Modify function calls do not provide "FORCE_UPDATE" and the "Force" input is "False"
# the API will first read the "PROJECT_ID" then use the ID when executing the modification.
try:
print("{} - {}".format("Modifying Channel 'Description' Property", channel.modify_channel(server, channel_data, channel=ch_name, force=True)))
except Exception as err:
HTTPErrorHandler(err)
#
# Examples of deleting various objects (channels, devices, tags, etc)
#
# Delete Tag
tag_path = '{}.{}.{}'.format(ch_name, dev_name, 'ALARM.ALARM2.temp')
try:
print("{} - {}".format("Delete Tag", tag.del_tag(server, tag_path)))
except Exception as err:
HTTPErrorHandler(err)
# Delete Tag Group
tag_group_path = '{}.{}.{}'.format(ch_name, dev_name, 'ALARM.ALARM2')
try:
print("{} - {}".format("Delete Tag Group", tag.del_tag_group(server, tag_group_path)))
except Exception as err:
HTTPErrorHandler(err)
# Delete Device
try:
print("{} - {}".format("Delete Device", device.del_device(server, device_path)))
except Exception as err:
HTTPErrorHandler(err)
# Delete Channel
try:
print("{} - {}".format("Delete Channel", channel.del_channel(server,ch_name)))
except Exception as err:
HTTPErrorHandler(err)