opensampl.load.data
Data Factory for defining the unique probe/metric/reference combination to use for Data readings
DataFactory
Data factory for defining the unique probe/metric/reference combination for Data readings
Will take the references and attempt to resolve them into a probe, metric type, and reference object. The reference object will also have the database object for any compound references filled as well.
Source code in opensampl/load/data.py
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
|
__init__(probe_key, metric_type, reference_type, session, compound_key=None, strict=True)
Initialize the Data Factory for defining the unique probe/metric/reference combination for Data readings.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
probe_key
|
ProbeKey
|
The probe key identifying the probe. |
required |
metric_type
|
MetricType
|
The type of metric being tracked. |
required |
reference_type
|
ReferenceType
|
The type of reference for the data. |
required |
session
|
Session
|
Database session for operations. |
required |
compound_key
|
Optional[dict[str, Any]]
|
Optional dictionary for compound reference lookups. |
None
|
strict
|
bool
|
If True, raises errors for missing objects. If False, logs warnings. |
True
|
Source code in opensampl/load/data.py
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 |
|
dump_factory()
Dump a dict version of the data factory
Returns:
Type | Description |
---|---|
dictionary with all the relevant fields for a data factory |
Source code in opensampl/load/data.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
fill_db_values()
Fill in the probe, metric, reference, and compound reference from the database.
Returns:
Type | Description |
---|---|
Self for method chaining. |
Source code in opensampl/load/data.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
get_compound_reference()
Retrieve the object used as a compound reference in the data's reference type.
Only applies to compound reference types. Uses the compound_key to find the referenced object in the appropriate table.
Source code in opensampl/load/data.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
|
get_metric_type()
Get the metric type object for the data.
If the metric type doesn't exist, attempts to create it. If creation fails, falls back to UNKNOWN metric type.
Source code in opensampl/load/data.py
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 |
|
get_probe()
Get the probe object for the data.
Raises:
Type | Description |
---|---|
ValueError
|
If probe with the given key is not found. |
Source code in opensampl/load/data.py
120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
get_reference()
Get the reference object for the data.
Creates a reference linking the reference type and compound reference.
Raises:
Type | Description |
---|---|
ValueError
|
If compound reference has multiple or no primary keys. |
Source code in opensampl/load/data.py
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
|
get_reference_type()
Get the reference type object for the data.
Handles both simple and compound reference types. For compound types, attempts to find existing types or creates unknown compound types.
Source code in opensampl/load/data.py
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
|
not_found(msg, unstrict_msg='Filling value with UNKNOWN')
Handle cases where object is not found. Behavior varies based on the strict mode of the data factory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg
|
str
|
The message that is either logged (strict=False) or thrown as an error (strict=True). |
required |
unstrict_msg
|
str
|
An additional portion of logging message for alternate behavior when strict=False. |
'Filling value with UNKNOWN'
|
Source code in opensampl/load/data.py
107 108 109 110 111 112 113 114 115 116 117 118 |
|