-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontext_tag.go
97 lines (94 loc) · 2.36 KB
/
context_tag.go
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
package encoding
import "github.com/NubeDev/bacnet/btypes"
/* refer to https://github.com/bacnet-stack/bacnet-stack/blob/bacnet-stack-0.9.1/src/bacapp.c#L583 */
/* returns the fixed tag type for certain context tagged properties */
func tagTypeInContext(property btypes.PropertyType, tagNumber uint8) uint8 {
tag := tagNumber
switch property {
case btypes.PROP_ACTUAL_SHED_LEVEL:
case btypes.PROP_REQUESTED_SHED_LEVEL:
case btypes.PROP_EXPECTED_SHED_LEVEL:
switch tagNumber {
case 0, 1:
tag = tagUint
case 2:
tag = tagReal
}
case btypes.PROP_ACTION:
switch tagNumber {
case 0, 1:
tag = tagObjectID
case 2:
tag = tagEnumerated
case 3, 5, 6:
tag = tagUint
case 7, 8:
tag = tagBool
case 4: /* propertyValue: abstract syntax */
}
case btypes.PROP_LIST_OF_GROUP_MEMBERS:
/* Sequence of ReadAccessSpecification */
switch tagNumber {
case 0:
tag = tagObjectID
}
case btypes.PROP_EXCEPTION_SCHEDULE:
switch tagNumber {
case 1:
tag = tagObjectID
case 3:
tag = tagUint
case 0: /* calendarEntry: abstract syntax + context */
case 2: /* list of BACnetTimeValue: abstract syntax */
}
break
case btypes.PROP_LOG_DEVICE_OBJECT_PROPERTY:
switch tagNumber {
case 0: /* Object ID */
fallthrough
case 3: /* Device ID */
tag = tagObjectID
case 1: /* Property ID */
tag = tagEnumerated
case 2: /* Array index */
tag = tagUint
}
break
case btypes.PROP_SUBORDINATE_LIST:
/* BACnetARRAY[N] of BACnetDeviceObjectReference */
switch tagNumber {
case 0: /* Optional Device ID */
fallthrough
case 1: /* Object ID */
tag = tagObjectID
}
case btypes.PROP_RECIPIENT_LIST:
/* List of BACnetDestination */
switch tagNumber {
case 0: /* Device Object ID */
tag = tagObjectID
case 1:
/* 2015.08.22 EKH 135-2012 pg 708
todo - Context 1 in Recipient list would be a BACnetAddress, not coded yet...
BACnetRecipient::= CHOICE {
device [0] BACnetObjectIdentifier,
address [1] BACnetAddress
}
*/
}
break
case btypes.PROP_ACTIVE_COV_SUBSCRIPTIONS:
/* BACnetCOVSubscription */
switch tagNumber {
case 0: /* BACnetRecipientProcess */
case 1: /* BACnetObjectPropertyReference */
case 2: /* issueConfirmedNotifications */
tag = tagBool
case 3: /* timeRemaining */
tag = tagUint
case 4: /* covIncrement */
tag = tagReal
}
}
return tag
}