transformer_helper
trestle.transforms.transformer_helper
¤
Transformer helper functions.
Classes¤
PropertyAccounting
¤
Property accounting class.
Help transformers do accounting.
Each time a new record is processed the transformer calls count_group. For each attribute on that record, the transformer calls count_property. - If the property already exactly exists, then its count is incremented. - Otherwise, a new entry is made and the count for that property is set to 1. When the transformer wants to know if a property (name, value, ns, and class) is common to all records for the group, is_common_property is employed to check that the number of records in the group is equal to the number of duplicates there are for the property. If equal, then the property is common.
Source code in trestle/transforms/transformer_helper.py
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 |
|
Functions¤
__init__()
¤
Initialize.
Source code in trestle/transforms/transformer_helper.py
44 45 46 47 |
|
count_group(group=None)
¤
Group accounting.
Source code in trestle/transforms/transformer_helper.py
49 50 51 52 53 54 55 |
|
count_property(group, name=None, value=None, class_=None, ns=None)
¤
Property accounting.
Source code in trestle/transforms/transformer_helper.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
is_common_property(group, name=None, value=None, class_=None, ns=None)
¤
Check for common property.
Source code in trestle/transforms/transformer_helper.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
PropertyManager
¤
Property manager class.
Help transformer manage properties.
Use materialize to: fetch a property from cache (if caching), else create a new property instance and keep in cache (if caching). Use put_common_property to: keep common properties for each group. Use get_common_properties to: recall the list of common properties for the group.
Source code in trestle/transforms/transformer_helper.py
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 |
|
Attributes¤
hits: int
property
¤
Cache hits.
requests: int
property
¤
Cache requests.
Functions¤
__init__(caching=True, checking=False)
¤
Initialize.
Source code in trestle/transforms/transformer_helper.py
100 101 102 103 104 105 106 107 |
|
get_common_properties(group=None)
¤
Recall common properties for the group.
Source code in trestle/transforms/transformer_helper.py
157 158 159 160 161 162 163 164 |
|
materialize(name=None, value=None, class_=None, ns=None)
¤
Get property from cache or create new property.
Source code in trestle/transforms/transformer_helper.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
put_common_property(group=None, name=None, value=None, class_=None, ns=None)
¤
Remember common property.
Source code in trestle/transforms/transformer_helper.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
TransformerHelper
¤
OSCAL transformer helper.
Source code in trestle/transforms/transformer_helper.py
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 214 215 |
|
Functions¤
remove_common_observation_properties(observations)
¤
Remove common observation properties.
Source code in trestle/transforms/transformer_helper.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
Functions¤
handler: python