Merge pull request #361 from Prince213/data-gen-ng
Introducing new method of generating data files
This commit is contained in:
commit
d38d67ab7d
@ -69,6 +69,13 @@ zig build -Drelease-safe
|
||||
| --- | --- | --- | --- |
|
||||
| `-Ddata_version` | `string` (master, 0.7.0 or 0.7.1) | master | The data file version. This selects the files in the `src/data` folder that correspond to the Zig version being served.|
|
||||
|
||||
#### Updating Data Files
|
||||
|
||||
There is a `generate-data.py` in the `src/data` folder, run this file to update data files.
|
||||
It writes to stdout and you can redirect output to a zig file like `master.zig`. By default it generates data file for `master`, but can be configured to generate for a different version by modifying the `zig_version` variable. Files generated by this tool **contains** formatting information.
|
||||
|
||||
There is also a `generate-data.js` in the `src/data` folder, you'll need to run this inside a Chrome DevTools console and copy the output. Files generated by this tool **does not contain** formatting information.
|
||||
|
||||
### Configuration Options
|
||||
|
||||
You can configure zls by running `zls config` or manually creating your own `zls.json` configuration file.
|
||||
|
105
src/data/generate-data.py
Normal file
105
src/data/generate-data.py
Normal file
@ -0,0 +1,105 @@
|
||||
#!/usr/bin/env python3
|
||||
import urllib.request
|
||||
import re
|
||||
import minify_html
|
||||
|
||||
zig_version = 'master'
|
||||
|
||||
|
||||
def fix_ul(s):
|
||||
l = s.split('<li>')
|
||||
l.insert(0, '')
|
||||
return '\n - '.join(l)
|
||||
|
||||
|
||||
url = f'https://raw.githubusercontent.com/ziglang/zig/{zig_version}/doc/langref.html.in'
|
||||
res = urllib.request.urlopen(url)
|
||||
page = res.read().decode('utf-8')
|
||||
print('''const Builtin = struct {
|
||||
name: []const u8,
|
||||
signature: []const u8,
|
||||
snippet: []const u8,
|
||||
documentation: []const u8,
|
||||
arguments: []const []const u8,
|
||||
};
|
||||
|
||||
pub const builtins = [_]Builtin{''')
|
||||
pattern = r'{#header_open\|(@\S+?)#}(.+?){#header_close#}'
|
||||
for match in re.finditer(pattern, page, re.M | re.S):
|
||||
blk = match[2].strip(' \n')
|
||||
name = match[1]
|
||||
signature = re.search(r'<pre>{#syntax#}(.+?){#endsyntax#}</pre>', blk,
|
||||
re.M | re.S)[1].replace('\n ', '').replace('"', '\\"')
|
||||
snippet = name
|
||||
if f'{name}()' in signature:
|
||||
params = None
|
||||
snippet += '()'
|
||||
else:
|
||||
params = []
|
||||
i = signature.index('(') + 1
|
||||
level = 1
|
||||
j = i
|
||||
while i < len(signature):
|
||||
if signature[i] == '(':
|
||||
level += 1
|
||||
elif signature[i] == ')':
|
||||
level -= 1
|
||||
if signature[i] == ',' and level == 1:
|
||||
params.append(signature[j:i])
|
||||
j = i + 2
|
||||
if level == 0:
|
||||
break
|
||||
i += 1
|
||||
params.append(signature[j:i])
|
||||
snippet += '(${'
|
||||
i = 1
|
||||
for param in params:
|
||||
snippet += f'{i}:{param}}}, ${{'
|
||||
i += 1
|
||||
snippet = snippet[:-4] + ')'
|
||||
docs = re.sub(r'{#see_also\|[^#]+#}', '', blk)
|
||||
docs = re.sub(
|
||||
r' {#code_begin\|(obj|syntax|(test(\|(call|truncate))?))#}\n', ' <pre>{#syntax#}', docs)
|
||||
docs = re.sub(
|
||||
r' {#code_begin\|test_(err|safety)\|[^#]+#}\n', ' <pre>{#syntax#}', docs)
|
||||
docs = docs.replace(' {#code_release_fast#}\n', '')
|
||||
docs = docs.replace(' {#code_end#}', '{#endsyntax#}</pre>')
|
||||
docs = docs.replace('\n{#endsyntax#}</pre>', '{#endsyntax#}</pre>')
|
||||
docs = minify_html.minify(docs)
|
||||
prefix = '</pre><p>'
|
||||
docs = docs[docs.index(prefix)+len(prefix):]
|
||||
docs = docs.replace('<p>', '\n\n')
|
||||
docs = re.sub(r'{#(end)?syntax#}', '`', docs)
|
||||
# @cDefine
|
||||
docs = re.sub(r'<pre><code[^>]+>([^<]+)</code></pre>', '`\\1`', docs)
|
||||
docs = re.sub(r'</?code>', '`', docs)
|
||||
docs = docs.replace('<pre>`', '\n\n```zig\n')
|
||||
docs = docs.replace('`</pre>', '\n```')
|
||||
# @setFloatMode
|
||||
docs = docs.replace('```<', '```\n<')
|
||||
# @TypeOf
|
||||
docs = re.sub(r'</?em>', '*', docs)
|
||||
docs = re.sub(r'<a href=([^>]+)>([^<]+)</a>', '[\\2](\\1)', docs)
|
||||
docs = re.sub(r'{#link\|([^|#]+)\|([^|#]+)#}',
|
||||
lambda m: f'[{m[1]}](https://ziglang.org/documentation/{zig_version}/#{m[2].replace(" ","-")})', docs)
|
||||
docs = re.sub(
|
||||
r'{#link\|([^|#]+)#}', lambda m: f'[{m[1]}](https://ziglang.org/documentation/{zig_version}/#{m[1].replace(" ","-").replace("@","")})', docs)
|
||||
docs = re.sub(r'<ul><li>(.+?)</ul>', lambda m: fix_ul(m[1]), docs)
|
||||
|
||||
print(' .{')
|
||||
print(f' .name = "{name}",')
|
||||
print(f' .signature = "{signature}",')
|
||||
print(f' .snippet = "{snippet}",')
|
||||
print(' .documentation =')
|
||||
for line in docs.splitlines():
|
||||
print(r' \\' + line)
|
||||
print(' ,')
|
||||
if params is None:
|
||||
print(' .arguments = &.{},')
|
||||
else:
|
||||
print(' .arguments = &.{')
|
||||
for param in params:
|
||||
print(f' "{param}",')
|
||||
print(' },')
|
||||
print(' },')
|
||||
print('};')
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user