forked from programthink/zhao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.py
300 lines (237 loc) · 8.87 KB
/
make.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
import shutil
import re
from io import StringIO
import yaml
def _raise_err(format, *args) :
raise ValueError(format % args)
def _load_yaml(yaml_file) :
print(u'load: ' + yaml_file)
with open(yaml_file, u'r') as f :
return yaml.load(f.read())
class Node :
all = {}
keys = []
@classmethod
def init(cls) :
Node.all = {}
Node.keys = []
for node_type in [u'person', u'company'] :
for node_id in os.listdir(u'../data/' + node_type) :
yaml_file = u'../data/%s/%s/brief.yaml' % (node_type, node_id)
node = Node(_load_yaml(yaml_file), node_id, node_type)
if node_id in Node.all :
_raise_err(u'Node id conflict: "%s"!', node_id)
Node.all[node_id] = node
Node.keys.append(node_id)
print(u'Node number: %d' % len(Node.all))
def __init__(self, yaml, node_id, type) :
self.id = node_id
self.type = type
self.name = yaml[u'name']
if u'other_names' in yaml : # person
self.other_names = yaml[u'other_names']
if u'sex' in yaml : # person
self.sex = yaml[u'sex']
if u'full_name' in yaml : # company
self.full_name = yaml[u'full_name']
self.birth = yaml[u'birth']
self.death = yaml[u'death']
self.desc = yaml[u'desc']
self.links = yaml[u'links']
class Relation :
all = {}
keys = []
@classmethod
def init(cls) :
for family_id in os.listdir(u'../data/family/') :
family_id = family_id.replace(u'.yaml', u'')
yaml_file = u'../data/family/%s.yaml' % (family_id,)
if family_id not in Node.all :
_raise_err(u'Invalid family name: "%s"!', family_id)
yaml = _load_yaml(yaml_file)
for lst in yaml[u'relations'] :
relation = Relation(lst)
Relation.all[relation.name] = relation
Relation.keys.append(relation.name)
print(u'Relation number: %d' % len(Relation.all))
def __init__(self, lst) :
self.node_from = lst[0]
self.node_to = lst[1]
self.desc = lst[2]
self.name = self.node_from + u'->' + self.node_to
if self.name in Relation.all :
_raise_err(u'Relation name conflict: "%s"!', self.name)
if self.node_from not in Node.all :
_raise_err(u'Invalid relation "from" attr: "%s"!', self.node_from)
if self.node_to not in Node.all :
_raise_err(u'Invalid relation "to" attr": "%s"!', self.node_to)
class Family :
all = {}
keys = []
@classmethod
def init(cls) :
for family_id in os.listdir(u'../data/family/') :
family_id = family_id.replace(u'.yaml', u'')
yaml_file = u'../data/family/%s.yaml' % (family_id,)
if family_id not in Node.all :
_raise_err(u'Invalid family name: "%s"!', family_id)
family = Family(_load_yaml(yaml_file))
Family.all[family_id] = family
Family.keys.append(family_id)
print(u'Family number: %d' % len(Family.all))
def __init__(self, yaml) :
self.name = yaml[u'name']
self.inner = yaml[u'inner']
self.outer = yaml[u'outer']
self.members = [self.name] + self.inner + self.outer
for name in self.members :
if name not in Node.all :
_raise_err(u'Invalid family members: "%s"!', name)
class Graph :
def __init__(self, yaml) :
self._name = yaml[u'name']
self._families = yaml[u'families']
self._families.reverse()
self._nodes = []
self._relations = []
for f in self._families :
family = Family.all[f]
for n in family.members :
if n not in self._nodes :
self._nodes.append(n)
for r in Relation.keys :
relation = Relation.all[r]
if relation.node_from in family.members \
and relation.node_to in family.members \
and r not in self._relations :
self._relations.append(r)
def dump(self) :
output = StringIO()
for n in self._nodes :
output.write(self._dot_node(n))
output.write(u'\n')
for r in self._relations :
output.write(self._dot_relation(r))
output.write(u'\n')
if len(self._families) > 1 :
for f in self._families :
output.write(self._dot_sub_graph(f))
template = u'''
digraph %s
{
\trankdir = "LR";
\tranksep = 0.5;
\tlabel = "%s";
\tlabelloc = "t";
\tfontsize = "24";
\tfontname = "SimHei";
\tgraph [style="filled", color="lightgrey"];
\tnode [fontname="SimSun"];
\tedge [fontname="SimSun"];
%s
}
'''
return template % (self._name, self._name, output.getvalue())
def _node_color(self, node) :
if u'company' == node.type :
return u'green'
else :
return (u'blue' if u'M'==node.sex else u'red')
def _other_names(self, node) :
other_names = ''
if u'person'==node.type and node.other_names :
other_names = u', '.join([u'%s:%s' % (k,v) for k,v in node.other_names.items()])
elif u'company'==node.type and node.full_name :
other_names = node.full_name
return u'<tr><td>(%s)</td></tr>' % (other_names,) if other_names else ''
def _dot_node(self, node_id) :
node = Node.all[node_id]
template = u'\t%s [shape="%s", color="%s", ' \
u'label=<<table border="0" cellborder="0">' \
u'<tr><td>%s%s</td></tr>' \
u'%s' \
u'<tr><td>%s</td></tr>' \
u'<tr><td>%s</td></tr></table>>];\n'
portrait = u'../data/person/%s/portrait.png' % (node_id,)
portrait = u'<img src="%s"/>' % (portrait,) if os.path.exists(portrait) else ''
return template % (node.id,
u'box' if u'person'==node.type else u'ellipse',
self._node_color(node),
node.name,
(u'' if node.birth==u'N/A' else u' [%s]'%node.birth),
self._other_names(node),
portrait,
node.desc.replace(u'\n', u'<br/>'))
def _dot_relation(self, name) :
relation = Relation.all[name]
template = u'''\t%s -> %s [label="%s", style=%s, color="%s"];\n'''
if re.match(u'^夫|妻$', relation.desc) :
style = u'bold'
elif re.match(u'^父|母$', relation.desc) :
style = u'solid'
elif re.match(u'^(独|长|次|三|四|五|六|七)?(子|女)$', relation.desc) :
style = u'solid'
elif re.match(u'^.*?(兄|弟|姐|妹)$', relation.desc) :
style = u'dashed'
else :
style = u'dotted'
return template % (relation.node_from, relation.node_to,
relation.desc, style,
self._node_color(Node.all[relation.node_to]))
def _dot_sub_graph(self, name) :
node = Node.all[name]
if node.type == u'company' :
return self._dot_node(name)
family = Family.all[name]
template = u'''
\tsubgraph "cluster_%s"
\t{
\t\tfontsize="18";
\t\tlabel="%s家族";
\t\t%s;
\t}
'''
return template % (family.name, family.name,
u';'.join([name]+family.inner))
class Builder :
def __init__(self) :
Node.init()
Relation.init()
Family.init()
def _mkdir(self, name) :
if os.path.exists(name) :
shutil.rmtree(name)
os.mkdir(name)
def _exec(self, cmd) :
print(cmd)
return os.system(cmd.encode(u'utf-8'))
def do(self, file_type) :
os.chdir(u'../download/')
self._mkdir(u'dot')
self._mkdir(file_type)
n = 0
for graph in _load_yaml(u'../data/graph.yaml') :
n += 1
name = u'%02d-%s' % (n, graph[u'name'])
dot_file = u'./dot/%s.dot' % (name,)
output_file = u'./%s/%s.%s' % (file_type, name, file_type)
with open(dot_file, u'wb') as f :
f.write(Graph(graph).dump().encode(u'utf-8'))
cmd = u'dot "%s" -T%s -o"%s"' % (dot_file, file_type, output_file)
if self._exec(cmd) != 0 :
_raise_err(u'Make "%s" failed!', dot_file)
return 0
if '__main__' == __name__ :
try :
if len(sys.argv) != 2 :
print(u'''Usage:\n%s file_type
(file_type is pdf or jpg or png or gif or tiff or svg or ps)''' % sys.argv[0])
sys.exit(0)
sys.exit(Builder().do(sys.argv[1]))
except Exception as err :
print(u'Make abort!\n%s' % err)
sys.exit(1)