Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
ada17a05
Commit
ada17a05
authored
Nov 30, 2015
by
olivier R-D
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more work on uals
parent
78103830
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
44 deletions
+63
-44
opcua/tools.py
opcua/tools.py
+63
-44
No files found.
opcua/tools.py
View file @
ada17a05
import
logging
import
logging
import
sys
import
sys
import
argparse
import
argparse
from
opcua
import
ua
,
Client
from
datetime
import
datetime
import
code
import
code
from
enum
import
Enum
from
enum
import
Enum
from
datetime
import
datetime
from
opcua
import
ua
from
opcua
import
Client
from
opcua
import
Node
def
add_minimum_args
(
parser
):
def
add_minimum_args
(
parser
):
...
@@ -240,9 +243,9 @@ def uals():
...
@@ -240,9 +243,9 @@ def uals():
parser
=
argparse
.
ArgumentParser
(
description
=
"Browse OPC-UA node and print result"
)
parser
=
argparse
.
ArgumentParser
(
description
=
"Browse OPC-UA node and print result"
)
add_common_args
(
parser
)
add_common_args
(
parser
)
parser
.
add_argument
(
"-l"
,
parser
.
add_argument
(
"-l"
,
dest
=
"
print
_format"
,
dest
=
"
long
_format"
,
#action="store_true",
#action="store_true",
default
=
1
,
const
=
3
,
nargs
=
"?"
,
nargs
=
"?"
,
type
=
int
,
type
=
int
,
help
=
"use a long listing format"
)
help
=
"use a long listing format"
)
...
@@ -253,6 +256,8 @@ def uals():
...
@@ -253,6 +256,8 @@ def uals():
help
=
"Browse depth"
)
help
=
"Browse depth"
)
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
if
args
.
long_format
is
None
:
args
.
long_format
=
1
logging
.
basicConfig
(
format
=
"%(levelname)s: %(message)s"
,
level
=
getattr
(
logging
,
args
.
loglevel
))
logging
.
basicConfig
(
format
=
"%(levelname)s: %(message)s"
,
level
=
getattr
(
logging
,
args
.
loglevel
))
client
=
Client
(
args
.
url
,
timeout
=
args
.
timeout
)
client
=
Client
(
args
.
url
,
timeout
=
args
.
timeout
)
...
@@ -262,52 +267,63 @@ def uals():
...
@@ -262,52 +267,63 @@ def uals():
if
args
.
path
:
if
args
.
path
:
node
=
node
.
get_child
(
args
.
path
.
split
(
","
))
node
=
node
.
get_child
(
args
.
path
.
split
(
","
))
print
(
"Browsing node {} at {}
\
n
"
.
format
(
node
,
args
.
url
))
print
(
"Browsing node {} at {}
\
n
"
.
format
(
node
,
args
.
url
))
if
args
.
print_format
==
0
:
if
args
.
long_format
==
0
:
print
(
"{:30} {:25}"
.
format
(
"DisplayName"
,
"NodeId"
))
_lsprint_0
(
node
,
args
.
depth
-
1
)
print
(
""
)
elif
args
.
long_format
==
1
:
elif
args
.
print_format
==
1
:
_lsprint_1
(
node
,
args
.
depth
-
1
)
print
(
"{:30} {:25} {:25} {:25}"
.
format
(
"DisplayName"
,
"NodeId"
,
"BrowseName"
,
"Value"
))
else
:
print
(
""
)
_lsprint_long
(
node
,
args
.
depth
-
1
)
_lsprint
(
client
,
node
.
nodeid
,
args
.
print_format
,
args
.
depth
-
1
)
finally
:
finally
:
client
.
disconnect
()
client
.
disconnect
()
sys
.
exit
(
0
)
sys
.
exit
(
0
)
print
(
args
)
print
(
args
)
def
_lsprint
(
client
,
nodeid
,
print_format
,
depth
,
indent
=
""
):
def
_lsprint_0
(
node
,
depth
,
indent
=
""
):
indent
+=
" "
if
not
indent
:
pnode
=
client
.
get_node
(
nodeid
)
print
(
"{:30} {:25}"
.
format
(
"DisplayName"
,
"NodeId"
))
if
print_format
in
(
0
,
1
):
print
(
""
)
for
desc
in
pnode
.
get_children_descriptions
():
for
desc
in
node
.
get_children_descriptions
():
if
print_format
==
0
:
print
(
"{}{:30} {:25}"
.
format
(
indent
,
desc
.
DisplayName
.
to_string
(),
desc
.
NodeId
.
to_string
()))
print
(
"{:30} {:25}"
.
format
(
indent
+
desc
.
DisplayName
.
to_string
(),
indent
+
desc
.
NodeId
.
to_string
()))
if
depth
:
else
:
_lsprint_0
(
Node
(
node
.
server
,
desc
.
NodeId
),
depth
-
1
,
indent
+
" "
)
if
desc
.
NodeClass
==
ua
.
NodeClass
.
Variable
:
val
=
client
.
get_node
(
desc
.
NodeId
).
get_value
()
print
(
"{:30}, {!s:25}, {!s:25}, {!s:3}"
.
format
(
indent
+
desc
.
DisplayName
.
to_string
(),
indent
+
desc
.
NodeId
.
to_string
(),
indent
+
desc
.
BrowseName
.
to_string
(),
indent
+
str
(
val
)))
def
_lsprint_1
(
node
,
depth
,
indent
=
""
):
else
:
if
not
indent
:
print
(
"{:30}, {!s:25}, {!s:25}"
.
format
(
indent
+
desc
.
DisplayName
.
to_string
(),
indent
+
desc
.
NodeId
.
to_string
(),
indent
+
desc
.
BrowseName
.
to_string
()))
print
(
"{:30} {:25} {:25} {:25}"
.
format
(
"DisplayName"
,
"NodeId"
,
"BrowseName"
,
"Value"
))
if
depth
:
print
(
""
)
_lsprint
(
client
,
desc
.
NodeId
,
print_format
,
depth
-
1
,
indent
)
else
:
for
desc
in
node
.
get_children_descriptions
():
for
node
in
pnode
.
get_children
():
if
desc
.
NodeClass
==
ua
.
NodeClass
.
Variable
:
attrs
=
node
.
get_attributes
([
ua
.
AttributeIds
.
DisplayName
,
val
=
Node
(
node
.
server
,
desc
.
NodeId
).
get_value
()
ua
.
AttributeIds
.
BrowseName
,
print
(
"{}{:30} {!s:25} {!s:25}, {!s:3}"
.
format
(
indent
,
desc
.
DisplayName
.
to_string
(),
desc
.
NodeId
.
to_string
(),
desc
.
BrowseName
.
to_string
(),
val
))
ua
.
AttributeIds
.
NodeClass
,
else
:
ua
.
AttributeIds
.
WriteMask
,
print
(
"{}{:30} {!s:25} {!s:25}"
.
format
(
indent
,
desc
.
DisplayName
.
to_string
(),
desc
.
NodeId
.
to_string
(),
desc
.
BrowseName
.
to_string
()))
ua
.
AttributeIds
.
UserWriteMask
,
if
depth
:
ua
.
AttributeIds
.
DataType
,
_lsprint_1
(
Node
(
node
.
server
,
desc
.
NodeId
),
depth
-
1
,
indent
+
" "
)
ua
.
AttributeIds
.
Value
])
name
,
bname
,
nclass
,
mask
,
umask
,
dtype
,
val
=
[
attr
.
Value
.
Value
for
attr
in
attrs
]
update
=
attrs
[
-
1
].
ServerTimestamp
def
_lsprint_long
(
pnode
,
depth
,
indent
=
""
):
if
nclass
==
ua
.
NodeClass
.
Variable
:
if
not
indent
:
print
(
"{} {}, {}, {}, {}, {update}, {value}"
.
format
(
indent
,
name
.
to_string
(),
node
.
nodeid
.
to_string
(),
bname
.
to_string
(),
dtype
.
to_string
(),
update
=
update
,
value
=
val
))
print
(
"{:30} {:25} {:25} {:10} {:30} {:25}"
.
format
(
"DisplayName"
,
"NodeId"
,
"BrowseName"
,
"DataType"
,
"Timestamp"
,
"Value"
))
else
:
print
(
""
)
print
(
"{} {}, {}, {}"
.
format
(
indent
,
name
.
to_string
(),
bname
.
to_string
(),
node
.
nodeid
.
to_string
()))
for
node
in
pnode
.
get_children
():
if
depth
:
attrs
=
node
.
get_attributes
([
ua
.
AttributeIds
.
DisplayName
,
_lsprint
(
client
,
node
.
nodeid
,
print_format
,
depth
-
1
,
indent
)
ua
.
AttributeIds
.
BrowseName
,
ua
.
AttributeIds
.
NodeClass
,
ua
.
AttributeIds
.
WriteMask
,
ua
.
AttributeIds
.
UserWriteMask
,
ua
.
AttributeIds
.
DataType
,
ua
.
AttributeIds
.
Value
])
name
,
bname
,
nclass
,
mask
,
umask
,
dtype
,
val
=
[
attr
.
Value
.
Value
for
attr
in
attrs
]
update
=
attrs
[
-
1
].
ServerTimestamp
if
nclass
==
ua
.
NodeClass
.
Variable
:
print
(
"{}{:30} {:25} {:25} {:10} {!s:30} {!s:25}"
.
format
(
indent
,
name
.
to_string
(),
node
.
nodeid
.
to_string
(),
bname
.
to_string
(),
dtype
.
to_string
(),
update
,
val
))
else
:
print
(
"{}{:30} {:25} {:25}"
.
format
(
indent
,
name
.
to_string
(),
bname
.
to_string
(),
node
.
nodeid
.
to_string
()))
if
depth
:
_lsprint_long
(
node
,
depth
-
1
,
indent
+
" "
)
class
SubHandler
(
object
):
class
SubHandler
(
object
):
...
@@ -434,6 +450,7 @@ def uadiscover():
...
@@ -434,6 +450,7 @@ def uadiscover():
sys
.
exit
(
0
)
sys
.
exit
(
0
)
def
print_history
(
res
):
def
print_history
(
res
):
if
res
.
TypeId
.
Identifier
==
ua
.
ObjectIds
.
HistoryData_Encoding_DefaultBinary
:
if
res
.
TypeId
.
Identifier
==
ua
.
ObjectIds
.
HistoryData_Encoding_DefaultBinary
:
buf
=
ua
.
utils
.
Buffer
(
res
.
Body
)
buf
=
ua
.
utils
.
Buffer
(
res
.
Body
)
...
@@ -441,6 +458,7 @@ def print_history(res):
...
@@ -441,6 +458,7 @@ def print_history(res):
for
d
in
ua
.
HistoryData
.
from_binary
(
buf
).
DataValues
:
for
d
in
ua
.
HistoryData
.
from_binary
(
buf
).
DataValues
:
print
(
"{:30} {:10} {}"
.
format
(
str
(
d
.
SourceTimestamp
),
d
.
StatusCode
.
name
,
d
.
Value
))
print
(
"{:30} {:10} {}"
.
format
(
str
(
d
.
SourceTimestamp
),
d
.
StatusCode
.
name
,
d
.
Value
))
def
str_to_datetime
(
s
):
def
str_to_datetime
(
s
):
if
not
s
:
if
not
s
:
return
datetime
.
utcnow
()
return
datetime
.
utcnow
()
...
@@ -451,6 +469,7 @@ def str_to_datetime(s):
...
@@ -451,6 +469,7 @@ def str_to_datetime(s):
except
ValueError
:
except
ValueError
:
pass
pass
def
uahistoryread
():
def
uahistoryread
():
parser
=
argparse
.
ArgumentParser
(
description
=
"Read history of a node"
)
parser
=
argparse
.
ArgumentParser
(
description
=
"Read history of a node"
)
add_common_args
(
parser
)
add_common_args
(
parser
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment