次のようなデータベーステーブルがあります。データはツリーの形式であり、
CREATE TABLE IF NOT EXISTS DOMAIN_HIERARCHY (
COMPONENT_ID INT NOT NULL ,
LEVEL INT NOT NULL ,
COMPONENT_NAME VARCHAR(127) NOT NULL ,
PARENT INT NOT NULL ,
PRIMARY KEY ( COMPONENT_ID )
);
次のデータは表にあります
(1,1,'A',0)
(2,2,'AA',1)
(3,2,'AB',1)
(4,3,'AAA',2)
(5,3,'AAB',2)
(6,3,'ABA',3)
(7,3,'ABB',3)
データを取得してPython辞書に保存する必要があります
以下のコードでは
conx = sqlite3.connect( 'nameofdatabase.db' )
curs = conx.cursor()
curs.execute( 'SELECT COMPONENT_ID, LEVEL, COMPONENT_NAME, PARENT FROM DOMAIN_HIERARCHY' )
rows = curs.fetchall()
hrcy = {}
for row in rows:
entry = ( row[2], {} )
cmap[row[0]] = entry
if row[1] == 1:
hrcy = {entry[0]: entry[1]}
hrcy['status'] = 0
for row in rows:
item = cmap[row[0]]
parent = cmap.get( row[3], None )
if parent:
parent[1][row[2]] = item[1]
parent[1]['status'] = 0
print json.dumps( hrcy, indent = 4 )
出力は次のようになります
{
"status": 0,
"A": {
"status": 0,
"AA": {
"status": 0,
"AAA": {},
"AAB": {}
},
"AB": {
"status": 0,
"ABA": {},
"ABB": {}
}
}
}
私は次のような出力が欲しい
{
"component": "A",
"status": 0,
"children": [
{
"component": "AA",
"status": 0,
"children": [
{
"component": "AAA",
"status": 0,
"children": []
},
{
"component": "AAB",
"status": 0,
"children": []
}
]
},
{
"component": "AB",
"status": 0,
"children": [
{
"component": "ABA",
"status": 0,
"children": []
},
{
"component": "ABB",
"status": 0,
"children": []
}
]
}
]
}
誰かが私が行うべき変更を教えてもらえますか?