# Function to create the main JSON structure with all values initially set to 0
[docs]defcreate_json_structure():ports=["port_A","port_B","port_C","port_D"]json_data={}forsnin["SN","SN0","SN12","SN22","SN23","SN24","SN25","SN26","SN300","SN6","SN65535"]:json_data[sn]={port:create_port_template()forportinports}# Set exceptions where values should be 1json_data["SN24"]["port_B"]["contact_1"]=1json_data["SN24"]["port_B"]["contact_3"]=1json_data["SN24"]["port_B"]["contact_4"]=1json_data["SN24"]["port_B"]["contact_5"]=1json_data["SN24"]["port_B"]["contact_6"]=1json_data["SN6"]["port_A"]["contact_1"]=1json_data["SN6"]["port_A"]["contact_2"]=1json_data["SN6"]["port_A"]["contact_3"]=1json_data["SN6"]["port_A"]["contact_4"]=1json_data["SN6"]["port_A"]["contact_5"]=1json_data["SN6"]["port_A"]["contact_6"]=1returnjson_data
# Specify the file pathfile_path=os.path.dirname(__file__)+"/states_empty.json"# Check if the file existsifnotos.path.exists(file_path):# Create the directory if it doesn't existos.makedirs(os.path.dirname(file_path),exist_ok=True)# Create the JSON structurejson_data=create_json_structure()# Write the JSON data to the filewithopen(file_path,'w')asjson_file:json.dump(json_data,json_file,indent=4)