summaryrefslogtreecommitdiff
path: root/scripts/html.py
blob: 96c610838c94564847d567de63d9728c8fd4b49d (plain)
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#! /usr/bin/env python3
#===============================
#
# html
#
# 2019/02/18 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
#===============================
import sys
import os

import base
import find
import view

#====================================
#
# html
#
#====================================
class html(base.base):

    __head = 0
    __noclose = ["input",
                 "frame",
                 "link",
                 "br",
    ]

    #--------------------
    # option
    #--------------------
    def option(self, dic):
        if (dic):
            self.dic.update(dic)

    #--------------------
    # __init__
    #--------------------
    def __init__(self, mark, dic = None):
        super().__init__()

        self.dic = {}
        self.mark = mark
        self.option(dic)
        self.txt = ""

    #--------------------
    # open
    #--------------------
    def open(self, ret = 0):

        self.txt = ""

        if (ret):
            for i in range(html.__head):
                self.txt += "\t"

        self.txt += "<{}".format(self.mark)
        for d in self.dic:
            self.txt += " {}=\"{}\"".format(d, self.dic[d])
        self.txt += ">"
        html.__head += 1

    #--------------------
    # close
    #--------------------
    def close(self, ret = 0):
        html.__head -= 1
        # no end-mark
        if (self.mark in html.__noclose):
            return

        if (ret):
            for i in range(html.__head):
                self.txt += "\t"
        self.txt += "</{}>".format(self.mark)

    #--------------------
    # text
    #--------------------
    def text(self, txt = ""):
        self.open()
        self.txt += txt
        self.close()
        return self.txt

    #--------------------
    # print
    #--------------------
    def print(self, txt = ""):

        self.open(1)
        self.txt += txt
        self.close(0)
        print(self.txt)

    #--------------------
    # for with
    #--------------------
    def __enter__(self):
        self.open(1)
        print(self.txt)
        self.txt = ""
        return self
    def __exit__(self, exception_type, exception_value, traceback):
        self.close(1)
        print(self.txt)
        self.txt = ""

