146 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			V
		
	
	
			
		
		
	
	
			146 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			V
		
	
	
module main
 | 
						|
 | 
						|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
 | 
						|
// Use of this source code is governed by an MIT license that can be found in the LICENSE file.
 | 
						|
//
 | 
						|
// This module follows a similar convention to Rust: `init` makes the
 | 
						|
// structure of the program in the _current_ directory, while `new`
 | 
						|
// makes the program structure in a _sub_ directory. Besides that, the
 | 
						|
// functionality is essentially the same.
 | 
						|
import os
 | 
						|
 | 
						|
struct Create {
 | 
						|
mut:
 | 
						|
	name        string
 | 
						|
	description string
 | 
						|
}
 | 
						|
 | 
						|
fn cerror(e string) {
 | 
						|
	eprintln('\nerror: $e')
 | 
						|
}
 | 
						|
 | 
						|
fn vmod_content(name string, desc string) string {
 | 
						|
	return [
 | 
						|
		'Module {',
 | 
						|
		"	name: '$name'",
 | 
						|
		"	description: '$desc'",
 | 
						|
		"	version: '0.0.0'",
 | 
						|
		'	dependencies: []',
 | 
						|
		'}',
 | 
						|
	].join('\n')
 | 
						|
}
 | 
						|
 | 
						|
fn main_content() string {
 | 
						|
	return [
 | 
						|
		'module main\n',
 | 
						|
		'fn main() {',
 | 
						|
		"	println('Hello World!')",
 | 
						|
		'}',
 | 
						|
	].join('\n')
 | 
						|
}
 | 
						|
 | 
						|
fn gen_gitignore(name string) string {
 | 
						|
	return [
 | 
						|
		'# Binaries for programs and plugins',
 | 
						|
		'main',
 | 
						|
		'$name',
 | 
						|
		'*.exe',
 | 
						|
		'*.exe~',
 | 
						|
		'*.so',
 | 
						|
		'*.dylib',
 | 
						|
		'*.dll',
 | 
						|
	].join('\n')
 | 
						|
}
 | 
						|
 | 
						|
fn (c &Create) write_vmod(new bool) {
 | 
						|
	vmod_path := if new { '$c.name/v.mod' } else { 'v.mod' }
 | 
						|
	mut vmod := os.create(vmod_path) or {
 | 
						|
		cerror(err)
 | 
						|
		exit(1)
 | 
						|
	}
 | 
						|
	vmod.write_str(vmod_content(c.name, c.description))
 | 
						|
	vmod.close()
 | 
						|
}
 | 
						|
 | 
						|
fn (c &Create) write_main(new bool) {
 | 
						|
	if !new && (os.exists('${c.name}.v') || os.exists('src/${c.name}.v')) {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	main_path := if new { '$c.name/${c.name}.v' } else { '${c.name}.v' }
 | 
						|
	mut main := os.create(main_path) or {
 | 
						|
		cerror(err)
 | 
						|
		exit(2)
 | 
						|
	}
 | 
						|
	main.write_str(main_content())
 | 
						|
	main.close()
 | 
						|
}
 | 
						|
 | 
						|
fn (c &Create) create_git_repo(dir string) {
 | 
						|
	// Create Git Repo and .gitignore file
 | 
						|
	if !os.is_dir('$dir/.git') {
 | 
						|
		os.exec('git init $dir') or {
 | 
						|
			cerror('Unable to create git repo')
 | 
						|
			exit(4)
 | 
						|
		}
 | 
						|
		if !os.exists('$dir/.gitignore') {
 | 
						|
			mut fl := os.create('$dir/.gitignore') or {
 | 
						|
				// We don't really need a .gitignore, it's just a nice-to-have
 | 
						|
				return
 | 
						|
			}
 | 
						|
			fl.write_str(gen_gitignore(c.name))
 | 
						|
			fl.close()
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
fn create() {
 | 
						|
	mut c := Create{}
 | 
						|
	c.name = os.input('Input your project name: ')
 | 
						|
	if c.name == '' {
 | 
						|
		cerror('project name cannot be empty')
 | 
						|
		exit(1)
 | 
						|
	}
 | 
						|
	if c.name.contains('-') {
 | 
						|
		cerror('"$c.name" should not contain hyphens')
 | 
						|
		exit(1)
 | 
						|
	}
 | 
						|
	if os.is_dir(c.name) {
 | 
						|
		cerror('$c.name folder already exists')
 | 
						|
		exit(3)
 | 
						|
	}
 | 
						|
	c.description = os.input('Input your project description: ')
 | 
						|
	println('Initialising ...')
 | 
						|
	os.mkdir(c.name) or {
 | 
						|
		panic(err)
 | 
						|
	}
 | 
						|
	c.write_vmod(true)
 | 
						|
	c.write_main(true)
 | 
						|
	c.create_git_repo(c.name)
 | 
						|
}
 | 
						|
 | 
						|
fn init_project() {
 | 
						|
	if os.exists('v.mod') {
 | 
						|
		cerror('`v init` cannot be run on existing v modules')
 | 
						|
		exit(3)
 | 
						|
	}
 | 
						|
	mut c := Create{}
 | 
						|
	c.name = os.file_name(os.getwd())
 | 
						|
	c.description = ''
 | 
						|
	c.write_vmod(false)
 | 
						|
	c.write_main(false)
 | 
						|
	c.create_git_repo('')
 | 
						|
	println("Change your module's description in `v.mod`")
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
	if os.args[1] == 'new' {
 | 
						|
		create()
 | 
						|
	} else if os.args[1] == 'init' {
 | 
						|
		init_project()
 | 
						|
	} else {
 | 
						|
		cerror('Unknown command: ${os.args[1]}')
 | 
						|
		exit(1)
 | 
						|
	}
 | 
						|
	println('Complete!')
 | 
						|
}
 |