2020-02-28 15:02:56 +03:00
|
|
|
module main
|
|
|
|
|
2020-04-26 09:32:05 +03:00
|
|
|
import os
|
2020-10-15 22:39:59 +03:00
|
|
|
import os.cmdline
|
2020-04-26 09:32:05 +03:00
|
|
|
import v.pref
|
2021-01-18 10:33:33 +03:00
|
|
|
import v.util.recompilation
|
2020-02-28 15:02:56 +03:00
|
|
|
|
2021-01-28 07:26:28 +03:00
|
|
|
const is_debug = os.args.contains('-debug')
|
|
|
|
|
2020-02-28 15:02:56 +03:00
|
|
|
fn main() {
|
2022-11-07 13:36:30 +03:00
|
|
|
// make testing `v up` easier, by providing a way to force `v self` to fail,
|
|
|
|
// to test the fallback logic:
|
|
|
|
if os.getenv('VSELF_SHOULD_FAIL') != '' {
|
|
|
|
eprintln('v self failed')
|
|
|
|
exit(1)
|
|
|
|
}
|
2022-01-10 16:45:28 +03:00
|
|
|
// support a renamed `v` executable too:
|
2020-02-28 18:04:22 +03:00
|
|
|
vexe := pref.vexe_path()
|
2020-03-08 00:26:26 +03:00
|
|
|
vroot := os.dir(vexe)
|
2022-01-10 16:45:28 +03:00
|
|
|
vexe_name := os.file_name(vexe)
|
|
|
|
short_v_name := vexe_name.all_before('.')
|
|
|
|
//
|
2022-11-15 16:53:13 +03:00
|
|
|
recompilation.must_be_enabled(vroot, 'Please install V from source, to use `${vexe_name} self` .')
|
2022-10-16 09:28:57 +03:00
|
|
|
os.chdir(vroot)!
|
2020-05-08 19:04:24 +03:00
|
|
|
os.setenv('VCOLORS', 'always', true)
|
2021-08-06 06:21:00 +03:00
|
|
|
args := os.args[1..].filter(it != 'self')
|
2020-10-15 22:39:59 +03:00
|
|
|
jargs := args.join(' ')
|
2020-10-16 15:05:57 +03:00
|
|
|
obinary := cmdline.option(args, '-o', '')
|
2022-11-15 16:53:13 +03:00
|
|
|
sargs := if obinary != '' { jargs } else { '${jargs} -o v2' }
|
|
|
|
cmd := '${os.quoted_path(vexe)} ${sargs} ${os.quoted_path('cmd/v')}'
|
|
|
|
options := if args.len > 0 { '(${sargs})' } else { '' }
|
2020-04-24 13:36:27 +03:00
|
|
|
println('V self compiling ${options}...')
|
2020-10-15 22:39:59 +03:00
|
|
|
compile(vroot, cmd)
|
|
|
|
if obinary != '' {
|
|
|
|
// When -o was given, there is no need to backup/rename the original.
|
|
|
|
// The user just wants an independent copy of v, and so we are done.
|
|
|
|
return
|
|
|
|
}
|
2022-04-12 13:38:40 +03:00
|
|
|
backup_old_version_and_rename_newer(short_v_name) or { panic(err.msg()) }
|
2022-11-15 16:53:13 +03:00
|
|
|
println('V built successfully as executable "${vexe_name}".')
|
2020-10-15 22:39:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn compile(vroot string, cmd string) {
|
2021-07-20 14:04:35 +03:00
|
|
|
result := os.execute_or_exit(cmd)
|
2020-04-07 17:56:33 +03:00
|
|
|
if result.exit_code != 0 {
|
2022-11-15 16:53:13 +03:00
|
|
|
eprintln('cannot compile to `${vroot}`: \n${result.output}')
|
2020-02-28 18:04:22 +03:00
|
|
|
exit(1)
|
|
|
|
}
|
2020-04-07 17:56:33 +03:00
|
|
|
if result.output.len > 0 {
|
2020-07-14 18:45:44 +03:00
|
|
|
println(result.output.trim_space())
|
2020-04-07 17:56:33 +03:00
|
|
|
}
|
2020-10-15 22:39:59 +03:00
|
|
|
}
|
|
|
|
|
2022-01-10 16:45:28 +03:00
|
|
|
fn list_folder(short_v_name string, bmessage string, message string) {
|
2021-01-28 07:26:28 +03:00
|
|
|
if !is_debug {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if bmessage != '' {
|
|
|
|
println(bmessage)
|
|
|
|
}
|
|
|
|
if os.user_os() == 'windows' {
|
2022-11-15 16:53:13 +03:00
|
|
|
os.system('dir ${short_v_name}*.exe')
|
2021-01-28 07:26:28 +03:00
|
|
|
} else {
|
2022-11-15 16:53:13 +03:00
|
|
|
os.system('ls -lartd ${short_v_name}*')
|
2021-01-28 07:26:28 +03:00
|
|
|
}
|
|
|
|
println(message)
|
|
|
|
}
|
|
|
|
|
2022-10-16 09:28:57 +03:00
|
|
|
fn backup_old_version_and_rename_newer(short_v_name string) !bool {
|
2021-01-28 00:58:13 +03:00
|
|
|
mut errors := []string{}
|
2022-11-15 16:53:13 +03:00
|
|
|
short_v_file := if os.user_os() == 'windows' { '${short_v_name}.exe' } else { '${short_v_name}' }
|
2021-01-28 01:45:38 +03:00
|
|
|
short_v2_file := if os.user_os() == 'windows' { 'v2.exe' } else { 'v2' }
|
|
|
|
short_bak_file := if os.user_os() == 'windows' { 'v_old.exe' } else { 'v_old' }
|
|
|
|
v_file := os.real_path(short_v_file)
|
|
|
|
v2_file := os.real_path(short_v2_file)
|
|
|
|
bak_file := os.real_path(short_bak_file)
|
2021-01-28 07:26:28 +03:00
|
|
|
|
2022-11-15 16:53:13 +03:00
|
|
|
list_folder(short_v_name, 'before:', 'removing ${bak_file} ...')
|
2021-04-08 07:27:56 +03:00
|
|
|
if os.exists(bak_file) {
|
2022-11-15 16:53:13 +03:00
|
|
|
os.rm(bak_file) or { errors << 'failed removing ${bak_file}: ${err.msg()}' }
|
2021-04-08 07:27:56 +03:00
|
|
|
}
|
2021-01-28 07:26:28 +03:00
|
|
|
|
2022-11-15 16:53:13 +03:00
|
|
|
list_folder(short_v_name, '', 'moving ${v_file} to ${bak_file} ...')
|
2022-04-12 13:38:40 +03:00
|
|
|
os.mv(v_file, bak_file) or { errors << err.msg() }
|
2021-01-28 07:26:28 +03:00
|
|
|
|
2022-11-15 16:53:13 +03:00
|
|
|
list_folder(short_v_name, '', 'removing ${v_file} ...')
|
2021-03-16 22:02:52 +03:00
|
|
|
os.rm(v_file) or {}
|
2021-01-28 07:26:28 +03:00
|
|
|
|
2022-11-15 16:53:13 +03:00
|
|
|
list_folder(short_v_name, '', 'moving ${v2_file} to ${v_file} ...')
|
2022-04-12 13:38:40 +03:00
|
|
|
os.mv_by_cp(v2_file, v_file) or { panic(err.msg()) }
|
2021-01-28 07:26:28 +03:00
|
|
|
|
2022-01-10 16:45:28 +03:00
|
|
|
list_folder(short_v_name, 'after:', '')
|
2021-01-28 07:26:28 +03:00
|
|
|
|
2021-01-28 00:58:13 +03:00
|
|
|
if errors.len > 0 {
|
2021-01-28 01:45:38 +03:00
|
|
|
eprintln('backup errors:\n >> ' + errors.join('\n >> '))
|
2021-01-28 00:58:13 +03:00
|
|
|
}
|
|
|
|
return true
|
2020-02-28 15:02:56 +03:00
|
|
|
}
|