]> Shamusworld >> Repos - ardour-manual/blob - build.py
FP8 doc: document reset to unity feature
[ardour-manual] / build.py
1 #!/usr/bin/python3
2 #
3 # Script to take the master document and ancillary files and create the
4 # finished manual/website.
5 #
6 # by James Hammons
7 # (C) 2017 Underground Software
8 #
9
10 # Remnants (could go into the master document as the first header)
11
12 #bootstrap_path: /bootstrap-3.3.7
13 #page_title: The Ardour Manual
14
15 import os
16 import re
17 import shutil
18 import argparse
19
20
21 # Global vars
22 # This matches all *non* letter/number, ' ', '.', '-', and '_' chars
23 cleanString = re.compile(r'[^a-zA-Z0-9 \._-]+')
24 # This matches new 'unbreakable' links, up to the closing quote or anchor
25 findLinks = re.compile(r'"@@[^#"]*"')
26 githuburl = 'https://github.com/Ardour/manual/edit/master/include/'
27
28 #
29 # Create an all lowercase filename without special characters and with spaces
30 # replaced with dashes.
31 #
32 def MakeFilename(s):
33         global cleanString
34         # Clean up the file name, removing all non letter/number or " .-_" chars.
35         # Also, convert to lower case and replace all spaces with dashes.
36         fn = cleanString.sub('', s).lower().replace(' ', '-')
37         # Double dashes can creep in from the above replacement, so we check for
38         # that here.
39         fn = fn.replace('--', '-')
40
41         return fn
42
43
44 #
45 # Parse headers into a dictionary
46 #
47 def ParseHeader(fileObj):
48         header = {}
49
50         while (True):
51                 hdrLine = fileObj.readline().rstrip('\r\n')
52
53                 # Break out of the loop if we hit the end of header marker
54                 if hdrLine.startswith('---'):
55                         break
56
57                 # Check to see that we have a well-formed header construct
58                 match = re.findall(': ', hdrLine)
59
60                 if match:
61                         # Parse out foo: bar pairs & put into header dictionary
62                         a = re.split(': ', hdrLine, 1)
63                         header[a[0]] = a[1]
64
65         return header
66
67
68 #
69 # Turn a "part" name into an int
70 #
71 def PartToLevel(s):
72         level = -1
73
74         if s == 'part':
75                 level = 0
76         elif s == 'chapter':
77                 level = 1
78         elif s == 'subchapter':
79                 level = 2
80         elif s == 'section':
81                 level = 3
82         elif s == 'subsection':
83                 level = 4
84
85         return level
86
87 #
88 # Converts a integer to a roman number
89 #
90 def num2roman(num):
91         num_map = [(1000, 'M'), (900, 'CM'), (500, 'D'), (400, 'CD'), (100, 'C'), (90, 'XC'), (50, 'L'), (40, 'XL'), (10, 'X'), (9, 'IX'), (5, 'V'), (4, 'IV'), (1, 'I')]
92         roman = ''
93
94         while num > 0:
95                 for i, r in num_map:
96                         while num >= i:
97                                 roman += r
98                                 num -= i
99
100         return roman
101
102 #
103 # Capture the master document's structure (and content, if any) in a list
104 #
105 def GetFileStructure():
106         fs = []
107         fnames = [None]*6
108         content = ''
109         grab = False
110         mf = open('master-doc.txt')
111
112         for ln in mf:
113                 if ln.startswith('---'):
114                         # First, stuff any content that we may have read into the current
115                         # header's dictionary
116                         if grab:
117                                 fs[-1]['content'] = content
118                                 grab = False
119                                 content = ''
120
121                         # Then, get the new header and do things to it
122                         hdr = ParseHeader(mf)
123                         level = PartToLevel(hdr['part'])
124                         hdr['level'] = level
125                         fnames[level] = MakeFilename(hdr['title'])
126
127                         # Ickyness--user specified URIs
128                         if 'uri' in hdr:
129                                 hdr['filename'] = hdr['uri']
130                         else:
131                                 fullName = ''
132
133                                 for i in range(level + 1):
134                                         fullName = fullName + fnames[i] + '/'
135
136                                 # Strip trailing '/' on filename
137                                 hdr['filename'] = fullName[:-1]
138
139                         fs.append(hdr)
140
141                         if ('include' not in hdr) and (level > 0):
142                                 grab = True
143                 else:
144                         if grab:
145                                 content = content + ln
146
147         # Catch the last file, since it would be missed above
148         if grab:
149                 fs[-1]['content'] = content
150
151         mf.close()
152         return fs
153
154
155 #
156 # Determine if a particular node has child nodes
157 #
158 def HaveChildren(fs, pos):
159         # If we're at the end of the list, there can be no children
160         if pos == len(fs) - 1:
161                 return False
162
163         # If the next node is at a lower level than the current node, we have
164         # children.
165         if fs[pos]['level'] < fs[pos + 1]['level']:
166                 return True
167
168         # Otherwise, no children at this node.
169         return False
170
171
172 #
173 # Get the children at this level, and return them in a list
174 #
175 def GetChildren(fs, pos):
176         children = []
177         pos = pos + 1
178         childLevel =  fs[pos]['level']
179
180         while fs[pos]['level'] >= childLevel:
181                 if fs[pos]['level'] == childLevel:
182                         children.append(pos)
183
184                 pos = pos + 1
185
186                 # Sanity check
187                 if pos == len(fs):
188                         break
189
190         return children
191
192
193 #
194 # Get the parent at this level
195 #
196 def GetParent(fs, pos):
197         thisLevel =  fs[pos]['level']
198         pos = pos - 1
199
200         while pos >= 0 and fs[pos]['level'] >= thisLevel:
201                 pos = pos - 1
202
203         return pos
204
205
206 #
207 # Creates the BreadCrumbs
208 #
209 def GetBreadCrumbs(fs, pos):
210         # The <span class="divider">&gt;</span> is for Bootstrap pre-3.0
211         breadcrumbs = '<li class="active">'+ fs[pos]['title'] + '</li>'
212
213         while pos >= 0:
214                 pos = GetParent(fs, pos)
215
216                 if pos >= 0:
217                         breadcrumbs='<li><a href="/' + fs[pos]['filename'] + '/">'+ fs[pos]['title'] + '</a></li>'+ breadcrumbs
218
219         breadcrumbs = '<ul class="breadcrumb"><li><a href="/toc/index.html">Home</a></li>' + breadcrumbs + '</ul>'
220         return breadcrumbs
221
222
223 #
224 # Make an array of children attached to each node in the file structure
225 # (It's a quasi-tree structure, and can be traversed as such.)
226 #
227 def FindChildren(fs):
228         childArray = []
229
230         for i in range(len(fs)):
231                 if HaveChildren(fs, i):
232                         childArray.append(GetChildren(fs, i))
233                 else:
234                         childArray.append([])
235
236         return childArray
237
238
239 #
240 # Make an array of the top level nodes in the file structure
241 #
242 def FindTopLevelNodes(fs):
243         level0 = []
244
245         for i in range(len(fs)):
246                 if fs[i]['level'] == 0:
247                         level0.append(i)
248
249         return level0
250
251
252 #
253 # Find all header links and create a dictionary out of them
254 #
255 def FindInternalLinks(fs):
256         linkDict = {}
257
258         for hdr in fs:
259                 if 'link' in hdr:
260                         linkDict['"@@' + hdr['link'] + '"'] = '"/' + hdr['filename'] + '/"'
261
262         return linkDict
263
264
265 #
266 # Internal links are of the form '@@link-name', which are references to the
267 # 'link:' field in the part header. We have to find all occurances and replace
268 # them with the appropriate link.
269 #
270 def FixInternalLinks(links, content, title):
271         global findLinks
272         match = findLinks.findall(content)
273         missing = []
274
275         if len(match) > 0:
276                 for s in match:
277                         if s in links:
278                                 content = content.replace(s, links[s])
279                         else:
280                                 missing.append(s)
281
282         # Report missing link targets to the user (if any)
283         if len(missing) > 0:
284                 print('\nMissing link target' + ('s' if len(missing) > 1 else '') + ' in "' + title + '":')
285
286                 for s in missing:
287                         print('  ' + s)
288
289                 print()
290
291         return content
292
293
294 #
295 # Recursively build a list of links based on the location of the page we're
296 # looking at currently
297 #
298 def BuildList(lst, fs, pagePos, cList):
299         content = '\n\n<dl>\n'
300
301         for i in range(len(lst)):
302                 curPos = lst[i]
303                 nextPos = lst[i + 1] if i + 1 < len(lst)  else len(fs)
304
305                 active = ' class=active' if curPos == pagePos else ''
306                 menuTitle = fs[curPos]['menu_title'] if 'menu_title' in fs[curPos] else fs[curPos]['title']
307                 content = content + '<dt' + active + '><a href="/' + fs[curPos]['filename'] + '/">' + menuTitle + '</a></dt><dd' + active + '>'
308
309                 # If the current page is our page, and it has children, enumerate them
310                 if curPos == pagePos:
311                         if len(cList[curPos]) > 0:
312                                 content = content + BuildList(cList[curPos], fs, -1, cList)
313
314                 # Otherwise, if our page lies between the current one and the next,
315                 # build a list of links from those nodes one level down.
316                 elif (pagePos > curPos) and (pagePos < nextPos):
317                         content = content + BuildList(cList[curPos], fs, pagePos, cList)
318
319                 content = content + '</dd>\n'
320
321         content = content + '</dl>\n'
322
323         return content
324
325 #
326 # Create link sidebar given a position in the list.
327 #
328 def CreateLinkSidebar(fs, pos, childList):
329
330         # Build the list recursively from the top level nodes
331         content = BuildList(FindTopLevelNodes(fs), fs, pos, childList)
332         # Shove the TOC link in the top...
333         content = content[:7] + '<dt><a href="/toc/">Table of Contents</a></dt><dd></dd>\n' + content[7:]
334
335         return content
336
337
338 # Preliminaries
339
340 # We have command line arguments now, so deal with them
341 parser = argparse.ArgumentParser(description='A build script for the Ardour Manual')
342 parser.add_argument('-v', '--verbose', action='store_true', help='Display the high-level structure of the manual')
343 parser.add_argument('-q', '--quiet', action='store_true', help='Suppress all output (overrides -v)')
344 parser.add_argument('-d', '--devmode', action='store_true', help='Add content to pages to help developers debug them')
345 args = parser.parse_args()
346 verbose = args.verbose
347 quiet = args.quiet
348 devmode = args.devmode
349
350 if quiet:
351         verbose = False
352
353 level = 0
354 fileCount = 0
355 levelNums = [0]*6
356 lastFile = ''
357 page = ''
358 toc = ''
359 pageNumber = 0
360
361 siteDir = './website/'
362
363 if not quiet and devmode:
364         print('Devmode active: scribbling extra junk to the manual...')
365
366 if os.access(siteDir, os.F_OK):
367         if not quiet:
368                 print('Removing stale HTML data...')
369
370         shutil.rmtree(siteDir)
371
372 shutil.copytree('./source', siteDir)
373
374
375 # Read the template, and fix the stuff that's fixed for all pages
376 temp = open('page-template.txt')
377 template = temp.read()
378 temp.close()
379
380 template = template.replace('{{page.bootstrap_path}}', '/bootstrap-3.3.7')
381 template = template.replace('{{page.page_title}}', 'The Ardour Manual')
382
383
384 # Parse out the master docuemnt's structure into a dictionary list
385 fileStruct = GetFileStructure()
386
387 # Build a quasi-tree structure listing children at level + 1 for each node
388 nodeChildren = FindChildren(fileStruct)
389
390 # Create a dictionary for translation of internal links to real links
391 links = FindInternalLinks(fileStruct)
392
393 if not quiet:
394         print('Found ' + str(len(links)) + ' internal link target', end='')
395         print('.') if len(links) == 1 else print('s.')
396
397 if not quiet:
398         master = open('master-doc.txt')
399         firstLine = master.readline().rstrip('\r\n')
400         master.close()
401
402         if firstLine == '<!-- exploded -->':
403                 print('Parsing exploded file...')
404         elif firstLine == '<!-- imploded -->':
405                 print('Parsing imploded file...')
406         else:
407                 print('Parsing unknown type...')
408
409 # Here we go!
410
411 for header in fileStruct:
412         fileCount = fileCount + 1
413         content = ''
414         more = ''
415
416         lastLevel = level
417         level = header['level']
418
419         # Handle Part/Chapter/subchapter/section/subsection numbering
420         if level == 0:
421                 levelNums[2] = 0
422         elif level == 1:
423                 levelNums[2] = 0
424         elif level == 2:
425                 levelNums[3] = 0
426         elif level == 3:
427                 levelNums[4] = 0
428
429         levelNums[level] = levelNums[level] + 1;
430
431         # This is totally unnecessary, but nice; besides which, you can capture
432         # the output to a file to look at later if you like :-)
433         if verbose:
434                 for i in range(level):
435                         print('\t', end='')
436
437                 if (level == 0):
438                         print('\nPart ' + num2roman(levelNums[0]) + ': ', end='')
439                 elif (level == 1):
440                         print('\n\tChapter ' + str(levelNums[1]) + ': ', end='')
441
442                 print(header['title'])
443
444         # Handle TOC scriblings...
445         if level == 0:
446                 toc = toc + '<h2>Part ' + num2roman(levelNums[level]) + ': ' + header['title'] + '</h2>\n';
447         elif level == 1:
448                 toc = toc + '  <p class="chapter">Ch. ' + str(levelNums[level]) + ':&nbsp;&nbsp;<a href="/' + header['filename'] + '/">' + header['title'] + '</a></p>\n'
449         elif level == 2:
450                 toc = toc + '    <p class="subchapter"><a href="/' + header['filename'] + '/">' + header['title'] + '</a></p>\n'
451         elif level == 3:
452                 toc = toc + '      <p class="section"><a href="/' + header['filename'] + '/">' + header['title'] + '</a></p>\n'
453         elif level == 4:
454                 toc = toc + '      <p class="subsection"><a href="/' + header['filename'] + '/">' + header['title'] + '</a></p>\n'
455
456         # Make the 'this thing contains...' stuff
457         if HaveChildren(fileStruct, pageNumber):
458                 pages = GetChildren(fileStruct, pageNumber)
459
460                 for pg in pages:
461                         more = more + '<li>' + '<a href="/' + fileStruct[pg]['filename'] + '/">' + fileStruct[pg]['title'] + '</a>' + '</li>\n'
462
463                 more = '<div id=subtopics>\n' + '<h2>This section contains the following topics:</h2>\n' + '<ul>\n' + more + '</ul>\n' + '</div>\n'
464
465         parent = GetParent(fileStruct, pageNumber)
466
467         # Make the 'Previous', 'Up' & 'Next' content
468         nLink = ''
469         pLink = ''
470         uLink = ''
471
472         if pageNumber > 0:
473                 pLink = '<li class="previous"><a title="' + fileStruct[pageNumber - 1]['title'] + '" href="/' + fileStruct[pageNumber - 1]['filename'] + '/" class="previous"> &larr; Previous </a></li>'
474
475         if pageNumber < len(fileStruct) - 1:
476                 nLink = '<li class="next"><a title="' + fileStruct[pageNumber + 1]['title'] + '" href="/' + fileStruct[pageNumber + 1]['filename'] + '/" class="next"> Next &rarr; </a></li>'
477
478         if level > 0:
479                 uLink = '<li><a title="' + fileStruct[parent]['title'] + '" href="/' + fileStruct[parent]['filename'] + '/" class="active"> &uarr; Up </a></li>'
480         else:
481                 uLink = '<li><a title="Ardour Table of Contents" href="/toc/index.html" class="active"> &uarr; Up </a></li>'
482
483         prevnext = '<ul class="pager">' + pLink + uLink + nLink + '</ul>'
484
485         # Make the BreadCrumbs
486         breadcrumbs = GetBreadCrumbs(fileStruct, pageNumber)
487
488         # Create the link sidebar
489         sidebar = CreateLinkSidebar(fileStruct, pageNumber, nodeChildren)
490
491         # Parts DO NOT have any content, they are ONLY an organizing construct!
492         # Chapters, subchapters, sections & subsections can all have content,
493         # but the basic fundamental organizing unit WRT content is still the
494         # chapter.
495         githubedit = ''
496         if level > 0:
497                 if 'include' in header:
498                         srcFile = open('include/' + header['include'])
499                         githubedit = '<span style="float:right;"><a title="Edit in GitHub" href="' + githuburl + header['include'] + '"><img src="/images/github.png" alt="Edit on GitHub"/></a></span>'
500                         content = srcFile.read()
501                         srcFile.close()
502
503                         # Get rid of any extant header in the include file
504                         # (once this is accepted, we can nuke this bit, as content files
505                         # will not have any headers or footers in them)
506                         content = re.sub('---.*\n(.*\n)*---.*\n', '', content)
507                         content = content.replace('{% children %}', '')
508
509                 else:
510                         if 'content' in header:
511                                 content = header['content']
512                         else:
513                                 content = '[something went wrong]'
514
515         # Fix up any internal links
516         content = FixInternalLinks(links, content, header['title'])
517
518         # Add header information to the page if in dev mode
519         if devmode:
520                 devnote ='<aside style="background-color:indigo; color:white;">'
521                 if 'filename' in header:
522                         devnote = devnote + 'filename: ' + header['filename'] + '<br>'
523                 if 'include' in header:
524                         devnote = devnote + 'include: ' + header['include'] + '<br>'
525                 if 'link' in header:
526                         devnote = devnote + 'link: ' + header['link'] + '<br>'
527                 content = devnote + '</aside>' + content
528
529         # Set up the actual page from the template
530         if 'style' not in header:
531                 page = re.sub("{% if page.style %}.*\n.*\n{% endif %}.*\n", "", template)
532         else:
533                 page = template.replace('{{page.style}}', header['style'])
534                 page = page.replace('{% if page.style %}', '')
535                 page = page.replace('{% endif %}', '')
536
537         page = page.replace('{{ page.title }}', header['title'])
538         page = page.replace('{% tree %}', sidebar)
539         page = page.replace('{% prevnext %}', prevnext)
540         page = page.replace('{% githubedit %}', githubedit)
541         page = page.replace('{% breadcrumbs %}', breadcrumbs)
542         page = page.replace('{{ content }}', content + more)
543
544         # Create the directory for the index.html file to go into (we use makedirs,
545         # because we have to in order to accomodate the 'uri' keyword)
546         os.makedirs(siteDir + header['filename'], 0o775, exist_ok=True)
547
548         # Finally, write the file!
549         destFile = open(siteDir + header['filename'] + '/index.html', 'w')
550         destFile.write(page)
551         destFile.close()
552
553         # Save filename for next header...
554         lastFile = header['filename']
555         pageNumber = pageNumber + 1
556
557 # Finally, create the TOC
558 sidebar = CreateLinkSidebar(fileStruct, -1, nodeChildren)
559
560 page = re.sub("{% if page.style %}.*\n.*\n{% endif %}.*\n", "", template)
561 page = page.replace('{{ page.title }}', 'Ardour Table of Contents')
562 page = page.replace('{% tree %}', sidebar)
563 page = page.replace('{{ content }}', toc)
564 page = page.replace('{% prevnext %}', '')
565 page = page.replace('{% githubedit %}', '')
566 page = page.replace('{% breadcrumbs %}', '')
567
568 os.mkdir(siteDir + 'toc', 0o775)
569 tocFile = open(siteDir + 'toc/index.html', 'w')
570 tocFile.write(page)
571 tocFile.close()
572
573 if not quiet:
574         print('Processed ' + str(fileCount) + ' files.')