listas e dicts feitos e mais cenas

This commit is contained in:
Afonso Franco 2023-05-24 23:55:12 +01:00
parent cd6ca88329
commit 33145189ed
Signed by: afonso
SSH key fingerprint: SHA256:JiuxZNdA5bRWXPMUJChI0AQ75yC+cXY4xM0IaVwEVys
2 changed files with 122 additions and 74 deletions

View file

@ -7,3 +7,10 @@ othername = """Tom \"The killer\" or \"yo\" or
date = 2010-04-23 date = 2010-04-23
time = 21:30:00 time = 21:30:00
"lol".yo = "test" "lol".yo = "test"
[[banana.ola.test]]
name = "rosinha"
oi = [{"ola" = 13}]
[[banana.ola.test]]
name = "laranjinha"

View file

@ -2,177 +2,218 @@ from ply import yacc
from lexer import tokens from lexer import tokens
root_dict = dict() root_dict = dict()
current_header = root_dict
def p_toml(p): def p_toml(p):
"toml : content" """toml : content"""
def p_content_multi(p): def p_content_multi(p):
"content : content tomlEntries" """content : content tomlEntries"""
def p_content_single(p): def p_content_single(p):
"content : tomlEntries" """content : tomlEntries"""
def p_tomlEntries_table(p): def p_tomlEntries_table(p):
"tomlEntries : table" """tomlEntries : table"""
def p_tomlEntries_object(p): def p_tomlEntries_object(p):
"tomlEntries : object" """tomlEntries : object"""
def p_table_simple(p): def p_table_simple(p):
"table : '[' ID ']'" """table : '[' ID ']'"""
headers = p[2].split(".") global root_dict, current_header
temp_dict = {} headers = p[2].split('.')
for header in headers[::-1]: temp = root_dict
temp_dict = {header : temp_dict} for header in headers:
p[0] = temp_dict if header not in temp:
temp[header] = {}
temp = temp[header]
current_header = temp
# isto ta errado # isto ta errado
def p_table_array(p): def p_table_array(p):
"table : '[' '[' ID ']' ']'" """table : '[' '[' ID ']' ']'"""
headers = p[3].split(".") global root_dict, current_header
entry = [] headers = p[3].split('.')
temp_dict = {} temp = root_dict
for header in headers[::-1]: for header in headers:
temp_dict = {header : entry} if header not in temp:
temp[header] = [{}]
res = temp_dict temp = temp[header][-1]
p[0] = res current_header = temp
def p_object_value(p): def p_object(p):
"object : key '=' value" """object : key '=' value
headers = p[1] | key '=' array
temp_dict = {headers[headers.length-1] : p[3]} | key '=' dict"""
for header in headers[::-1].pop(): global current_header
temp_dict = {header : temp_dict} headers = p[1].split('.')
return temp_dict temp = current_header
for header in headers[:-1]:
if header not in temp:
def p_object_array(p): temp[header] = {}
"object : key '=' array" temp = temp[header]
temp[headers[-1]] = p[3]
def p_object_dict(p):
"object : key '=' dict"
def p_array_cont(p): def p_array_cont(p):
"array : '[' aCont ']'" """array : '[' aCont ']'"""
p[0] = p[2]
def p_array_empty(p): def p_array_empty(p):
"array : '[' ']'" """array : '[' ']'"""
p[0] = []
def p_aCont_multiple(p): def p_aCont_multiple(p):
"aCont : aCont ',' aElem" """aCont : aCont ',' aElem"""
arr:list = p[1]
p[0] = arr.append(p[3])
def p_aCont_single(p): def p_aCont_single(p):
"aCont : aElem" """aCont : aElem"""
p[0] = [p[1]]
def p_aElem_value(p): def p_aElem(p):
"aElem : value" """aElem : value
| array
| dict"""
def p_aElem_dict(p): p[0] = p[1]
"aElem : dict"
def p_aElem_array(p):
"aElem : array"
def p_dict_cont(p): def p_dict_cont(p):
"dict : '{' dictCont '}'" """dict : '{' dictCont '}'"""
p[0] = p[2]
def p_dict_empty(p): def p_dict_empty(p):
"dict : '{' '}'" """dict : '{' '}'"""
p[0] = {}
def p_dictCont_multiple(p): def p_dictCont_multiple(p):
"dictCont : dictCont ',' dictElem" """dictCont : dictCont ',' dictElem"""
#checar se os dicts nao teem keys repetidas
p[0] = p[1].update(p[3])
def p_dictCont_single(p): def p_dictCont_single(p):
"dictCont : dictElem" """dictCont : dictElem"""
p[0] = p[1]
def p_dictElem_object(p): def p_dictElem_object(p):
"dictElem : object" """dictElem : key '=' value
| key '=' array
| key '=' dict"""
headers = p[1].split('.')
p[0] = {}
temp = p[0]
for header in headers[:-1]:
if header not in temp:
temp[header] = {}
temp = temp[header]
temp[headers[-1]] = p[3]
def p_key_id(p): def p_key_id(p):
"key : ID" """key : ID"""
p[0] = p[1]
def p_key_str(p): def p_key_str(p):
"key : STR" """key : STR"""
p[0] = p[1]
def p_key_float(p): def p_key_float(p):
"key : FLOAT" """key : FLOAT"""
p[0] = p[1]
def p_key_int(p): def p_key_int(p):
"key : INT" """key : INT"""
p[0] = p[1]
def p_value_str(p): def p_value_str(p):
"value : STR" """value : STR"""
p[0] = p[1] p[0] = p[1]
def p_value_mlstr(p): def p_value_mlstr(p):
"value : MLSTR" """value : MLSTR"""
p[0] = p[1] p[0] = p[1]
def p_value_date(p): def p_value_date(p):
"value : DATE" """value : DATE"""
p[0] = p[1] p[0] = p[1]
def p_value_datetime(p): def p_value_datetime(p):
"value : DATETIME" """value : DATETIME"""
p[0] = p[1]
def p_value_time(p):
"""value : TIME"""
p[0] = p[1] p[0] = p[1]
def p_value_int(p): def p_value_int(p):
"value : INT" """value : INT"""
p[0] = int(p[1]) p[0] = int(p[1])
def p_value_float(p): def p_value_float(p):
"value : FLOAT" """value : FLOAT"""
p[0] = float(p[1]) p[0] = float(p[1])
def p_value_hex(p): def p_value_hex(p):
"value : HEX" """value : HEX"""
p[0] = hex(p[1]) p[0] = hex(p[1])
def p_value_bin(p): def p_value_bin(p):
"value : BIN" """value : BIN"""
p[0] = bin(p[1]) p[0] = bin(p[1])
def p_value_oct(p): def p_value_oct(p):
"value : OCT" """value : OCT"""
p[0] = oct(p[1]) p[0] = oct(p[1])
def p_value_inf(p): def p_value_inf(p):
"value : INF" """value : INF"""
p[0] = float(p[1]) p[0] = float(p[1])
def p_value_nan(p): def p_value_nan(p):
"value : NAN" """value : NAN"""
p[0] = p[1] p[0] = p[1]
def p_error(p):
print(p)
parser = yacc.yacc() parser = yacc.yacc()
f = open('example.toml', 'r')
parser.parse(f.read())
print(root_dict)