2018-06-17 01:59:39 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Bobby Noelte
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
from extract.globals import *
|
|
|
|
from extract.directive import DTDirective
|
|
|
|
|
|
|
|
##
|
|
|
|
# @brief Manage directives in a default way.
|
|
|
|
#
|
|
|
|
class DTDefault(DTDirective):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
##
|
|
|
|
# @brief Extract directives in a default way
|
|
|
|
#
|
|
|
|
# @param node_address Address of node owning the clockxxx definition.
|
|
|
|
# @param yaml YAML definition for the owning node.
|
|
|
|
# @param prop property name
|
|
|
|
# @param def_label Define label string of node owning the directive.
|
|
|
|
#
|
2018-09-10 19:37:44 +08:00
|
|
|
def extract(self, node_address, yaml, prop, def_label):
|
2018-06-17 01:59:39 +08:00
|
|
|
prop_def = {}
|
|
|
|
prop_alias = {}
|
|
|
|
prop_values = reduced[node_address]['props'][prop]
|
|
|
|
|
|
|
|
if isinstance(prop_values, list):
|
|
|
|
for i, prop_value in enumerate(prop_values):
|
|
|
|
prop_name = convert_string_to_label(prop)
|
|
|
|
label = def_label + '_' + prop_name
|
|
|
|
if isinstance(prop_value, str):
|
|
|
|
prop_value = "\"" + prop_value + "\""
|
|
|
|
prop_def[label + '_' + str(i)] = prop_value
|
|
|
|
else:
|
|
|
|
prop_name = convert_string_to_label(prop)
|
|
|
|
label = def_label + '_' + prop_name
|
|
|
|
|
|
|
|
if prop_values == 'parent-label':
|
|
|
|
prop_values = find_parent_prop(node_address, 'label')
|
|
|
|
|
|
|
|
if isinstance(prop_values, str):
|
|
|
|
prop_values = "\"" + prop_values + "\""
|
|
|
|
prop_def[label] = prop_values
|
|
|
|
|
|
|
|
# generate defs for node aliases
|
|
|
|
if node_address in aliases:
|
|
|
|
for i in aliases[node_address]:
|
|
|
|
alias_label = convert_string_to_label(i)
|
|
|
|
alias = alias_label + '_' + prop_name
|
|
|
|
prop_alias[alias] = label
|
|
|
|
|
2018-07-04 17:24:07 +08:00
|
|
|
insert_defs(node_address, prop_def, prop_alias)
|
2018-06-17 01:59:39 +08:00
|
|
|
|
|
|
|
##
|
|
|
|
# @brief Management information for directives handled by default.
|
|
|
|
default = DTDefault()
|