2022-07-13 07:40:54 +03:00
|
|
|
module main
|
|
|
|
|
|
|
|
import os
|
|
|
|
import term
|
|
|
|
import os.cmdline
|
|
|
|
|
|
|
|
// Symbol type to search
|
|
|
|
enum Symbol {
|
|
|
|
@fn
|
2022-07-15 07:59:11 +03:00
|
|
|
method
|
2022-07-13 07:40:54 +03:00
|
|
|
@struct
|
|
|
|
@interface
|
|
|
|
@enum
|
|
|
|
@const
|
|
|
|
var
|
|
|
|
regexp
|
|
|
|
}
|
|
|
|
|
|
|
|
// Visibility of the symbols to search
|
|
|
|
enum Visibility {
|
|
|
|
all
|
|
|
|
@pub
|
|
|
|
pri
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mutability of the symbols to search
|
|
|
|
enum Mutability {
|
|
|
|
any
|
|
|
|
yes
|
|
|
|
not
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2022-07-15 07:59:11 +03:00
|
|
|
_args = os.args
|
|
|
|
verbose = '-v' in cmdline.only_options(_args)
|
|
|
|
header = '-h' in cmdline.only_options(_args)
|
|
|
|
format = '-f' in cmdline.only_options(_args)
|
2022-07-13 07:40:54 +03:00
|
|
|
symbols = {
|
|
|
|
'fn': Symbol.@fn
|
2022-07-15 07:59:11 +03:00
|
|
|
'method': .method
|
2022-07-13 07:40:54 +03:00
|
|
|
'struct': .@struct
|
|
|
|
'interface': .@interface
|
|
|
|
'enum': .@enum
|
|
|
|
'const': .@const
|
|
|
|
'var': .var
|
|
|
|
'regexp': .regexp
|
|
|
|
}
|
|
|
|
visibilities = {
|
|
|
|
'all': Visibility.all
|
|
|
|
'pub': .@pub
|
|
|
|
'pri': .pri
|
|
|
|
}
|
|
|
|
mutabilities = {
|
|
|
|
'any': Mutability.any
|
|
|
|
'yes': .yes
|
|
|
|
'not': .not
|
|
|
|
}
|
2023-02-26 08:56:14 +03:00
|
|
|
vexe = os.real_path(os.getenv_opt('VEXE') or { @VEXE })
|
2022-07-15 07:59:11 +03:00
|
|
|
vlib_dir = os.join_path(os.dir(vexe), 'vlib')
|
2022-07-13 07:40:54 +03:00
|
|
|
vmod_dir = os.vmodules_dir()
|
|
|
|
vmod_paths = os.vmodules_paths()[1..]
|
|
|
|
current_dir = os.abs_path('.')
|
|
|
|
color_out = term.can_show_color_on_stdout()
|
|
|
|
)
|
|
|
|
|
|
|
|
fn (mut cfg Symbol) set_from_str(str_in string) {
|
|
|
|
if str_in !in symbols {
|
|
|
|
invalid_option(cfg, str_in)
|
|
|
|
}
|
|
|
|
cfg = symbols[str_in]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut cfg Visibility) set_from_str(str_in string) {
|
|
|
|
if str_in !in visibilities {
|
|
|
|
invalid_option(cfg, str_in)
|
|
|
|
}
|
|
|
|
cfg = visibilities[str_in]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut cfg Mutability) set_from_str(str_in string) {
|
|
|
|
if str_in !in mutabilities {
|
|
|
|
invalid_option(cfg, str_in)
|
|
|
|
}
|
|
|
|
cfg = mutabilities[str_in]
|
|
|
|
}
|
|
|
|
|
|
|
|
type ParamOption = Mutability | Symbol | Visibility
|
|
|
|
|
|
|
|
// General helpers
|
|
|
|
fn invalid_option(invalid ParamOption, arg string) {
|
|
|
|
match invalid.type_name() {
|
|
|
|
'Symbol' {
|
|
|
|
msg := 'First arg (symbol type) must be one of the following:'
|
|
|
|
make_and_print_error(msg, symbols.keys(), arg)
|
|
|
|
}
|
|
|
|
'Visibility' {
|
|
|
|
msg := '"-vis" (visibility) must be one of the following:'
|
|
|
|
make_and_print_error(msg, visibilities.keys(), arg)
|
|
|
|
}
|
|
|
|
'Mutability' {
|
|
|
|
msg := '"-mut" (mutability) must be one of the following:'
|
|
|
|
make_and_print_error(msg, mutabilities.keys(), arg)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 07:59:11 +03:00
|
|
|
fn valid_args_quantity_or_show_help(args []string) {
|
2022-07-13 07:40:54 +03:00
|
|
|
if true in [
|
|
|
|
args.len < 1,
|
2022-07-15 07:59:11 +03:00
|
|
|
'-help' in args,
|
|
|
|
'--help' in args,
|
|
|
|
args == ['help'],
|
2022-07-13 07:40:54 +03:00
|
|
|
] {
|
|
|
|
os.system('${os.quoted_path(vexe)} help where')
|
|
|
|
exit(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_and_print_error(msg string, opts []string, arg string) {
|
2022-07-15 07:59:11 +03:00
|
|
|
if verbose || format {
|
|
|
|
eprintln('\n' + maybe_color(term.bright_yellow, msg))
|
|
|
|
if opts.len > 0 {
|
|
|
|
eprint(opts.map(maybe_color(term.bright_green, it)).join(' | '))
|
|
|
|
}
|
|
|
|
eprintln(' ...can not be ${maybe_color(term.bright_red, arg)}')
|
|
|
|
} else {
|
|
|
|
eprint(maybe_color(term.bright_yellow, msg) + ' ')
|
|
|
|
if opts.len > 0 {
|
|
|
|
eprint(opts.map(maybe_color(term.bright_green, it)).join(' | '))
|
|
|
|
}
|
|
|
|
eprintln(' ...can not be ${maybe_color(term.bright_red, arg)}')
|
2022-07-13 07:40:54 +03:00
|
|
|
}
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn maybe_color(term_color fn (string) string, str string) string {
|
|
|
|
if color_out {
|
|
|
|
return term_color(str)
|
|
|
|
} else {
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-16 09:28:57 +03:00
|
|
|
fn collect_v_files(path string, recursive bool) ![]string {
|
2022-07-13 07:40:54 +03:00
|
|
|
if path.len == 0 {
|
|
|
|
return error('path cannot be empty')
|
|
|
|
}
|
|
|
|
if !os.is_dir(path) {
|
|
|
|
return error('path does not exist or is not a directory')
|
|
|
|
}
|
|
|
|
mut all_files := []string{}
|
2022-10-16 09:28:57 +03:00
|
|
|
mut entries := os.ls(path)!
|
2022-07-13 07:40:54 +03:00
|
|
|
mut local_path_separator := os.path_separator
|
|
|
|
if path.ends_with(os.path_separator) {
|
|
|
|
local_path_separator = ''
|
|
|
|
}
|
|
|
|
for entry in entries {
|
|
|
|
file := path + local_path_separator + entry
|
|
|
|
if os.is_dir(file) && !os.is_link(file) && recursive {
|
2022-10-16 09:28:57 +03:00
|
|
|
all_files << collect_v_files(file, recursive)!
|
2022-07-13 07:40:54 +03:00
|
|
|
} else if os.exists(file) && (file.ends_with('.v') || file.ends_with('.vsh')) {
|
|
|
|
all_files << file
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return all_files
|
|
|
|
}
|
2022-07-15 07:59:11 +03:00
|
|
|
|
2022-10-16 09:28:57 +03:00
|
|
|
fn resolve_module(path string) !string {
|
2022-07-15 07:59:11 +03:00
|
|
|
if os.is_dir(path) {
|
|
|
|
return path
|
|
|
|
} else if os.is_dir(os.join_path(vmod_dir, path)) {
|
|
|
|
return os.join_path(vmod_dir, path)
|
|
|
|
} else if os.is_dir(os.join_path(vlib_dir, path)) {
|
|
|
|
return os.join_path(vlib_dir, path)
|
|
|
|
} else {
|
2022-11-15 16:53:13 +03:00
|
|
|
return error('Path: ${path} not found')
|
2022-07-15 07:59:11 +03:00
|
|
|
}
|
|
|
|
}
|