-
Notifications
You must be signed in to change notification settings - Fork 55
/
semantic_attribute.py
525 lines (472 loc) · 18.5 KB
/
semantic_attribute.py
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
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
# Copyright The OpenTelemetry Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import numbers
import re
from collections.abc import Iterable
from dataclasses import dataclass, replace
from enum import Enum
from typing import List, Union
from ruamel.yaml.comments import CommentedMap, CommentedSeq
from opentelemetry.semconv.model.exceptions import ValidationError
from opentelemetry.semconv.model.utils import (
validate_values,
validate_id,
check_no_missing_keys,
)
class Required(Enum):
ALWAYS = 1
CONDITIONAL = 2
NO = 3
class StabilityLevel(Enum):
STABLE = 1
EXPERIMENTAL = 2
DEPRECATED = 3
class HasAttributes:
def _set_attributes(self, prefix, stability, node):
self.attrs_by_name = SemanticAttribute.parse(
prefix, stability, node.get("attributes")
)
@property
def attributes(self):
if not hasattr(self, "attrs_by_name"):
return []
return list(self.attrs_by_name.values())
def unique_attributes(attributes):
output = []
for x in attributes:
if x.fqn not in [attr.fqn for attr in output]:
output.append(x)
return output
@dataclass
class SemanticAttribute:
fqn: str
attr_id: str
ref: str
attr_type: Union[str, "EnumAttributeType"]
brief: str
examples: List[Union[str, int, bool]]
tag: str
stability: StabilityLevel
deprecated: str
required: Required
required_msg: str
sampling_relevant: bool
note: str
position: List[int]
inherited: bool = False
imported: bool = False
def import_attribute(self):
return replace(self, imported=True)
def inherit_attribute(self):
return replace(self, inherited=True)
@property
def is_local(self):
return not self.imported and not self.inherited
@property
def is_enum(self):
return isinstance(self.attr_type, EnumAttributeType)
@staticmethod
def parse(prefix, semconv_stability, yaml_attributes):
""" This method parses the yaml representation for semantic attributes
creating the respective SemanticAttribute objects.
"""
attributes = {}
allowed_keys = (
"id",
"type",
"brief",
"examples",
"ref",
"tag",
"deprecated",
"stability",
"required",
"sampling_relevant",
"note",
)
if not yaml_attributes:
return attributes
for attribute in yaml_attributes:
validate_values(attribute, allowed_keys)
attr_id = attribute.get("id")
ref = attribute.get("ref")
position_data = attribute.lc.data
position = position_data[next(iter(attribute))]
if attr_id is None and ref is None:
msg = "At least one of id or ref is required."
raise ValidationError.from_yaml_pos(position, msg)
if attr_id is not None:
validate_id(attr_id, position_data["id"])
attr_type, brief, examples = SemanticAttribute.parse_id(attribute)
fqn = "{}.{}".format(prefix, attr_id)
attr_id = attr_id.strip()
else:
# Ref
attr_type = None
if "type" in attribute:
msg = "Ref attribute '{}' must not declare a type".format(ref)
raise ValidationError.from_yaml_pos(position, msg)
brief = attribute.get("brief")
examples = attribute.get("examples")
ref = ref.strip()
fqn = ref
required_value_map = {
"always": Required.ALWAYS,
"conditional": Required.CONDITIONAL,
"": Required.NO,
}
required_msg = ""
required_val = attribute.get("required", "")
if isinstance(required_val, CommentedMap):
required = Required.CONDITIONAL
required_msg = required_val.get("conditional", None)
if required_msg is None:
position = position_data["required"]
msg = "Missing message for conditional required field!"
raise ValidationError.from_yaml_pos(position, msg)
else:
required = required_value_map.get(required_val)
if required == Required.CONDITIONAL:
position = position_data["required"]
msg = "Missing message for conditional required field!"
raise ValidationError.from_yaml_pos(position, msg)
if required is None:
position = position_data["required"]
msg = "Value '{}' for required field is not allowed".format(
required_val
)
raise ValidationError.from_yaml_pos(position, msg)
tag = attribute.get("tag", "").strip()
stability, deprecated = SemanticAttribute.parse_stability_deprecated(
attribute.get("stability"), attribute.get("deprecated"), position_data
)
if (
semconv_stability == StabilityLevel.DEPRECATED
and stability is not StabilityLevel.DEPRECATED
):
position = (
position_data["stability"]
if "stability" in position_data
else position_data["deprecated"]
)
msg = "Semantic convention stability set to deprecated but attribute '{}' is {}".format(
attr_id, stability
)
raise ValidationError.from_yaml_pos(position, msg)
stability = stability or semconv_stability or StabilityLevel.STABLE
sampling_relevant = (
AttributeType.to_bool("sampling_relevant", attribute)
if attribute.get("sampling_relevant")
else False
)
note = attribute.get("note", "")
fqn = fqn.strip()
parsed_brief = TextWithLinks(brief.strip() if brief else "")
parsed_note = TextWithLinks(note.strip())
attr = SemanticAttribute(
fqn=fqn,
attr_id=attr_id,
ref=ref,
attr_type=attr_type,
brief=parsed_brief,
examples=examples,
tag=tag,
deprecated=deprecated,
stability=stability,
required=required,
required_msg=str(required_msg).strip(),
sampling_relevant=sampling_relevant,
note=parsed_note,
position=position,
)
if attr.fqn in attributes:
position = position_data[list(attribute)[0]]
msg = (
"Attribute id "
+ fqn
+ " is already present at line "
+ str(attributes.get(fqn).position[0] + 1)
)
raise ValidationError.from_yaml_pos(position, msg)
attributes[fqn] = attr
return attributes
@staticmethod
def parse_id(attribute):
check_no_missing_keys(attribute, ["type", "brief"])
attr_val = attribute["type"]
try:
attr_type = EnumAttributeType.parse(attr_val)
except ValidationError as e:
position = attribute.lc.data["type"]
raise ValidationError.from_yaml_pos(position, e.message) from e
brief = attribute["brief"]
zlass = (
AttributeType.type_mapper(attr_type)
if isinstance(attr_type, str)
else "enum"
)
examples = attribute.get("examples")
is_simple_type = AttributeType.is_simple_type(attr_type)
# if we are an array, examples must already be an array
if (
is_simple_type
and attr_type.endswith("[]")
and not isinstance(examples, CommentedSeq)
):
position = attribute.lc.data[list(attribute)[0]]
msg = "Non array examples for {} are not allowed".format(attr_type)
raise ValidationError.from_yaml_pos(position, msg)
if (
(is_simple_type or isinstance(attr_type, EnumAttributeType))
and not isinstance(examples, CommentedSeq)
and examples is not None
):
examples = [examples]
if is_simple_type and attr_type not in [
"boolean",
"boolean[]",
"int",
"int[]",
"double",
"double[]",
]:
if examples is None or (len(examples) == 0):
position = attribute.lc.data[list(attribute)[0]]
msg = "Empty examples for {} are not allowed".format(attr_type)
raise ValidationError.from_yaml_pos(position, msg)
if is_simple_type and attr_type not in ["boolean", "boolean[]"]:
AttributeType.check_examples_type(attr_type, examples, zlass)
return attr_type, str(brief), examples
@staticmethod
def parse_stability_deprecated(stability, deprecated, position_data):
if deprecated is not None and stability is None:
stability = "deprecated"
if deprecated is not None:
if stability is not None and stability != "deprecated":
position = position_data["deprecated"]
msg = "There is a deprecation message but the stability is set to '{}'".format(
stability
)
raise ValidationError.from_yaml_pos(position, msg)
if AttributeType.get_type(deprecated) != "string" or deprecated == "":
position = position_data["deprecated"]
msg = (
"Deprecated field expects a string that specifies why the attribute is deprecated and/or what"
" to use instead! "
)
raise ValidationError.from_yaml_pos(position, msg)
deprecated = deprecated.strip()
if stability is not None:
stability = SemanticAttribute.check_stability(
stability,
position_data["stability"]
if "stability" in position_data
else position_data["deprecated"],
)
return stability, deprecated
@staticmethod
def check_stability(stability_value, position):
stability_value_map = {
"deprecated": StabilityLevel.DEPRECATED,
"experimental": StabilityLevel.EXPERIMENTAL,
"stable": StabilityLevel.STABLE,
}
val = stability_value_map.get(stability_value)
if val is not None:
return val
msg = "Value '{}' is not allowed as a stability marker".format(stability_value)
raise ValidationError.from_yaml_pos(position, msg)
def equivalent_to(self, other: "SemanticAttribute"):
if self.attr_id is not None:
if self.fqn == other.fqn:
return True
elif self == other:
return True
return False
class AttributeType:
# https://yaml.org/type/bool.html
bool_type_true = re.compile("y|Y|yes|Yes|YES|true|True|TRUE|on|On|ON")
bool_type_false = re.compile("n|N|no|No|NO|false|False|FALSE|off|Off|OFF")
bool_type = re.compile(bool_type_true.pattern + "|" + bool_type_false.pattern)
@staticmethod
def get_type(t):
if isinstance(t, int):
return "int"
if AttributeType.bool_type.fullmatch(t):
return "boolean"
return "string"
@staticmethod
def is_simple_type(attr_type: str):
return attr_type in (
"string",
"string[]",
"int",
"int[]",
"double",
"double[]",
"boolean",
"boolean[]",
)
@staticmethod
def type_mapper(attr_type: str):
type_mapper = {
"int": int,
"int[]": int,
"double": float,
"double[]": float,
"string": str,
"string[]": str,
"boolean": bool,
"boolean[]": bool,
}
return type_mapper.get(attr_type)
@staticmethod
def check_examples_type(attr_type, examples, zlass):
""" This method checks example are correctly typed
"""
index = -1
for example in examples:
index += 1
if attr_type.endswith("[]") and isinstance(example, Iterable):
# Multi array example
for element in example:
if not isinstance(element, zlass):
position = examples.lc.data[index]
msg = "Example with wrong type. Expected {} examples but is was {}.".format(
attr_type, type(element)
)
raise ValidationError.from_yaml_pos(position, msg)
else: # Single value example or array example with a single example array
if not isinstance(example, zlass):
position = examples.lc.data[index]
msg = "Example with wrong type. Expected {} examples but is was {}.".format(
attr_type, type(example)
)
raise ValidationError.from_yaml_pos(position, msg)
@staticmethod
def to_bool(key, parent_object):
""" This method translate yaml boolean values to python boolean values
"""
yaml_value = parent_object.get(key)
if isinstance(yaml_value, bool):
return yaml_value
if isinstance(yaml_value, str):
if AttributeType.bool_type_true.fullmatch(yaml_value):
return True
elif AttributeType.bool_type_false.fullmatch(yaml_value):
return False
position = parent_object.lc.data[key]
msg = "Value '{}' for {} field is not allowed".format(yaml_value, key)
raise ValidationError.from_yaml_pos(position, msg)
@dataclass
class EnumAttributeType:
custom_values: bool
members: "List[EnumMember]"
enum_type: str
def __init__(self, custom_values, members, enum_type):
self.custom_values = custom_values
self.members = members
self.enum_type = enum_type
def __str__(self):
return self.enum_type
@staticmethod
def is_valid_enum_value(val):
return isinstance(val, (int, str))
@staticmethod
def parse(attribute_type):
""" This method parses the yaml representation for semantic attribute types.
If the type is an enumeration, it generated the EnumAttributeType object,
otherwise it returns the basic type as string.
"""
if isinstance(attribute_type, str):
if AttributeType.is_simple_type(attribute_type):
return attribute_type
else: # Wrong type used - rise the exception and fill the missing data in the parent
raise ValidationError(
0, 0, "Invalid type: {} is not allowed".format(attribute_type)
)
else:
allowed_keys = ["allow_custom_values", "members"]
mandatory_keys = ["members"]
validate_values(attribute_type, allowed_keys, mandatory_keys)
custom_values = (
bool(attribute_type.get("allow_custom_values"))
if "allow_custom_values" in attribute_type
else False
)
members = []
if attribute_type["members"] is None or len(attribute_type["members"]) < 1:
# Missing members - rise the exception and fill the missing data in the parent
raise ValidationError(0, 0, "Enumeration without values!")
allowed_keys = ["id", "value", "brief", "note"]
mandatory_keys = ["id", "value"]
for member in attribute_type["members"]:
validate_values(member, allowed_keys, mandatory_keys)
if not EnumAttributeType.is_valid_enum_value(member["value"]):
raise ValidationError(
0, 0, "Invalid value used in enum: <{}>".format(member["value"])
)
members.append(
EnumMember(
member_id=member["id"],
value=member["value"],
brief=member.get("brief")
if "brief" in member
else member["id"],
note=member.get("note") if "note" in member else "",
)
)
enum_type = AttributeType.get_type(members[0].value)
for m in members:
if enum_type != AttributeType.get_type(m.value):
raise ValidationError(0, 0, "Enumeration type inconsistent!")
return EnumAttributeType(custom_values, members, enum_type)
@dataclass
class EnumMember:
member_id: str
value: str
brief: str
note: str
class MdLink:
text: str
url: str
def __init__(self, text, url):
self.text = text
self.url = url
def __str__(self):
return "[{}]({})".format(self.text, self.url)
class TextWithLinks(str):
parts: List[Union[str, MdLink]]
raw_text: str
md_link = re.compile("\[([^\[\]]+)\]\(([^)]+)")
def __init__(self, text):
super().__init__()
self.raw_text = text
self.parts = []
last_position = 0
for match in self.md_link.finditer(text):
prev_text = text[last_position : match.start()]
link = MdLink(match.group(1), match.group(2))
if prev_text:
self.parts.append(prev_text)
self.parts.append(link)
last_position = match.end() + 1
last_part = text[last_position:]
if last_part:
self.parts.append(last_part)
def __str__(self):
str_list = []
for elm in self.parts:
str_list.append(elm.__str__())
return "".join(str_list)