- 论坛徽章:
- 6
|
这样行不行?- #!python
- # -*- coding:utf-8 -*-
- import pprint
- file_name = 'a.txt'
- data = dict()
- with open(file_name, 'r') as fh:
- repo_name = str()
- space = ' '
- is_in_bug = False
- is_in_change = False
- for line in fh:
- line = line.strip()
- if not line: continue
- if line.startswith('repo:'):
- (__, repo_name) = line.split(sep=space, maxsplit=1)
- data[repo_name] = dict()
- is_in_change = False
- elif line.startswith('commit'):
- (__, commit) = line.split(sep=space, maxsplit=1)
- data[repo_name][commit] = dict()
- is_in_change = False
- elif line.startswith('Author:'):
- (__, author) = line.split(sep=space, maxsplit=1)
- data[repo_name][commit]['author'] = author
-
- elif line.startswith('Date:'):
- (__, date) = line.split(sep=space, maxsplit=1)
- data[repo_name][commit]['date'] = date
-
- elif line.startswith('Bug'):
- (__, bug_id, bug_content) = line.split(sep=space, maxsplit=2)
- data[repo_name][commit]['bug_id'] = bug_id
- data[repo_name][commit]['bug_content'] = bug_content + "\n"
- is_in_bug = True
- elif line.startswith('Change-Id:'):
- (__, change_id) = line.split(sep=space, maxsplit=1)
- data[repo_name][commit]['change_id'] = change_id
- data[repo_name][commit]['change_content'] = str()
- is_in_change = True
- is_in_bug = False
-
- else:
- if is_in_bug: data[repo_name][commit]['bug_content'] += "{0}\n".format(line)
- if is_in_change: data[repo_name][commit]['change_content'] += "{0}\n".format(line)
-
- pprint.pprint(data, width=200)
复制代码 |
|