-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
142 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
""" | ||
A module for handling SVD bit-field enumerations. | ||
""" | ||
|
||
# built-in | ||
from typing import Any | ||
|
||
# internal | ||
from ifgen.svd.model.enum import EnumeratedValues | ||
|
||
EnumValues = dict[str, Any] | ||
ENUM_DEFAULTS: dict[str, Any] = { | ||
"unit_test": False, | ||
"json": False, | ||
"use_map": False, | ||
"identifier": False, | ||
} | ||
|
||
BY_HASH: dict[str, dict[int, str]] = {} | ||
|
||
|
||
def get_enum_name(name: str, peripheral: str, raw_mapping: EnumValues) -> str: | ||
"""Get the name of an enumeration.""" | ||
|
||
hashed = hash( | ||
",".join( | ||
name + f"={val['value']}" for name, val in raw_mapping.items() | ||
) | ||
) | ||
|
||
BY_HASH.setdefault(peripheral, {}) | ||
|
||
for_periph = BY_HASH[peripheral] | ||
for_periph.setdefault(hashed, name) | ||
|
||
return for_periph[hashed] | ||
|
||
|
||
IGNORE_WORDS = { | ||
"the", | ||
"as", | ||
"a", | ||
"is", | ||
"will", | ||
"but", | ||
"are", | ||
"yet", | ||
"that", | ||
"to", | ||
"and", | ||
"in", | ||
"of", | ||
"on", | ||
"for", | ||
"from", | ||
"its", | ||
"it", | ||
} | ||
|
||
|
||
def is_name_part(value: str) -> bool: | ||
"""Determine if a word should be part of an enumeration value name.""" | ||
return bool(value) and value not in IGNORE_WORDS | ||
|
||
|
||
def as_alnum(word: str) -> str: | ||
"""Get a word's alpha-numeric contents only.""" | ||
|
||
result = "" | ||
for char in word: | ||
if char.isalnum() or char == "_": | ||
result += char | ||
|
||
return result | ||
|
||
|
||
def handle_enum_name(name: str, description: str = None) -> str: | ||
"""Attempt to generate more useful enumeration names.""" | ||
|
||
if name.startswith("value") and description: | ||
new_name = description.replace("-", "_") | ||
|
||
alnum_parts = [as_alnum(x.strip().lower()) for x in new_name.split()] | ||
|
||
# Prune some words if the description is very long. | ||
if len(alnum_parts) > 1: | ||
alnum_parts = list(filter(is_name_part, alnum_parts)) | ||
|
||
assert alnum_parts, (name, description) | ||
|
||
new_name = "_".join(alnum_parts) | ||
|
||
assert new_name, (name, description) | ||
name = new_name | ||
|
||
return name | ||
|
||
|
||
def translate_enums(enum: EnumeratedValues) -> EnumValues: | ||
"""Generate an enumeration definition.""" | ||
|
||
result: dict[str, Any] = {} | ||
enum.handle_description(result) | ||
|
||
for name, value in enum.derived_elem.enum.items(): | ||
enum_data: dict[str, Any] = {} | ||
value.handle_description(enum_data) | ||
|
||
value_str: str = value.raw_data["value"] | ||
|
||
prefix = "" | ||
for possible_prefix in ("#", "0b", "0x"): | ||
if value_str.startswith(possible_prefix): | ||
prefix = possible_prefix | ||
break | ||
|
||
if prefix in ("#", "0b"): | ||
enum_data["value"] = int( | ||
value_str[len(prefix) :].replace("X", "1"), 2 | ||
) | ||
elif prefix == "0x": | ||
enum_data["value"] = int(value_str[len(prefix) :], 16) | ||
else: | ||
enum_data["value"] = int(value_str) | ||
|
||
result[ | ||
handle_enum_name(name, value.raw_data.get("description")) | ||
] = enum_data | ||
|
||
return result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters