#!/usr/bin/env python
import os
import shutil
import subprocess
import glob
import re
import datetime
out_base = os.path.join('build', 'default', 'doc')
try:
shutil.rmtree(out_base)
except:
pass
os.makedirs(out_base)
URIPREFIX = 'http://lv2plug.in/ns/'
SPECGENDIR = './specgen'
release_dir = os.path.join('build', 'default', 'spec')
try:
os.mkdir(release_dir)
except:
pass
print '** Generating core documentation'
lv2_outdir = os.path.join(out_base, 'lv2core')
os.mkdir(lv2_outdir)
shutil.copy('core.lv2/lv2.h', lv2_outdir)
shutil.copy('core.lv2/lv2.ttl', lv2_outdir)
shutil.copy('core.lv2/manifest.ttl', lv2_outdir)
shutil.copy('doc/index.php', lv2_outdir)
devnull = open(os.devnull, 'w')
def gendoc(specgen_dir, bundle_dir, ttl_filename, html_filename):
subprocess.call([os.path.join(specgen_dir, 'lv2specgen.py'),
os.path.join(bundle_dir, ttl_filename),
os.path.join(specgen_dir, 'template.html'),
os.path.join(specgen_dir, 'style.css'),
os.path.join(out_base, html_filename),
os.path.join('..', 'doc'),
'-i'])
gendoc('./lv2specgen', 'core.lv2', 'lv2.ttl', 'lv2core/lv2core.html')
style = open('./lv2specgen/style.css', 'r')
footer = open('./lv2specgen/footer.html', 'r')
# Generate main (ontology) documentation and indices
for dir in ['ext', 'extensions']:
print "** Generating %s%s documentation" % (URIPREFIX, dir)
outdir = os.path.join(out_base, dir)
shutil.copytree(dir, outdir, ignore = lambda src, names: '.svn')
index_html = """
LV2 Extensions
LV2 Extensions
""" + URIPREFIX + dir + "/
\n"
extensions = []
for bundle in glob.glob(os.path.join(dir, '*.lv2')):
b = bundle.replace('.lv2', '')
b = b[b.find('/') + 1:]
# Get extension URI
ext = subprocess.Popen(['roqet', '-q', '-e', """
PREFIX lv2:
SELECT ?ext FROM <%s.lv2/%s.ttl> WHERE { ?ext a lv2:Specification }
""" % (os.path.join(dir, b), b)], stdout=subprocess.PIPE).communicate()[0]
if ext == "":
continue
ext = re.sub('^result: \[ext=uri<', '', ext)
ext = re.sub('>\]$', '', ext).strip()
# Get revision
query = """
PREFIX lv2:
PREFIX doap:
SELECT ?rev FROM <%s.lv2/%s.ttl> WHERE { <%s> doap:release [ doap:revision ?rev ] }
""" % (os.path.join(dir, b), b, ext)
rev = subprocess.Popen(['roqet', '-q', '-e', query],
stdout=subprocess.PIPE).communicate()[0]
if rev != '':
rev = re.sub('^result: \[rev=string\("', '', rev)
rev = re.sub('"\)\]$', '', rev).strip()
else:
rev = '0'
if rev != '0':
path = os.path.join(release_dir, 'lv2-%s-%s.0.tar.gz' % (b, rev))
subprocess.call(['tar', '-czf', path, os.path.join(outdir, '%s.lv2' % b)])
specgendir = '../../../../lv2specgen/'
if (os.access(outdir + '/%s.lv2/%s.ttl' % (b, b), os.R_OK)):
print ' * Calling lv2specgen for %s%s/%s' %(URIPREFIX, dir, b)
subprocess.call([specgendir + 'lv2specgen.py',
'%s.lv2/%s.ttl' % (b, b),
specgendir + 'template.html',
specgendir + 'style.css',
'%s.lv2/%s.html' % (b, b),
os.path.join('..', '..', 'doc'),
'-i'], cwd=outdir);
li = '- '
if rev == '0':
li += 'Experimental: '
li += '%s' % (b, b)
li += '
'
extensions.append(li)
shutil.copy('doc/index.php', os.path.join(outdir, b + '.lv2', 'index.php'))
# Remove .lv2 suffix from bundle name (to make URI resolvable)
os.rename(outdir + '/%s.lv2' % b, outdir + '/%s' % b)
extensions.sort()
for i in extensions:
index_html += i + '\n'
index_html += '
\n'
index_html += ''
index_html += '\n'
index_file = open(os.path.join(outdir, 'index.html'), 'w')
print >>index_file, index_html
index_file.close()
# Generate code (headers) documentation
print "** Generating header documentation"
#shutil.copy('Doxyfile', os.path.join('upload', 'Doxyfile'))
print ' * Calling doxygen in ' + os.getcwd()
subprocess.call('doxygen', stdout=devnull)
devnull.close()
style.close()
footer.close()
/a>
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
|