v/cmd/tools/vcreate.v

56 lines
1.3 KiB
V
Raw Normal View History

2020-02-03 05:00:36 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-11-10 22:48:56 +01:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module main
import (
os
)
struct Create {
mut:
name string
description string
}
fn cerror(e string){
eprintln('\nerror: $e')
}
fn (c Create)write_vmod() {
2019-12-01 10:50:13 +01:00
mut vmod := os.create('${c.name}/v.mod') or { cerror(err) exit(1) }
2019-11-10 22:48:56 +01:00
mut vmod_content := []string
vmod_content << '#V Project#\n'
vmod_content << 'Module {'
vmod_content << ' name: \'${c.name}\','
vmod_content << ' description: \'${c.description}\','
vmod_content << ' dependencies: []'
vmod_content << '}'
vmod.write(vmod_content.join('\n'))
}
fn (c Create)write_main() {
2019-12-01 10:50:13 +01:00
mut main := os.create('${c.name}/${c.name}.v') or { cerror(err) exit(2) }
2019-11-10 22:48:56 +01:00
mut main_content := []string
main_content << 'module main\n'
main_content << 'fn main() {'
main_content << ' println(\'Hello World !\')'
main_content << '}'
main.write(main_content.join('\n'))
}
fn main() {
mut c := Create{}
print('Choose your project name: ')
c.name = os.get_line()
print('Choose your project description: ')
c.description = os.get_line()
println('Initialising ...')
if (os.is_dir(c.name)) { cerror('folder already exists') exit(3) }
2019-11-23 17:55:18 +01:00
os.mkdir(c.name) or { panic(err) }
2019-11-10 22:48:56 +01:00
c.write_vmod()
c.write_main()
println('Complete !')
}