#====================================
#
# periject_html
#
#====================================
class periject_html(base.base):

    def __init__(self):
        super().__init__()
        self.git = self.config("git-linux")

    def git_title(self, id):
        return self.run("git -C {} log -1 {} --format=%s".format(self.git, id))

    def bsp_url(self, id):
        return "https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas-bsp.git/commit/?id={}".format(id)

    def upstream_url(self, id):
        return "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id={}".format(id)

    #--------------------
    # index
    #--------------------
    def index(self):
        # |    |    |
        # |menu|body|
        # |    |    |
        with html("frameset", {"cols":"200,*"}):
            html("frame", {"src":"./html/menu.html",     "name":"menu"}).print()
            html("frame", {"src":"./html/subindex.html", "name":"body"}).print()

    #--------------------
    # summary
    #--------------------
    def subindex(self):
        # -------
        # summary
        # -------
        # body
        # -------
        with html("frameset", {"rows":"300,*"}):
            html("frame", {"src":"./summary.html", "name":"summary"}).print()
            html("frame", {"src":"./body.html",    "name":"subbody"}).print()


    #--------------------
    # summary
    #--------------------
    def __summary(self, title, dir, files):
        # -------
        # summary
        # -------
        #
        # -------
        html("h2").print(title)
        with html("table", {"border":"1"}):
            # | file-name | status | assignee | title |
            for file in files:
                v = view.viewer([file])
                v.set_data(file)
                f = os.path.basename(file)

                subbody = html("a", {"target":"subbody"})
                summary = html("a", {"target":"summary"})
                with html("tr"):
                    subbody.option({"href":os.path.relpath(file.replace("yaml", "html").replace("projects", "html"), dir)})
                    html("td").print(subbody.text(os.path.basename(file).replace(".yaml", "")))

                    status = v.get_data("status")
                    summary.option({"href":os.path.relpath("{}/html/{}.html".format(self.top(), status), dir)})
                    html("td").print(summary.text(status))

                    assignee = v.get_data("assignee")
                    summary.option({"href":os.path.relpath("{}/html/{}.html".format(self.top(), assignee), dir)})
                    html("td").print(summary.text(assignee))

                    html("td").print(v.get_data("title"))

    #--------------------
    # summary
    #--------------------
    def summary(self, argv):

        dir = os.path.normpath(argv[0])

        # -------
        # summary
        # -------
        #
        # -------
        self.__summary(dir, self.top() + "/" + dir, find.find([dir]).get())

    #--------------------
    # menu_folder
    #--------------------
    def menu_folder(self, current):
        folders	= self.runl("cd {}; ls -F | grep /".format(current))
        path	= current.replace("./projects", ".")
        link	= html("a", {"target":"summary",
                             "href":"{}/summary.html".format(path)})

        html("li").print(link.text(os.path.basename(current)))

        if (not folders):
            return

        with html("ul"):
            for folder in folders:
                dir = os.path.basename(folder)
                self.menu_folder("{}/{}".format(current, folder[:-1]))

    #--------------------
    # menu_assignee
    #--------------------
    def menu_assignee(self):
        # from project.schema.yaml
        with html("ul"):
            for assignee in ['BSP', 'Geert', 'Jacopo', 'Kaneko', 'Kieran', 'Laurent', 'Magnus', 'Marek',
                         'Morimoto', 'Niklas', 'Shimoda', 'Simon', 'Ulrich', 'Wolfram']:
                html("li").print(html("a", {"target":"summary",
                                            "href":"./{}.html".format(assignee)}).text(assignee))

    #--------------------
    # menu_status
    #--------------------
    def menu_status(self):
        # from project.schema.yaml
        with html("ul"):
            for status in ['New', 'Active', 'Blocked', 'Paused', 'Done', 'Abandoned']:
                html("li").print(html("a", {"target":"summary",
                                            "href":"./{}.html".format(status)}).text(status))

    #--------------------
    # menu
    #--------------------
    def menu(self):

        with html("body"):
            html("h1").print("Folder")
            with html("ul"):
                self.menu_folder("./projects")

            html("h1").print("Assignee")
            self.menu_assignee()

            html("h1").print("Status")
            self.menu_status()

    #--------------------
    # body
    #--------------------
    def body(self):
        with html("body"):
            html("div").print("select tasks from menu")

    #--------------------
    # task_status
    #--------------------
    def task_status(self, v):
        dir		= os.path.dirname(v.file)
        assignee	= v.get_data("assignee")
        status		= v.get_data("status")

        with html("table", {"border":"1"}):
            with html("tr"):
                html("td").print("status")
                html("td").print(html("a", {"target":"summary",
                                            "href":os.path.relpath("{}/html/{}.html".format(self.top(), status), dir)}).text(status))
            with html("tr"):
                html("td").print("assignee")
                html("td").print(html("a", {"target":"summary",
                                            "href":os.path.relpath("{}/html/{}.html".format(self.top(), assignee), dir)}).text(assignee))
            with html("tr"):
                html("td").print("key")
                html("td").print(v.get_data("key"))

    #--------------------
    # _task_relation
    #--------------------
    def _task_relation(self, relationship, v, item):

        current_dir = os.path.dirname(v.file)
        related_file = v.get_related_file(relationship[item])

        if (not os.path.exists(related_file)):
            with html("tr"):
                html("td").print(item)
                html("td").print("Unknown({})".format(related_file))
            return

        rv = view.viewer([related_file])
        rv.set_data(related_file)
        with html("tr"):
            html("td").print(item)
            html("td").print(html("a", {"href":
                                        os.path.relpath(related_file.replace("projects", "html").replace("yaml", "html"), current_dir)}).text(rv.get_data("title")))

    #--------------------
    # task_relation
    #--------------------
    def task_relation(self, v):

        relationships = v.get_data("relationships")
        if (not relationships):
            return

        current_dir = os.path.dirname(v.file)

        with html("table", {"border":"1"}):
            for relationship in relationships:
                if ("parent" in relationship):
                    self._task_relation(relationship, v, "parent")
                if ("depends" in relationship):
                    self._task_relation(relationship, v, "depends")
                if ("blocks" in relationship):
                    self._task_relation(relationship, v, "blocks")

    #--------------------
    # task_head
    #--------------------
    def task_head(self, v):

        with html("table"):
            with html("tr"):
                with html("td"):
                    self.task_status(v)
                with html("td"):
                    self.task_relation(v)

    #--------------------
    # task_commit_bsp
    #--------------------
    def task_commit_bsp(self, v):

        with html("ul"):
            for bsp in v.get_data("bsp-commits"):
                html("li").print(html("a", {"href":self.bsp_url(bsp)}).text(self.git_title(bsp)))

    #--------------------
    # __task_commit_upstream
    #--------------------
    def __task_commit_upstream(self, v, upstream, item):
        if (not item in upstream):
            return

        commit = upstream[item]

        with html("tr"):
            html("td").print(item)
            html("td").print(html("a", {"href":self.upstream_url(commit)}).text(self.git_title(commit)))

    #--------------------
    # task_commit_upstream
    #--------------------
    def task_commit_upstream(self, v):
        upstream = v.get_data("upstream")

        with html("table"):
            for up in upstream:
                self.__task_commit_upstream(v, up, "torvalds")
            for up in upstream:
                self.__task_commit_upstream(v, up, "next")

    #--------------------
    # task_commit
    #--------------------
    def task_commit(self, v):

        bsp = v.get_data("bsp-commits")
        if (not bsp):
            return

        with html("table", {"border":"1"}):
            with html("tr"):
                html("th").print("BSP")
                html("th").print("upstream")
            with html("tr"):
                with html("td"):
                    self.task_commit_bsp(v)
                with html("td"):
                    self.task_commit_upstream(v)

    #--------------------
    # task_comment
    #--------------------
    def task_comment(self, v):
        comments = v.get_data("comments")
        if (not comments):
            return

        with html("ul"):
            for comment in comments:
                html("li").print(comment)

    #--------------------
    # task
    #--------------------
    def task(self, argv):
        v = view.viewer([argv[0]])
        v.set_data(argv[0])

        with html("body"):
            html("h1").print(v.get_data("title"))
            self.task_head(v)
            self.task_commit(v)
            self.task_comment(v)

    #--------------------
    # member
    #--------------------
    def member(self, argv):

        mem = argv.pop(0)

        with html("body"):
            self.__summary(mem, "{}/html".format(self.top()), argv)

    #--------------------
    # print
    #--------------------
    def print(self, argv):

        # remove this script
        argv.pop(0)

        cmd = sys.argv.pop(0)
        with html("html"):
            if (cmd == "index"):
                # html.py index
                self.index()
            elif(cmd == "subindex"):
                # html.py subindex
                self.subindex()
            elif (cmd == "body"):
                # html.py body
                self.body()
            elif (cmd == "summary"):
                # html.py summary projects/linux/io
                self.summary(sys.argv)
            elif (cmd == "menu"):
                # html.py menu
                self.menu()
            elif (cmd == "task"):
                # html.py task projects/linux/io/xxx.yaml
                self.task(sys.argv)
            elif (cmd == "member"):
                # ./script/find.py -a Wolfram | xargs ./script/html.py menber Wolfram
                self.member(sys.argv)
            elif (cmd == "status"):
                # ./script/find.py -s Active | xargs ./script/html.py status Active
                self.member(sys.argv)

#====================================
#
# As command
#
#====================================
if __name__=='__main__':
    periject_html().print(sys.argv)