vdoc: group constants + minor fixes

pull/5260/head
Ned Palacios 2020-06-07 18:27:42 +08:00 committed by GitHub
parent 1c2bf7b244
commit cbcdc8434f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 116 additions and 24 deletions

View File

@ -266,6 +266,17 @@ body {
.doc-content > .doc-node:not(:last-child) { .doc-content > .doc-node:not(:last-child) {
padding: 1rem 0 3rem 0; padding: 1rem 0 3rem 0;
} }
.doc-content > .doc-node.const:not(:first-child) {
padding-top: 0;
}
.doc-content > .doc-node.const:not(:last-child) {
padding-bottom: 1rem;
}
.doc-content > .timestamp {
font-size: 0.8rem;
color: #b8c2cc;
color: var(--timestamp-color);
}
.doc-content > .doc-node > .title { .doc-content > .doc-node > .title {
display: flex; display: flex;
align-items: center; align-items: center;
@ -385,7 +396,8 @@ body {
/* Code highlight */ /* Code highlight */
pre[class*="language-"], pre[class*="language-"],
code[class*="language-"] { code[class*="language-"],
pre code {
color: #5c6e74; color: #5c6e74;
color: var(--code-default-text-color); color: var(--code-default-text-color);
font-size: 0.8rem; font-size: 0.8rem;
@ -410,7 +422,8 @@ code[class*="language-"] {
border-radius: 0.25rem; border-radius: 0.25rem;
overflow-x: auto; overflow-x: auto;
} }
code[class*="language-"] { code[class*="language-"],
pre code {
padding: 1rem; padding: 1rem;
} }
pre[class*="language-"] { pre[class*="language-"] {

View File

@ -54,6 +54,8 @@ mut:
is_multi bool = false is_multi bool = false
is_verbose bool = false is_verbose bool = false
include_readme bool = false include_readme bool = false
open_docs bool = false
server_port int = 8046
inline_assets bool = false inline_assets bool = false
output_path string output_path string
input_path string input_path string
@ -79,13 +81,16 @@ fn open_url(url string) {
} }
fn (mut cfg DocConfig) serve_html() { fn (mut cfg DocConfig) serve_html() {
server_url := 'http://localhost:' + cfg.server_port.str()
docs := cfg.render() docs := cfg.render()
def_name := docs.keys()[0] def_name := docs.keys()[0]
server := net.listen(8046) or { server := net.listen(cfg.server_port) or {
panic(err) panic(err)
} }
println('Serving docs on: http://localhost:8046') println('Serving docs on: $server_url')
open_url('http://localhost:8046') if cfg.open_docs {
open_url(server_url)
}
for { for {
con := server.accept() or { con := server.accept() or {
server.close() or { } server.close() or { }
@ -226,13 +231,14 @@ fn doc_node_html(dd doc.DocNode, link string, head bool, tb &table.Table) string
head_tag := if head { 'h1' } else { 'h2' } head_tag := if head { 'h1' } else { 'h2' }
md_content := markdown.to_html(dd.comment) md_content := markdown.to_html(dd.comment)
hlighted_code := html_highlight(dd.content, tb) hlighted_code := html_highlight(dd.content, tb)
is_const_class := if dd.name == 'Constants' { ' const' } else { '' }
mut sym_name := dd.name mut sym_name := dd.name
if dd.parent_type !in ['void', ''] { if dd.parent_type !in ['void', '', 'Constants'] {
sym_name = '${dd.parent_type}.' + sym_name sym_name = '${dd.parent_type}.' + sym_name
} }
node_id := slug(sym_name) node_id := slug(sym_name)
hash_link := if head_tag != 'h1' { ' <a href="#$node_id">#</a>' } else { '' } hash_link := if !head { ' <a href="#$node_id">#</a>' } else { '' }
dnw.writeln('<section id="$node_id" class="doc-node">') dnw.writeln('<section id="$node_id" class="doc-node$is_const_class">')
if dd.name != 'README' { if dd.name != 'README' {
dnw.write('<div class="title"><$head_tag>$sym_name$hash_link</$head_tag>') dnw.write('<div class="title"><$head_tag>$sym_name$hash_link</$head_tag>')
if link.len != 0 { if link.len != 0 {
@ -252,7 +258,7 @@ fn doc_node_html(dd doc.DocNode, link string, head bool, tb &table.Table) string
fn (cfg DocConfig) gen_html(idx int) string { fn (cfg DocConfig) gen_html(idx int) string {
dcs := cfg.docs[idx] dcs := cfg.docs[idx]
time_gen := dcs.time_generated.day.str() + ' ' + dcs.time_generated.smonth() + ' ' + dcs.time_generated.year.str() + ' ' + dcs.time_generated.hhmmss() time_gen := '$dcs.time_generated.day $dcs.time_generated.smonth() $dcs.time_generated.year $dcs.time_generated.hhmmss()'
mut hw := strings.new_builder(200) mut hw := strings.new_builder(200)
mut toc := strings.new_builder(200) mut toc := strings.new_builder(200)
// generate toc first // generate toc first
@ -260,7 +266,7 @@ fn (cfg DocConfig) gen_html(idx int) string {
if cn.parent_type !in ['void', ''] { continue } if cn.parent_type !in ['void', ''] { continue }
toc.write('<li><a href="#${slug(cn.name)}">${cn.name}</a>') toc.write('<li><a href="#${slug(cn.name)}">${cn.name}</a>')
children := dcs.contents.find_children_of(cn.name) children := dcs.contents.find_children_of(cn.name)
if children.len != 0 { if children.len != 0 && cn.name != 'Constants' {
toc.writeln(' <ul>') toc.writeln(' <ul>')
for child in children { for child in children {
cname := cn.name + '.' + child.name cname := cn.name + '.' + child.name
@ -418,7 +424,7 @@ fn (cfg DocConfig) gen_markdown(idx int, with_toc bool) string {
hw.writeln('## Contents') hw.writeln('## Contents')
} }
for cn in dcs.contents { for cn in dcs.contents {
name := cn.name.all_after(dcs.head.name+'.') name := cn.name.all_after(dcs.head.name + '.')
if with_toc { if with_toc {
hw.writeln('- [#$name](${slug(name)})') hw.writeln('- [#$name](${slug(name)})')
@ -458,6 +464,23 @@ fn (cfg DocConfig) render() map[string]string {
return docs return docs
} }
fn (cfg DocConfig) get_readme(path string) string {
mut fname := ''
for name in ['readme', 'README'] {
if os.exists(os.join_path(path, '${name}.md')) {
fname = name
break
}
}
if fname == '' {
return ''
}
readme_path := os.join_path(path, '${fname}.md')
cfg.vprintln('Reading README file from $readme_path')
readme_contents := os.read_file(readme_path) or { '' }
return readme_contents
}
fn (mut cfg DocConfig) generate_docs_from_file() { fn (mut cfg DocConfig) generate_docs_from_file() {
if cfg.output_path.len == 0 { if cfg.output_path.len == 0 {
if cfg.output_type == .unset { if cfg.output_type == .unset {
@ -484,16 +507,14 @@ fn (mut cfg DocConfig) generate_docs_from_file() {
os.base_dir(cfg.input_path) os.base_dir(cfg.input_path)
} }
manifest_path := os.join_path(dir_path, 'v.mod') manifest_path := os.join_path(dir_path, 'v.mod')
readme_path := os.join_path(dir_path, 'README.md')
if os.exists(manifest_path) { if os.exists(manifest_path) {
cfg.vprintln('Reading v.mod info from $manifest_path') cfg.vprintln('Reading v.mod info from $manifest_path')
if manifest := vmod.from_file(manifest_path) { if manifest := vmod.from_file(manifest_path) {
cfg.manifest = manifest cfg.manifest = manifest
} }
} }
if os.exists(readme_path) && cfg.include_readme { if cfg.include_readme {
cfg.vprintln('Reading README file from $readme_path') readme_contents := cfg.get_readme(dir_path)
readme_contents := os.read_file(readme_path) or { '' }
if cfg.output_type == .stdout { if cfg.output_type == .stdout {
println(markdown.to_plain(readme_contents)) println(markdown.to_plain(readme_contents))
} }
@ -514,6 +535,10 @@ fn (mut cfg DocConfig) generate_docs_from_file() {
panic(err) panic(err)
} }
if dcs.contents.len == 0 { continue } if dcs.contents.len == 0 { continue }
if cfg.is_multi {
readme_contents := cfg.get_readme(dirpath)
dcs.head.comment = readme_contents
}
if cfg.pub_only { if cfg.pub_only {
for i, c in dcs.contents { for i, c in dcs.contents {
dcs.contents[i].content = c.content.all_after('pub ') dcs.contents[i].content = c.content.all_after('pub ')
@ -541,7 +566,7 @@ fn (mut cfg DocConfig) generate_docs_from_file() {
panic(err) panic(err)
} }
} else { } else {
for fname in ['doc.css', 'v-prism.css', 'doc.js'] { for fname in ['doc.css', 'normalize.css' 'doc.js'] {
os.rm(os.join_path(cfg.output_path, fname)) os.rm(os.join_path(cfg.output_path, fname))
} }
} }
@ -668,6 +693,22 @@ fn main() {
cfg.output_path = os.real_path(opath) cfg.output_path = os.real_path(opath)
i++ i++
} }
'-open' {
cfg.open_docs = true
}
'-p' {
s_port := cmdline.option(current_args, '-o', '')
s_port_int := s_port.int()
if s_port.len == 0 {
eprintln('vdoc: No port number specified on "-p".')
exit(1)
}
if s_port != s_port_int.str() {
eprintln('vdoc: Invalid port number.')
exit(1)
}
cfg.server_port = s_port_int
}
'-s' { '-s' {
cfg.inline_assets = true cfg.inline_assets = true
cfg.serve_http = true cfg.serve_http = true

View File

@ -17,6 +17,8 @@ Options:
-l Show the locations of the generated signatures. (For plaintext only) -l Show the locations of the generated signatures. (For plaintext only)
-m Generate docs for modules listed in that folder. -m Generate docs for modules listed in that folder.
-o Specifies the output file/folder path where to store the generated docs. -o Specifies the output file/folder path where to store the generated docs.
-open Launches the browser when the server docs has started.
-p Specifies the port to be used for the docs server.
-s Serve HTML-generated docs via HTTP. -s Serve HTML-generated docs via HTTP.
-r Include README.md to docs if present. -r Include README.md to docs if present.
-v Enables verbose logging. For debugging purposes. -v Enables verbose logging. For debugging purposes.

View File

@ -57,10 +57,29 @@ pub fn get_comment_block_right_before(stmts []ast.Stmt) string {
// located right above the top level statement. // located right above the top level statement.
// break // break
} }
cmt_content := cmt.text.trim_left('|') mut cmt_content := cmt.text.trim_left('|')
if cmt_content.len == cmt.text.len { if cmt_content.len == cmt.text.len || cmt.is_multi {
// ignore /* */ style comments for now // ignore /* */ style comments for now
continue continue
// if cmt_content.len == 0 {
// continue
// }
// mut new_cmt_content := ''
// mut is_codeblock := false
// // println(cmt_content)
// lines := cmt_content.split_into_lines()
// for j, line in lines {
// trimmed := line.trim_space().trim_left(cmt_prefix)
// if trimmed.starts_with('- ') || (trimmed.len >= 2 && trimmed[0].is_digit() && trimmed[1] == `.`) || is_codeblock {
// new_cmt_content += line + '\n'
// } else if line.starts_with('```') {
// is_codeblock = !is_codeblock
// new_cmt_content += line + '\n'
// } else {
// new_cmt_content += trimmed + '\n'
// }
// }
// return new_cmt_content
} }
//eprintln('cmt: $cmt') //eprintln('cmt: $cmt')
cseparator := if cmt_content.starts_with('```') {'\n'} else {' '} cseparator := if cmt_content.starts_with('```') {'\n'} else {' '}
@ -87,6 +106,7 @@ pub fn (d Doc) get_signature(stmt ast.Stmt) string {
out: strings.new_builder(1000) out: strings.new_builder(1000)
out_imports: strings.new_builder(200) out_imports: strings.new_builder(200)
table: d.table table: d.table
cur_mod: d.head.name.split('.').last()
indent: 0 indent: 0
is_debug: false is_debug: false
} }
@ -95,7 +115,7 @@ pub fn (d Doc) get_signature(stmt ast.Stmt) string {
return 'module $it.name' return 'module $it.name'
} }
ast.FnDecl { ast.FnDecl {
return it.str(d.table) return it.str(d.table).replace(f.cur_mod + '.', '')
} }
else { else {
f.stmt(stmt) f.stmt(stmt)
@ -115,12 +135,22 @@ pub fn (d Doc) get_pos(stmt ast.Stmt) token.Position {
} }
} }
pub fn (d Doc) get_type_name(decl ast.TypeDecl) string {
match decl {
ast.SumTypeDecl { return it.name }
ast.FnTypeDecl { return it.name }
ast.AliasTypeDecl { return it.name }
}
}
pub fn (d Doc) get_name(stmt ast.Stmt) string { pub fn (d Doc) get_name(stmt ast.Stmt) string {
cur_mod := d.head.name.split('.').last()
match stmt { match stmt {
ast.FnDecl { return it.name } ast.FnDecl { return it.name }
ast.StructDecl { return it.name } ast.StructDecl { return it.name }
ast.EnumDecl { return it.name } ast.EnumDecl { return it.name }
ast.InterfaceDecl { return it.name } ast.InterfaceDecl { return it.name }
ast.TypeDecl { return d.get_type_name(it).replace('&' + cur_mod + '.', '').replace(cur_mod + '.', '') }
ast.ConstDecl { return 'Constants' } ast.ConstDecl { return 'Constants' }
else { return '' } else { return '' }
} }
@ -214,6 +244,7 @@ pub fn (mut d Doc) generate() ?bool {
mut module_name := '' mut module_name := ''
mut parent_mod_name := '' mut parent_mod_name := ''
mut orig_mod_name := '' mut orig_mod_name := ''
mut const_idx := -1
for i, file_ast in file_asts { for i, file_ast in file_asts {
if i == 0 { if i == 0 {
parent_mod_name = get_parent_mod(base_path) or { parent_mod_name = get_parent_mod(base_path) or {
@ -234,7 +265,7 @@ pub fn (mut d Doc) generate() ?bool {
} }
mut prev_comments := []ast.Stmt{} mut prev_comments := []ast.Stmt{}
stmts := file_ast.stmts stmts := file_ast.stmts
for _, stmt in stmts { for o, stmt in stmts {
//eprintln('stmt typeof: ' + typeof(stmt)) //eprintln('stmt typeof: ' + typeof(stmt))
if stmt is ast.Comment { if stmt is ast.Comment {
prev_comments << stmt prev_comments << stmt
@ -256,11 +287,10 @@ pub fn (mut d Doc) generate() ?bool {
d.head.comment += module_comment d.head.comment += module_comment
continue continue
} }
// todo: accumulate consts
mut name := d.get_name(stmt)
signature := d.get_signature(stmt) signature := d.get_signature(stmt)
pos := d.get_pos(stmt) pos := d.get_pos(stmt)
if !signature.starts_with('pub') && d.pub_only { mut name := d.get_name(stmt)
if (!signature.starts_with('pub') && d.pub_only) || stmt is ast.GlobalDecl {
prev_comments = [] prev_comments = []
continue continue
} }
@ -283,7 +313,13 @@ pub fn (mut d Doc) generate() ?bool {
} }
node.parent_type = parent_type node.parent_type = parent_type
} }
}
if stmt is ast.ConstDecl {
if const_idx == -1 {
const_idx = o
} else {
node.parent_type = 'Constants'
}
} }
if node.name.len == 0 && node.comment.len == 0 && node.content.len == 0 { if node.name.len == 0 && node.comment.len == 0 && node.content.len == 0 {
continue continue