2022-01-04 10:21:08 +01:00
|
|
|
|
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
2020-09-15 18:35:00 +02:00
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
|
// that can be found in the LICENSE file.
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
module main
|
|
|
|
|
|
2020-04-26 08:32:05 +02:00
|
|
|
|
import os
|
|
|
|
|
import os.cmdline
|
|
|
|
|
import net.http
|
2022-01-15 13:35:37 +01:00
|
|
|
|
import net.urllib
|
2020-04-26 08:32:05 +02:00
|
|
|
|
import json
|
|
|
|
|
import vhelp
|
2020-05-24 14:25:29 +02:00
|
|
|
|
import v.vmod
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
|
|
|
|
|
const (
|
2021-04-29 01:17:37 +02:00
|
|
|
|
default_vpm_server_urls = ['https://vpm.vlang.io']
|
|
|
|
|
valid_vpm_commands = ['help', 'search', 'install', 'update', 'upgrade', 'outdated',
|
2021-05-24 14:17:57 +02:00
|
|
|
|
'list', 'remove', 'show']
|
2021-04-29 01:17:37 +02:00
|
|
|
|
excluded_dirs = ['cache', 'vlib']
|
|
|
|
|
supported_vcs_systems = ['git', 'hg']
|
|
|
|
|
supported_vcs_folders = ['.git', '.hg']
|
2021-08-04 11:44:41 +02:00
|
|
|
|
supported_vcs_update_cmds = {
|
2020-05-13 07:19:12 +02:00
|
|
|
|
'git': 'git pull'
|
2021-01-26 15:43:10 +01:00
|
|
|
|
'hg': 'hg pull --update'
|
2020-01-03 22:07:58 +01:00
|
|
|
|
}
|
2021-08-04 11:44:41 +02:00
|
|
|
|
supported_vcs_install_cmds = {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
'git': 'git clone --depth=1'
|
2021-01-26 15:43:10 +01:00
|
|
|
|
'hg': 'hg clone'
|
2020-01-03 22:07:58 +01:00
|
|
|
|
}
|
2021-08-04 11:44:41 +02:00
|
|
|
|
supported_vcs_outdated_steps = {
|
2020-07-22 02:25:20 +02:00
|
|
|
|
'git': ['git fetch', 'git rev-parse @', 'git rev-parse @{u}']
|
2021-01-26 15:43:10 +01:00
|
|
|
|
'hg': ['hg incoming']
|
2020-07-15 21:55:07 +02:00
|
|
|
|
}
|
2022-01-01 14:40:19 +01:00
|
|
|
|
supported_vcs_version_cmds = {
|
|
|
|
|
'git': 'git version'
|
|
|
|
|
'hg': 'hg version'
|
|
|
|
|
}
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
struct Mod {
|
2019-12-23 11:02:50 +01:00
|
|
|
|
id int
|
2021-08-18 17:58:04 +02:00
|
|
|
|
name string
|
2019-12-23 11:02:50 +01:00
|
|
|
|
url string
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
nr_downloads int
|
2020-01-03 22:07:58 +01:00
|
|
|
|
vcs string
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
struct Vmod {
|
|
|
|
|
mut:
|
|
|
|
|
name string
|
|
|
|
|
version string
|
|
|
|
|
deps []string
|
2021-08-18 13:05:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
enum Source {
|
|
|
|
|
git
|
|
|
|
|
hg
|
|
|
|
|
vpm
|
2021-08-13 11:28:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
fn main() {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
init_settings()
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
// This tool is intended to be launched by the v frontend,
|
2019-12-23 11:02:50 +01:00
|
|
|
|
// which provides the path to V inside os.getenv('VEXE')
|
2020-12-20 16:08:56 +01:00
|
|
|
|
// args are: vpm [options] SUBCOMMAND module names
|
|
|
|
|
params := cmdline.only_non_options(os.args[1..])
|
2021-08-18 17:58:04 +02:00
|
|
|
|
options := cmdline.only_options(os.args[1..])
|
2020-01-03 22:07:58 +01:00
|
|
|
|
verbose_println('cli params: $params')
|
|
|
|
|
if params.len < 1 {
|
2020-03-13 20:52:49 +01:00
|
|
|
|
vpm_help()
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
exit(5)
|
|
|
|
|
}
|
2020-01-03 22:07:58 +01:00
|
|
|
|
vpm_command := params[0]
|
2020-05-24 14:25:29 +02:00
|
|
|
|
mut module_names := params[1..]
|
2020-01-03 22:07:58 +01:00
|
|
|
|
ensure_vmodules_dir_exist()
|
2021-08-18 17:58:04 +02:00
|
|
|
|
// println('module names: ') println(module_names)
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
match vpm_command {
|
2019-12-23 11:02:50 +01:00
|
|
|
|
'help' {
|
2020-03-13 20:52:49 +01:00
|
|
|
|
vpm_help()
|
2019-12-23 11:02:50 +01:00
|
|
|
|
}
|
|
|
|
|
'search' {
|
|
|
|
|
vpm_search(module_names)
|
|
|
|
|
}
|
|
|
|
|
'install' {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if module_names.len == 0 && os.exists('./v.mod') {
|
2021-08-18 13:05:10 +02:00
|
|
|
|
println('Detected v.mod file inside the project directory. Using it...')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
manifest := vmod.from_file('./v.mod') or { panic(err) }
|
|
|
|
|
module_names = manifest.dependencies
|
2021-08-13 11:28:30 +02:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
mut source := Source.vpm
|
|
|
|
|
if '--git' in options {
|
|
|
|
|
source = Source.git
|
2021-08-18 13:05:10 +02:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if '--hg' in options {
|
|
|
|
|
source = Source.hg
|
2021-08-18 13:05:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vpm_install(module_names, source)
|
|
|
|
|
}
|
|
|
|
|
'update' {
|
|
|
|
|
vpm_update(module_names)
|
2019-12-23 11:02:50 +01:00
|
|
|
|
}
|
2020-08-18 02:44:18 +02:00
|
|
|
|
'upgrade' {
|
|
|
|
|
vpm_upgrade()
|
|
|
|
|
}
|
2020-07-15 21:55:07 +02:00
|
|
|
|
'outdated' {
|
|
|
|
|
vpm_outdated()
|
|
|
|
|
}
|
2020-07-20 16:39:37 +02:00
|
|
|
|
'list' {
|
|
|
|
|
vpm_list()
|
|
|
|
|
}
|
2019-12-23 11:02:50 +01:00
|
|
|
|
'remove' {
|
|
|
|
|
vpm_remove(module_names)
|
|
|
|
|
}
|
2021-05-24 14:17:57 +02:00
|
|
|
|
'show' {
|
|
|
|
|
vpm_show(module_names)
|
|
|
|
|
}
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
else {
|
|
|
|
|
println('Error: you tried to run "v $vpm_command"')
|
|
|
|
|
println('... but the v package management tool vpm only knows about these commands:')
|
|
|
|
|
for validcmd in valid_vpm_commands {
|
|
|
|
|
println(' v $validcmd')
|
|
|
|
|
}
|
|
|
|
|
exit(3)
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 05:22:28 +01:00
|
|
|
|
fn vpm_search(keywords []string) {
|
2020-07-02 18:20:42 +02:00
|
|
|
|
search_keys := keywords.map(it.replace('_', '-'))
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if settings.is_help {
|
|
|
|
|
vhelp.show_topic('search')
|
|
|
|
|
exit(0)
|
|
|
|
|
}
|
2020-07-02 18:20:42 +02:00
|
|
|
|
if search_keys.len == 0 {
|
2021-03-12 20:32:34 +01:00
|
|
|
|
println('´v search´ requires *at least one* keyword.')
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
exit(2)
|
|
|
|
|
}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
modules := get_all_modules()
|
2020-10-20 23:02:17 +02:00
|
|
|
|
installed_modules := get_installed_modules()
|
2020-07-02 18:20:42 +02:00
|
|
|
|
joined := search_keys.join(', ')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
mut index := 0
|
2021-08-18 17:58:04 +02:00
|
|
|
|
for mod in modules {
|
2020-07-02 18:20:42 +02:00
|
|
|
|
for k in search_keys {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if !mod.contains(k) {
|
2019-12-30 05:22:28 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if index == 0 {
|
|
|
|
|
println('Search results for "$joined":\n')
|
|
|
|
|
}
|
|
|
|
|
index++
|
2021-08-18 17:58:04 +02:00
|
|
|
|
mut parts := mod.split('.')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
// in case the author isn't present
|
|
|
|
|
if parts.len == 1 {
|
|
|
|
|
parts << parts[0]
|
2020-10-20 23:02:17 +02:00
|
|
|
|
parts[0] = ' '
|
|
|
|
|
} else {
|
|
|
|
|
parts[0] = ' by ${parts[0]} '
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
installed := if mod in installed_modules { ' (installed)' } else { '' }
|
|
|
|
|
println('${index}. ${parts[1]}${parts[0]}[$mod]$installed')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if index == 0 {
|
2020-11-07 17:02:16 +01:00
|
|
|
|
vexe := os.getenv('VEXE')
|
|
|
|
|
vroot := os.real_path(os.dir(vexe))
|
|
|
|
|
mut messages := ['No module(s) found for `$joined` .']
|
|
|
|
|
for vlibmod in search_keys {
|
|
|
|
|
if os.is_dir(os.join_path(vroot, 'vlib', vlibmod)) {
|
|
|
|
|
messages << 'There is already an existing "$vlibmod" module in vlib, so you can just `import $vlibmod` .'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for m in messages {
|
|
|
|
|
println(m)
|
|
|
|
|
}
|
2020-07-02 18:20:42 +02:00
|
|
|
|
} else {
|
2020-10-20 23:02:17 +02:00
|
|
|
|
println('\nUse "v install author_name.module_name" to install the module.')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn vpm_install_from_vpm(module_names []string) {
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
mut errors := 0
|
2021-08-18 17:58:04 +02:00
|
|
|
|
for n in module_names {
|
|
|
|
|
name := n.trim_space().replace('_', '-')
|
|
|
|
|
mod := get_module_meta_info(name) or {
|
|
|
|
|
errors++
|
|
|
|
|
println('Errors while retrieving meta data for module $name:')
|
|
|
|
|
println(err)
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
2020-01-03 22:07:58 +01:00
|
|
|
|
mut vcs := mod.vcs
|
|
|
|
|
if vcs == '' {
|
|
|
|
|
vcs = supported_vcs_systems[0]
|
|
|
|
|
}
|
2020-04-13 19:59:57 +02:00
|
|
|
|
if vcs !in supported_vcs_systems {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
errors++
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println('Skipping module "$name", since it uses an unsupported VCS {$vcs} .')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
2022-01-01 14:40:19 +01:00
|
|
|
|
if !ensure_vcs_is_installed(vcs) {
|
|
|
|
|
errors++
|
|
|
|
|
println('VPM needs `$vcs` to be installed.')
|
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
mod_name_as_path := mod.name.replace('.', os.path_separator).replace('-', '_').to_lower()
|
|
|
|
|
final_module_path := os.real_path(os.join_path(settings.vmodules_path, mod_name_as_path))
|
2019-12-30 05:22:28 +01:00
|
|
|
|
if os.exists(final_module_path) {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vpm_update([name])
|
2019-12-30 05:22:28 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Installing module "$name" from "$mod.url" to "$final_module_path" ...')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
vcs_install_cmd := supported_vcs_install_cmds[vcs]
|
2020-06-30 21:42:16 +02:00
|
|
|
|
cmd := '$vcs_install_cmd "$mod.url" "$final_module_path"'
|
2020-01-03 22:07:58 +01:00
|
|
|
|
verbose_println(' command: $cmd')
|
2021-03-08 19:52:13 +01:00
|
|
|
|
cmdres := os.execute(cmd)
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if cmdres.exit_code != 0 {
|
|
|
|
|
errors++
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println('Failed installing module "$name" to "$final_module_path" .')
|
2022-01-01 14:40:19 +01:00
|
|
|
|
print_failed_cmd(cmd, cmdres)
|
2021-08-18 17:58:04 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
resolve_dependencies(name, final_module_path, module_names)
|
|
|
|
|
}
|
|
|
|
|
if errors > 0 {
|
|
|
|
|
exit(1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-01 14:40:19 +01:00
|
|
|
|
fn print_failed_cmd(cmd string, cmdres os.Result) {
|
|
|
|
|
verbose_println('Failed command: $cmd')
|
|
|
|
|
verbose_println('Failed command output:\n$cmdres.output')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn ensure_vcs_is_installed(vcs string) bool {
|
|
|
|
|
mut res := true
|
|
|
|
|
cmd := supported_vcs_version_cmds[vcs]
|
|
|
|
|
cmdres := os.execute(cmd)
|
|
|
|
|
if cmdres.exit_code != 0 {
|
|
|
|
|
print_failed_cmd(cmd, cmdres)
|
|
|
|
|
res = false
|
|
|
|
|
}
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn vpm_install_from_vcs(module_names []string, vcs_key string) {
|
|
|
|
|
mut errors := 0
|
|
|
|
|
for n in module_names {
|
|
|
|
|
url := n.trim_space()
|
|
|
|
|
|
|
|
|
|
first_cut_pos := url.last_index('/') or {
|
|
|
|
|
errors++
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Errors while retrieving name for module "$url" :')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println(err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod_name := url.substr(first_cut_pos + 1, url.len)
|
|
|
|
|
|
|
|
|
|
second_cut_pos := url.substr(0, first_cut_pos).last_index('/') or {
|
|
|
|
|
errors++
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Errors while retrieving name for module "$url" :')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println(err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
repo_name := url.substr(second_cut_pos + 1, first_cut_pos)
|
|
|
|
|
mut name := repo_name + os.path_separator + mod_name
|
|
|
|
|
mod_name_as_path := name.replace('-', '_').to_lower()
|
|
|
|
|
mut final_module_path := os.real_path(os.join_path(settings.vmodules_path, mod_name_as_path))
|
|
|
|
|
if os.exists(final_module_path) {
|
|
|
|
|
vpm_update([name.replace('-', '_')])
|
|
|
|
|
continue
|
|
|
|
|
}
|
2022-01-01 14:40:19 +01:00
|
|
|
|
if !ensure_vcs_is_installed(vcs_key) {
|
|
|
|
|
errors++
|
|
|
|
|
println('VPM needs `$vcs_key` to be installed.')
|
|
|
|
|
continue
|
|
|
|
|
}
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Installing module "$name" from "$url" to "$final_module_path" ...')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vcs_install_cmd := supported_vcs_install_cmds[vcs_key]
|
|
|
|
|
cmd := '$vcs_install_cmd "$url" "$final_module_path"'
|
|
|
|
|
verbose_println(' command: $cmd')
|
|
|
|
|
cmdres := os.execute(cmd)
|
|
|
|
|
if cmdres.exit_code != 0 {
|
|
|
|
|
errors++
|
|
|
|
|
println('Failed installing module "$name" to "$final_module_path" .')
|
2022-01-01 14:40:19 +01:00
|
|
|
|
print_failed_cmd(cmd, cmdres)
|
2021-08-13 11:28:30 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
vmod_path := os.join_path(final_module_path, 'v.mod')
|
|
|
|
|
if os.exists(vmod_path) {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
data := os.read_file(vmod_path) or { return }
|
|
|
|
|
vmod := parse_vmod(data)
|
|
|
|
|
mod_path := os.real_path(os.join_path(settings.vmodules_path, vmod.name.replace('.',
|
|
|
|
|
os.path_separator)))
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Relocating module from "$name" to "$vmod.name" ( "$mod_path" ) ...')
|
2021-08-13 11:28:30 +02:00
|
|
|
|
if os.exists(mod_path) {
|
|
|
|
|
println('Warning module "$mod_path" already exsits!')
|
|
|
|
|
println('Removing module "$mod_path" ...')
|
|
|
|
|
os.rmdir_all(mod_path) or {
|
|
|
|
|
errors++
|
|
|
|
|
println('Errors while removing "$mod_path" :')
|
|
|
|
|
println(err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
os.mv(final_module_path, mod_path) or {
|
|
|
|
|
errors++
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println('Errors while relocating module "$name" :')
|
2021-08-13 11:28:30 +02:00
|
|
|
|
println(err)
|
2021-08-18 17:58:04 +02:00
|
|
|
|
os.rmdir_all(final_module_path) or {
|
|
|
|
|
errors++
|
|
|
|
|
println('Errors while removing "$final_module_path" :')
|
|
|
|
|
println(err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-13 11:28:30 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println('Module "$name" relocated to "$vmod.name" successfully.')
|
2021-08-13 11:28:30 +02:00
|
|
|
|
final_module_path = mod_path
|
2021-08-18 17:58:04 +02:00
|
|
|
|
name = vmod.name
|
2021-08-13 11:28:30 +02:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
resolve_dependencies(name, final_module_path, module_names)
|
2021-08-13 11:28:30 +02:00
|
|
|
|
}
|
|
|
|
|
if errors > 0 {
|
|
|
|
|
exit(1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn vpm_install(module_names []string, source Source) {
|
|
|
|
|
if settings.is_help {
|
|
|
|
|
vhelp.show_topic('install')
|
|
|
|
|
exit(0)
|
|
|
|
|
}
|
|
|
|
|
if module_names.len == 0 {
|
|
|
|
|
println('´v install´ requires *at least one* module name.')
|
|
|
|
|
exit(2)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if source == .vpm {
|
|
|
|
|
vpm_install_from_vpm(module_names)
|
|
|
|
|
}
|
|
|
|
|
if source == .git {
|
|
|
|
|
vpm_install_from_vcs(module_names, 'git')
|
|
|
|
|
}
|
|
|
|
|
if source == .hg {
|
|
|
|
|
vpm_install_from_vcs(module_names, 'hg')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn vpm_update(m []string) {
|
|
|
|
|
mut module_names := m.clone()
|
|
|
|
|
if settings.is_help {
|
|
|
|
|
vhelp.show_topic('update')
|
|
|
|
|
exit(0)
|
|
|
|
|
}
|
|
|
|
|
if module_names.len == 0 {
|
|
|
|
|
module_names = get_installed_modules()
|
|
|
|
|
}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
mut errors := 0
|
2022-01-15 15:37:54 +01:00
|
|
|
|
for modulename in module_names {
|
|
|
|
|
mut zname := modulename
|
|
|
|
|
if mod := get_mod_by_url(modulename) {
|
|
|
|
|
zname = mod.name
|
|
|
|
|
}
|
|
|
|
|
final_module_path := valid_final_path_of_existing_module(modulename) or { continue }
|
2021-08-28 11:44:03 +02:00
|
|
|
|
os.chdir(final_module_path) or {}
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Updating module "$zname" in "$final_module_path" ...')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vcs := vcs_used_in_dir(final_module_path) or { continue }
|
2022-01-01 14:40:19 +01:00
|
|
|
|
if !ensure_vcs_is_installed(vcs[0]) {
|
|
|
|
|
errors++
|
|
|
|
|
println('VPM needs `$vcs` to be installed.')
|
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vcs_cmd := supported_vcs_update_cmds[vcs[0]]
|
2020-08-07 17:33:13 +02:00
|
|
|
|
verbose_println(' command: $vcs_cmd')
|
2021-03-08 19:52:13 +01:00
|
|
|
|
vcs_res := os.execute('$vcs_cmd')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if vcs_res.exit_code != 0 {
|
|
|
|
|
errors++
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Failed updating module "$zname" in "$final_module_path" .')
|
2022-01-01 14:40:19 +01:00
|
|
|
|
print_failed_cmd(vcs_cmd, vcs_res)
|
2019-12-30 05:22:28 +01:00
|
|
|
|
continue
|
2020-08-07 17:33:13 +02:00
|
|
|
|
} else {
|
|
|
|
|
verbose_println(' $vcs_res.output.trim_space()')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
2022-01-15 15:37:54 +01:00
|
|
|
|
resolve_dependencies(modulename, final_module_path, module_names)
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
if errors > 0 {
|
|
|
|
|
exit(1)
|
|
|
|
|
}
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn get_outdated() ?[]string {
|
|
|
|
|
module_names := get_installed_modules()
|
|
|
|
|
mut outdated := []string{}
|
|
|
|
|
for name in module_names {
|
|
|
|
|
final_module_path := valid_final_path_of_existing_module(name) or { continue }
|
2021-08-28 11:44:03 +02:00
|
|
|
|
os.chdir(final_module_path) or {}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vcs := vcs_used_in_dir(final_module_path) or { continue }
|
|
|
|
|
vcs_cmd_steps := supported_vcs_outdated_steps[vcs[0]]
|
2020-07-22 02:25:20 +02:00
|
|
|
|
mut outputs := []string{}
|
|
|
|
|
for step in vcs_cmd_steps {
|
2021-03-08 19:52:13 +01:00
|
|
|
|
res := os.execute(step)
|
|
|
|
|
if res.exit_code < 0 {
|
2020-09-15 18:35:00 +02:00
|
|
|
|
verbose_println('Error command: $step')
|
2021-03-08 19:52:13 +01:00
|
|
|
|
verbose_println('Error details:\n$res.output')
|
2022-01-15 15:37:54 +01:00
|
|
|
|
return error('Error while checking latest commits for "$name" .')
|
2020-07-22 02:25:20 +02:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if vcs[0] == 'hg' {
|
2020-09-15 18:35:00 +02:00
|
|
|
|
if res.exit_code == 1 {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
outdated << name
|
2020-09-15 18:35:00 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
outputs << res.output
|
|
|
|
|
}
|
2020-07-15 21:55:07 +02:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if vcs[0] == 'git' && outputs[1] != outputs[2] {
|
|
|
|
|
outdated << name
|
2020-07-15 21:55:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-18 02:44:18 +02:00
|
|
|
|
return outdated
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn vpm_upgrade() {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
outdated := get_outdated() or { exit(1) }
|
2020-08-18 02:44:18 +02:00
|
|
|
|
if outdated.len > 0 {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vpm_update(outdated)
|
2020-08-18 02:44:18 +02:00
|
|
|
|
} else {
|
|
|
|
|
println('Modules are up to date.')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn vpm_outdated() {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
outdated := get_outdated() or { exit(1) }
|
2020-07-15 21:55:07 +02:00
|
|
|
|
if outdated.len > 0 {
|
|
|
|
|
println('Outdated modules:')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
for m in outdated {
|
|
|
|
|
println(' $m')
|
2020-07-15 21:55:07 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
println('Modules are up to date.')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 16:39:37 +02:00
|
|
|
|
fn vpm_list() {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
module_names := get_installed_modules()
|
|
|
|
|
if module_names.len == 0 {
|
2020-07-20 16:39:37 +02:00
|
|
|
|
println('You have no modules installed.')
|
|
|
|
|
exit(0)
|
|
|
|
|
}
|
2020-08-07 17:33:13 +02:00
|
|
|
|
println('Installed modules:')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
for mod in module_names {
|
|
|
|
|
println(' $mod')
|
2020-07-20 16:39:37 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-23 11:02:50 +01:00
|
|
|
|
fn vpm_remove(module_names []string) {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if settings.is_help {
|
2020-03-13 20:52:49 +01:00
|
|
|
|
vhelp.show_topic('remove')
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
exit(0)
|
|
|
|
|
}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
if module_names.len == 0 {
|
2021-03-12 20:32:34 +01:00
|
|
|
|
println('´v remove´ requires *at least one* module name.')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
exit(2)
|
|
|
|
|
}
|
|
|
|
|
for name in module_names {
|
2021-01-26 15:43:10 +01:00
|
|
|
|
final_module_path := valid_final_path_of_existing_module(name) or { continue }
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Removing module "$name" ...')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
verbose_println('removing folder $final_module_path')
|
2021-03-26 10:37:54 +01:00
|
|
|
|
os.rmdir_all(final_module_path) or {
|
|
|
|
|
verbose_println('error while removing "$final_module_path": $err.msg')
|
|
|
|
|
}
|
2020-01-03 22:07:58 +01:00
|
|
|
|
// delete author directory if it is empty
|
2019-12-30 05:22:28 +01:00
|
|
|
|
author := name.split('.')[0]
|
2020-06-30 21:42:16 +02:00
|
|
|
|
author_dir := os.real_path(os.join_path(settings.vmodules_path, author))
|
2021-03-26 10:37:54 +01:00
|
|
|
|
if !os.exists(author_dir) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
if os.is_dir_empty(author_dir) {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
verbose_println('removing author folder $author_dir')
|
2021-03-26 10:37:54 +01:00
|
|
|
|
os.rmdir(author_dir) or {
|
|
|
|
|
verbose_println('error while removing "$author_dir": $err.msg')
|
|
|
|
|
}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-15 15:37:54 +01:00
|
|
|
|
fn valid_final_path_of_existing_module(modulename string) ?string {
|
|
|
|
|
mut name := modulename
|
|
|
|
|
if mod := get_mod_by_url(name) {
|
|
|
|
|
name = mod.name
|
2022-01-15 17:02:58 +01:00
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
mod_name_as_path := name.replace('.', os.path_separator).replace('-', '_').to_lower()
|
|
|
|
|
name_of_vmodules_folder := os.join_path(settings.vmodules_path, mod_name_as_path)
|
|
|
|
|
final_module_path := os.real_path(name_of_vmodules_folder)
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if !os.exists(final_module_path) {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println('No module with name "$name" exists at $name_of_vmodules_folder')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
return none
|
|
|
|
|
}
|
|
|
|
|
if !os.is_dir(final_module_path) {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
println('Skipping "$name_of_vmodules_folder", since it is not a folder.')
|
|
|
|
|
return none
|
|
|
|
|
}
|
|
|
|
|
vcs_used_in_dir(final_module_path) or {
|
|
|
|
|
println('Skipping "$name_of_vmodules_folder", since it does not use a supported vcs.')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
return none
|
|
|
|
|
}
|
|
|
|
|
return final_module_path
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn ensure_vmodules_dir_exist() {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if !os.is_dir(settings.vmodules_path) {
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Creating "$settings.vmodules_path/" ...')
|
2021-03-01 00:18:14 +01:00
|
|
|
|
os.mkdir(settings.vmodules_path) or { panic(err) }
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-13 20:52:49 +01:00
|
|
|
|
fn vpm_help() {
|
|
|
|
|
vhelp.show_topic('vpm')
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
|
}
|
2019-12-23 11:02:50 +01:00
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn vcs_used_in_dir(dir string) ?[]string {
|
|
|
|
|
mut vcs := []string{}
|
2020-01-03 22:07:58 +01:00
|
|
|
|
for repo_subfolder in supported_vcs_folders {
|
2020-06-30 21:42:16 +02:00
|
|
|
|
checked_folder := os.real_path(os.join_path(dir, repo_subfolder))
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if os.is_dir(checked_folder) {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vcs << repo_subfolder.replace('.', '')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if vcs.len == 0 {
|
|
|
|
|
return none
|
|
|
|
|
}
|
|
|
|
|
return vcs
|
2020-01-03 22:07:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn get_installed_modules() []string {
|
|
|
|
|
dirs := os.ls(settings.vmodules_path) or { return [] }
|
|
|
|
|
mut modules := []string{}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
for dir in dirs {
|
2020-06-30 21:42:16 +02:00
|
|
|
|
adir := os.join_path(settings.vmodules_path, dir)
|
2020-01-03 22:07:58 +01:00
|
|
|
|
if dir in excluded_dirs || !os.is_dir(adir) {
|
2019-12-30 05:22:28 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if os.exists(os.join_path(adir, 'v.mod')) && os.exists(os.join_path(adir, '.git', 'config')) {
|
2020-05-31 18:18:24 +02:00
|
|
|
|
// an official vlang module with a short module name, like `vsl`, `ui` or `markdown`
|
2021-08-18 17:58:04 +02:00
|
|
|
|
modules << dir
|
2020-05-31 18:18:24 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
author := dir
|
2021-01-26 15:43:10 +01:00
|
|
|
|
mods := os.ls(adir) or { continue }
|
2019-12-30 05:22:28 +01:00
|
|
|
|
for m in mods {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vcs_used_in_dir(os.join_path(adir, m)) or { continue }
|
|
|
|
|
modules << '${author}.$m'
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return modules
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn get_all_modules() []string {
|
2020-01-03 22:07:58 +01:00
|
|
|
|
url := get_working_server_url()
|
2021-03-01 00:18:14 +01:00
|
|
|
|
r := http.get(url) or { panic(err) }
|
2019-12-30 05:22:28 +01:00
|
|
|
|
if r.status_code != 200 {
|
2020-03-16 10:53:28 +01:00
|
|
|
|
println('Failed to search vpm.vlang.io. Status code: $r.status_code')
|
2019-12-30 05:22:28 +01:00
|
|
|
|
exit(1)
|
|
|
|
|
}
|
|
|
|
|
s := r.text
|
|
|
|
|
mut read_len := 0
|
2021-08-18 17:58:04 +02:00
|
|
|
|
mut modules := []string{}
|
2019-12-30 05:22:28 +01:00
|
|
|
|
for read_len < s.len {
|
|
|
|
|
mut start_token := '<a href="/mod'
|
|
|
|
|
end_token := '</a>'
|
|
|
|
|
// get the start index of the module entry
|
|
|
|
|
mut start_index := s.index_after(start_token, read_len)
|
|
|
|
|
if start_index == -1 {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
// get the index of the end of anchor (a) opening tag
|
|
|
|
|
// we use the previous start_index to make sure we are getting a module and not just a random 'a' tag
|
|
|
|
|
start_token = '">'
|
|
|
|
|
start_index = s.index_after(start_token, start_index) + start_token.len
|
|
|
|
|
// get the index of the end of module entry
|
|
|
|
|
end_index := s.index_after(end_token, start_index)
|
|
|
|
|
if end_index == -1 {
|
|
|
|
|
break
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
modules << s[start_index..end_index]
|
2019-12-30 05:22:28 +01:00
|
|
|
|
read_len = end_index
|
|
|
|
|
if read_len >= s.len {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return modules
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn resolve_dependencies(name string, module_path string, module_names []string) {
|
|
|
|
|
vmod_path := os.join_path(module_path, 'v.mod')
|
|
|
|
|
if !os.exists(vmod_path) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
data := os.read_file(vmod_path) or { return }
|
|
|
|
|
vmod := parse_vmod(data)
|
2020-04-26 13:49:31 +02:00
|
|
|
|
mut deps := []string{}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
// filter out dependencies that were already specified by the user
|
|
|
|
|
for d in vmod.deps {
|
|
|
|
|
if d !in module_names {
|
|
|
|
|
deps << d
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if deps.len > 0 {
|
2022-01-15 15:37:54 +01:00
|
|
|
|
println('Resolving $deps.len dependencies for module "$name" ...')
|
2020-01-03 22:07:58 +01:00
|
|
|
|
verbose_println('Found dependencies: $deps')
|
2021-08-18 17:58:04 +02:00
|
|
|
|
vpm_install(deps, Source.vpm)
|
2019-12-30 05:22:28 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
fn parse_vmod(data string) Vmod {
|
|
|
|
|
manifest := vmod.decode(data) or { vmod.Manifest{} }
|
|
|
|
|
mut vmod := Vmod{}
|
|
|
|
|
vmod.name = manifest.name
|
|
|
|
|
vmod.version = manifest.version
|
|
|
|
|
vmod.deps = manifest.dependencies
|
|
|
|
|
return vmod
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 22:07:58 +01:00
|
|
|
|
fn get_working_server_url() string {
|
2021-01-26 15:43:10 +01:00
|
|
|
|
server_urls := if settings.server_urls.len > 0 {
|
|
|
|
|
settings.server_urls
|
|
|
|
|
} else {
|
|
|
|
|
default_vpm_server_urls
|
|
|
|
|
}
|
2020-01-03 22:07:58 +01:00
|
|
|
|
for url in server_urls {
|
|
|
|
|
verbose_println('Trying server url: $url')
|
|
|
|
|
http.head(url) or {
|
|
|
|
|
verbose_println(' $url failed.')
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
return url
|
|
|
|
|
}
|
|
|
|
|
panic('No responding vpm server found. Please check your network connectivity and try again later.')
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 17:58:04 +02:00
|
|
|
|
// settings context:
|
|
|
|
|
struct VpmSettings {
|
|
|
|
|
mut:
|
|
|
|
|
is_help bool
|
|
|
|
|
is_verbose bool
|
|
|
|
|
server_urls []string
|
|
|
|
|
vmodules_path string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
settings = &VpmSettings{}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
fn init_settings() {
|
|
|
|
|
mut s := &VpmSettings(0)
|
|
|
|
|
unsafe {
|
|
|
|
|
s = settings
|
|
|
|
|
}
|
|
|
|
|
s.is_help = '-h' in os.args || '--help' in os.args || 'help' in os.args
|
|
|
|
|
s.is_verbose = '-v' in os.args
|
|
|
|
|
s.server_urls = cmdline.options(os.args, '-server-url')
|
|
|
|
|
s.vmodules_path = os.vmodules_dir()
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 22:07:58 +01:00
|
|
|
|
fn verbose_println(s string) {
|
|
|
|
|
if settings.is_verbose {
|
|
|
|
|
println(s)
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-16 14:30:22 +01:00
|
|
|
|
|
2022-01-15 15:37:54 +01:00
|
|
|
|
fn get_mod_by_url(name string) ?Mod {
|
2022-01-15 13:35:37 +01:00
|
|
|
|
if purl := urllib.parse(name) {
|
|
|
|
|
verbose_println('purl: $purl')
|
|
|
|
|
mod := Mod{
|
2022-01-15 15:37:54 +01:00
|
|
|
|
name: purl.path.trim_left('/').trim_right('/').replace('/', '.')
|
2022-01-15 13:35:37 +01:00
|
|
|
|
url: name
|
|
|
|
|
}
|
|
|
|
|
verbose_println(mod.str())
|
|
|
|
|
return mod
|
|
|
|
|
}
|
2022-01-15 15:37:54 +01:00
|
|
|
|
return error('invalid url: $name')
|
|
|
|
|
}
|
2022-01-15 13:35:37 +01:00
|
|
|
|
|
2022-01-15 15:37:54 +01:00
|
|
|
|
fn get_module_meta_info(name string) ?Mod {
|
|
|
|
|
if mod := get_mod_by_url(name) {
|
|
|
|
|
return mod
|
|
|
|
|
}
|
|
|
|
|
mut errors := []string{}
|
2020-03-16 14:30:22 +01:00
|
|
|
|
for server_url in default_vpm_server_urls {
|
|
|
|
|
modurl := server_url + '/jsmod/$name'
|
2022-01-15 15:37:54 +01:00
|
|
|
|
verbose_println('Retrieving module metadata from: "$modurl" ...')
|
2020-03-16 14:30:22 +01:00
|
|
|
|
r := http.get(modurl) or {
|
2022-01-15 17:02:58 +01:00
|
|
|
|
errors << 'Http server did not respond to our request for "$modurl" .'
|
2020-03-16 14:30:22 +01:00
|
|
|
|
errors << 'Error details: $err'
|
|
|
|
|
continue
|
|
|
|
|
}
|
2021-02-25 08:05:18 +01:00
|
|
|
|
if r.status_code == 404 || r.text.trim_space() == '404' {
|
2022-01-15 15:37:54 +01:00
|
|
|
|
errors << 'Skipping module "$name", since "$server_url" reported that "$name" does not exist.'
|
2020-03-16 14:30:22 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if r.status_code != 200 {
|
2022-01-15 15:37:54 +01:00
|
|
|
|
errors << 'Skipping module "$name", since "$server_url" responded with $r.status_code http status code. Please try again later.'
|
2020-03-16 14:30:22 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
s := r.text
|
|
|
|
|
if s.len > 0 && s[0] != `{` {
|
|
|
|
|
errors << 'Invalid json data'
|
2022-01-15 15:37:54 +01:00
|
|
|
|
errors << s.trim_space().limit(100) + ' ...'
|
2020-03-16 14:30:22 +01:00
|
|
|
|
continue
|
|
|
|
|
}
|
2020-06-30 21:42:16 +02:00
|
|
|
|
mod := json.decode(Mod, s) or {
|
2020-03-16 14:30:22 +01:00
|
|
|
|
errors << 'Skipping module "$name", since its information is not in json format.'
|
|
|
|
|
continue
|
|
|
|
|
}
|
2020-03-29 10:08:42 +02:00
|
|
|
|
if '' == mod.url || '' == mod.name {
|
2020-03-16 14:30:22 +01:00
|
|
|
|
errors << 'Skipping module "$name", since it is missing name or url information.'
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
return mod
|
|
|
|
|
}
|
|
|
|
|
return error(errors.join_lines())
|
|
|
|
|
}
|
2021-05-24 14:17:57 +02:00
|
|
|
|
|
|
|
|
|
fn vpm_show(module_names []string) {
|
|
|
|
|
installed_modules := get_installed_modules()
|
|
|
|
|
for module_name in module_names {
|
2021-08-18 17:58:04 +02:00
|
|
|
|
if module_name !in installed_modules {
|
2021-05-24 14:17:57 +02:00
|
|
|
|
module_meta_info := get_module_meta_info(module_name) or { continue }
|
2021-08-18 17:58:04 +02:00
|
|
|
|
print('
|
|
|
|
|
Name: $module_meta_info.name
|
|
|
|
|
Homepage: $module_meta_info.url
|
|
|
|
|
Downloads: $module_meta_info.nr_downloads
|
|
|
|
|
Installed: False
|
|
|
|
|
--------
|
|
|
|
|
')
|
2021-05-24 14:17:57 +02:00
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-18 17:58:04 +02:00
|
|
|
|
path := os.join_path(os.vmodules_dir(), module_name.replace('.', os.path_separator))
|
|
|
|
|
mod := vmod.from_file(os.join_path(path, 'v.mod')) or { continue }
|
|
|
|
|
print('Name: $mod.name
|
|
|
|
|
Version: $mod.version
|
|
|
|
|
Description: $mod.description
|
|
|
|
|
Homepage: $mod.repo_url
|
|
|
|
|
Author: $mod.author
|
|
|
|
|
License: $mod.license
|
|
|
|
|
Location: $path
|
|
|
|
|
Requires: ${mod.dependencies.join(', ')}
|
|
|
|
|
--------
|
|
|
|
|
')
|
2021-05-24 14:17:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|